/* 下载弹出框样式 */
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.download-modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.download-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333333;
    font-weight: 600;
}

.download-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.download-modal-close:hover {
    background-color: #f5f5f5;
    color: #666666;
}

.download-modal-body {
    padding: 24px;
}

.download-modal-text {
    margin: 0 0 20px 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

.download-form-group {
    margin-bottom: 20px;
}

.download-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}

.download-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.download-form-group input:focus {
    outline: none;
    border-color: #1890ff;
}

.verification-code-container {
    display: flex;
    gap: 12px;
}

.verification-code-container input {
    flex: 1;
}

#sendCodeBtn {
    padding: 12px 16px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    min-width: 120px;
}

#sendCodeBtn:hover:not(:disabled) {
    background-color: #40a9ff;
}

#sendCodeBtn:disabled {
    background-color: #d9d9d9;
    cursor: not-allowed;
}

.download-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.btn-cancel,
.btn-confirm {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel {
    background-color: #f5f5f5;
    color: #666666;
}

.btn-cancel:hover {
    background-color: #e6e6e6;
}

.btn-confirm {
    background-color: #1890ff;
    color: white;
}

.btn-confirm:hover {
    background-color: #40a9ff;
}
/* =====================内页样式======================== */
/* 分页 */
.paging {
    width: 100%;
    font-size: 0;
    text-align: center;
    user-select: none;
}
.paging-menu,
.paging-menu a {
    display: inline-block;
    vertical-align: middle;
}
.paging-menu a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 3px;
    font-family: Arial;
    font-size: 18px;
    color: #888;
    transition: all 0.4s ease;
    border-radius: 50%;
    background: #fff;
}
.paging-menu a:first-child,
.paging-menu a:last-child {
    display: none !important;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/template/cn/images/arrL.svg");
    background-size: 19px auto;
}
.paging-menu a:last-child {
    transform: rotate(180deg);
}
.paging-menu a:first-child:hover,
.paging-menu a:last-child:hover {
    background-image: url("/template/cn/images/arrLW.svg");
}
.paging-menu a:hover,
.paging-menu a.active,
.paging a.on {
    backgroundr: #332175;
    color: #fff;
}
@media all and (max-width: 1279px) {
    .paging-menu a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    .paging-menu a:first-child,
    .paging-menu a:last-child {
        background-size: 18px;
    }
}
@media all and (max-width: 1000px) {
    .paging-menu a {
        margin: 0 2px;
        width: 36px;
        height: 36px;
        line-height: 36px;
    }
    .paging-menu a:first-child,
    .paging-menu a:last-child {
        background-size: 16px;
    }
}

/*分页*/
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    justify-content: center;
}
.page-num:not(:disabled) {
    cursor: pointer;
}
.page-link {
    font: 14px/1.25 "SimSun";
}
.page-num,
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem;
    margin-left: -1px;
    line-height: 1;
    color: #888;
    border: 0px solid #dee2e6;
    background: rgb(0 0 0 / 0);
    border-radius: 2px;
    margin: 0 0.25rem;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
a.page-num:hover,
.page-link:hover {
    text-decoration: none;
    background: #332175;
    border-color: #332175;
    color: #fff;
}
.page-num-current {
    z-index: 1;
    color: #fff;
    background: #332175;
    border-color: #332175;
}
.page-num-current:hover {
    color: #fff;
}
@media only screen and (max-width: 576px) .page-num {
    display: none;
}

/* 搜索页面 */
.search {
    width: 100%;
    background: linear-gradient(to bottom, #fff, #f7f7f7);
}
.search .contain {
}
.search-info {
    width: 100%;
    font-size: 30px;
    color: #333;
    font-family: "SamsungOne700";
}
.search-info span {
    color: #332175;
}
.search-list {
    width: 100%;
    margin-top: 30px;
}
.search-link {
    display: block;
    width: 100%;
    padding: 32px 0;
    border-bottom: 1px solid #ededed;
}
.search-link h2 {
    font-size: 20px;
    color: #333;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.4s ease;
    font-family: "SamsungOne700";
}
.search-link p {
    width: 100%;
    font-size: 16px;
    margin-top: 16px;
    color: #888;
    line-height: 24px;
    max-height: 48px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.search-link .highlightRow span {
    color: #332175 !important;
}
.search-link:hover h2 {
    color: #332175;
}
@media all and (max-width: 1599px) {
    .search-info {
        font-size: 28px;
    }
    .search-link {
        padding: 28px 0;
    }
    .search-list {
        margin-top: 18px;
    }
}
@media all and (max-width: 1279px) {
    .search-info {
        font-size: 24px;
    }
    .search-link {
        padding: 24px 0;
    }
    .search-list {
        margin-top: 12px;
    }
}
@media all and (max-width: 1000px) {
    .search-info {
        font-size: 20px;
    }
    .search-link {
        padding: 20px 0;
    }
    .search-list {
        margin-top: 8px;
    }
    .search-link h2 {
        font-size: 18px;
    }
    .search-link p {
        margin-top: 12px;
    }
}
@media all and (max-width: 640px) {
    .search-link {
        padding: 16px 0;
    }
    .search-link p {
        font-size: 15px;
        margin-top: 8px;
        line-height: 22px;
        max-height: 44px;
    }
}

.sonBan {
    width: 100%;
    position: relative;
}
.sonBan-img {
    width: 100%;
    object-fit: cover;
    /*min-height: 300px;*/
}
.sonBan-cont {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    color: #ffffff;
}
.sonBan-cont .name {
    line-height: 1.1;
    opacity: 0;
    animation: sonBanRun 1s ease both 0.4s;
    font-family: "SamsungOne700";
    color: #ffffff;
}
.sonBan-cont .name br {
    content: "";
    display: block;
    height: 6px;
}
.sonBan-cont .text {
    line-height: 1.28;
    opacity: 0;
    animation: sonBanRun 1s ease both 0.6s;
}

.sonBan-cont .link {
    display: flex;
    align-items: center;
    width: 152px;
    height: 44px;
    border-radius: 22px;
    background: rgba(169, 35, 52, 0.9);
    transition: all 0.4s ease;
    justify-content: center;
    font-family: "SamsungOne700";
    opacity: 0;
    animation: sonBanRun 1s ease both 0.6s;
    cursor: pointer;
}
.sonBan-cont .link span {
    padding-right: 26px;
    background: url("/template/cn/images/play.svg") no-repeat right center/20px auto;
}
.sonBan-cont .link:hover {
    background: #332175;
}
@media all and (max-width: 640px) {
    .sonBan-cont .link {
        width: 136px;
        height: 40px;
    }
}

@keyframes sonBanRun {
    0% {
        opacity: 0;
        transform: translateX(120px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.sonBan-hint {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0px;
    width: 100%;
}
.sonBan-hint .contain {
    justify-content: flex-end;
    align-items: center;
    color: #fff;
}
.sonBan-hint a {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    margin: 10px;
}
/*.sonBan-hint a::after{content: "";position: absolute;width: 13px;height: 100%;background: url('/template/cn/images/arrRW.svg') no-repeat center/100% auto;top: 0;right: -18px;}*/
.sonBan-hint a:first-child {
}
.sonBan-hint a:last-child {
    margin-right: 0;
}
.sonBan-hint a:last-child::after {
    display: none;
}
.sonBan-hint a:hover {
    color: #332175;
}

.sonMenu {
    width: 100%;
    background: none;
    z-index: 10;
    overflow-x: auto;
    scrollbar-color: #332175 #f1f1f1;
    scrollbar-width: thin;
}
.sonMenu::-webkit-scrollbar {
    height: 3px;
}
.sonMenu::-webkit-scrollbar-thumb {
    background: #332175;
}
.sonMenu::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.sonMenu::-moz-scrollbar {
    height: 3px;
}
.sonMenu::-moz-scrollbar-thumb {
    background: #332175;
}
.sonMenu::-moz-scrollbar-track {
    background: #f1f1f1;
}
.sonMenu::-ms-scrollbar {
    height: 3px;
}
.sonMenu::-ms-scrollbar-thumb {
    background: #332175;
}
.sonMenu::-ms-scrollbar-track {
    background: #f1f1f1;
}
/*.sonMenu::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 0px;*/
/*    background: #f1f1f1;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    pointer-events: none;*/
/*}*/
.sonMenu-scroll {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: hidden;
    min-width: 100%;
}
body.PAD .sonMenu-scroll,
body.PC .sonMenu-scroll {
    /*width: 100% !important;*/
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 60px;
    min-width: 100%;
}
.sonMenu a {
    display: flex;
    align-items: center;
    margin: 0;
    transition: all 0.4s ease;
    padding: 0px 40px;
    height: 60px;
    white-space: nowrap;
    float: left;
    position: relative;
}
.sonMenu a:after {
    /*content: "";*/
    position: absolute;
    width: 1px;
    height: 20%;
    background: #888888;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
/*.sonMenu a:last-child::after {*/
/*    display: none;*/
/*}*/
.sonMenu a:first-child {
}
.sonMenu a:last-child {
}
.sonMenu a:hover,
.sonMenu a.active {
    color: #332175;
}

.sonMenu a.active::after {
    content: "";
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 4px;
    background: #332175;
}

.sonTitle {
    width: auto;
}
.sonTitle .name {
    font-family: "SamsungOne700";
}
.sonTitle .text {
    font-family: "SamsungOne700";
}

/* 新闻 */
.news {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}
.news-list {
    /*width: 100%;*/
    flex: 1;
    max-height: 827px;
    overflow-y: auto;
    scrollbar-width: none;
}
.news-list-ul {
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-link {
    /*width: calc(25% - 20px);*/
    padding: 24px;
    background: #fff;
    height: 100%;
    overflow: hidden;
}
/*.news-link:first-child{padding-top: 0px!important;}
.news-link:nth-of-type(odd){flex-direction: row-reverse;}*/
.news-link .time {
    margin-bottom: 20px;
    color: #888888;
}
.news-link-img {
    /*width: calc(100% - 0px);*/
    overflow: hidden;
    border-radius: 5px;
}
.news-link-img img {
    transition: all 0.6s ease;
}
.news-link-cont {
    width: calc(100% - 0px);
}
.news-link-cont .name {
    font-weight: 500;
    color: #2651a6;
}
.news-link-cont .text {
    height: auto;
    transition: all 0.4s ease;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    color: #888;
}
.news-link-cont .xin {
    margin: 8px 0 3px;
}
.news-link-cont .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.news-link-cont .box .libox {
    display: flex;
    align-items: center;
    gap: 2px;
}
.news-link-cont .box .libox .iconfont.icon-bofang {
    color: #2651a6;
}
.news-link-cont .box .libox span {
}

.news-link:hover {
}
.news-link:hover .news-link-img img {
    transform: scale(1.04);
}

/* 新闻详情 */
.newsxq {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}
.newsxq-title {
    width: 100%;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f1f1;
}
.newsxq-title .name {
    line-height: 1.2;
    font-family: "SamsungOne700";
}
.newsxq-title .tags {
    justify-content: center;
    line-height: 1.1;
    color: #888;
    margin-top: 28px;
}
.newsxq-title .tags p {
    margin-left: 24px;
}
.newsxq-title .tags p:first-child {
    margin-left: 0;
}
.newsxq-cont {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
    /*color: #888;*/
    padding: 40px 0;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto; /*text-align: justify;*/
}
.newsxq-cont img {
    /*max-width: 1000px;*/
    /*width: 100%;*/
}
.newsxq-cont p {
    line-height: inherit;
}
.newsxq-recom {
    width: 100%;
}
.newsxq-recom-head {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.newsxq-recom-head .name {
}
.newsxq-recom-head .link {
    display: flex;
    align-items: center;
    color: #888;
    text-transform: uppercase;
}
.newsxq-recom-head .link span {
    padding-right: 5px;
    transition: all 0.4s ease;
}
.newsxq-recom-head .link:hover span {
    color: #332175;
}
.newsxq-recom-head .link:hover i {
    color: #332175;
}

/* 技术服务 */
.tech {
    width: 100%;
    overflow: hidden;
}
.tech-support {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff, #f7f7f7);
}
.tech-support-list-ul {
}
.tech-support-link {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}
.tech-support-link:first-child {
    margin-top: 0px;
    padding-top: 0px;
}
.tech-support-link:nth-of-type(odd) {
    flex-direction: row-reverse;
}
.tech-support-link-img {
    width: calc(30% - 0px);
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.tech-support-link-img img {
    transition: all 0.6s ease;
}
.tech-support-link-cont {
    padding: 30px;
    width: calc(70% - 0px);
}
.tech-support-link-cont .name {
    height: auto;
    transition: all 0.4s ease;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    margin: 15px 0;
}
.tech-support-link-cont .text {
    height: auto;
    transition: all 0.4s ease;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    color: #888;
}
.tech-support-link-cont .time {
    color: #888;
}
.tech-support-link:hover {
}
.tech-support-link:hover .tech-support-link-cont {
    background: none;
}
.tech-support-link:hover .tech-support-link-img img {
    transform: scale(1.04);
}
.tech-support-link:hover .tech-support-link-cont .name {
    color: #332175;
}
.tech-download {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}
.tech-download-head {
}
.tech-download-list {
    width: 100%;
}
.tech-download-list-ul {
}
.tech-download-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 0px);
    position: relative;
    transition: all 0.6s ease;
    border-bottom: 1px solid #f1f1f1;
}
.tech-download-link:first-child {
    padding-top: 0px !important;
}
.tech-download-link .img {
}
.tech-download-link .img img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.6s ease;
    width: 100px;
    border-radius: 100%;
    height: 100px;
}
.tech-download-link .cont {
    width: calc(100% - 120px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tech-download-link .name {
    transition: all 0.4s ease;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.tech-download-link:hover {
}
.tech-download-link:hover .name {
    color: #332175;
}

/*技术详情*/
.tech-recom {
    width: 100%;
}
.tech-recom-head {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.tech-recom-head .name {
}
.tech-recom-head .link {
    display: flex;
    align-items: center;
    color: #888;
    text-transform: uppercase;
}
.tech-recom-head .link span {
    padding-right: 5px;
    transition: all 0.4s ease;
}
.tech-recom-head .link:hover span {
    color: #332175;
}
.tech-recom-head .link:hover i {
    color: #332175;
}
.tech-recom .tech-support-list .tech-support-list-ul {
    justify-content: space-between;
}
.tech-recom .tech-support-list .tech-support-link {
    width: calc(32% - 0px);
    flex-wrap: wrap;
    background: #f1f1f1;
    border: 0;
}
.tech-recom .tech-support-list .tech-support-link:first-child {
    margin-top: 0px;
    padding-top: 0px;
}
.tech-recom .tech-support-list .tech-support-link-cont {
    width: 100%;
}
.tech-recom .tech-support-list .tech-support-link .tech-support-link-cont .name {
    transition: all 0.4s ease;
}
.tech-recom .tech-support-list .tech-support-link .tech-support-link-cont .time {
    transition: all 0.4s ease;
}
.tech-recom .tech-support-list .tech-support-link-cont .indMore {
    background: none;
    width: auto;
    height: auto;
    color: #888888;
    justify-content: flex-start;
    transition: all 0.4s ease;
}
.tech-recom .tech-support-list .tech-support-link:hover {
    background: #332175;
}
.tech-recom .tech-support-list .tech-support-link:hover .tech-support-link-cont .name {
    color: #ffffff;
}
.tech-recom .tech-support-list .tech-support-link:hover .tech-support-link-cont .time {
    color: #ffffff;
}
.tech-recom .tech-support-list .tech-support-link:hover .tech-support-link-cont .indMore {
    color: #ffffff;
}

/* 技术服务-下载 */
.techxz {
    width: 100%;
    position: relative;
}
.techxz .tech-download {
    background: #fff;
}
.techxz-head {
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.techxz-head .name {
    padding-left: 28px;
    border-left: 3px solid #332175;
    color: #222;
    line-height: 1;
}
.techxz .tech-download:first-child .techxz-head {
    flex-direction: row-reverse;
}
.techxz-head-search {
    width: 416px;
    position: relative;
}
.techxz-head-search input {
    width: 100%;
    border-radius: 23px;
    height: 46px;
    background: #f7f7f7;
    padding: 0 58px 0 28px;
    color: #888;
    font-family: "SamsungOne700";
    font-size: 16px;
    border: 1px solid #f7f7f7;
    transition: border 0.4s ease;
}
.techxz-head-search input:focus {
    border: 1px solid #888;
}
.techxz-head-search button {
    position: absolute;
    width: 44px;
    height: 44px;
    right: 4px;
    top: 2px;
    cursor: pointer;
    z-index: 2;
    background: url("/template/cn/images/searchR.svg") no-repeat center/20px auto;
}

/* 联系我们 */
.reldt {
    width: 100%;
    overflow: hidden;
    background: #f8f8f8;
    position: relative;
}
.reldt .contain {
    flex-direction: row-reverse;
    position: relative;
}
.reldt-wrap {
    border-bottom: 0px solid #332175;
}
.reldt-list {
    width: 100%;
}
.reldt-list ul {
    flex-wrap: nowrap;
}
.reldt-list li {
    width: 100%;
    border-right: 1px solid #e7e7e7;
    padding: 0 20px;
}
.reldt-list li:first-child {
    padding: 0 20px 0 0;
}
.reldt-list li:last-child {
    border-right: 0px solid #e7e7e7;
}
.reldt-list li img {
    border: 1px solid #e7e7e7;
    max-height: 200px;
}
.reldt-list li .name {
    width: calc(100% - 25px);
    /*padding-left: 25px;*/
}
.reldt-map {
    width: 100%;
    height: 600px;
    position: relative;
    background: #fff; /*box-shadow: 0 0 16px 4px rgba(0, 0, 0, .05);*/
    border: 1px solid #f1f1f1;
    padding: 10px;
}
.reldt-map #map {
    width: 100%;
    height: 100%;
}
.reldt-map #map .amap-logo,
.reldt-map #map .amap-copyright {
    display: none !important;
}
.relxx {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
}
.relxx-list {
    width: 100%;
}
.relxx-list ul {
    margin: -60px 0 0 -36px;
}
.relxx-list li {
    width: calc(33.3333% - 36px);
    margin: 60px 0 0 36px;
    padding: 44px 40px;
    background: #fff;
    transition: all 0.6s ease;
}
.relxx-list li:hover {
    box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
}
.relxx-list li .name {
    color: #333;
    line-height: 1.1;
    transition: all 0.4s ease;
}
.relxx-list li .list {
    width: 100%;
    margin-top: 22px;
    color: #888;
    line-height: 1.1;
}
.relxx-list li .list p {
    line-height: inherit;
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.relxx-list li .list p:first-child {
    margin-top: 0;
}
.relxx-list li .list p img {
    width: 16px;
}
.relxx-list li .list p span,
.relxx-list li .list p a {
    display: block;
    width: calc(100% - 16px);
    padding-left: 12px;
    word-break: break-all;
}
.relxx-list li:hover .name {
    color: #332175;
}
.relxx-list li .list p a {
    transition: all 0.4s ease;
}
.relxx-list li .list p a:hover {
    color: #332175;
}
.accordion {
    justify-content: space-between;
}
.accordion li {
    width: calc(31% - 0px);
    background: url(/template/cn/image/contact1.jpg) center no-repeat;
    padding: 20px;
    margin-bottom: 20px;
    background-size: auto 100%;
    min-height: 210px;
    overflow: hidden;
}
.accordion a {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    height: 100%;
    transition: all 0.4s ease;
}
.accordion a p {
    width: 100%;
}
.accordion a.active {
    display: flex;
    justify-content: space-between;
    height: auto;
}
.accordion a.active p {
    width: auto;
}
.accordion .sub-menu {
    margin-top: 10px;
}
.tech-contact {
    width: 100%;
    overflow: hidden;
}
.tech-contact-from {
    max-width: 1000px;
}
.tech-contact-from li {
    width: 100%;
    justify-content: space-between;
}
.tech-contact-items {
    width: calc(50% - 8px);
    margin-bottom: 20px;
}
.tech-contact-items p {
    font-size: 16px;
    color: #888;
    height: 30px;
}
.tech-contact-items input,
.tech-contact-items textarea {
    display: block;
    width: 100%;
    border: 1px solid #e7e7e7;
    color: #888;
    padding: 0 12px;
    height: 50px;
    transition: border 0.4s ease;
}
.tech-contact-items input:focus,
.tech-contact-items textarea:focus {
    border: 1px solid #888;
}
.tech-contact-from li.textarea .tech-contact-items {
    width: 100%;
}
.tech-contact-from li.textarea .tech-contact-items textarea {
    padding: 12px;
    height: 114px;
}
.tech-contact-from li.code .tech-contact-items {
    justify-content: space-between;
}
.tech-contact-from li.code .tech-contact-items input {
    width: calc(100% - 130px);
}
.tech-contact-from li.code .tech-contact-items span {
    display: flex;
    transition: border 0.4s ease;
    align-items: center;
    justify-content: center;
    width: 116px;
    height: 50px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    cursor: pointer;
    padding: 4px;
}
.tech-contact-from li.code .tech-contact-items span img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.tech-contact-from li.code .tech-contact-items span:hover {
    border: 1px solid #888;
}
.tech-contact-from li button {
    width: 256px;
    color: #fff;
    cursor: pointer;
    height: 44px;
    border-radius: 22px;
    background: #332175;
    transition: all 0.4s ease;
}

.caselist {
    padding: 100px 0 50px;
    background: #f5f5f5;
}
.caselist .casebox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 16.5rem 0;
}
.caselist .casebox .case {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.caselist .casebox .case .img {
    width: 100%;
    height: 300px;
    background: #fff;
}
.caselist .casebox .case .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.caselist .casebox .case .title {
    text-align: center;
    padding: 35px 0;
    font-weight: 500;
    color: #333333;
}

.service {
    background: #f5f5f5;
    padding: 100px 0 0px;
}
.service .contain {
    margin: 0 16.5rem 0;
}
.service .contain .servicetitle {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 50px;
}
.service .contain .servicetitle .yuan {
    width: 10px;
    height: 10px;
    background: #332175;
    border-radius: 50%;
}
.service .contain .servicetitle .title {
}
.service .contain .servicelist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-bottom: 40px;
}
.service .contain .servicelist .service-li {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: linear-gradient(90deg, #F5F5F5 0%, #FFFFFF 19.12%, #FFFFFF 50.06%, #FFFFFF 81.78%, #F5F5F5 100%); */
}
.service .contain .servicelist .service-li:hover {
    background: linear-gradient(90deg, #f5f5f5 0%, #ffffff 19.12%, #ffffff 50.06%, #ffffff 81.78%, #f5f5f5 100%);
}
.service .contain .servicelist .service-li .image {
    width: 110px;
    height: 110px;
    background: #332175;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.service .contain .servicelist .service-li .image img {
}
.service .contain .servicelist .service-li .title {
    margin: 74px 0 12px;
    font-weight: 500;
    color: #333333;
}
.service .contain .servicelist .service-li .desc {
    margin-bottom: 50px;
    font-weight: 400;
    color: #666666;
    width: 305px;
    text-align: center;
}

.newsul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.newsul a.news-li {
    display: flex;
    gap: 40px;
}
.newsul a.news-li:hover .lir .title.font20,
.newsul a.news-li:hover .lir .more .text {
    color: #332175;
}
.newsul a.news-li .newsimg {
    min-width: 350px;
}
.newsul a.news-li .newsimg img {
}
.newsul a.news-li .lir {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.newsul a.news-li .lir .title.font20 {
    font-weight: 400;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.newsul a.news-li .lir .time.font14 {
    font-weight: 400;
    color: #999999;
}
.newsul a.news-li .lir .description {
    font-weight: 400;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.newsul a.news-li .lir .more {
    font-weight: 400;
    color: #666666;
}
.newsul a.news-li .lir .more .text {
}

/* 产品中心 */
.proban {
    width: 100%;
    align-items: center;
    position: relative;
    background: #f8f8f8;
}
.proban .contain {
    justify-content: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 67px;
}
.proban-img {
    width: 960px;
}
.proban-img img {
    width: 100%;
    object-fit: cover;
}
.proban-cont {
    width: calc(100% - 960px);
    padding: 0 160px;
}
.proban-cont .name {
    color: #222;
    line-height: 1.1;
}
.proban-cont .text {
    color: #888;
    line-height: 30px;
    margin-top: 24px;
}
.proban .sonBan-hint {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 0;
    width: auto;
}
.proban .sonBan-hint .contain {
    width: auto;
    margin: 0;
    color: #888;
}
.proban .sonBan-hint a::after {
    background-image: url("/template/cn/images/arrRG.svg");
}
.pro {
    width: 100%;
    overflow: hidden;
}
.pro-list {
    width: 100%;
}
.pro-list ul {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    margin-top: -40px;
}
.pro-list li {
    width: calc(33.33% - 20px);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}
.pro-list li a {
    display: block;
    transition: all 0.4s ease;
}
.pro-list li a .img {
    border: 1px solid #f1f1f1;
    overflow: hidden;
}
.pro-list li a .img .s {
    display: block;
    opacity: 1;
}
.pro-list li a .img .h {
    display: none;
    opacity: 0;
}
.pro-list li a .cont {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pro-list li a .cont .name {
    font-family: "SamsungOne600";
}
.pro-list li a .cont .text {
    color: #888;
}
.pro-list li a .cont .i {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pro-list li a .cont span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 2px;
}
.pro-list li a .cont .i1 {
    background: #332175;
}
.pro-list li a .cont .i2 {
    background: #f0f0f0;
}
.pro-list li a:hover .img .s {
    display: none;
    opacity: 0;
}
.pro-list li a:hover .img .h {
    display: block;
    opacity: 1;
}
.pro-list li a:hover .i1 {
    background: #f0f0f0;
}
.pro-list li a:hover .i2 {
    background: #332175;
}
.pro-meet {
    width: 100%;
    overflow: hidden;
}
.pro-meet-wrap {
    width: 100%;
    text-align: center;
    padding: 0 4%;
}
.pro-meet-wrap .sonTitle {
    width: 100%;
}
.pro-meet-wrap-text {
    max-width: 840px;
    margin: 30px auto 0;
    line-height: 30px;
    color: #888888;
}
.pro-meet-list {
    width: 100%;
    background: #332175;
}
.pro-meet-ul {
    margin-top: -40px;
    justify-content: center;
}
.pro-meet-items {
    width: 33.3333%;
    padding: 0 20px;
    margin-top: 40px;
    color: #fff;
    text-align: center;
}
.pro-meet-ul.items4 .pro-meet-items {
    width: 25%;
}
.pro-meet-items .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    transition: all 0.4s ease;
}
.pro-meet-items .icon img {
    max-height: 100%;
}
.pro-meet-items .name {
    line-height: 1.1;
    font-family: "SamsungOne700";
    margin: 18px 0 6px;
}
.pro-meet-items .text {
    line-height: 24px;
}
.pro-meet-items:hover .icon {
    transform: translateY(-6px);
}
.pro-scene {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #ebebeb;
}
.pro-scene .sonTitle {
    width: 100%;
    text-align: center;
}
.pro-scene-list {
    width: 100%;
}
.pro-scene-items {
    width: 100%;
    align-items: center;
    background: #fff;
}
.pro-scene-items:nth-child(2n) {
    flex-direction: row-reverse;
}
.pro-scene-img {
    width: 50%;
}
.pro-scene-img img {
    width: 100%;
    object-fit: cover;
    min-height: 180px;
}
.pro-scene-cont {
    width: 50%;
    padding: 40px 160px;
}
.pro-scene-cont .name {
    line-height: 1.1;
}
.pro-scene-cont .text {
    color: #888888;
    line-height: 27px;
    margin-top: 10px;
}
.pro-parameter {
    width: 100%;
    overflow: hidden;
    background: #f8f8f8;
}
.pro-parameter .sonTitle {
    width: 100%;
}
.pro-parameter-wrap {
    width: 100%;
    justify-content: space-between;
}
.pro-parameter-info {
    width: calc(50% - 50px);
}
.pro-parameter-info .sonTitle .name {
    font-family: "SamsungOne700";
}
.pro-parameter-info .sonTitle .text {
    font-family: "SamsungOne700";
}
.pro-parameter-info-menu {
    width: 100%;
    justify-content: space-between;
}
.pro-parameter-info-menu a {
    display: flex;
    align-items: center;
    width: calc(20% - 10px);
    justify-content: space-between;
    border: 1px solid #f1f1f1;
    transition: all 0.4s ease;
    margin-top: 10px;
    flex-wrap: nowrap;
}
.pro-parameter-info-menu a.active,
.pro-parameter-info-menu a:hover {
    color: #fff;
    border: 1px solid #332175;
    background: #332175;
}
.pro-parameter-info-data {
    width: 100%;
}
.pro-parameter-info-data > div {
    /*display: none;*/
    width: 100%;
}
.pro-parameter-info-data > div.active {
    display: block;
}
.pro-parameter-info-data > div.sonTitle {
    display: block;
}
.pro-parameter-info-items ul {
    margin: -28px 0 0 -28px;
}
.pro-parameter-info-items li {
    width: calc(100% - 28px);
    margin: 28px 0 0 28px;
}
.pro-parameter-info-items li .name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pro-parameter-info-items li .name i {
    margin-right: 5px;
    color: #332175;
    width: 24px;
}
.pro-parameter-info-items li .text {
    color: #888;
    margin-left: 29px;
}
.pro-parameter-info-download {
    display: flex;
    height: 46px;
    font-family: "SamsungOne700";
    justify-content: center;
    width: 256px;
    align-items: center;
    border: 1px solid #332175;
    color: #332175;
    transition: all 0.4s ease;
}
.pro-parameter-info-download span {
    padding-right: 26px;
    background: url("/template/cn/images/proDown.png") no-repeat right center;
    transition: background 0.4s ease;
}
.pro-parameter-info-download:hover {
    background: #332175;
    color: #fff;
}
.pro-parameter-info-download:hover span {
    background-image: url("/template/cn/images/proDownH.png");
}
.pro-parameter-loop {
    width: calc(50% - 50px);
    position: relative;
}
.pro-parameter-loop .link {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}
.pro-parameter-loop .link img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.6s ease;
}
.pro-parameter-loop .prev,
.pro-parameter-loop .next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    background: #f1f1f1;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pro-parameter-loop .prev {
    left: 20px;
}
.pro-parameter-loop .next {
    right: 20px; /*transform: rotate(180deg);*/
}
.pro-parameter-loop .prev:hover,
.pro-parameter-loop .next:hover {
    background-color: #332175;
    color: #ffffff;
}

/* 导航栏样式 */
.prodetail-box {
    margin-bottom: 20px;
}
.prodetail-ul {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #332175;
    overflow-x: auto; /* 小屏幕横向滚动 */
    scrollbar-width: none; /* 隐藏滚动条 */
    padding-top: 5px;
}
.prodetail-ul::-webkit-scrollbar {
    display: none;
}
.prodetail-li {
    padding: 14px 24px;
    margin-right: 4px;
    background-color: #f5f7fa;
    border: 1px solid #e1e4e8;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap; /* 禁止文字换行 */
}
/* 选中状态 */
.prodetail-li.active {
    background-color: #fff;
    border-color: #332175 #332175 transparent;
    color: #332175;
    font-weight: 600;
    position: relative;
    top: 2px; /* 贴合底部边框 */
}
/* hover效果 */
.prodetail-li:hover:not(.active) {
    background-color: #eef2f7;
    color: #332175;
    border-color: #d1d4d8;
}

/* 内容区域样式 */
.prodetail-body {
    display: none;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 0 0 6px 6px;
    line-height: 1.8;
}
/* 默认显示第一个内容 */
.prodetail-body:first-of-type {
    display: block;
}
.prodetail-body h3 {
    font-size: 20px;
    color: #332175;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e1e4e8;
}
.prodetail-body .content {
    font-size: 14px;
    color: #666;
}

.prodetail-body .content-box {
    display: flex;
}
/* 其他内容区域占位样式（可根据实际内容调整） */
.prodetail-body:not(:first-of-type) {
    font-size: 14px;
    color: #666;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .prodetail-li {
        padding: 12px 18px;
        font-size: 14px;
    }
    .prodetail-body {
        padding: 20px;
    }
    .prodetail-body h3 {
        font-size: 18px;
    }
}
/*.prodetail-body .content td.bk{*/
/*    background-color:#ECF0F9;*/
/*    text-align:left;*/
/*}*/
/*.resulttbl th{*/
/*    background-color: #332175;*/
/*    color: #FFF;*/
/*}*/
/*.prodetail-body .content td:nth-child(1){*/
/*    background-color:#ECF0F9;*/
/*    text-align:left;*/
/*}*/
/* 基础重置（避免默认样式干扰） */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 产品详情外层容器 */
.pro_details {
    width: 100%;
    max-width: 1200px; /* 适配页面最大宽度，可调整 */
    margin: 0 auto;
    display: flex;
    align-items: flex-start; /* 顶部对齐 */
    gap: 30px; /* 左右模块间距 */
    background-color: #fff;
}

/* 左侧图片区域 */
.pro_left {
    /*flex: 1; !* 不拉伸，保持图片原始宽度比例 *!*/
}
.pro_left .result_img {
    width: 320px; /* 图片宽度，可根据实际需求调整 */
    max-width: 100%;
    height: auto; /* 保持宽高比 */
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

/* 右侧内容区域 */
.pro_right {
    flex: 1; /* 占满剩余宽度 */
}

/* 产品特点文本列表 */
.pro_right ul {
    font-size: 14px;
    color: #333;
    line-height: 2; /* 行高优化，提升可读性 */
    margin-bottom: 25px;
    padding-left: 10px;
}
.pro_right ul li {
    position: relative;
    padding-left: 18px; /* 给・符号留空间 */
    margin-bottom: 8px;
}
/* 自定义・符号样式（更美观） */
.pro_right ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #332175; /* 主色调，与按钮呼应 */
    font-size: 16px;
    line-height: 1.8;
}
/* 去掉原HTML中的br换行影响，用li间距控制 */
.pro_right ul br {
    display: none;
}

/* 功能按钮列表 */
.pro_service_bt {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 按钮间距 */
}
.pro_service_bt li a {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

/* 按钮样式差异化设计 */
.bt_3s {
    background-color: #332175;
    color: #fff;
    border: 1px solid #332175;
    padding: 10px;
}
.bt_3s:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-2px); /* 轻微上浮效果 */
}

.bt_faq {
    background-color: #fff;
    color: #332175;
    border: 1px solid #332175;
    padding: 10px;
}
.bt_faq:hover {
    background-color: #f5f9ff;
    transform: translateY(-2px);
}

.cat_pdf {
    position: relative;
}
.cat_pdf a {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #e1e4e8;
    padding-left: 40px; /* 给PDF图标留空间 */
}
.cat_pdf a:hover {
    background-color: #f0f2f5;
    color: #332175;
    border-color: #d1d4d8;
    transform: translateY(-2px);
}

/* 响应式适配（手机/平板） */
@media (max-width: 768px) {
    .pro_details {
        flex-direction: column; /* 左右布局→上下布局 */
        gap: 20px;
    }
    .pro_left {
        margin: 0 auto; /* 图片居中 */
    }
    .pro_left .result_img {
        width: 140px; /* 小屏幕图片缩小 */
    }
    .pro_details_text {
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 20px;
    }
    .pro_service_bt a {
        width: 100%; /* 按钮占满宽度，更易点击 */
        padding: 12px 0;
    }
    .cat_pdf a {
        padding-left: 40px;
    }
}

/* Tabs 外层容器 */
.web_tabs {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Tabs 导航栏 */
.w_tabs {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e1e4e8;
    overflow-x: auto; /* 小屏幕横向滚动 */
    scrollbar-width: none;
}
.w_tabs::-webkit-scrollbar {
    display: none;
}
.w_tab {
    flex: 0 0 auto;
}
.w_tab a {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
    border-bottom: 3px solid transparent;
}
/* Tabs 选中状态 */
.w_tab.active a {
    color: #332175;
    border-bottom-color: #332175;
    background-color: #fff;
}
/* Tabs hover 效果 */
.w_tab:not(.active):hover a {
    color: #332175;
    background-color: #f0f2f5;
}

/* 折叠箭头区域 */
.accordion-wrapper {
    position: relative;
    border-bottom: 1px solid #e1e4e8;
}
.ac_arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
/* 箭头样式（纯CSS实现） */
.ac_arrow::after {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
/* 展开状态箭头旋转 */
.ac_arrow.open::after {
    transform: rotate(225deg);
    border-color: #332175;
}
.ac_arrow:hover {
    color: #332175;
}

/* 内容区域 */
.ac_cont {
    display: block; /* 初始展开 */
}
/* Tabs 内容面板 */
.w_panels {
    width: 100%;
}
.w_panel {
    display: none;
    padding: 24px;
}
.w_panel.active {
    display: block;
}
/* CAD 项样式 */
.cad_item {
    padding: 10px 0;
}
.cad_item h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}
.tx_link {
    display: inline-block;
    color: #332175;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #332175;
    border-radius: 4px;
}
.tx_link:hover {
    background-color: #332175;
    color: #fff;
}

/* 表格样式 */
.resulttbl {
    margin-top: 15px;
    font-size: 14px;
}
.resulttbl th,
.resulttbl td {
    padding: 12px 16px;
    border: 1px solid #e1e4e8;
    text-align: left;
}
.resulttbl th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
}
.resulttbl td {
    color: #666;
}
.resulttbl tr:hover td {
    background-color: #f5f9ff;
}
/* 下载按钮样式 */
.downloadBt {
    display: inline-block;
    color: #332175;
    font-size: 14px;
    padding: 6px 12px;
    border: 1px solid #332175;
    border-radius: 4px;
}
.downloadBt:hover {
    background-color: #332175;
    color: #fff;
}
/* 表格最后一列样式 */
.resulttbl .last {
    text-align: center;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .w_tab a {
        padding: 12px 20px;
        font-size: 14px;
    }
    .ac_arrow {
        padding: 14px 16px;
        font-size: 14px;
    }
    .ac_cont {
        padding: 16px;
    }
    .cad_item h5 {
        font-size: 15px;
    }
    .resulttbl th,
    .resulttbl td {
        padding: 10px 8px;
        font-size: 13px;
    }
    .tx_link,
    .downloadBt {
        padding: 6px 12px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}

/* 小屏幕表格适配（避免横向滚动） */
@media (max-width: 480px) {
    .resulttbl {
        display: block;
        overflow-x: auto;
    }
}
/* 链接容器样式 */
.cat_link_gu {
    display: flex;
    flex-wrap: wrap; /* 小屏幕自动换行 */
    gap: 12px; /* 链接间距 */
    margin: 20px 0;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
}
.cat_link_gu a {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 14px;
    color: #332175;
    border: 1px solid #332175;
    border-radius: 4px;
    white-space: nowrap; /* 禁止文字换行 */
}
/* 链接 hover 效果 */
.cat_link_gu a:hover {
    background-color: #332175;
    color: #fff;
    transform: translateY(-2px); /* 轻微上浮 */
}

/* 规格表格样式 */
.web_tb table{
    width: 100%;
    margin: 10px 0;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden; /* 让边框圆角生效 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
/* 表头样式 */
.web_tb table th {
    padding: 14px 12px;
    background-color: #332175;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e1e4e8;
    vertical-align: middle; /* 垂直居中 */
}
/* 表体单元格样式 */
.web_tb table td {
    padding: 14px 12px;
    color: #333;
    text-align: center;
    border: 1px solid #e1e4e8;
    vertical-align: middle;
    background-color: #fff;
}
/* 交替行背景色（gr类） */
.web_tb table tr.gr td {
    background-color: #f8f9fa;
}
/* 行 hover 效果 */
.web_tb table tr:hover td {
    background-color: #f5f9ff;
    color: #332175;
}
/* 处理表头 nowrap 属性，小屏幕自动调整 */
.web_tb table th[nowrap] {
    white-space: nowrap;
}

/* 响应式适配（手机/平板） */
@media (max-width: 768px) {
    /* 链接容器：小屏幕换行，链接占比调整 */
    .cat_link_gu {
        gap: 10px;
        padding: 12px;
    }
    .cat_link_gu a {
        padding: 8px 14px;
        font-size: 13px;
        flex: 1 1 auto; /* 自动填充宽度，每行显示2-3个 */
        justify-content: center;
    }

    /* 表格：小屏幕横向滚动，避免内容挤压 */
    .web_tb table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* 优化移动端滚动体验 */
    }
    /* 缩小单元格内边距 */
    .web_tb table th,
    .web_tb table td {
        padding: 12px 8px;
        font-size: 13px;
    }
}

/* 超小屏幕适配（≤480px） */
@media (max-width: 480px) {
    .cat_link_gu a {
        flex: 1 1 100%; /* 每行显示1个链接，更易点击 */
    }
}


.brand {
    background: #f5f5f5;
    overflow: hidden;
}
.brand .about-box {
    margin: 100px 16.5rem 50px;
    display: flex;
    gap: 112px;
}
.brand .about-box .left-about {
    min-width: 488px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.brand .about-box .left-about .topbox {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.brand .about-box .left-about .topbox .entitle {
    font-weight: 600;
    color: #332175;
}
.brand .about-box .left-about .topbox .title {
    font-weight: 600;
    color: #333333;
}
.brand .about-box .left-about .timerbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
}
.brand .about-box .left-about .timerbox .num-li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.brand .about-box .left-about .timerbox .num-li .num-head {
    font-weight: 600;
    color: #332175;
    display: flex;
    align-items: center;
}
.brand .about-box .left-about .timerbox .num-li .num-head .num.timer {
}
.brand .about-box .left-about .timerbox .num-li .num-head .dwei {
}
.brand .about-box .left-about .timerbox .num-li .num-foot {
}
.brand .about-box .right-about {
}
.brand .about-box .right-about .desc {
    padding-top: 34px;
}
.brand .about-box .right-about .title {
    font-weight: 500;
    color: #332175;
    margin: 24px 0;
}
.brand .about-box .right-about .body {
}
.brand .about-box .right-about .body p {
}
.brand .imagebox {
    margin: 0px 16.5rem 61px;
}
.brand .imagebox .img {
}
.brand .imagebox .img img {
}

/* 隐私政策 */
.privacy {
    width: 100%;
}
.privacy .name {
    line-height: 1.1;
    font-family: "SamsungOne700";
    color: #111;
    text-align: center;
    text-transform: uppercase;
}
.privacy .text {
    color: #888888;
    line-height: 1.6;
}
.privacy .text h6 {
    color: #332175;
    font-size: 20px;
    font-family: "SamsungOne700";
}

.pro-parameter {
    overflow: visible;
}
.pro-parameter-info .customSelect {
    display: block;
    width: 256px;
    position: relative;
    user-select: none;
}
.pro-parameter-info .customSelect-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
    position: relative;
    border: 1px solid #332175;
    padding: 0 14px;
    color: #332175;
    cursor: pointer;
}
.pro-parameter-info .customSelect-name:hover {
    color: #fff;
    background: #332175;
}
.pro-parameter-info .customSelect-name::after {
    content: "";
    position: absolute;
    width: 20px;
    top: 50%;
    right: 10px;
    height: 20px;
    background: url("/template/cn/images/arrRWH.svg") no-repeat center/20px auto;
    transform: rotate(90deg);
    margin-top: -11px;
    display: none;
}
.pro-parameter-info .customSelect-drop {
    display: none;
    position: absolute;
    z-index: 10;
    width: 100%;
    top: 46px;
    max-height: 200px;
    border: 1px solid #332175;
    border-top: none;
    overflow-x: hidden;
    overflow-y: auto;
    left: 0;
    background: #fff;
    cursor: pointer;
}
.pro-parameter-info .customSelect-drop > div {
    width: 100%;
    position: relative;
}
.pro-parameter-info .customSelect-drop > div::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ebebeb;
}
.pro-parameter-info .customSelect-drop > div:last-child::after {
    display: none;
}
.pro-parameter-info .customSelect-drop > div:hover a,
.pro-parameter-info .customSelect-drop > div.active a {
    background: #332175;
    color: #ffffff;
}
.pro-parameter-info .customSelect-drop::-webkit-scrollbar {
    width: 2px;
    height: 4px;
}
.pro-parameter-info .customSelect-drop::-webkit-scrollbar-thumb {
    background: #7a8896;
}
.pro-parameter-info .customSelect-drop::-webkit-scrollbar-track {
    background: #fff;
}
.pro-parameter-info .customSelect-name.noRadius {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.pro-parameter-info .customSelect-name.noRadius::after {
    transform: rotate(-90deg);
}
.pro-parameter-info .customSelect-drop > div a {
    padding: 0 14px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    color: #332175;
    transition: all 0.4s ease;
    padding-right: 36px;
    background: url("/template/cn/images/proDown.png") no-repeat right 11px center;
}
@media all and (max-width: 1599px) {
    .pro-parameter-info .customSelect {
        margin-top: 34px;
    }
}
@media all and (max-width: 1599px) {
    .pro-parameter-info .customSelect {
        margin-top: 20px;
        width: 250px;
    }
    .pro-parameter-info .customSelect-name {
        height: 40px;
    }
    .pro-parameter-info .customSelect-drop {
        top: 40px;
    }
    .pro-parameter-info .customSelect-drop > div a {
        height: 35px;
    }
    .proban .contain {
        gap: 30px;
    }
}

/* -------------------------PC端--------------------------- */
@media all and (max-width: 1700px) {
    /* 1600 × (900) */
    .news-head-cont {
        padding-left: 76px;
    }
    .news-head-cont::after {
        width: calc(100% - 76px);
    }
    .case-app {
        height: 680px;
    }
    .brand-about-intr-wrap {
    }
    .case-application-info {
        margin-top: 120px;
    }
}

@media all and (max-width: 1599px) {
    /* 1440 × (700)  */
    .sonTitle .text {
    }
    .sonMenu-blank {
        height: 70px;
    }
    .news-head-img {
        width: 680px;
    }
    .news-head-cont {
        width: calc(100% - 680px);
        padding-left: 60px;
    }
    .news-head-cont::after {
        width: calc(100% - 60px);
    }
    .news-head-cont .head {
        line-height: 36px;
        max-height: 108px;
    }
    .reldt-map {
        height: 500px;
    }
    .relxx-list ul {
        margin: -40px 0 0 -30px;
    }
    .relxx-list li {
        width: calc(33.3333% - 30px);
        margin: 40px 0 0 30px;
        padding: 32px 30px;
    }
    .case-app {
        height: 600px;
    }
    .case-app-cont {
        max-width: 520px;
    }
    .case-app-img {
        height: 80%;
    }
    .case-application-core-loop {
        width: 680px;
        padding: 0 70px;
    }
    .case-application-core-wrap {
        width: calc(100% - 680px);
        padding: 60px 80px 0 0;
    }
    .case-cases-li {
        margin: -44px 0 0 -36px;
    }
    .case-cases-link {
        width: calc(33.3333% - 36px);
        margin: 44px 0 0 36px;
    }
    .case-application-scene-loop .cont {
        padding: 0 50px;
        bottom: 32px;
    }
    .pro-scene-cont {
        padding: 30px 100px;
    }
    .brand-about-intr-img {
        width: 500px;
    }
    .brand-about-intr-wrap {
    }
    .brand-about-intr-cont {
        line-height: 28px;
    }
    .brand-social-head-link {
        width: 300px;
    }
    .brand-qualification-head-link {
        width: 300px;
    }
    .case-cases-ul .swiper-wrapper {
        padding-bottom: 68px;
    }
    .case-application-info {
        margin-top: 100px;
    }
    .case-application-info-cont {
        padding-right: 60px;
    }
    .case-application-info-cont .desc {
        margin-top: 24px;
        line-height: 30px;
    }
    .case-app.noheight .case-app-cont {
        padding: 0 40px;
    }
    .indxw-head-hint-li {
        margin-top: 16px;
    }
    .indxw-head-hint {
        margin-bottom: 50px;
    }
}

@media all and (max-width: 1439px) {
    /* 1360 */
}

@media all and (max-width: 1359px) {
    /* 1280 */
}

@media all and (max-width: 1279px) {
    /* 1152 × (700) */
    .sonMenu-blank {
        height: 60px;
    }
    .news-head-img {
        width: 540px;
    }
    .news-head-cont {
        width: calc(100% - 540px);
        padding-left: 40px;
    }
    .news-head-cont::after {
        width: calc(100% - 40px);
    }
    .news-head-cont .head {
        line-height: 34px;
        max-height: 68px;
        -webkit-line-clamp: 2;
    }
    .news-head-cont .text {
        line-height: 28px;
        max-height: 84px;
        margin: 30px 0 58px;
    }
    .newsxq-cont {
        line-height: 28px;
        padding: 36px 0;
    }
    .newsxq-title .tags p {
        margin-left: 20px;
    }
    .tech-service-list li {
        width: calc(33.3333% - 1px);
    }
    .reldt-map {
        height: 400px;
    }
    .relxx-list li {
        width: calc(50% - 30px);
        margin: 40px 0 0 30px;
        padding: 32px 30px;
    }
    .case-features-list ul {
        margin-top: -44px;
    }
    .case-features-list li {
        margin-top: 44px;
    }
    .case-app {
        height: 490px;
    }
    .case-app-img {
        right: 6%;
    }
    .case-application-scene-loop .cont .text {
        margin-top: 14px;
    }
    .case-application-scene-loop .cont {
        padding: 0 30px;
        bottom: 24px;
    }
    .case-application-core-loop .link {
        height: 420px;
    }
    .case-application-core-loop {
        width: 560px;
        padding: 0 64px;
    }
    .case-application-core-wrap {
        width: calc(100% - 560px);
        padding: 0 50px 0 0;
    }
    .case-application-core-wrap .cont .text {
        line-height: 28px;
        height: 56px;
    }
    .case-application-core-wrap .cont .link {
        margin-top: 100px;
    }
    .case-cases-li {
        margin: -30px 0 0 -28px;
    }
    .case-cases-link {
        width: calc(33.3333% - 28px);
        margin: 30px 0 0 28px;
    }
    .case-cases-link .name {
        margin-top: 20px;
    }
    .case-app-cont {
        max-width: 450px;
    }
    .pro-scene-cont {
        padding: 30px 60px;
    }
    .pro-parameter-info-items ul {
        margin: -20px 0 0 -20px;
    }
    .pro-parameter-info-items li {
        width: calc(100% - 20px);
        margin: 20px 0 0 20px;
    }
    .brand-about-intr-img {
        width: 100%;
    }
    .brand-about-intr-wrap {
    }
    .brand-phylogeny-loop-cont .name {
        max-width: 540px;
    }
    .brand-phylogeny-loop-cont .hint {
        max-width: 540px;
    }
    .brand-phylogeny-menu li {
        margin-top: 30px;
    }
    .brand-social-head-link {
        width: 200px;
    }
    .brand-qualification-head-link {
        width: 200px;
    }
    .brand-development-cont .text {
        line-height: 24px;
        margin-top: 20px;
    }
    .case-application-info {
        margin-top: 80px;
    }
    .case-application-info-cont .desc {
        margin-top: 18px;
        line-height: 26px;
    }
    .case-application-info-cont {
        padding-right: 40px;
    }
    .case-app.noheight .case-app-cont {
        padding: 0 30px;
        width: 60%;
    }
    .indxw-head-hint {
        margin-top: 16px;
    }
    .indxw-head-hint-li {
        margin-top: 8px;
    }
    .indxw-head-hint-li .name {
        margin-bottom: 0;
    }
    .indxw-head-hint {
        margin-bottom: 40px;
    }
}

@media all and (max-width: 1151px) {
    /* 1024 */
}

/* ------------------------手机端-------------------------- */
@media all and (max-width: 1000px) {
    /* 平板设备 720 适配 */
    .brand-about-num {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .brand-about-num-line {
        min-height: 100px;
        width: 3px;
        margin-bottom: 20px;
    }
    .brand-about-num-items {
        width: calc(50% - 3px);
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .brand-about-num-line:nth-last-of-type(2) {
        margin-bottom: 0px;
    }
    .brand-about-num-items:last-child {
        margin-bottom: 0px;
    }
    .news-head-img {
        width: 100%;
    }
    .news-head-cont {
        width: 100%;
        padding: 32px 0;
    }
    .news-head-cont::after {
        width: 100%;
    }
    .news-head-cont .text {
        line-height: 26px;
        max-height: 78px;
        margin: 24px 0 32px;
    }
    .newsxq-title .tags {
        margin-top: 20px;
    }
    .tech-recom .tech-support-list .tech-support-link-cont .name {
        font-size: 20px;
    }
    .techxz-head-search {
        width: 100%;
        margin-bottom: 40px;
    }
    .techxz-head .name {
        width: 100%;
    }
    .reldt-map {
        height: 300px;
    }
    .relxx-list ul {
        margin: -28px 0 0;
    }
    .relxx-list li {
        width: 100%;
        margin: 28px 0 0;
        padding: 30px 28px;
    }
    .case-features-list ul {
        margin-top: -32px;
    }
    .case-features-list li {
        margin-top: 32px;
    }
    .case-app {
        height: auto;
        padding-top: 80px;
    }
    .case-app-cont {
        max-width: 100%;
    }
    .case-app-img {
        position: static;
        margin-top: 40px;
        text-align: center;
    }
    .case-app-img img {
        height: auto;
        max-width: 60%;
    }
    .case-application-core-loop {
        width: 100%;
    }
    .case-application-core-wrap {
        width: 100%;
        padding: 0;
        margin-top: 40px;
    }
    .case-application-core-wrap .cont .link {
        margin-top: 40px;
    }
    .case-cases-link {
        width: calc(50% - 28px);
    }
    .pro-list ul {
        margin-top: -30px;
    }
    .pro-list li {
        width: calc(50% - 10px);
        margin-top: 30px;
    }
    .pro-meet-ul {
        margin-top: -30px;
    }
    .pro-meet-items {
        margin-top: 30px;
    }
    .pro-scene-img {
        width: 100%;
    }
    .pro-scene-cont {
        width: 100%;
        padding: 28px 0;
    }
    .pro-scene-items:last-child .pro-scene-cont {
        padding-bottom: 0;
    }
    .pro-parameter-loop {
        width: 100%;
    }
    .pro-parameter-info {
        width: 100%;
        padding: 50px 0 0;
    }
    .brand-about-intr-wrap {
    }
    .case-application-info-img {
        width: 100%;
    }
    .case-application-info-cont {
        width: 100%;
        margin-top: 40px;
        padding-right: 0;
    }
    .case-app.noheight .case-app-cont {
        padding: 0 30px;
        width: 100%;
        height: 70%;
    }
    .accordion li {
        width: calc(48% - 0px);
    }
    .tech-download-link .cont {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 150px);
    }
    .tech-download-link .cont .indMore {
        margin-top: 10px;
    }
    .news-link {
        width: calc(50% - 20px);
    }
}
@media all and (max-width: 640px) {
    /* 移动终端以上 360 适配 */
    .sonTitle .text {
    }
    .sonBan-cont .text {
        font-size: 14px;
        margin-top: 10px;
    }
    .sonBan-hint a {
    }
    .sonMenu {
        overflow-x: auto;
    }
    .sonMenu::after {
        display: none;
    }
    .sonMenu-scroll {
        display: block;
        overflow: hidden;
        height: 60px;
        min-width: 100%;
    }
    .sonMenu a {
        float: left;
        padding: 0px 20px;
    }
    .sonMenu-blank {
        height: 48px;
    }
    .news-head-cont {
        padding: 24px 0;
    }
    .news-head-cont .head {
        line-height: 24px;
        max-height: 48px;
    }
    .news-head-cont .text {
        line-height: 22px;
        max-height: 66px;
        margin: 14px 0 16px;
    }
    .newsxq-title .tags p {
        margin-left: 14px;
    }
    .newsxq-title .tags {
        margin-top: 16px;
    }
    .newsxq-title {
        padding-bottom: 12px;
    }
    .newsxq-cont {
        line-height: 26px;
        padding: 24px 0;
    }
    .tech-support-link {
        flex-wrap: wrap;
    }
    .tech-support-link-img {
        width: calc(100% - 0px);
    }
    .tech-support-link-cont {
        padding: 20px;
        width: calc(100% - 0px);
    }
    .tech-recom .tech-support-link {
        width: 100% !important;
        margin-top: 20px;
    }
    .tech-service-list li {
        width: calc(50% - 1px);
    }
    .tech-service-list li .name {
        bottom: 24px;
    }
    .tech-service .sonTitle .text {
        font-size: 19px;
    }
    .tech-contact-from li {
    }
    .tech-contact-items {
        width: 100%;
    }
    .tech-contact-items:first-child {
    }
    .tech-contact-items p {
        height: 26px;
    }
    .tech-contact-items input,
    .tech-contact-items textarea {
        height: 40px;
    }
    .tech-contact-from li.code .tech-contact-items span {
        height: 40px;
        width: 94px;
    }
    .tech-contact-from li button {
        width: 100%;
    }
    .tech-contact-from li.code .tech-contact-items input {
        width: calc(100% - 104px);
    }
    .techxz-head-search {
        margin-bottom: 28px;
    }
    .techxz-head-search input {
        border-radius: 21px;
        height: 42px;
        padding: 0 50px 0 20px;
    }
    .techxz-head-search button {
        width: 40px;
        height: 40px;
    }
    .techxz-head .name {
        padding-left: 16px;
    }
    .reldt-map {
        height: 280px;
    }
    .reldt-wrap {
        position: relative;
    }
    .relxx-list ul {
        margin: -12px 0 0;
    }
    .relxx-list li {
        margin: 12px 0 0;
        padding: 20px 16px;
    }
    .reldt-list ul {
        flex-wrap: wrap;
    }
    .reldt-list li {
        padding: 20px 0;
        border-right: 0px solid #e7e7e7;
        border-bottom: 1px solid #e7e7e7;
    }
    .reldt-list li:first-child {
        padding: 0 0 20px 0;
    }
    .reldt-list li:last-child {
        border-bottom: 0px solid #e7e7e7;
        padding: 20px 0 0 0;
    }
    .relxx .sonTitle .text {
        font-size: 19px;
    }
    .relxx-list li .list p {
        margin-top: 8px;
    }
    .relxx-list li .list {
        margin-top: 16px;
    }
    .relxx-list li .list p span,
    .relxx-list li .list p a {
        padding-left: 8px;
    }
    .relxx-list {
        margin-top: 28px;
    }
    .tech .toPlace {
        top: -108px;
    }
    .case .toPlace {
        top: -100px;
    }
    .pro .toPlace {
        top: -106px;
    }
    .brand .toPlace {
        top: -106px;
    }
    .case-features-img img {
        width: 100%;
        margin-top: 4px;
    }
    .case-features-img img:first-child {
        margin-top: 0;
    }
    .case-features-list ul {
        margin-top: -20px;
    }
    .case-features-list li {
        width: 50% !important;
        margin-top: 20px;
        padding: 0 10px;
    }
    .case-features-list li .text {
        line-height: 20px;
    }
    .case-app {
        padding-top: 40px;
    }
    .case-app-cont .text {
        line-height: 22px;
        font-size: 15px;
    }
    .case-app-img {
        margin-top: 24px;
    }
    .case-application-scene-loop .items img {
        min-height: 180px;
    }
    .case-application-scene-loop .cont {
        padding: 0 16px;
        bottom: 16px;
    }
    .case-application-scene-loop .cont .text {
        margin-top: 6px;
        line-height: 20px;
    }
    .case-application-core-loop .link,
    .pro-parameter-loop .link {
    }
    .case-application-core-loop .prev,
    .case-application-core-loop .next,
    .pro-parameter-loop .prev,
    .pro-parameter-loop .next {
        width: 42px;
        height: 42px;
    }
    .case-application-core-loop {
        padding: 0 54px;
    }
    .case-application-core-wrap {
        margin-top: 32px;
    }
    .case-application-core-wrap .cont .text {
        line-height: 22px;
        height: 44px;
    }
    .case-application-core-wrap .cont .link {
        margin-top: 24px;
    }
    .case-cases-li {
        margin: -16px 0 0 -15px;
    }
    .case-cases-link {
        width: calc(50% - 15px);
        margin: 16px 0 0 15px;
    }
    .case-cases-link .name {
        margin-top: 8px;
        font-size: 12px;
    }
    .pro-meet-wrap-text {
        margin: 16px auto 0;
        line-height: 26px;
    }
    .pro-meet-ul {
        margin-top: -24px;
    }
    .pro-meet-items {
        width: 50% !important;
        padding: 0 10px;
        margin-top: 24px;
    }
    .pro-meet-items .name {
        margin: 8px 0 4px;
    }
    .pro-meet-items .text {
        line-height: 20px;
    }
    .pro-scene-cont .text {
        line-height: 22px;
        margin-top: 8px;
    }
    .pro-scene-cont {
        padding: 24px 0;
    }
    .pro-parameter-info-items ul {
        margin: -15px 0 0 -15px;
    }
    .pro-parameter-info-items li {
        width: calc(100% - 15px);
        margin: 15px 0 0 15px;
    }
    .pro-parameter-info-download {
        height: 40px;
        width: 240px;
    }
    .brand-about-intr-wrap {
        width: calc(100% - 0px);
    }
    .brand-phylogeny-menu {
        height: auto;
        top: auto;
        bottom: 30px;
        left: 0;
    }
    @keyframes phylogenyRun {
        0% {
            opacity: 0;
            transform: translateY(60px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .brand-phylogeny-menu .contain {
        justify-content: center;
    }
    .brand-phylogeny-menu ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    .brand-phylogeny-menu li {
        margin: 0 12px;
    }
    .brand-phylogeny-menu li i::after {
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
    }
    .brand-phylogeny-menu li span {
        display: none;
    }
    .brand-phylogeny-menu li i {
        margin-left: 0;
    }
    .brand-qualification-head-link {
        width: calc(100% - 120px);
    }
    .brand-qualification-loop .link {
    }
    .brand-qualification-head .sonTitle {
        width: 100%;
    }
    .brand-qualification-head-btn {
        width: 120px;
        margin-left: 0;
        padding-left: 30px;
    }
    .brand-qualification-head-more {
        margin-top: 20px;
        width: 100%;
    }
    .brand-qualification-loop {
        margin-top: 16px;
    }
    .brand-social-head-link {
        width: calc(100% - 120px);
    }
    .brand-social-loop .link {
    }
    .brand-social-head .sonTitle {
        width: 100%;
    }
    .brand-social-head-btn {
        width: 120px;
        margin-left: 0;
        padding-left: 30px;
    }
    .brand-social-head-more {
        margin-top: 20px;
        width: 100%;
    }
    .brand-social-loop {
        margin-top: 16px;
    }
    .brand-phylogeny-loop img {
        min-height: 360px;
    }
    .brand-development-cont .text {
        line-height: 24px;
        margin-top: 14px;
    }
    .case-cases-ul .swiper-wrapper {
        padding-bottom: 50px;
    }
    .case-cases-ul .swiper-pagination-bullet {
        margin: 0 8px !important;
    }
    .case-application-scene-head .sonTitle {
        width: 100%;
    }
    .case-application-scene-btn > div,
    .brand-qualification-head-btn > div {
        width: 42px;
        height: 42px;
        background-size: 16px;
        margin-left: 8px;
    }
    .case-application-scene-btn > div:first-child,
    .brand-qualification-head-btn > div:first-child {
        margin-left: 0;
    }
    .case-application-scene-btn {
        width: 100%;
        justify-content: flex-end;
        margin-top: 20px;
    }
    .case-application-scene-loop {
        margin-top: 16px;
    }
    .case-application-info {
        margin-top: 42px;
    }
    .case-application-info-cont {
        margin-top: 30px;
    }
    .case-application-info-cont .desc {
        margin-top: 14px;
        line-height: 24px;
    }
    .case-app-pic img.pc {
        display: none;
    }
    .case-app-pic img.mb {
        display: block;
    }
    .case-app.noheight .case-app-cont {
        padding: 0 14px;
    }
    .indxw-head-hint-li .text {
        font-size: 12px;
    }
    .indxw-head-hint {
        margin-bottom: 30px;
    }
    .privacy .text h6 {
        font-size: 18px;
    }
    .brand-about-video {
        min-height: 400px;
    }
    .brand-development-cont .indxw-loop .swiper-slide .img img {
        height: 70px;
    }
    .accordion li {
        width: calc(100% - 0px);
        min-height: 200px;
    }
    .news-link {
        width: calc(100% - 0px);
    }
    .brand-phylogeny-loop-cont .contain {
        text-align: left;
    }
    .news-list-ul,.service .contain .servicelist{
        grid-template-columns: repeat(1, 1fr);
    }
    .caselist .casebox{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin: 0;
    }
    .service .contain{
        margin: 0 auto;
    }
    .newsul,.newsul a.news-li{
        flex-direction: column;
    }
    .brand .about-box{
        margin: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
    .brand .imagebox {
        margin: 10px;
    }
    .caselist .casebox .case .title{
        padding: 10px 0;
    }
}
