a {
    color: inherit;
}

a:hover {
    color: inherit;
}

.top-nav-bar {
    display: flex;
    align-items: center;
    padding-left: 30px;
    background-color: #0A2D72;
    color: #fff;
}

.top-nav-bar span {
    position: relative;
    padding: 15px 0;
    margin: 0 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all .5s;
}

.top-nav-bar span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #96F0A4;
    opacity: 0;
    transition: all .5s;
}

.top-nav-bar span:hover {
    color: #96F0A4;
}

.top-nav-bar span:hover::after {
    opacity: 1;
}

.top-nav-bar span.active {
    color: #96F0A4;
}

.top-nav-bar span.active::after {
    opacity: 1;
}

.b-title {
    /* font-size: 44px; */
    font-size: clamp(28px, calc((100vw / 1920) * 44), calc((100vw / 1920) * 44));
    line-height: 1.2;
}

.application-description {
    width: 100%;
    /* padding: 0 60px; */
    padding: 0 calc((100vw / 1920) * 280);
    padding-top: calc((100vw / 1920) * 90);
    padding-bottom: calc((100vw / 1920) * 100);
    background: url('../images/new-product-description-bg.svg')no-repeat center/cover;
    background-color: rgb(243,244,248);
}

.application-description .b-title {
    text-align: center;
}

.application-description .text {
    /* padding: 0 14%; */
    margin-top: calc((100vw / 1920) * 40);
    text-align: justify;
    line-height: 1.8;
}

.application-description .text p {
    font-size: 20px;
}

.application-description .text a {
    color: #2FA4E7;
}

.resource .prompt a {
    color: #0a2d72;
}

.kuang-tu {
    width: 100%;
    /* margin-top: calc((100vw / 1920) * 100); */
    border-radius: 6px;
    overflow: hidden;
    /* box-shadow: 0 0 5px #cccccc; */
    background-color: #fff;
}

.kuang-tu img {
    display: block;
    /* max-width: 50%; */
    width: 100%;
    padding: 30px 0;
    margin: 0 auto;
    cursor: zoom-in;
}

.feature {
    width: 100%;
    padding: 0 calc((100vw / 1920) * 300);
    padding-top: calc((100vw / 1920) * 110);
    padding-bottom: calc((100vw / 1920) * 140 - 30px);
    background: url('../images/applications-feature-bg.jpeg') no-repeat center/cover;
}

.feature .b-title {
    text-align: center;
    color: #fff;
}

.feature .feature-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc((100vw / 1920) * 50);
}

.feature .feature-list .item {
    width: calc((100% - 60px) / 3);
    padding: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all .5s;
}

.feature .feature-list .item:hover {
    box-shadow: 0 3px 12px #92F0A1;
    transform: translateY(-5%);
}

.feature .feature-list .item:not(:nth-child(3n + 3)) {
    margin-right: 30px;
}

.feature .feature-list .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0A2D72;
    border-radius: 50%;
    font-size: 16px;
    color: #92F0A1;
}

.feature .feature-list .item .icon img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.feature .feature-list .item .text {
    margin-top: calc((100vw / 1920) * 15);
    line-height: 1.6;
}

.feature .feature-list .item p {
    font-size: 18px;
}

.recommend-chip {
    padding: 0 60px;
    padding-top: calc((100vw / 1920) * 90);
    padding-bottom: calc((100vw / 1920) * 120);
}

.recommend-chip .b-title {
    text-align: center;
}

.recommend-chip .recommend-list {
    display: flex;
    margin-top: calc((100vw / 1920) * 50);
}

.recommend-chip .recommend-list .item {
    /* width: calc((100% - 90px) / 4); */
    position: relative;
    width: calc(50% - 5px);
    background-image: linear-gradient(to bottom, #E7EAF1, #F3F4F8);
    border-radius: 6px;
    overflow: hidden;
}

.recommend-chip .recommend-list .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #92F0A1, #b2f8be);
    opacity: 0;
    transition: all .5s;
}

.recommend-chip .recommend-list .item:hover::after {
    opacity: 1;
}

.recommend-chip .recommend-list .item:not(:last-child) {
    margin-right: 10px;
}

.recommend-chip .recommend-list .item a {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: calc((100vw / 1920) * 30);
}

.recommend-chip .recommend-list .item .image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 130px; */
    width: 100%;
    height: calc((100vw / 1920) * 200);
    margin: 0 auto;
}

.recommend-chip .recommend-list .item .image img {
    display: block;
    max-width: 70%;
    max-height: 55%;
}

.recommend-chip .recommend-list .item .text {
    padding-top: calc((100vw / 1920) * 40);
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.recommend-chip .recommend-list .item .title {
    font-size: 24px;
}

.recommend-chip .recommend-list .item .description {
    margin-top: calc((100vw / 1920) * 20);
    text-align: justify;
}

.recommend-chip .recommend-list .item .description p {
    font-size: 16px;
    line-height: 1.8;
}

.recommend-chip .recommend-list .item .learn-more {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: calc((100vw / 1920) * 60);
}

.recommend-chip .recommend-list .item .learn-more img {
    display: block;
    margin-left: 8px;
}

.recommend-chip .chip-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc((100vw / 1920) * 50);
}

.recommend-chip .chip-list .item {
    position: relative;
    width: calc((100% - 90px) / 4);
    margin-right: 30px;
    background-image: linear-gradient(to bottom, #E7EAF1, #F3F4F8);
    border-radius: 6px;
    overflow: hidden;
    transition: all .5s;
}

.recommend-chip .chip-list .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #92F0A1, #b2f8be);
    opacity: 0;
    transition: all .5s;
}

.recommend-chip .chip-list .item:hover::after {
    opacity: 1;
}

.recommend-chip .chip-list .item:nth-child(4n + 4) {
    margin-right: 0;
}

.recommend-chip .chip-list .item a {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: calc((100vw / 1920) * 30);
}

.recommend-chip .chip-list .item .image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 130px; */
    width: 100%;
    height: calc((100vw / 1920) * 200);
    margin: 0 auto;
}

.recommend-chip .chip-list .item .image img {
    display: block;
    max-width: 70%;
    max-height: 55%;
}

.recommend-chip .chip-list .item .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* padding-top: calc((100vw / 1920) * 40); */
    /* border-top: 1px solid rgba(0, 0, 0, .1); */
    flex: 1;
}

.recommend-chip .chip-list .item .title {
    font-size: 24px;
}

.recommend-chip .chip-list .item .description {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: calc((100vw / 1920) * 20);
    margin-top: calc((100vw / 1920) * 20);
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
}

.recommend-chip .chip-list .item .description p {
    font-size: 16px;
    line-height: 1.8;
}

.recommend-chip .chip-list .item .learn-more {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: calc((100vw / 1920) * 60);
}

.recommend-chip .chip-list .item .learn-more img {
    display: block;
    margin-left: 8px;
}



.resource {
    padding-top: calc((100vw / 1920) * 95);
    background-color: rgb(243, 244, 248);
}

.resource .b-title {
    text-align: center;
}

.resource .resource-main {
    position: relative;
    padding: 0 60px;
    /* padding-bottom: calc((100vw / 1920) * 20); */
}

.resource .resource-main .board-table {
    position: relative;
    z-index: 2;
}

.resource .resource-main .bg {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(100% - 20px);
}

.resource .resource-main .bg img {
    width: 100%;
    height: 100%;
}

.resource .parts-list {
    position: relative;
    z-index: 2;
    display: flex;
    padding: calc((100vw / 1920) * 60);
    margin-top: calc((100vw / 1920) * 50);
    background-color: #fff;
    box-shadow: 0 4px 12px #0A2D7212;
    border-radius: 6px;
    overflow: hidden;
}

.resource .parts-list .parts-image {
    display: flex;
    width: calc((100vw / 1920) * 480);
    height: calc((100vw / 1920) * 480);
    padding: calc((100vw / 1920) * 40);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px #0A2D7212;
    cursor: zoom-in;
}

.resource .parts-list .parts-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.resource .parts-list .table-content {
    flex: 1;
    margin-left: calc((100vw / 1920) * 32);
    overflow: auto;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
}

.resource .parts-list .table-content table {
    width: 100%;
    min-width: 700px;
    font-size: 14px;
    text-align: center;
}

.resource .parts-list .table-content table thead td {
    padding: 20px 0;
    background-color: #E7EAF1;
    font-size: 16px;
    font-weight: bold;
}

.resource .parts-list .table-content table thead td:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 0 10px;
}

.resource .parts-list .table-content table thead td:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.resource .parts-list .table-content table tbody tr {
    height: calc((100vw / 1920) * 80);
}

.resource .parts-list .table-content table tbody tr:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.resource .parts-list .table-content table tbody tr td {
    transition: all .5s;
}

.resource .parts-list .table-content table tbody tr:hover td {
    background-color: rgba(193, 193, 193, .1);
}

.resource .parts-list .table-content table tbody tr:nth-of-type(1):hover td:last-child {
    background-color: transparent;
}

.resource .parts-list .table-content table tbody tr:nth-of-type(1) td:last-child:hover {
    background-color: rgba(193, 193, 193, .1);
}

.resource .parts-list .table-content table tbody tr a {
    color: #2FA4E7;
    cursor: pointer;
}

.resource .parts-list .table-content table tbody tr:first-child td:last-child {
    border-left: 1px solid rgba(0, 0, 0, .1);
    /* border-right: 1px solid rgba(0, 0, 0, .1); */
}

.resource .supplement-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.resource .prompt {
    position: relative;
    z-index: 3;
    margin-top: 20px;
}

.resource .supplement-list .item {
    width: calc((100% - 90px) / 4);
    margin-right: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px #0A2D7212;
    transition: all .5s;
}

.resource .supplement-list .item:hover {
    background-color: #92F0A1;
}

.resource .supplement-list .item:nth-child(4n + 4) {
    margin-right: 0;
}

.resource .supplement-list .item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: calc((100vw / 1920) * 260);
    padding: calc((100vw / 1920) * 30);
}

.resource .supplement-list .item .icon {
    display: flex;
    width: calc((100vw / 1920) * 67);
    height: calc((100vw / 1920) * 50);
}

.resource .supplement-list .item .icon img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.resource .supplement-list .item .title {
    margin-top: calc((100vw / 1920) * 15);
    font-size: 18px;
}

.resource .supplement-list .item .text {
    margin-top: calc((100vw / 1920) * 10);
    font-size: 14px;
}

.resource .supplement-list .item .text p {
    font-size: 14px;
}

.resource .supplement-list .item .bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: calc((100vw / 1920) * 20);
}

.resource .supplement-list .item .bottom p {
    margin-right: 5px;
}

.resource .supplement-list .item .bottom img {
    display: block;
}

.board-table {
    width: 100%;
    margin-top: calc((100vw / 1920) * 50);
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px #0A2D7212;
    overflow: auto;
}

.board-table table {
    width: 100%;
    min-width: 1000px;
    text-align: center;
    font-size: 14px;
}

.board-table table a {
    color: #0A2D72;
}

.board-table thead td {
    padding: 23px 37px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

.board-table tbody tr {
    border-top: 1px solid rgba(0, 0, 0, .1);
    transition: all .5s;
}

.board-table tbody tr:hover {
    background-color: rgba(193, 193, 193, .1);
}

.board-table tbody td {
    height: calc((100vw / 1920) * 160);
    max-width: 350px;
    padding: 10px 18px;
    font-size: 14px;
}

.board-table tbody td p {
    font-size: 14px;
}

.board-table tbody tr td:nth-child(1) {
    max-width: 120px;
    padding: 5px 18px;
}

.board-table tbody tr td:nth-child(1) img {
    height: auto;
}

.board-table tbody tr td:nth-child(1) img:hover {
    cursor: zoom-in;
}

.board-table tbody tr td:nth-child(2) {
    min-width: 200px;
    white-space: nowrap;
}

.board-table table a {
    color: #2FA4E7;
}