﻿/* ==================== 1. 全局变量与基础复位 ==================== */
:root {
    --aok-main: #1e2d8e;
    --aok-accent: #e60012;
    --aok-red: #E60012;
    --aok-dark: #1a1e26;
    --aok-bg-soft: #f8fafc;
    --aok-blue-light: #f0f4ff;

    --text-header: #0f172a;
    --text-main: #334155;
    --text-dark: #1a202c;
    --text-gray: #64748b;
    --text-muted: #64748b;

    --border-soft: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(30,45,142,0.1);
    
    --duration: 0.3s;
    --theme: #e60012;
    --mask-filter: blur(10px);
    --mask: rgba(255, 255, 255, 0.6);
    --header-height: 80px;
}

html, body {
    overflow-x: hidden;
}

/* 强制显示页面内容，防止JS报错导致白屏 */
[data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
}

/* ==================== 2. 布局基础模块 ==================== */
.section-bg-gray {
    background-color: #fff;
    padding: 75px 0;
    border-top: 1px solid #f0f0f0;
}

.section-bg-white {
    background-color: #fff;
    padding: 75px 0;
    border-top: 1px solid #f0f0f0;
}

section.wrap {
    padding: 80px 0;
    display: flow-root;
    clear: both;
}

.bg-soft {
    background-color: var(--aok-bg-soft);
}

/* ==================== 3. 标题组件 ==================== */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.common-sec-title {
    position: relative;
    padding-left: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

.common-sec-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 6px;
    background-color: #e60012;
}

.common-sec-title .main-t {
    font-size: 28px;
    font-weight: bold;
    color: #e60012;
    line-height: 1.2;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.common-sec-title .sub-t {
    font-size: 14px;
    color: #5c6b80;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: Arial, sans-serif;
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 35px;
    padding-left: 20px;
    text-align: center;
}

.section-header h2, .section-header h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-header);
    margin: 0;
}

.section-header .sub-title {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 4px;
}

.aok-section-header {
    margin-bottom: 40px;
    text-align: left;
    border-left: 4px solid var(--aok-red);
    padding-left: 15px;
    margin-left: 0;
}

.aok-section-header .zh {
    font-size: 30px;
    color: var(--aok-red);
    font-weight: 700;
    margin: 0;
}

.aok-section-header .en {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ==================== 4. 箭头按钮 ==================== */
.arrow-area {
    display: flex;
    gap: 15px;
    align-items: center;
}

.arrow-area .left, .arrow-area .right {
    width: 36px;
    height: 36px;
    background: #f8f8f8;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.arrow-area img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.arrow-area .left:hover, .arrow-area .right:hover {
    background-color: #e60012;
}

.arrow-area .left:hover img, .arrow-area .right:hover img {
    filter: brightness(0) invert(1);
}

/* ==================== 5. 顶部 Tab 分类导航（common.css） ==================== */
@media (min-width: 769px) {
    .common-tab-area, .common-tab-area .wrap, .common-tab-area .tab-list { 
        overflow: visible !important; 
    }
}

.common-tab-area {
    background: #ffffff;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
}

.common-tab-area .tab-list {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    max-width: 86%;
    padding-bottom: 2px;
}

.common-tab-area .tab-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 10px;
}

.common-tab-area .tab-list::-webkit-scrollbar-thumb {
    background-color: #f71f26;
    border-radius: 10px;
}

.common-tab-area .tab-list .tab-item {
    font-family: "Source Han Sans CN", sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1;
    white-space: nowrap;
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 0.42rem;
    padding-right: 0.42rem;
    border-right: 1px solid rgba(204, 204, 204, 0.3);
    transition: var(--duration);
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.common-tab-area .tab-list .tab-item .nav-arrow {
    font-size: 12px;
    opacity: 0.5;
}
.common-tab-area .tab-list .tab-item.active {
    background-color: #f71f26;
    color: #fff;
    border-right-color: transparent;
}

.common-tab-area .tab-list .tab-item:not(.active):hover {
    color: #f71f26;
}

.tab-item-wrapper {
    position: relative;
    display: inline-flex;
}

.tab-dropdown {
    position: absolute;
    top: 45px !important;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    width: max-content;
    min-width: 140px;
    padding: 6px 0;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.tab-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}

.tab-item-wrapper:hover .tab-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tab-dropdown a {
    display: block;
    padding: 10px 24px;
    color: #475569;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    border-bottom: 1px dashed #f1f5f9;
}

.tab-dropdown a:last-child {
    border-bottom: none;
}

.tab-dropdown a:hover, .tab-dropdown a.active {
    background: #fffaf0;
    color: #e60012;
    font-weight: 600;
}

/* ==================== 6. 分类简介与选型指导 ==================== */
.cate-hero-intro-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px auto 70px auto;
    padding: 0 20px;
}

.cate-hero-intro {
    max-width: 1000px;
    width: 100%;
    text-align: left;
    font-size: 20px;
    color: #1e293b;
    line-height: 2;
    letter-spacing: 0.8px;
}

.guide-card-item {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-card-item:hover {
    box-shadow: 0 10px 25px rgba(230,0,18,0.06);
    transform: translateY(-5px);
    border-color: #fecaca;
}

/* ==================== 7. 筛选器与产品列表排版（common.css） ==================== */
.pro-filter-form {
    margin-top: 15px;
    margin-bottom: 10px !important;
    position: relative;
    z-index: 7;
}

.pro-filter-area {
    background: #fff;
    border: 1px solid rgba(204, 204, 204, 0.5);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-top: 0;
    margin-bottom: 30px;
    --padding-space: 10px;
}

.filter-line {
    display: flex;
    align-items: stretch;
    padding-right: 15px;
    border-bottom: 1px solid #e3e3e3;
}

.filter-line:last-child {
    border-bottom: none;
}

.filter-line .params {
    width: 120px;
    background: #f4f4f4;
    flex-shrink: 0;
    padding-top: var(--padding-space);
    padding-bottom: var(--padding-space);
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    font-size: 13px;
    color: #333;
    font-weight: bold;
}

.value-list {
    padding-top: 10px;
    padding-bottom: 10px;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 15px;
    row-gap: 10px;
    padding-right: 20px;
}

.value-list .value-item {
    margin-right: 10px;
    user-select: none;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.value-list .value-item input {
    display: none;
}

.value-list .value-item span {
    font-family: SourceHanSansCN-Light, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #666666;
    line-height: 1.625;
}

.value-list .value-item input:checked ~ span {
    color: #f71f26;
}

.value-item.is-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.value-item.is-disabled span {
    text-decoration: line-through;
    color: #999;
}

/* 高级筛选区域 */
.advanced-filter-wrap {
    background: #f8fafc;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    border-top: 1px dashed #e2e8f0;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.select-item select {
    width: 100%;
    padding: 8px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    color: #475569;
}

/* 已选条件标签栏 */
.selected-tags-row {
    display: flex;
    align-items: flex-start !important;
    background: #fffaf0 !important;
    border-top: 1px dashed #e2e8f0 !important;
    padding: 15px 20px !important;
    gap: 15px;
}

.selected-tags-row .tags-label {
    width: 90px;
    color: #334155;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    padding-top: 6px;
    flex-shrink: 0;
}

.selected-tags-row .tags-list-container {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #e60012;
    color: #e60012;
    border-radius: 14px;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(230,0,18,0.1);
    transition: all 0.2s;
}

.tag-item .t-name {
    color: #999;
    margin-right: 4px;
    font-size: 12px;
}

.tag-item .t-val {
    font-weight: 600;
    color: #e60012;
}

.tag-item .tag-close {
    margin-left: 8px;
    cursor: pointer;
    font-size: 18px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    line-height: 1;
}

.tag-item .tag-close:hover {
    background: #e60012;
    color: #fff;
}

.btn-reset-filters {
    cursor: pointer;
    padding: 6px 16px;
    border: 1px solid #cbd5e1 !important;
    border-radius: 20px !important;
    background: #fff !important;
    color: #64748b !important;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-reset-filters:hover {
    color: #e60012 !important;
    border-color: #e60012 !important;
    background: #fff5f5 !important;
}

/* 操作栏 */
.pro-operate-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.pro-operate-line .current-info {
    font-family: SourceHanSansCN-Light, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #666666;
}

.pro-operate-line .operate-other {
    display: flex;
    align-items: center;
}

.pro-operate-line .operate-other .btn-list {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 20px;
}

.pro-operate-line .operate-other .btn-list .btn {
    margin-right: 9px;
    user-select: none;
    cursor: pointer;
}

.pro-operate-line .operate-other .btn-list .btn:last-child {
    margin-right: 0;
}

.pro-operate-line .operate-other .btn-list .toggle-type-btn {
    opacity: 0.4;
    transition: all 0.3s;
    cursor: pointer;
}

.pro-operate-line .operate-other .btn-list .toggle-type-btn.current {
    opacity: 1;
}

.pro-operate-line .operate-other .pro-sort {
    display: flex;
    align-items: center;
}

.pro-operate-line .operate-other .pro-sort span {
    font-family: SourceHanSansCN-Light, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #666666;
    margin-right: 5px;
}

.pro-operate-line .operate-other .pro-sort select {
    border: none;
    outline: none;
    background: transparent;
    color: #1e293b;
    font-size: 13px;
    cursor: pointer;
}

/* 加载更多按钮 */
.btn-load-more {
    padding: 12px 40px;
    background-color: #fff;
    border: 1px solid #e60012;
    color: #e60012;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background-color: #e60012;
    color: #fff;
}

.btn-load-more:disabled {
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
}

/* ==================== 8. 产品列表展示（common.css） ==================== */
.show-pro-list-area {
    margin-top: 30px;
    margin-bottom: 40px;
    min-height: 300px;
}

.show-pro-list-area .pro-list2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
}

.show-pro-list-area .pro-list2 .pro-item {
    padding: 0 12px 10px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: var(--duration);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.show-pro-list-area .pro-list2 .pro-item:hover {
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.show-pro-list-area .pro-list2 .pro-item:hover .mask {
    top: 0;
}

.show-pro-list-area .pro-list2 .pro-item .pic {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.show-pro-list-area .pro-list2 .pro-item .pic::after {
    content: "";
    display: block;
    padding-bottom: 75.27675277%;
}

.show-pro-list-area .pro-list2 .pro-item .pic img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
    transition: var(--duration);
    mix-blend-mode: multiply;
}

.show-pro-list-area .pro-list2 .pro-item .text {
    margin-top: 10px;
}

.show-pro-list-area .pro-list2 .pro-item .text .title {
    font-size: 16px;
    transition: var(--duration);
    font-family: SourceHanSansCN-Light, sans-serif;
    font-weight: 300;
    color: #333333;
    line-height: 1.444;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    margin-bottom: 10px;
}

.show-pro-list-area .pro-list2 .pro-item .text .desc {
    font-family: SourceHanSansCN-Light, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #999999;
    line-height: 1.571;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 10px;
    border-top: 1px solid rgba(204, 204, 204, 0.5);
    text-align: center;
}

.show-pro-list-area .pro-list2 .pro-item .mask {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--mask);
    backdrop-filter: var(--mask-filter);
    transition: var(--duration);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
}

.show-pro-list-area .pro-list2 .pro-item .mask .name {
    font-family: SourceHanSansCN-Light, sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.show-pro-list-area .pro-list2 .pro-item .mask .params-list .param-item {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-pro-list-area .pro-list2 .pro-item .mask .params-list .param-item::before {
    content: "";
    display: inline-block;
    background-image: url(../svg/pro-item.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 5px;
    width: 10px;
    height: 10px;
}

.show-pro-list-area .pro-list2 .pro-item .mask .more-btn {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
}

.show-pro-list-area .pro-list2 .pro-item .mask .more-btn .more-text {
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
}

/* 表格视图 */
.show-pro-list-area .pro-list1 {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(204, 204, 204, 0.5);
}

.show-pro-list-area .pro-list1::-webkit-scrollbar {
    height: 6px;
    width: 6px;
    background-color: #ccc;
}

.show-pro-list-area .pro-list1::-webkit-scrollbar-thumb {
    background-color: var(--theme);
    border-radius: 10px;
}

.show-pro-list-area .pro-list1 .row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
    min-width: 900px;
}

.show-pro-list-area .pro-list1 .row.row-head .col {
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    padding-top: 20px;
    padding-bottom: 20px;
}

.show-pro-list-area .pro-list1 .row.row-params .col {
    font-family: SourceHanSansCN-Light, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #333333;
    line-height: 1.625;
}

.show-pro-list-area .pro-list1 .row .col {
    flex-shrink: 0;
    padding: 10px 6px;
    text-align: center;
}

/* ==================== 9. 产品优势、案例、常见问题 ==================== */
.product-cate-page .pro-advantage {
    padding-bottom: 1.01rem;
}

.product-cate-page .pro-advantage .advantage-main {
    margin-top: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px 15px;
    display: flex;
    align-items: flex-start;
    column-gap: 1.05rem;
}

.product-cate-page .pro-advantage .advantage-main .item {
    display: flex;
    align-items: flex-start;
    min-width: 0;
}

.product-cate-page .pro-advantage .advantage-main .item img {
    display: block;
}

.product-cate-page .pro-advantage .advantage-main .item .text {
    margin-left: 12px;
}

.product-cate-page .pro-advantage .advantage-main .item .text .index {
    font-size: 18px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.product-cate-page .pro-advantage .advantage-main .item .text .title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.product-cate-page .pro-advantage .advantage-main .item .text .desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.555;
}

.product-cate-page .pro-cate-question {
    padding-bottom: 0.91rem;
    background-color: #f8f8f8;
}

.product-cate-page .pro-cate-question .question-list {
    margin: 30px 0;
}

.product-cate-page .pro-cate-question .question-list .question-item {
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid rgba(204, 204, 204, 0.5);
    padding: 20px 15px 14px;
    margin-bottom: 20px;
}

.product-cate-page .pro-cate-question .question-list .question-item .item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left {
    display: flex;
    align-items: flex-start;
    flex: 1;
}

.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .icon {
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 0.2em;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .icon img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .icon .default {
    display: block;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .icon .hover {
    display: none;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top.active .top-left .icon .default {
    display: none;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top.active .top-left .icon .hover {
    display: block;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top.active .top-left .top-text {
    color: #e70112;
}
.product-cate-page .pro-cate-question .question-list .question-item .item-top.active .state img {
    transform: rotate(-90deg);
    opacity: 1;
}

.product-cate-page .pro-cate-question .question-list .question-item .item-top .top-left .top-text {
    font-size: 16px;
    color: #333333;
    margin-left: 10px;
    flex: 1;
}

.product-cate-page .pro-cate-question .question-list .question-item .item-top .state img {
    transition: var(--duration);
}

.product-cate-page .pro-cate-question .question-list .question-item .item-main {
    display: none;
    font-size: 16px;
    color: #666666;
    line-height: 2;
    margin-left: 28px;
    padding-top: 12px;
    border-top: 1px solid rgba(204, 204, 204, 0.5);
    margin-top: 10px;
    margin-right: 36px;
}

.product-cate-page .pro-cate-question .btn {
    width: 240px;
    height: 48px;
    background: #f71f26;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    margin: 0 auto;
    text-decoration: none;
}

/* ==================== 10. 相关案例推荐（common.css） ==================== */
.pro-case-recommend-area {
    margin-top: 30px;
}

.pro-case-recommend-area .title-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
    margin-bottom: 30px;
}

.pro-case-recommend-area .title-line .title {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 36px;
    color: #333333;
    line-height: 1;
}

.pro-case-recommend-area .title-line .arrow-area .left,
.pro-case-recommend-area .title-line .arrow-area .right {
    width: 36px;
    height: 36px;
    background: #f8f8f8;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--duration);
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide {
    cursor: pointer;
    text-decoration: none;
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic {
    display: block;
    width: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic::after {
    content: "";
    display: block;
    padding-bottom: 57.63747454%;
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s;
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text {
    margin-top: 15px;
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .slide-title {
    font-size: 26px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--duration);
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .slide-desc {
    margin-top: 10px;
    font-size: 16px;
    color: rgba(102, 102, 102, 0.6);
    line-height: 1.625;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 32px;
    border-radius: 16px;
    border: 1px solid rgba(204, 204, 204, 0.5);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    transition: var(--duration);
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn .more-text {
    font-size: 12px;
    color: #666666;
    transition: var(--duration);
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide:hover .slide-pic img {
    transform: scale(1.05);
}

.pro-case-recommend-area .pro-recommend-list .swiper-slide:hover .slide-text .slide-title {
    color: var(--theme);
}

/* ==================== 11. 配套材料推荐（common.css） ==================== */
.pro-cate-recommend .title-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.pro-cate-recommend .title-line .arrow-area {
    display: flex;
    align-items: center;
}

.pro-cate-recommend .pro-cate-swiper {
    margin-top: 30px;
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide {
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 10px;
    text-decoration: none;
    display: block;
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide .pic {
    position: relative;
    overflow: hidden;
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide .pic::after {
    content: "";
    display: block;
    padding-bottom: 69.06077348%;
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s;
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide .text {
    padding: 20px 15px;
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide .text .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 18px;
    color: #333333;
    transition: var(--duration);
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide .text .desc {
    font-size: 14px;
    color: #999999;
    margin-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    transition: var(--duration);
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide:hover .pic img {
    transform: scale(1.05);
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide:hover .text .title {
    color: var(--theme);
}

.pro-cate-recommend .pro-cate-swiper .swiper-slide:hover .text .desc {
    color: var(--theme);
}

/* ==================== 12. 产品详情页布局（info5.html） ==================== */
.hero-layout {
    display: flex !important;
    justify-content: space-between;
    align-items: stretch !important;
    gap: 60px;
    position: relative;
}

.hero-left {
    flex: 0 0 45% !important;
    width: 45% !important;
    flex-shrink: 0 !important;
    position: sticky;
    top: 100px;
}

.hero-right {
    flex: 1 !important;
    display: flex;
    flex-direction: column;
    min-width: 0 !important;
}

.pro-subtitle {
    font-size: 16px;
    color: var(--aok-main);
    font-weight: 500;
    margin: 8px 0 16px 0;
    padding-left: 15px;
    border-left: 4px solid var(--aok-accent);
    line-height: 1.8;
}

/* 轮播容器 */
.swiper-container-custom {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: #fff;
}

.swiper-container-custom .swiper-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    display: block;
}

/* 参数特性徽标 */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #475569 !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}
.feature-badge:hover {
    color: #e60012 !important;
    background: #fff0f0 !important;
    border-color: #ffcccc !important;
}

.feature-badge i {
    font-size: 12px;
    margin-right: 4px;
    color: #e60012 !important;
}

/* 应用标签 */
.movie-tag-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    font-size: 13px;
    color: #5c6b80;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.movie-tag-item:hover {
    color: #e60012;
    background: #fff0f0 !important;
    border-color: #ffcccc !important;
    transform: translateY(-1px);
}

/* ==================== 13. 按钮组 ==================== */
.btn-group {
    display: flex;
    gap: 30px;
    margin: 16px 0 24px 0;
    width: 100%;
    max-width: 500px;
}

.btn-main, .btn-outline {
    flex: 1;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    gap: 8px;
}

.btn-main {
    background: var(--aok-accent);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 12px rgba(230,0,18,0.2);
}

.btn-outline {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #475569 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-main:hover {
    background: #cc0010;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230,0,18,0.3);
}

.btn-outline:hover {
    border-color: var(--aok-main);
    color: var(--aok-main) !important;
    background: #f8fafc;
    transform: translateY(-2px);
}

/* ==================== 14. 核心指标卡 ==================== */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.metric-card {
    background: #f8fafc !important;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid transparent;
    transition: 0.3s;
}

.metric-card:hover {
    transform: translateY(-3px);
    background: #fff !important;
    border-color: #1e2d8e;
    box-shadow: 0 10px 25px -5px rgba(30,45,142,0.1);
}

.metric-card .label {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.metric-card .val {
    font-size: 26px !important;
    font-weight: 900;
    color: #1e2d8e;
}

.metric-card .val small {
    font-size: 13px !important;
    font-weight: 500;
    color: #64748b;
    margin-left: 4px;
    display: inline-block;
}

/* ==================== 15. 规格参数表 ==================== */
.spec-table-container {
    position: relative;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.aok-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
    display: table;
}

.aok-spec-table th, .aok-spec-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
    text-align: center;
    font-size: 14px;
    color: #475569;
    background-color: #fff;
}

.aok-spec-table th {
    background: #f8fafc;
    color: var(--aok-main);
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 10;
}

.aok-spec-table td:first-child, .aok-spec-table th:first-child {
    text-align: left;
    padding-left: 20px;
    font-weight: 700;
    color: #1e293b;
    background: #fcfdfe !important;
    width: 160px;
    position: sticky;
    left: 0;
    z-index: 20;
}

.aok-spec-table th:first-child {
    z-index: 30;
}

.aok-spec-table tr.spec-diff-row td,
.aok-spec-table tr.spec-diff-row th {
    background-color: #fffaf0 !important;
}

.model-jump-link { display: inline-flex; align-items: center; justify-content: center; color: inherit; text-decoration: none; transition: all 0.3s ease; padding: 2px 8px; border-radius: 4px; }
.model-jump-link:hover { color: var(--aok-accent) !important; background-color: #fff0f0; }
.model-jump-link i { font-size: 12px; margin-left: 4px; opacity: 0.6; transition: 0.3s; }
.model-jump-link:hover i { opacity: 1; transform: translateX(2px); }

/* TDS 客户反馈卡片 */
.aok-tds-feedback {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
}
.aok-tds-feedback .feedback-title {
    font-size: 15px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 10px;
}
.aok-tds-feedback .feedback-content {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    font-style: italic;
}
.aok-tds-feedback .feedback-author {
    margin-top: 10px;
    font-size: 13px;
    color: #94a3b8;
    text-align: right;
}

/* ==================== 16. 行业案例深色模块 ==================== */
.cases-dark-block {
    background: var(--aok-dark) !important;
    padding: 80px 0 !important;
}

.cases-dark-block .app-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    margin-top: 40px;
}

.cases-dark-block .app-card {
    display: flex !important;
    background: #262c35 !important;
    border-radius: 8px !important;
    overflow: hidden;
    text-decoration: none !important;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
    align-items: stretch !important;
}

.cases-dark-block .app-card:hover {
    transform: translateY(-5px);
    border-color: var(--aok-red);
}

.cases-dark-block .app-card .pic {
    flex: 0 0 40% !important;
    width: 40% !important;
    position: relative;
    overflow: hidden;
}

.cases-dark-block .app-card .pic img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.cases-dark-block .app-card .info {
    flex: 1 !important;
    padding: 25px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.cases-dark-block .app-card .title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 10px;
}

.cases-dark-block .app-card .desc {
    font-size: 14px !important;
    color: #94a3b8 !important;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cases-dark-block .more-btn {
    background: var(--aok-red) !important;
    color: #fff !important;
    padding: 7px 18px !important;
    border-radius: 4px !important;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    margin-top: 15px;
}

/* ==================== 17. 产品推荐浅色卡片 ==================== */
.products-light-block {
    background: #fff !important;
    padding: 80px 0 !important;
    border-top: 1px solid #e2e8f0;
}

.products-light-block .aok-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.products-light-block .aok-pro-card {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #edf2f7;
    transition: 0.4s;
}

.products-light-block .aok-pro-card:hover {
    border-color: var(--aok-red);
    transform: translateY(-5px);
}

.products-light-block .aok-pro-card .aok-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.products-light-block .aok-pro-card .aok-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: 0.6s;
}

.products-light-block .aok-pro-card .aok-info {
    padding: 15px;
}

.products-light-block .aok-pro-card .aok-name {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.products-light-block .aok-pro-card .aok-metric {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #cbd5e1;
    font-size: 12px;
    color: var(--text-muted);
}

.products-light-block .aok-pro-card .aok-metric:last-child {
    border-bottom: none;
}

.products-light-block .aok-pro-card .val {
    font-weight: 800;
    color: #1e293b;
}

/* ==================== 18. 底部采购信息框 ==================== */
.info-section {
    margin-top: auto;
    margin-bottom: 0;
}

.section-sub-header {
    text-align: left;
    border-left: 4px solid var(--aok-red);
    padding-left: 10px;
    font-size: 16px;
    font-weight: bold;
    color: var(--aok-main);
    margin: 10px 0 15px 0;
    line-height: 1.2;
}

.procurement-content-bg {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 25px;
    border: 1px solid #e2e8f0 !important;
}

.p-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    align-items: start;
}

.p-item {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.p-item::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--aok-red);
    top: 0;
}

.p-item b {
    color: var(--text-header);
    font-weight: 700;
    margin-right: 8px;
    display: inline;
}

/* ==================== 19. 富文本区域 ==================== */
.pro-detail-page .detail-content-box {
    margin-top: 30px !important;
    padding-left: 19px;
    font-size: 20px !important;
    color: #1e293b !important;
    line-height: 2.1 !important;
    letter-spacing: 0.8px !important;
    text-align: justify;
}

.pro-detail-page .detail-content-box strong,
.pro-detail-page .detail-content-box b {
    color: #0f172a !important;
    font-weight: 700 !important;
}

.pro-detail-page .detail-content-box img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    margin: 15px 0;
}

/* ==================== 20. 移动端侧滑抽屉 ==================== */
.drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998 !important;
}

.drawer-overlay.active {
    display: block;
}

#filterDrawer {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100dvh !important;
    background: #fff;
    z-index: 999999 !important;
    overflow: hidden !important;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
}

#filterDrawer.active {
    right: 0 !important;
}

#filterDrawer .drawer-header {
    flex-shrink: 0 !important;
    background: #fff;
    padding: 18px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#filterDrawer .drawer-title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
}

#filterDrawer .drawer-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    color: #999;
    background: #f5f5f5;
    border-radius: 50%;
}

#filterDrawer .drawer-content {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 15px;
    background: #fff;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

#filterDrawer .drawer-content input[type="checkbox"] {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px !important;
}

#filterDrawer .drawer-footer {
    flex-shrink: 0 !important;
    background: #fff;
    padding: 15px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom)) !important;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

#filterDrawer .drawer-footer button {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

.btn-drawer-reset {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.btn-drawer-confirm {
    background: #e60012;
    color: #fff;
}

/* ==================== 21. 面包屑导航（common.css） ==================== */
.breadcrumb-area {
    background: var(--aok-bg-soft);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 13px;
    color: #64748b;
}

.breadcrumb-area .wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-area a {
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-area a:hover {
    color: var(--aok-red);
}

/* common.css 面包屑 */
.common-news-detail-breadcrumb {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.common-news-detail-breadcrumb .icon img {
    display: block;
    width: 12px;
}

.common-news-detail-breadcrumb .bread-list {
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.common-news-detail-breadcrumb .bread-list .bread-item {
    font-weight: 500;
    font-size: 14px;
    color: #666666;
}

.common-news-detail-breadcrumb .bread-list .bread-item:last-child::after {
    display: none;
}

.common-news-detail-breadcrumb .bread-list .bread-item::after {
    content: ">";
    margin-left: 5px;
    margin-right: 5px;
}

.common-news-detail-breadcrumb .bread-list .bread-item a {
    color: #666666;
    text-decoration: none;
}

/* ==================== 22. 移动端响应式适配 ==================== */
@media (max-width: 1200px) {
    .show-pro-list-area .pro-list2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    section.wrap {
        padding: 40px 0;
    }
    .hero-layout {
        flex-direction: column !important;
        gap: 20px !important;
        padding-top: 10px;
    }
    .hero-left, .hero-right {
        width: 100% !important;
        flex: 0 0 auto !important;
        position: static !important;
    }
    .hero-right h1 {
        font-size: 24px !important;
        margin: 15px 0 10px 0 !important;
        text-align: center;
    }
    .metric-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .metric-card:nth-child(1) {
        grid-column: span 2;
    }
    .btn-group {
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
        margin: 20px 0 !important;
    }
    .btn-main, .btn-outline {
        width: 100% !important;
        height: 56px !important;
        line-height: 56px !important;
        border-radius: 8px !important;
        font-size: 16px !important;
    }
    .p-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .cases-dark-block .app-grid {
        grid-template-columns: 1fr !important;
    }
    .products-light-block .aok-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-cate-page .pro-advantage .advantage-main {
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 0;
        row-gap: 30px;
    }
    .common-tab-area .tab-list {
        max-width: 92%;
    }
}

@media (max-width: 768px) {
    .pc-hide-on-mobile, .tab-dropdown {
        display: none !important;
    }
    .cate-hero-intro {
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }
    .section-header h2, .section-header h3,
    .aok-section-header .zh { font-size: 22px; }
    .common-sec-title .main-t { font-size: 20px; }
    .common-tab-area .tab-list {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 10px 15px;
        gap: 10px;
    }
    .common-tab-area .tab-list .tab-item {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 8px 18px;
        font-size: 13px;
        border-radius: 20px;
        background: #f5f5f5;
        border-right: none;
        line-height: 1.4;
    }
    .common-tab-area .tab-list .tab-item .nav-arrow {
        font-size: 10px;
        margin-left: 2px;
    }
    .common-tab-area .tab-list .tab-item-wrapper {
        flex: 0 0 auto;
        display: inline-flex;
    }
    .common-tab-area .tab-list .tab-item-wrapper .tab-item {
        margin: 0;
    }
    .common-tab-area .tab-list .tab-item.active {
        background: #e60012;
        color: #fff;
    }
    .show-pro-list-area .pro-list2,
    .pro-list .pro-list2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }
    .pro-filter-area {
        border-radius: 0;
        border: none;
        padding: 15px;
    }
    .filter-line {
        flex-direction: column;
        align-items: flex-start !important;
        padding-bottom: 15px;
    }
    .filter-line .params {
        width: 100%;
        margin-bottom: 10px;
        font-size: 14px;
        color: #e60012;
        background: transparent;
        padding-left: 0;
    }
    .value-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
        padding-left: 0;
    }
    .value-list .value-item {
        background: #f8f8f8;
        padding: 8px;
        border-radius: 4px;
        justify-content: center;
        margin-right: 0;
    }
    .value-item.is-disabled {
        display: none !important;
    }
    .selected-tags-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 15px !important;
        gap: 12px !important;
    }
    .selected-tags-row .tags-label {
        width: 100%;
        padding-top: 0;
    }
    .btn-reset-filters {
        align-self: flex-end;
        margin-top: 5px;
    }
    .pro-operate-line {
        flex-wrap: wrap;
        row-gap: 10px;
        margin-top: 20px;
    }
    .pro-operate-line .operate-other {
        margin-left: auto;
    }
    .aok-spec-table {
        min-width: 100% !important;
    }
    .aok-spec-table th, .aok-spec-table td {
        padding: 10px 4px !important;
        font-size: 11px !important;
    }
    .cases-dark-block .app-card {
        flex-direction: column !important;
    }
    .cases-dark-block .app-card .pic {
        width: 100% !important;
        flex: 0 0 auto !important;
        padding-top: 60%;
    }
    .cases-dark-block .app-card .info {
        width: 100% !important;
        padding: 15px !important;
    }
    .spec-table-container {
        border-radius: 8px;
    }
    .pro-detail-page .detail-content-box {
        font-size: 16px !important;
        line-height: 1.8 !important;
        padding-left: 19px !important;
        padding-right: 0 !important;
    }
    .common-banner .pic img {
        height: 260px;
        object-fit: cover;
    }
    .common-banner .text .breadcrumb {
        display: none;
    }
    .common-pagination {
        flex-wrap: wrap;
    }
    .common-pagination .item {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .show-pro-list-area .pro-list2,
    .pro-list .pro-list2 {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px;
    }
    .show-pro-list-area .pro-list2 .pro-item .pic::after,
    .pro-list .pro-list2 .pro-item .pic::after {
        padding-bottom: 65%;
    }
    .hero-right h1 {
        font-size: 22px !important;
    }
    .feature-badges { gap: 10px; }
    .feature-badge { padding: 4px 12px; font-size: 12px; }
    .movie-tag-item { padding: 5px 14px; font-size: 12px; }
    .metric-card .val {
        font-size: 16px !important;
    }
    .aok-spec-table td:first-child {
        min-width: 140px;
        padding-left: 15px;
        font-size: 13px;
    }
    .common-banner .text .banner-title {
        font-size: 22px;
    }
    .common-banner .text .banner-desc {
        line-height: 1.5;
        padding-bottom: 2.5rem;
    }
    .common-banner .text .banner-desc br {
        display: none;
    }
    .product-cate-page .pro-advantage .advantage-main .item {
        width: 47.5%;
        flex: none;
    }
    .product-cate-page .pro-advantage .advantage-main .item:nth-child(even) {
        margin-top: 0;
    }
    .product-cate-page .pro-cate-question .btn {
        width: 180px;
        height: 40px;
    }
    .pro-case-recommend-area .title-line .title {
        font-size: 20px;
    }
    .pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn {
        display: none;
    }
}

/* 产品列表页面 */
.product-list-page {
  padding-bottom: max(1rem, var(--space));
}
.pro-filter-form {
  position: relative;
  z-index: 7;
}
.pro-filter-area {
  margin-top: max(0.81rem, 20px);
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 6px;
  background-color: #fff;
  --padding-space: max(0.22rem, 10px);
  margin-bottom: max(0.34rem, 30px);
}
.pro-filter-area .filter-line {
  display: flex;
  align-items: stretch;
  padding-right: max(0.32rem, 15px);
  border-bottom: 1px solid #e3e3e3;
}
.pro-filter-area .filter-line:last-child {
  border-bottom: none;
}
.pro-filter-area .filter-line .params {
  width: 120px;
  background: #f4f4f4;
  flex-shrink: 0;
  padding-top: var(--padding-space);
  padding-bottom: var(--padding-space);
  background-color: #f4f4f4;
  padding-left: max(0.19rem, 10px);
  padding-right: 10px;
  text-align: left;
}
.pro-filter-area .filter-line .value-list {
  padding-top: 10px;
  padding-bottom: 10px;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: max(0.34rem, 15px);
  row-gap: 10px;
  padding-right: 20px;
  /* 里面的多选 */
  /* 里面的下拉菜单 */
}
.pro-filter-area .filter-line .value-list .value-item {
  margin-right: max(0.55rem, 10px);
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}
.pro-filter-area .filter-line .value-list .value-item:last-child {
  margin-right: 0;
}
.pro-filter-area .filter-line .value-list .value-item .layui-form-checkbox {
  display: none;
}
.pro-filter-area .filter-line .value-list .value-item input {
  display: none;
}
.pro-filter-area .filter-line .value-list .value-item span {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.625;
}
.pro-filter-area .filter-line .value-list .value-item input:checked ~ span {
  color: #f71f26;
}
.pro-filter-area .filter-line .value-list .select-item {
  width: 150px;
  user-select: none;
  margin-right: max(0.25rem, 20px);
  user-select: none !important;
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select .layui-input {
  user-select: none !important;
  font-size: var(--font16);
  font-family: "SourceHanSansCN-Light", sans-serif;
  line-height: 1;
  font-weight: 300;
  height: 28px;
  box-sizing: border-box;
  color: #666666;
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select {
  user-select: none !important;
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select dl {
  top: 100%;
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select dl dd.layui-this {
  background-color: var(--theme);
}
.pro-filter-area .filter-line .value-list .select-item .layui-form-select .layui-edge {
  border: none;
  background-image: url(../svg/pro-select-icon.svg);
  width: 9px;
  height: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: -2.5px;
}
.pro-filter-area .filter-line .filter-more-btn {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: var(--font14);
  color: #999999;
  user-select: none;
  cursor: pointer;
}
.pro-filter-area .filter-line .filter-more-btn.show img {
  transform: rotate(-180deg);
}
.pro-filter-area .filter-line .filter-more-btn:hover {
  color: var(--theme);
}
.pro-filter-area .filter-line .filter-more-btn img {
  margin-left: 4px;
  transition: var(--duration);
}
.pro-filter-area .filter-line .filter-more-btn .hover {
  display: none;
}
.pro-filter-area .filter-line .filter-more-btn:hover .default {
  display: none;
}
.pro-filter-area .filter-line .filter-more-btn:hover .hover {
  display: block;
}
.pro-operate-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.pro-operate-line .current-info {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
}
.pro-operate-line .operate-other {
  display: flex;
  align-items: center;
}
.pro-operate-line .operate-other .btn-list {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.pro-operate-line .operate-other .btn-list .btn {
  margin-right: 9px;
  user-select: none;
  cursor: pointer;
}
.pro-operate-line .operate-other .btn-list .btn:last-child {
  margin-right: 0;
}
.pro-operate-line .operate-other .btn-list .btn .hover {
  display: none;
}
.pro-operate-line .operate-other .btn-list .btn .default {
  display: block;
}
.pro-operate-line .operate-other .btn-list .btn:hover .hover,
.pro-operate-line .operate-other .btn-list .btn.current .hover {
  display: block;
}
.pro-operate-line .operate-other .btn-list .btn:hover .default,
.pro-operate-line .operate-other .btn-list .btn.current .default {
  display: none;
}
.pro-operate-line .operate-other .pro-sort {
  display: flex;
  align-items: center;
}
.pro-operate-line .operate-other .pro-sort span {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
  line-height: 1;
}
.pro-operate-line .operate-other .pro-sort .layui-form-select {
  width: 70px;
  border: none;
}
.pro-operate-line .operate-other .pro-sort .layui-form-select .layui-edge {
  border: none;
  background-image: url(../svg/pro-filter-icon.svg);
  width: 9px;
  height: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: -2px;
}
.pro-operate-line .operate-other .pro-sort .layui-input {
  border: none;
  font-size: 14px;
  color: #f71f26;
}
.pro-operate-line .operate-other .pro-sort .layui-form-select dl dd.layui-this {
  background-color: var(--theme);
}
.show-pro-list-area {
  margin-top: 30px;
  margin-bottom: max(0.6rem, 30px);
}
.show-pro-list-area .pro-list {
  display: none;
}
.show-pro-list-area .pro-list.show {
  display: block;
}
.show-pro-list-area .pro-list2 {
  display: grid;
  gap: 30px max(0.3rem, 15px);
}
.show-pro-list-area .pro-list2 .pro-item {
  padding-left: max(0.3rem, 12px);
  padding-right: max(0.3rem, 12px);
  padding-bottom: max(0.19rem, 10px);
  background: #f8f8f8;
  border-radius: 10px;
  transition: var(--duration);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.show-pro-list-area .pro-list2 .pro-item:hover {
  background: #ffffff;
  box-shadow: 0px 0px max(0.98rem, 30px) 0px rgba(0, 0, 0, 0.1);
}
.show-pro-list-area .pro-list2 .pro-item:hover .mask {
  top: 0;
}
.show-pro-list-area .pro-list2 .pro-item .pic {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.show-pro-list-area .pro-list2 .pro-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 75.27675277%;
}
.show-pro-list-area .pro-list2 .pro-item .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 4 / 3 !important;
  object-fit: contain;
  object-position: center;
  transition: var(--duration);
  mix-blend-mode: multiply;
}
.show-pro-list-area .pro-list2 .pro-item .text {
  margin-top: 10px;
}
.show-pro-list-area .pro-list2 .pro-item .text .title {
  --font18: max(0.18rem, 16px);
  transition: var(--duration);
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.44444444;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((26 / 18) * var(--font18) * 2);
  margin-bottom: max(0.17rem, 10px);
  text-align: center;
}
.show-pro-list-area .pro-list2 .pro-item .text .desc {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #999999;
  line-height: 1.57142857;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  padding-top: max(0.2rem, 10px);
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  text-align: center;
}
.show-pro-list-area .pro-list2 .pro-item .mask {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--mask);
  backdrop-filter: var(--mask-filter);
  transition: var(--duration);
  padding: max(0.3rem, 20px) max(0.3rem, 10px);
  display: flex;
  flex-direction: column;
}
.show-pro-list-area .pro-list2 .pro-item .mask .name {
  transition: var(--duration);
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: bold;
  font-size: var(--font24);
  color: #000;
  line-height: 1.5;
  margin-bottom: max(0.3rem, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.show-pro-list-area .pro-list2 .pro-item .mask .params-list .param-item {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 2;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.show-pro-list-area .pro-list2 .pro-item .mask .params-list .param-item::before {
  content: "";
  display: inline-block;
  background-image: url(../svg/pro-item.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 5px;
  width: 10px;
  height: 10px;
}
.show-pro-list-area .pro-list2 .pro-item .mask .more-btn {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  cursor: pointer;
  width: var(--more-w);
  height: var(--more-h);
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 30px;
  transition: var(--duration);
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-pro-list-area .pro-list2 .pro-item .mask .more-btn .more-text {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}
.show-pro-list-area .pro-list2 .pro-item .mask .more-btn img {
  margin-left: 11px;
  display: block;
  transition: var(--duration);
  width: 10px;
}
.show-pro-list-area .pro-list2 .pro-item .mask .more-btn:hover img {
  margin-left: 5px;
}
.show-pro-list-area .pro-list1 {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(204, 204, 204, 0.5);
}
.show-pro-list-area .pro-list1::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  background-color: #ccc;
}
.show-pro-list-area .pro-list1::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  border-radius: 10px;
}
.show-pro-list-area .pro-list1 .row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  min-width: 900px;
  /* 头部的row */
  /* 下面的参数 row */
}
.show-pro-list-area .pro-list1 .row:last-child {
  border-bottom: none;
}
.show-pro-list-area .pro-list1 .row:nth-child(odd) {
  background: #f8f8f8;
}
.show-pro-list-area .pro-list1 .row:nth-child(even) {
  background: #ffffff;
}
.show-pro-list-area .pro-list1 .row.row-head .col {
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
  padding-top: 20px;
  padding-bottom: 20px;
}
.show-pro-list-area .pro-list1 .row.row-params .col {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.625;
}
.show-pro-list-area .pro-list1 .row.row-params .col5 {
  color: #999999;
}
.show-pro-list-area .pro-list1 .row .col {
  flex-shrink: 0;
  padding-left: 6px;
  padding-right: 6px;
  overflow-wrap: break-word;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.show-pro-list-area .pro-list1 .row .col1 {
  width: 145px;
  padding-top: 0;
  padding-bottom: 0;
}
.show-pro-list-area .pro-list1 .row .col1 .pic {
  display: block;
  width: 125px;
  height: 83px;
  margin-left: auto;
  margin-right: auto;
}
.show-pro-list-area .pro-list1 .row .col1 .pic img {
  display: block;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  object-position: center center;
  margin-left: auto;
  margin-right: auto;
  mix-blend-mode: multiply;
}
.show-pro-list-area .pro-list1 .row .col2 {
  width: 175px;
}
.show-pro-list-area .pro-list1 .row .col3 {
  width: 150px;
}
.show-pro-list-area .pro-list1 .row .col4 {
  width: 170px;
}
.show-pro-list-area .pro-list1 .row .col5 {
  flex: 1;
  min-width: 0;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
}
.product-list-page .pro-case-recommend-area {
  margin-top: 30px;
}
/* 相关案例推荐 */
.pro-case-recommend-area .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: max(0.3rem, 15px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  margin-bottom: 30px;
}
.pro-case-recommend-area .title-line .title {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: var(--font36);
  color: #333333;
  line-height: 1;
}
.pro-case-recommend-area .title-line .arrow-area {
  display: flex;
  align-items: center;
}
.pro-case-recommend-area .title-line .arrow-area .left,
.pro-case-recommend-area .title-line .arrow-area .right {
  width: 36px;
  height: 36px;
  background: #f8f8f8;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  margin-right: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--duration);
}
.pro-case-recommend-area .title-line .arrow-area .left:last-child,
.pro-case-recommend-area .title-line .arrow-area .right:last-child {
  margin-right: 0;
}
.pro-case-recommend-area .title-line .arrow-area .left img,
.pro-case-recommend-area .title-line .arrow-area .right img {
  height: 14px;
  display: block;
  transition: var(--duration);
}
.pro-case-recommend-area .title-line .arrow-area .left::after,
.pro-case-recommend-area .title-line .arrow-area .right::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--theme);
  width: 0;
  height: 400%;
  z-index: -1;
  pointer-events: none;
  transition: var(--duration);
}
.pro-case-recommend-area .title-line .arrow-area .left:hover::after,
.pro-case-recommend-area .title-line .arrow-area .right:hover::after {
  width: 130%;
}
.pro-case-recommend-area .title-line .arrow-area .left:hover img,
.pro-case-recommend-area .title-line .arrow-area .right:hover img {
  filter: brightness(0) invert(1);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide {
  user-select: none;
  cursor: pointer;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic {
  display: block;
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic::after {
  content: "";
  display: block;
  padding-bottom: 57.63747454%;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text {
  margin-top: max(0.31rem, 15px);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .slide-title {
  font-weight: 400;
  font-size: var(--font26);
  color: #333333;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .slide-desc {
  margin-top: max(0.3rem, 10px);
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(102, 102, 102, 0.6);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((26 / 16) * var(--font16) * 4);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: max(0.25rem, 10px);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn .more-text {
  line-height: 1;
  white-space: nowrap;
  font-weight: 300;
  font-size: 12px;
  color: #666666;
  transition: var(--duration);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn .more-icon {
  height: 10px;
  margin-left: 11px;
  transition: var(--duration);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0;
  height: 350%;
  background-color: var(--theme);
  z-index: -1;
  transition: var(--duration);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn:hover {
  border-color: transparent;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn:hover::after {
  width: 150%;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn:hover .more-text {
  color: #fff;
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide .slide-text .more-btn:hover .more-icon {
  filter: brightness(0) invert(1);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide:hover .slide-pic img {
  transform: scale(1.05);
}
.pro-case-recommend-area .pro-recommend-list .swiper-slide:hover .slide-text .slide-title {
  color: var(--theme);
}


/* 产品详情页面 */
.pro-detail-page {
  margin-top: var(--header-height);
  overflow: hidden;
}
.pro-detail-page .breadcrumb-area {
  background: #e0e0e0;
}
.pro-detail-page .pro-detail-content {
  background-color: #fff;
  padding-top: max(0.68rem, 30px);
  background-image: url(../images/news-detail-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: right top;
}
.pro-detail-page .pro-detail-content .content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: max(0.8rem, 30px);
}
.pro-detail-page .pro-detail-content .content-wrap .left {
  width: 49.0234375%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-swiper {
  border-radius: 10px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  overflow: hidden;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  padding-bottom: 83.3997344%;
  position: relative;
  background: #ffffff;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-swiper .swiper-slide .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center center;
  transition: var(--duration);
  mix-blend-mode: multiply;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-left,
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--duration);
  z-index: 5;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-left:hover,
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-right:hover {
  opacity: 1;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-left img,
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-right img {
  display: block;
  width: 11px;
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-left {
  left: max(0.31rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .left .pro-detail-right {
  right: max(0.31rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .right {
  width: 47.00520833%;
  flex-shrink: 0;
  overflow-wrap: break-word;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-title {
  font-weight: 500;
  font-size: var(--font36);
  color: #333333;
  margin-bottom: max(0.3rem, 10px);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-feature {
  font-weight: 500;
  font-size: var(--font24);
  color: #333333;
  margin-bottom: 10px;
}
.pro-detail-page .pro-detail-content .content-wrap .right .feature-desc {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 2;
  overflow-wrap: break-word;
  padding-bottom: max(0.2rem, 10px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  margin-bottom: max(0.27rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table {
  background: #ffffff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: max(0.3rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr {
  display: flex;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr:last-child {
  border-bottom: none;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr:nth-child(odd) .td:first-child {
  background-color: #f8f8f8;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr:nth-child(even) .td:first-child {
  background-color: #f2f2f2;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(1) {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.33333333;
  width: 167px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(2) {
  padding-left: max(0.3rem, 10px);
  padding-right: max(0.3rem, 10px);
  padding-top: max(0.14rem, 10px);
  padding-bottom: max(0.14rem, 10px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 6px;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(2) .tag {
  padding: 6px max(10px, 0.33rem);
  border-radius: 17px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  margin-right: 10px;
  min-width: 1.48rem;
  text-align: center;
  transition: var(--duration);
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(2) .tag:hover {
  color: #fff;
  background-color: var(--theme);
  border-color: transparent;
}
.pro-detail-page .pro-detail-content .content-wrap .right .table .tr .td:nth-child(2) .tag:last-child {
  margin-right: 0;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list {
  display: flex;
  align-items: center;
  margin-top: max(0.3rem, 15px);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1 {
  width: max(2.8rem, 210px);
  height: max(0.58rem, 45px);
  background: #ffffff;
  border-radius: 29px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-right: 10px;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:last-child {
  margin-right: 0;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--theme);
  z-index: -1;
  height: 100%;
  width: 0;
  transition: 0.6s ease;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1 .btn-icon {
  margin-right: 11px;
  transition: var(--duration);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1 .btn-text {
  font-size: var(--font18);
  color: #666666;
  line-height: 1;
  white-space: nowrap;
  transition: var(--duration);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:not(.hover-ignore):hover {
  border-color: transparent;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:not(.hover-ignore):hover .btn-icon {
  filter: brightness(0) invert(1);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:not(.hover-ignore):hover .btn-text {
  color: #fff;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1:not(.hover-ignore):hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1.hover-ignore {
  border-color: transparent;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1.hover-ignore .btn-icon {
  filter: brightness(0) invert(1);
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1.hover-ignore .btn-text {
  color: #fff;
}
.pro-detail-page .pro-detail-content .content-wrap .right .pro-btn-list .btn1.hover-ignore::after {
  width: 105%;
}
.pro-detail-page .pro-detail-intro {
  background: url(../images/pro-detail-intro-bg.png) no-repeat right top / 100% auto;
  padding-top: max(0.85rem, 30px);
  padding-bottom: max(1.2rem, var(--space));
}
.pro-detail-page .pro-detail-intro .intro-text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font22);
  color: #666666;
  line-height: 1.63636364;
  margin-bottom: max(0.6rem, 20px);
}
.pro-detail-page .pro-detail-intro .intro-tab-list {
  display: flex;
  align-items: center;
  margin-bottom: max(0.3rem, 15px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-intro .intro-tab-list .tab-item {
  padding-left: max(20px, 0.74rem);
  padding-right: max(20px, 0.74rem);
  padding-bottom: max(0.13rem, 10px);
  padding-top: max(0.13rem, 10px);
  flex-shrink: 0;
  margin-right: 10px;
  background: #ffffff;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
  font-size: var(--font18);
}
.pro-detail-page .pro-detail-intro .intro-tab-list .tab-item:last-child {
  margin-right: 0;
}
.pro-detail-page .pro-detail-intro .intro-tab-list .tab-item.active {
  color: #fff;
  background-color: #333333;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item {
  display: none;
  font-size: var(--font16);
  overflow-wrap: break-word;
}

.pro-detail-page .pro-detail-intro .intro-tab-content .item::before,
.pro-detail-page .pro-detail-intro .intro-tab-content .item::after {
  content: "";
  display: table;
}

.pro-detail-page .pro-detail-intro .intro-tab-content .item::after {
  clear: both;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item img,
.pro-detail-page .pro-detail-intro .intro-tab-content .item video {
  max-width: 100%;
  vertical-align: top;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item p,
.pro-detail-page .pro-detail-intro .intro-tab-content .item span,
.pro-detail-page .pro-detail-intro .intro-tab-content .item a,
.pro-detail-page .pro-detail-intro .intro-tab-content .item div,
.pro-detail-page .pro-detail-intro .intro-tab-content .item li {
  font-size: var(--font16);
  overflow-wrap: break-word;
}

.pro-detail-page .pro-detail-intro .intro-tab-content .item div,
.pro-detail-page .pro-detail-intro .intro-tab-content .item p,
.pro-detail-page .pro-detail-intro .intro-tab-content .item ul,
.pro-detail-page .pro-detail-intro .intro-tab-content .item ol,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h1,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h2,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h3,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h4,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h5,
.pro-detail-page .pro-detail-intro .intro-tab-content .item h6 {
  margin-bottom: max(0.2rem, 10px);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item.show {
  display: block;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .table-wrap {
  width: 100%;
  overflow-x: auto;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table {
  min-width: max(100%, 1000px);
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border-radius: 10px;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table thead {
  background: #dadada;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table thead tr th {
  font-weight: 400;
  font-size: var(--font16);
  color: #333333;
  padding-top: 10px;
  padding-bottom: 10px;
  border-right: 1px solid rgba(204, 204, 204, 0.5);
  line-height: 1.5;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table thead tr th:last-child {
  border-right: none;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table tbody tr td {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  text-align: center;
  border-right: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table tbody tr td:first-child {
  border-left: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .btn-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .btn-list .btn {
  width: 80px;
  height: 35px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-size: 14px;
  transition: var(--duration);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .download {
  background-color: var(--theme);
  color: #fff;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .download:hover {
  transform: translateY(-2px);
  box-shadow: 0 0px 15px 5px rgba(230, 0, 18, 0.7);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .preview {
  background-color: #333333;
  color: #fff;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item table .preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 0px 15px 5px rgba(51, 51, 51, 0.7);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download {
  border: 1px solid rgba(204, 204, 204, 0.5);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row {
  display: flex;
  align-items: center;
  border-bottom: var(--border);
  min-height: 50px;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row:last-child {
  border-bottom: none;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row:nth-child(odd) {
  background-color: #fff;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row:nth-child(even) {
  background-color: #f8f8f8;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row .col {
  font-size: var(--font16);
  color: #666;
  padding-left: 15px;
  padding-right: 15px;
  overflow-wrap: break-word;
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row .col:first-child {
  flex: 1;
  min-width: 0;
  padding-right: max(0.3rem, 20px);
  border-right: 1px solid rgba(204, 204, 204, 0.5);
  padding-top: max(0.2rem, 10px);
  padding-bottom: max(0.2rem, 10px);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row .col .download-btn {
  width: max(1.3rem, 100px);
  height: 35px;
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  border-radius: 10px;
  font-size: var(--font16);
  transition: var(--duration);
}
.pro-detail-page .pro-detail-intro .intro-tab-content .item .file-download .row .col .download-btn:hover {
  background-color: var(--theme);
}


/* 相关产品推荐 */
.common-pro-detail-recommend-area {
  background-image: url(../images/pro-detail-recommend-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  padding-top: max(1.22rem, var(--space));
  padding-bottom: max(1.2rem, var(--space));
}
.common-pro-detail-recommend-area .pro-detail-recommend-title {
  font-size: var(--font36);
  color: #333333;
  margin-bottom: max(0.41rem, 20px);
}
.common-pro-detail-recommend-area .pro-detail-recommend-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px max(0.3rem, 15px);
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item {
  padding-left: max(0.3rem, 15px);
  padding-right: max(0.3rem, 15px);
  padding-bottom: max(0.19rem, 10px);
  background: #f8f8f8;
  border-radius: 10px;
  transition: var(--duration);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item:hover {
  background: #ffffff;
  box-shadow: 0px 0px max(0.98rem, 30px) 0px rgba(0, 0, 0, 0.1);
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item:hover .mask {
  top: 0;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .pic {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 75.27675277%;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  transition: var(--duration);
  mix-blend-mode: multiply;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .text {
  margin-top: 10px;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .text .title {
  --font18: max(0.18rem, 16px);
  transition: var(--duration);
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.44444444;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((26 / 18) * var(--font18) * 2);
  margin-bottom: max(0.17rem, 10px);
  text-align: center;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .text .desc {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #999999;
  line-height: 1.57142857;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  padding-top: max(0.2rem, 10px);
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  text-align: center;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--mask);
  backdrop-filter: var(--mask-filter);
  transition: var(--duration);
  padding: max(0.3rem, 20px) max(0.3rem, 10px);
  display: flex;
  flex-direction: column;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .name {
  transition: var(--duration);
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: bold;
  font-size: var(--font24);
  color: #000;
  line-height: 1.5;
  margin-bottom: max(0.3rem, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .params-list .param-item {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .params-list .param-item::before {
  content: "";
  display: inline-block;
  background-image: url(../svg/pro-item.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 5px;
  width: 10px;
  height: 10px;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .more-btn {
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  cursor: pointer;
  width: var(--more-w);
  height: var(--more-h);
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 30px;
  transition: var(--duration);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .more-btn .more-text {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .more-btn img {
  margin-left: 11px;
  display: block;
  transition: var(--duration);
  width: 10px;
}
.common-pro-detail-recommend-area .pro-detail-recommend-list .pro-item .mask .more-btn:hover img {
  margin-left: 5px;
}


/*  相关产品应用 */
.common-pro-detail-application-area {
  background-image: url(../images/pro-detail-application-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: max(1.2rem, var(--space));
  padding-bottom: max(1.2rem, var(--space));
}
.common-pro-detail-application-area .application-title {
  font-weight: 400;
  font-size: var(--font36);
  color: #ffffff;
  margin-bottom: max(0.6rem, 30px);
}
.common-pro-detail-application-area .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: max(0.3rem, 15px);
  row-gap: 30px;
}
.common-pro-detail-application-area .list .item {
  overflow: hidden;
}
.common-pro-detail-application-area .list .item:hover .pic img {
  transform: scale(1.05);
}
.common-pro-detail-application-area .list .item:hover .text .text-title {
  color: var(--theme);
}
.common-pro-detail-application-area .list .item .pic {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.common-pro-detail-application-area .list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 57.63747454%;
}
.common-pro-detail-application-area .list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.common-pro-detail-application-area .list .item .text {
  padding-top: max(0.31rem, 15px);
}
.common-pro-detail-application-area .list .item .text .text-title {
  font-weight: 400;
  font-size: var(--font26);
  color: #fff;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: max(0.31rem, 15px);
  transition: var(--duration);
}
.common-pro-detail-application-area .list .item .text .text-desc {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc(var(--font16) * (26 / 16) * 4);
}
.common-pro-detail-application-area .list .item .text .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 130px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  margin-top: max(0.3rem, 10px);
}
.common-pro-detail-application-area .list .item .text .more-btn .more-text {
  font-weight: 300;
  font-size: 12px;
  color: #fff;
}
.common-pro-detail-application-area .list .item .text .more-btn .more-icon {
  margin-left: 11px;
  display: block;
  transition: var(--duration);
  filter: brightness(0) invert(1);
  height: 10px;
}


