a {
    color: inherit;
}

a:hover {
    color: inherit;
}

.top-nav-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 30px;
    background-color: #0A2D72;
    color: #fff;
}

.top-nav-bar span {
    position: relative;
    width: 120px;
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all .5s;
    white-space: nowrap;
}

.top-nav-bar span a {
    display: block;
    padding: 15px 0;
}

.top-nav-bar span a::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 a:hover::after {
    opacity: 1;
}

.top-nav-bar span.active {
    color: #96F0A4;
}

.top-nav-bar span.active a::after {
    opacity: 1;
}

.b-title {
    /* font-size: 44px; */
    /* font-size: calc((100vw / 1920) * 44); */
    font-size: clamp(20px, calc(100vw / 1920) * 44, calc(100vw / 1920) * 44);
    line-height: 1.2;
}

.product-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    /* padding: 0 25%; */
    /* min-height: calc((100vw / 1920) * 640); */
    background: url('../images/new-product-description-bg.svg') no-repeat center/cover;
    background-color: rgb(243, 244, 248);
    text-align: center;
}

.product-description .product-description-content {
    /* width: clamp(500px, 80%, 1200px); */
    width: 100%;
    padding: 0 calc((100vw / 1920) * 280);
    display: flex;
    justify-content: space-between;
    gap: max(30px, 10%);
    align-items: center;
}

.product-description-wrap.haveVideo {
    text-align: left;
}

.product-description-video {
    width: 50%;
    flex-shrink: 0;
}

.product-description-video .swiper {
    width: 100%;
    padding-bottom: 100px;
}

.product-description-video .swiper .video-tips {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid #212529;
    padding: 10px;
    text-align: center;
}

.product-description-video .swiper-handle {
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    height: 100%;
    --swiper-navigation-size: 16px;
    position: unset;
    color: #0A2D72;
    margin-top: 0;
}

.swiper-button-prev {
    animation: move-prev 2s infinite;
}

@keyframes move-prev {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.swiper-button-next {
    animation: move-next 2s infinite;
}

@keyframes move-next {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

.product-description-video .swiper-pagination {
    /* bottom: 0; */
    position: unset;
    width: auto;
}

.product-description-video .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: .3s;
}

.product-description-video .swiper-pagination-bullet-active {
    background-color: rgba(0, 0, 0, .5);
    width: 30px;
    border-radius: 10px;
}

.product-description-video .video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
}

.product-description-video .play-video {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #D5D5D3;
    transition: .3s;
    position: relative;
    z-index: 1;
}

.product-description-video .play-video .icon {
    margin-left: 3px;
}

.product-description-video .video-wrap:hover .play-video {
    transform: scale(1.1);
}

.product-description-video .video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-description-video .video-poster video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cont {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.video-cont .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
}

.video-cont .video-wrap {
    height: 80%;
    aspect-ratio: 16 / 9;
    /* width: calc(100% - 120px); */
    position: relative;
    z-index: 1;
}

.video-cont .video-wrap video {
    width: 100%;
}

.close-video {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 40px;
    aspect-ratio: 1;
    background-color: #fff;
    cursor: pointer;
}

.close-video img {
    width: 30%;
}

.product-description .title {
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: flex-start;
    /* width: 100%; */
    margin-right: 10px;
}

.product-description .title .label {
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 10px;
    transform: translate(calc(100% + 10px), -40%);
}

.product-description .title .label p {
    position: relative;
    z-index: 2;
    padding: 5px 8px;
    /* background-image: linear-gradient(to bottom, #FBA17E, #FFC1A9); */
    font-size: 24px;
    color: #FBA17E;
    width: 240px;
    display: flex;
    justify-content: left;
    /* color: #fff; */
}

.product-description .title .label .tail-top {
    position: absolute;
    right: 0;
    top: 0;
    border: 14px solid transparent;
    border-top-color: #FBA17E;
    border-top-width: 15px;
    transform: translateX(50%);
}

.product-description .title .label .tail-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    border: 14px solid transparent;
    border-bottom-color: #FFC1A9;
    border-bottom-width: 15px;
    transform: translateX(50%);
}

.product-description .text {
    /* width: clamp(500px, 80%, 875px); */
    margin-top: 30px;
    line-height: 1.8;
    font-size: 20px;
    text-align: justify;
}

.product-description .text p {
    font-size: 20px;
}

.product-description .text a {
    color: #007bff;
}

.product-description .tool-btn {
    margin-top: 40px;
}

.product-description .tool-btn a {
    display: inline-flex;
    align-items: center;
    padding: 15px 50px;
    padding-right: 45px;
    border: 1px solid #2FA4E7;
    border-radius: 6px;
    font-size: 16px;
    color: #2FA4E7;
    transition: all .5s;
}

.product-description .tool-btn a:hover {
    background-color: #92F0A1;
    color: #fff;
    border-color: transparent;
}

.product-description .tool-btn a p {
    margin-left: 10px;
}

.product-description .tool-btn.no-url a {
    border-color: #c1c1c1;
    color: #c1c1c1;
}

.product-description .tool-btn.no-url a:hover {
    background-color: transparent;
    color: #c1c1c1;
    border-color: #c1c1c1;
}


.chip-area {
    width: 100%;
    padding: 0 60px;
    background: url('../images/new-product-chip-area-bg.jpeg') no-repeat center/cover;
}

.chip-area .table-content {
    width: 100%;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 4px 12px #0A2D7212;
    transform: translateY(-40px);
}

.chip-area .table-content table {
    width: 100%;
    text-align: center;
}

.chip-area .table-content table thead td {
    padding: 23px 10px;
    font-size: 16px;
    font-weight: bold;
}

.chip-area .table-content tbody tr {
    height: 70px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    transition: all .5s;
}

.chip-area .table-content tbody tr:hover {
    background-color: rgba(193, 193, 193, .1);
}

.chip-area .table-content tbody tr>td:first-child img {
    max-width: 80%;
    max-height: 60%;
}

.softer-hardware {
    width: 100%;
    padding-top: calc((100vw / 1920) * 80);
    background-color: #F3F4F8;
}

.softer-hardware .top-content-area {
    padding: 0 calc((100vw / 1920) * 290);
    padding-bottom: calc((100vw / 1920) * 110);
}

.softer-hardware .switch {
    display: flex;
    justify-content: center;
}

.softer-hardware .switch p {
    width: clamp(150px, calc((100vw / 1920) * 160), calc((100vw / 1920) * 160));
    padding: 17px 20px;
    margin: 0 10px;
    background-color: #fff;
    border-radius: 10000px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all .5s;
}

.softer-hardware .switch p:hover {
    color: #fff;
    background-color: #2FA4E7;
}

.softer-hardware .switch p.active {
    color: #fff;
    background-color: #2FA4E7;
}

.softer-hardware .top-content {
    margin-top: calc((100vw / 1920) * 70);
    text-align: center;
}

.softer-hardware .top-content .image {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
}

.softer-hardware .top-content .image img {
    width: 100%;
}

.softer-hardware .top-content .b-title {
    margin-top: calc((100vw / 1920) * 37);
}

.softer-hardware .top-content .description {
    padding: 0 17%;
    margin-top: 27px;
    line-height: 1.8;
    font-size: 20px;
}

.softer-hardware .top-content .description p {
    font-size: 20px;
}

.softer-hardware .top-content .description a {
    color: #0A2D72;
}

.softer-hardware .download-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.softer-hardware .download-area .text {
    max-width: 50%;
}

.softer-hardware .download-area .text .title {
    font-size: 24px;
    font-weight: bold;
}

.softer-hardware .download-area .text .description {
    margin-top: 20px;
    font-size: 16px;
}

.softer-hardware .download-area .download-list {
    display: flex;
}

.softer-hardware .download-area .download-list .item {
    display: flex;
    justify-content: space-between;
    width: 240px;
    min-height: 100px;
    padding: 20px;
    padding-top: 16px;
    background-color: #fff;
    border-radius: 6px;
    transition: all .5s;
}

.softer-hardware .download-area .download-list .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .2);
}

.softer-hardware .download-area .download-list .item:not(:nth-child(3n + 1)) {
    margin-left: 10px;
}

.softer-hardware .download-area .download-list .item-left {
    font-size: 18px;
}

.softer-hardware .download-area .download-list .item-left p {
    font-size: 18px;
}

.softer-hardware .download-area .download-list .item .image {
    display: flex;
    align-items: flex-end;
}

.softer-hardware .sdk-list {
    padding: 0 60px;
    padding-bottom: 40px;
    background: url('../images/softer-hardware-bg.jpeg') no-repeat center/cover;
}

.softer-hardware .sdk-list .table-content {
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
    transform: translateY(-40px);
    box-shadow: 0 4px 12px #0A2D7212;
    overflow: auto;
}

.softer-hardware .sdk-list .table-content table {
    width: 100%;
    min-width: 790px;
    text-align: center;
    font-size: 16px;
}

.softer-hardware .sdk-list .table-content thead td {
    padding: 23px 37px;
    font-size: 16px;
    font-weight: bold;
}

.softer-hardware .sdk-list .table-content tbody tr {
    border-top: 1px solid rgba(0, 0, 0, .1);
    transition: all .5s;
}

.softer-hardware .sdk-list .table-content tbody tr:hover {
    background-color: rgba(193, 193, 193, .1);
}

.softer-hardware .sdk-list .table-content tbody td {
    /* height: calc((100vw / 1920) * 160); */
    height: 70px;
}

.softer-hardware .sdk-list .table-content table a {
    color: #2FA4E7;
}

.softer-hardware .board {
    width: 100%;
    padding: 0 60px;
    padding-bottom: 40px;
    background: url('../images/softer-hardware-bg.jpeg') no-repeat center/cover;
}

.softer-hardware .board .board-content {
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
    transform: translateY(-40px);
    box-shadow: 0 4px 12px #0A2D7212;
}

.softer-hardware .board .board-list {
    display: flex;
}

.softer-hardware .board .board-list .item {
    display: flex;
    width: 50%;
    padding: 60px;
    transition: all .5s;
}

.softer-hardware .board .board-list .item:hover {
    background-color: rgba(193, 193, 193, .1);
}


.softer-hardware .board .board-list .item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, .1);
}


.softer-hardware .board .board-list .item .image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    transition: all .5s;
    cursor: zoom-in;
    /* box-shadow: 0 4px 12px #0A2D7212; */
    /* background-color: #fff; */
}

.softer-hardware .board .board-list .item .image img {
    max-width: 100%;
    max-height: 100%;
}

.softer-hardware .board .board-list .item .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 40px;
}

.softer-hardware .board .board-list .item .text .title {
    font-size: 24px;
    font-weight: bold;
}

.softer-hardware .board .board-list .item .text .description {
    margin-top: 10px;
    line-height: 1.8;
}

.softer-hardware .board .board-list .item .text .description p {
    font-size: 20px;
}

.softer-hardware .board .board-list .item .text .btn {
    margin-top: 10px;
    text-align: right;
}

.softer-hardware .board .board-list .item .text a {
    display: inline-flex;
    align-items: center;
}

.softer-hardware .board .board-list .item .text a p {
    margin-left: 10px;
    font-size: 18px;
    transition: all .5s;
}

.softer-hardware .board .board-list .item .text a:hover p {
    color: #92F0A1;
}

.softer-hardware .board .reference {
    width: 100%;
    padding-top: calc((100vw / 1920) * 60);
    padding-bottom: calc((100vw / 1920) * 60);
    border-top: 1px solid rgba(0, 0, 0, .1);
    text-align: center;
}

.softer-hardware .board .reference .name {
    width: 50%;
    font-size: 24px;
    font-weight: bold;
}

.softer-hardware .board .reference .reference-btn {
    width: 50%;
    margin-top: 27px;
}

.softer-hardware .board .reference .reference-btn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #F3F4F8;
    border-radius: 6px;
    transition: all .5s;
}

.softer-hardware .board .reference .reference-btn a:hover {
    color: #fff;
    background-color: #92F0A1;
}

.softer-hardware .board .reference .reference-btn a .icon {
    width: 60px;
}

.softer-hardware .board .reference .reference-btn p {
    margin-left: 20px;
    font-size: 20px;
}

.softer-hardware .board .reference .reference-btn .arrow-btn {
    margin-left: 10px;
}

.softer-hardware .switch-content {
    display: none;
}

.softer-hardware .switch-content.active {
    display: block;
}





.board-table {
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
    transform: translateY(-40px);
    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: 16px;
}

/* .board-table tbody td:nth-child(3) a {
    text-decoration: underline;
} */

.board-table tbody td:nth-child(3) a:hover {
    color: #2FA4E7;
    text-decoration: underline !important;
    cursor: pointer !important;
}

.board-table tbody td p {
    font-size: 16px;
}

.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; */
    max-width: min(100%, 120px);
    max-height: 150px;
}

.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;
}

@media (max-width: 768px) {
    .product-description .product-description-content {
        flex-direction: column;
    }

    .product-description-wrap.haveVideo {
        text-align: center;
    }

    .product-description-video {
        width: 100%;
    }

    .video-cont .video-wrap {
        width: calc(100% - 20px);
        height: auto;
    }

    .close-video {
        transform: translateY(-100%);
    }
}