@charset "utf-8";

:root {
    --main-color: #FF7F00;
    --white-color:#FFFFFF;
    --dark-color:#333333;
}


/*用来解决在安卓上的点击出现篮框问题*/
body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
    text-decoration: none;
}

a:hover,
a:active {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
}
li {
    list-style: none;
}

img[src=""],
img:not([src]) {
    opacity: 0;
}


a,
img,
button,
input,
textarea,
select {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

input,
input:focus,
button,
button:focus {
    box-shadow: none;
    outline: 0;
    border: none;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

img {
    vertical-align: middle;
    border: none;
}

.one_line {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.two_line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* ========== 产品频道页 ========== */
.pro_new_box {
    padding-top: 60px;
    background-color: #F0F1F2;
    overflow: hidden;
}
.pro_new_box>.my-container {
    padding-bottom: 80px;
}

/* ========== 产品分类区块 ========== */
.pro-category {
    padding-top: 44px;
    padding-bottom: 44px;
}

/* ========== 分类横幅 ========== */
.category-banner {
    position: relative;
    padding: 115px 30px;
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.category-banner .banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
      -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition: transform .3s;
}
.category-banner:hover .banner-bg {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}


.category-banner .banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.category-banner .banner-content {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9;
}

.category-banner .banner-content h2 {
    font-weight: 700;
    color:var(--white-color);
    line-height: 1.5;
    margin-bottom: 8px;
}

.category-banner .banner-content p {
    font-size: 18px;
    font-weight: 400;
    color:var(--white-color);
    margin-bottom: 54px;
}

.category-banner .btn-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
padding: 10px 14px 10px 18px;
    background: #fff;
    border-radius: 30px;
    font-size: 16px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
}
.category-banner .btn-all svg {
    margin-left: 6px;
}
.category-banner .btn-all:hover {
    background-color:var(--main-color);
    color: #fff;
}

.category-banner .btn-all:hover svg path{
    stroke: var(--white-color);
}


/* ========== 产品卡片网格 ========== */
.category-products {
  padding-top: 32px;
}
.pro-swiper {
    overflow: hidden;
}
.product-card {
    padding: 20px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.product-card:hover .product-card-info h3{
    color: var(--main-color);
}

/* 产品图片区域 */
.product-card-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.product-card-img img{
    width: 100%;
}
.product-card-img img:first-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 270px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition: transform .3s;
}

/* 产品信息区域 */
.product-card-info {
    /* padding-top: 24px; */
    text-align: center;
}

.product-card-info .t {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color:var(--dark-color);
    line-height: 1.6;
    margin-bottom:16px;
}
.product-card-info .t span {
    display: block;
}
.product-card:hover .t {
    color: var(--main-color);
}

.product-card:hover .product-card-img img:first-child{
    -webkit-transform: translate(-50%,-50%) scale(1.03);
    -ms-transform: translate(-50%,-50%) scale(1.03);
    transform: translate(-50%,-50%) scale(1.03);
}

/* 操作按钮 */
.product-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-actions a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.product-card-actions a:nth-child(2) {
    margin-left: 20px;
}
.product-card-actions a:hover {
    color:var(--main-color);
}

.product-card-actions a img {
    width: 20px;
    height: 20px;
}




/* ========== 分页 ========== */
.is-hidden {
    display: none !important;
}

.category-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 56px;
    max-width: 737px;
}

.pagination-bar {
    flex: 1;
    margin-right: 40px;
    position: relative;
    height: 2px;
    background: rgba(0, 0, 0, 0.10);
    overflow: hidden;
}
.pagination-bar .swiper-pagination-progressbar-fill {
    background-color: var(--main-color);
}
.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-btn>div {
    display: flex;
    align-items: center;
    justify-content: center;
 width: 42px;
    height: 42px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.pagination-btn>div:first-child{
   margin-right: 12px;
}
.pagination-btn>div:hover {
    background:var(--main-color);
}

.pagination-btn>div:hover svg path {
    stroke: var(--white-color);
}

.pagination-btn img {
    width: 24px;
    height: 24px;
}

.font32 {
    font-size: 32px;
}
.font40 {
    font-size: 40px;
}
.font56 {
    font-size: 56px;
}

@media (max-width: 1440px) {

.font32 {
    font-size: 30px;
}
    .font40 {
    font-size: 36px;
}
.font56 {
    font-size: 50px;
}
}

@media (max-width: 1230px) {
  
.font32 {
    font-size: 28px;
}
    .font40 {
    font-size: 34px;
}
.font56 {
    font-size: 46px;
}
}

@media (max-width: 767px) {
.font32 {
    font-size: 24px;
}   
.font40 {
    font-size: 26px;
}
.font56 {
    font-size: 26px;
}


.pro_new_box>.my-container {
    padding-bottom: 40px;
}

.category-banner {
    padding: 80px 20px;
    border-radius: 16px;
}
.pro-category {
    padding-top: 20px;
    padding-bottom: 20px;
}
.category-pagination {
    margin-top: 36px;
}

.pro-swiper {
    overflow: visible;
}
}



/* 申请试用表单 */
.solution_mask {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

.asside_mask {
    background-color: transparent;
}

.solution_eject {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    flex-flow: column;
    width: 1400px;
    max-width: 95%;
    /* max-height: 90vh; */
    border-radius: 24px;
    /* background-color: var(--white-color); */
    overflow: hidden;
    opacity: 0;
    transition: transform 0.67s ease-in-out;
    z-index: -100;
}

.solution_eject .solution_close {
    position: absolute;
    right: 32px;
    top: 32px;
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 58px;
    border: 1px solid #DEDEDE;
    cursor: pointer;
}

.solution_eject .solution_close img {
    transition: all .3s;
}

.solution_eject .solution_close:hover img {
    transform: rotate(180deg);
}

.solution_eject.show {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.solution_form {
    display: flex;
    width: 100%;
    height: 100%;
}

.solution_form .item_left {
    flex: 1;
    position: relative;
}

.solution_form .item_right {
    padding: 55px 80px 55px 90px;
    display: flex;
    flex-flow: column;
    width: 52%;
    background-color: var(--white-color);
}

.solution_form .item_left .thumb {
    width: 100%;
    height: 100%;
    border-radius: 0 24px 24px 0;
}

.solution_form .item_left .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution_form .apply_left_bottom {
    position: absolute;
    left: 0;
    top: 0;
    width:95%;
    padding: 50px 40px;
    max-width: 600px;
    min-height: 244px;
    background-image: url(../images/eject_bg.svg);
    background-repeat: no-repeat;
    /* background: linear-gradient(196deg, rgba(0, 0, 0, 0.00) 29.3%, rgba(0, 0, 0, 0.70) 96.01%); */
}

.apply_left_bottom .t {
    color:var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.apply_left_bottom .apply_number {
    padding-top: 16px;
   color: #FFF;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; 
}

.solution_title span {
    color: var(--main-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.solution_text {
    padding-top: 8px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.item_right .m_scoll {
    flex: 1;
    padding-right: 10px;
    overflow-y: auto;
    margin-top: 48px;
    max-height: 65vh;
}

.item_right .col {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    height: 56px;
    padding: 12px 16px;
    align-items: center;
    align-self: stretch;
    width: 100%;
    border-radius: 30px;
    background: #F2F3F4;
}
/*scroll*/
.item_right .m_scoll::-webkit-scrollbar {
    width: 4px;
    height: 2px
}

.item_right .m_scoll::-webkit-scrollbar-button:vertical {
    display: none
}

.item_right .m_scoll::-webkit-scrollbar-corner,
.item_right .m_scoll::-webkit-scrollbar-track {
    background-color: #999;
}

.item_right .m_scoll::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #ccc;
}



.item_right .col.active {
    border-radius: 6px;
}
.item_right .col>span {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.40);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.item_right .col>span img {
    margin-right: 8px;
    width: 24px;
}

.item_right .col>span em {
    font-style: normal;
}

.item_right .input-container {
    flex: 1;
}

.item_right .input-container input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 32px;
    border: 0;
    color: var(--dark-color);
    line-height: 32px;
    font-size: 18px;
    font-weight: 400;
     font-family: 'Microsoft YaHei UI';
    text-align: left;
}
.input_select_box01 input,
.input_select_box02 input{
    cursor: pointer;
}

.item_right input::placeholder,
.input-container textarea::placeholder {
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
     font-family: 'Microsoft YaHei UI'
}

.item_right input:-moz-placeholder,
.input-container textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
     font-family: 'Microsoft YaHei UI'
}

.item_right input::-moz-placeholder,
.input-container textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
     font-family: 'Microsoft YaHei UI'
}

.input-container input:focus::placeholder,
.input-container textarea:focus::placeholder {
    opacity: 0;
    transition: all .2s linear;
}

.input-container input[readonly]:focus::placeholder {
    opacity: 1;
}


.item_right .agreen_ment {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-left: 20px;
    width: 100%;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.item_right .agreen_ment .agree_ej {
    color: var(--main-color);
    text-decoration: underline;
}

.text-area label {
    position: absolute;
    bottom: -28px;
    left: 45px;
    color: var(--main-color);
}

.item_right .col.yanzheng {
    padding-right: 0;
}

.yanzheng .messyz {
    width: 140px;
    height: 56px;
    border-radius: 30px;
    overflow: hidden;
}

.yanzheng .messyz img {
    width: 100%;
    height: 100%;
}

.submit-btn,.st_submit {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 60px;
    padding: 16px;
    border: none;
    border-radius: 48px;
    opacity: 0.3;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 18px;
      font-family: 'Microsoft YaHei UI';
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    cursor: not-allowed;
    transition: background-color 0.2s;
}

.submit-btn.enabled,
.st_submit.enabled {
    opacity: 1;
    cursor: pointer;
}

.checkbox {
    position: relative;
    margin: 0;
    margin-right: 8px;
    padding-top: 4px;
    width: 22px;
    height: 22px;
}

.agreen_ment input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    margin: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 9;
}

.agreen_ment input[type="checkbox"]+label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    width: 22px;
    height: 22px;
    min-height: 22px;
}

.agreen_ment input[type="checkbox"]+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    border-radius: 4px;
    border: 1px solid #666;
    background-color: #FFF;
}

.agreen_ment input[type="checkbox"]:checked+label:before {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.agreen_ment input[type="checkbox"]:checked+label:after {
    content: url("data:image/svg+xml,%3Csvg%20width='14'%20height='14'%20viewBox='0%200%2048%2048'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M43%2011L16.875%2037L5%2025.1818'%20stroke='%23FFFFFF'%20stroke-width='4'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    top: 0px;
    left: 4px;
    width: 14px;
    height: 14px;
}

.agreen_ment input[type="checkbox"]+label:before {
    transition: all 0.3s ease;
}
.item_loop {
    display: flex;
    justify-content: space-between;
}
.item_loop .col {
    width: calc(50% - 12px);
}
.input_select_box02 {
    width: 100%;
}

.multi-tag-container {
    height: 54px;
    padding: 6px 16px;
    padding-left: 0;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    box-sizing: border-box;
    position: relative;
}

.multi-tag-container:hover {
    border-color:var(--main-color);
}
.mess_form .messform .multi-tag-container {
    padding: 12px 16px;
    height: 64px;
}
#m_product {
    display: none !important;
}
.select-checkbox {
    display: inline-block;
    width: 6px;
    height:6px;
    margin-top: 8px;
    margin-right: 8px;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    background-color: var(--white-color);
    vertical-align: middle;
}

.select-checkbox.selected {
    border-color: transparent;
    background-color: transparent;
     background-color: var(--main-color);
    border-radius: 50%;
}
.product-select-item {
    padding: 10px 0;
    cursor: pointer;
    display: flex;
}

.product-select-item:first-child {
    padding-top: 0;
}

.product-select-item:last-child {
    padding-bottom: 0;
}

.product-select-item:hover .product-text {
    color: var(--main-color);
}
.product-text {
    font-size: 16px;
    color: #666;
    vertical-align: middle;
    flex: 1;
    max-width: fit-content;
}

/* 占位符样式 */
.placeholder {
    color: #666;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    user-select: none;
}

/* 单个标签样式 */
.tag-item {
    margin-right: 8px;
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    max-width: 175px;
    width: calc(44% - 8px);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white-color);
}

.tag-text {
    flex: 1;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-close {
    margin-left: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-image: url(../images/mess_close.svg);
    background-repeat: no-repeat;
}

/* 更多计数标签 (+N) */
.tag-rest {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    position: relative;
}

/* --- 悬停浮层 (Popover) --- */
.rest-tags-popover {
    position: absolute;
    border-radius: 8px;
    background: #F8F9FB;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 12px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    width: 220px;
    bottom: calc(100% + 7px);
    right: -62px;

}

/* 浮层小三角 */
.rest-tags-popover::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 62px;
    border: 6px solid transparent;
    border-top-color: #F8F9FB;
}

.tag-rest:hover .rest-tags-popover {
    display: flex;
}

.popover-item {
    display: flex;
    margin-bottom: 8px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white-color);
}

.popover-item:last-child {
    margin-bottom: 0;
}

.popover-item>div:first-child {
    flex: 1;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-item:hover .tag-text {
    color: var(--main-color);
}

.popover-item:hover>div:first-child {
    color: var(--main-color);
}


/* 下拉箭头 */
.icon-arrow {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.icon-arrow  {
    font-size: 0;
}
.icon-arrow i{
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/chevron-down2.svg);
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform .3s;
}
.aa .icon-arrow {
    width: 57px;
    font-size: 16px;
    color: var(--main-color);
}
.aa .icon-arrow i{
    transform:rotate(180deg);
    background-image: url(../images/chevron-down3.svg);
}

/* 下拉列表样式 */
.product-multi-select {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 24px;
    padding-left: 32px;
    width: 100%;
    border-radius: 4px;
    background: #F2F4F6;
    z-index: 100;
    display: none;
    max-height: 225px;
    overscroll-behavior: contain;
    overflow-y: auto;
}

.product-multi-select::-webkit-scrollbar {
    width: 4px;
    height: 2px
}

.product-multi-select::-webkit-scrollbar-button:vertical {
    display: none
}

.product-multi-select::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: #999;
}

.product-multi-select::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

@media (max-width:1365px) {
    .solution_form .item_right {
        padding: 55px 50px 55px 60px;
    }
}

@media (max-width:1279px) {
    .item_right .m_scoll {
        margin-top: 30px;
    }
.item_loop .col {
    width: calc(50% - 6px);
}
}

@media (max-width:991px) {
    .solution_form .item_right {
        padding: 55px 30px 55px 40px;
    }

    .solution_eject .solution_close {
        right: 20px;
        top: 20px;
    }

    .item_right .agreen_ment {
        font-size: 16px;
    }

    .solution_form .apply_left_bottom {
        padding: 40px 20px;
    }

.item_loop {
    flex-wrap: wrap;
}
.item_loop .col {
    width: 100%;
}
.agreen_ment input[type="checkbox"]:checked+label:after {
   
    top: 1px;
  
}
}

@media (max-width:767px) {

    .solution_eject {
        max-width: 100%;
        top: inherit;
        bottom: 0;
        height: calc(100% - 70px);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .solution_eject.show {
    transform: translate(-50%, 0%);
}
    .solution_form .item_left {
        display: none !important;
    }

    .solution_form .item_right {
        width: 100%;
    }

    .solution_form .item_right {
        padding: 45px 20px 30px 20px;
    }

    .submit-btn {
        height: 50px;
        padding: 12px;
        font-size: 18px;
        line-height: 28px;
    }
.item_right .agreen_ment {
    /* padding-left: 0; */
}


}

/* ========== 筛选栏 ========== */
.pro_n_listbox {
    padding-top: 36px;
    background-color: #F0F1F2;
}
.pro_n_listbox>.my-container {
    padding-bottom: 90px;
}
.pro_n_top {
    margin-bottom: 48px;
}

.filter-bar {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color:var(--white-color);
    border-radius: 16px;
    width: 100%;
}

.filter-dropdown {
    position: relative;
    margin-right: 16px;
    width: calc(25% - 16px);
    height: 56px;
    cursor: pointer;
    user-select: none;
}

.filter-select-trigger {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #F0F1F2;
    border-radius: 8px;
    transition: background 0.3s ease, border-radius 0.3s ease;
}


@media screen and (min-width: 768px){
   .filter-select-trigger:hover {
    background: #E5E6E8;
} 
}
.filter-dropdown.active .filter-select-trigger {
    background: #E5E6E8;
    border-radius: 8px 8px 0 0;
}

.filter-select-trigger .filter-select-text {
    color: #666666;
    font-size: 16px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-dropdown.active .filter-select-text {
    color: #333333;
}

.filter-select-trigger img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.filter-dropdown.active .filter-select-trigger img {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.filter-select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E6E8;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 50;
    display: none;
    overflow: hidden;
    padding: 4px 0;
}

.filter-dropdown.active .filter-select-menu {
    display: block;
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    /* white-space: nowrap; */
}

.filter-option:hover {
    background: #F0F1F2;
    color: #333333;
}

.filter-option.selected {
    color: var(--main-color);
    background: #FFF6ED;
}

.filter-or {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    flex-shrink: 0;
    white-space: nowrap;
}

.filter-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    margin-left: 16px;
    height: 56px;
    background: #F0F1F2;
    border-radius: 8px;
    max-width: 326px;
}

.filter-search>form>input:first-child {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #333333;
    font-size: 16px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    height: 100%;
}

.filter-search input::placeholder {
    color: #BABABA;
    font-size: 16px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
}

.filter-search .p_submit {
    width: 24px;
    height: 24px;
    background-image: url(../images/search-icon.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
}
.pro_select_left{
    display: flex;
    flex:1;
}

/* ========== 内容区布局 (左侧筛选 + 右侧产品列表) ========== */
.pro_n_content {
    display: flex;
    justify-content: space-between;
}
.pro_n_left {
    width: 320px;
}
.pro_n_right {
    flex: 1;
    padding-left: 56px;
    min-width: 0;
}
.pro_n_right .pro_n_list_right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 20px;
    min-height: 38px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.pro_n_total {
    order: 2;
}
/* ========== 左侧筛选面板 ========== */
.filter-sidebar {
    overflow: hidden;
}

.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 0;
}

.filter-sidebar-header h3 {
    color: #333333;
    font-size: 32px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    font-weight: 700;
    margin: 0;
}

/* 移动端筛选抽屉相关元素，桌面端默认隐藏 */
.filter-open-btn,
.filter-sidebar-close,
.filter-mask,
.filter-actions {
    display: none;
}

.filter-clear-all {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #666666;
    font-size: 16px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    transition: opacity 0.2s ease;
}
.filter-clear-all span {
    padding-left: 28px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/grey_close.svg);
}


/* 手风琴列表 */
.filter-accordion {
    margin-top: 24px;
    padding: 0;
}

.filter-accordion-item {
    border-top: 1px solid #E5E6E8;
}

.filter-accordion-item:first-child {
    border-top: none;
}

.filter-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin: 8px 0;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
}

.filter-accordion-header:hover {
    
}

.filter-accordion-header .filter-accordion-title {
    color:var(--dark-color);
    font-size: 18px;
    font-weight: 700;
}

.filter-accordion-header .filter-accordion-arrow {
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow-plus.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all 0.3s ease;
}

.filter-accordion-item.open .filter-accordion-header .filter-accordion-arrow {
    background-image: url(../images/arrow-plus2.svg);
}

/* 选项主体 */
.filter-accordion-body {
    display: none;
    padding-bottom: 8px;
}

.filter-accordion-item.open .filter-accordion-body {
    display: block;
}

.filter-accordion-body .filter-checkbox-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px;
    margin-bottom: 8px;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.filter-accordion-body .filter-checkbox-item:hover {
    color: var(--main-color);
}

.filter-accordion-body .filter-checkbox-item:hover .filter-checkbox-text {
    color: var(--main-color);
}

.filter-checkbox-box {
    order: 2;

    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
   border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background-color:var(--white-color);
    transition: all 0.2s ease;
}

.filter-checkbox-item.checked .filter-checkbox-box {
    background: var(--main-color);
    border-color: var(--main-color);
}

.filter-checkbox-box::after {
    content: '';
    display: none;
    width: 6px;
    height: 13px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg) translateY(-1px);
}

.filter-checkbox-item.checked .filter-checkbox-box::after {
    display: block;
}

.filter-checkbox-text {
    color: #666666;
    font-size: 18px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    flex-shrink: 0;
}

.filter-checkbox-item.checked .filter-checkbox-text {
    color: var(--main-color);
}

/* ========== 已选筛选标签 ========== */
.filter-selected-tags {
    flex: 1;
    margin-right: 20px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 40px;
}

.filter-selected-tags-list {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
   padding: 6px 10px 6px 16px;
    margin-right: 8px;
    margin-bottom: 4px;
   border-radius: 60px;
border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
}

.filter-tag:hover {
    border-radius: 60px;
border: 1px solid var(--main-color);
}

.filter-tag .filter-tag-close {
    margin-left: 10px;
    display: flex;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.filter-tag .filter-tag-close img{
    width: 100%;
}

.filter-clear-selected {
    flex-shrink: 0;
    padding: 6px 16px;
    background: none;
    border: 1px solid #E5E6E8;
    border-radius: 20px;
    color: #999999;
    font-size: 14px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-clear-selected:hover {
    border-color: #999999;
    color: #666666;
}

/*  产品列表 */
.pro_n_right ul{
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}
.pro_n_right ul li {
    padding: 15px;
    width: 33.33%;
}

/* ========== 筛选栏响应式 ========== */
@media (max-width: 1440px) {
   
}

@media (max-width: 1470px) {
    .pro_n_left {
    width: 280px;
    }


}

@media (max-width: 992px) {
    .filter-bar {
        flex-wrap: wrap;
        flex-flow: column;
        align-items: flex-start;
    }
   .pro_select_left {
    width: 100%;
   }
   .filter-or{
    margin-top: 16px;
   }
   .filter-search{
    margin-left: 0;
    margin-top: 16px;
   }
    .pro_n_left {
    width: 240px;
    }
   .pro_n_right ul li {
    width:50%;
   }
}
@media (max-width: 768px) {
 .pro_n_left {
    width: 200px;
    }
}
@media (max-width: 767px) {
.pro_select_left {
    flex-flow: column;
}

   .filter-dropdown {
    margin-right:0;
    margin-bottom: 10px;
    width: 100%;
    height: 45px;
 }
 .filter-search{
    margin-top: 0;
    height: 45px;
 }
 /* 移动端下拉菜单用 fixed 定位（脱离横拉容器的 overflow 裁剪），位置由 JS 计算 */
 .filter-select-menu {
    position: fixed;
    top: auto;
    left: auto;
    width: 150px;
    max-height: 50vh;
    overflow-y: auto;
    z-index: 1000;
 }
 .filter-or {
    margin-top: 0px;
    display: none;
  }
.filter-search{
    max-width: inherit;
    width: 100%;
}
.filter-search form {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.pro_n_content {
    flex-flow: column;
}
  /* 移动端：左侧筛选面板改为左侧滑出抽屉 */
  .pro_n_left {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 82%;
    max-width: 320px;
    margin: 0;
    background: #FFFFFF;
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
  }
  .pro_n_left.open {
    transform: translateX(0);
  }
  .filter-mask {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .filter-mask.show {
    opacity: 1;
    visibility: visible;
  }
  .filter-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    padding: 0 18px;
    margin-left: auto;
    background: var(--main-color);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
  }
  .filter-open-btn:active {
    opacity: 0.85;
  }
  .filter-sidebar-close {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .filter-sidebar-close img {
    width: 32px;
    height:32px;
  }
  .filter-clear-all {
    margin-left: auto;
  }
  /* 移动端：筛选面板底部操作按钮，固定在抽屉底部 */
  .filter-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    margin-right: 20px;
    border-top: 1px solid #eeeeee;
  }
  .filter-actions button {
    width: calc(50% - 10px);
    height: 44px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  .filter-reset-btn {
    background: #FFFFFF;
    border: 1px solid #dddddd;
    color: #666666;
  }
  .filter-confirm-btn {
    background: var(--main-color);
    border: none;
    color: #FFFFFF;
  }
  /* 移动端隐藏“清除选项” */
  .filter-clear-all {
    display: none !important;
  }
.filter-checkbox-text {
    font-size: 16px;
}
.filter-accordion-header {
    padding: 16px 0;
    margin:0;
}
.pro_n_right {
  flex: 1;
  padding-left: 0;
  min-width: 0;
}
  .pro_n_right ul li {
    width:100%;
   }
.filter-sidebar {
    position: relative;
    padding: 30px 20px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}
.filter-accordion {
    flex: 1;
    margin-top: 0;
    padding-right: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}
.pro_n_top {
    margin-bottom: 25px;
}
.pro_n_right .pro_n_list_right {
    flex-wrap: wrap;
    padding-bottom:15px;
}
.pro_n_total {
    order: inherit;
}
.filter-selected-tags {
    margin-right: 0;
    margin-top: 16px;
    width: 100%;
    flex: inherit;
    min-height: auto;
}

}

/* 产品详情 */
.prod_tj {
    padding-top: 107px;
    padding-bottom: 100px;
    background-color: #F0F1F2;
}
.prod_tj .t_title {
    color: var(--dark-color);
text-align: center;
font-style: normal;
font-weight: 700;
line-height: 1.5;
}
.prod_tj .pro-category {
    padding: 0;
}

/* ========== 产品详情页 (product_xq.html) ========== */
.pro_detail {
    display: flex;
    flex-direction: column;
    padding: 34px 0 55px 0;
    background-color: #F0F1F2;
}

/* 顶部：左信息 + 右画廊 */
.pro_detail_top {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 左侧信息 */
.pro_detail_info {
    flex: 1;
    min-width: 0;
    margin-top: 90px;
    margin-right: 50px;
    max-width: 653px;
}
.prod_location {
    display: flex;
    align-items: center;
}
.prod_location a {
    position: relative;
    padding-right: 15px;
    margin-right: 8px;
    color: #000;
font-size: 16px;
font-style: normal;
font-weight: 400;
opacity: 0.2;
}
.prod_location a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 8px;
    height: 15px;
    background-image: url(../images/location_line.svg);
    background-size: 8px 15px;
    background-repeat: no-repeat;
}
.prod_location a:last-child {
    padding-right: 0;
    margin-right: 0;
}
.prod_location a:last-child:after {
    display: none;
}
.prod_location a:hover {
    opacity: 0.8;
}

.pro_detail_title {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.pro_detail_subtitle {
    color: #999999;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px dashed #E5E6E8;
}

.pro_detail_desc {
    color: #666666;
    font-size: 18px;
    line-height: 28px;
    height: 92px;
    overflow-y: auto;
    margin-bottom: 40px;
}

/* 按钮 */
.pro_detail_actions {
    display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
}

.pro_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 60px;
    padding: 16px 16px 16px 24px;
    margin-bottom: 10px;
    border-radius: 50px;
    font-size: 18px;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition:background-color 0.25s,transform .25s;
    border: none;
    white-space: nowrap;
}

.pro_btn .pro_btn_icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pro_btn_primary {
    background-color:var(--main-color);
    color:var(--white-color) !important;
}
.pro_btn_primary i {
    margin-left: 48px;
    width: 24px;
    height: 24px;
    background-image: url(../images/chevron-rightw.svg);
    background-repeat: no-repeat;
}

.pro_btn_outline {
    margin-left: 16px;
    background-color:var(--white-color);
    color: #333333;
}
.pro_btn_outline i {
     margin-left: 48px;
    width: 24px;
    height: 24px;
    background-image: url(../images/chevron-right.svg);
    background-repeat: no-repeat;
}
.pro_btn_ghost {
    background-color:var(--white-color);
    color:var(--dark-color);
    padding: 16px 24px 16px 16px;
}

.pro_btn_ghost i {
    margin-right: 8px;
    width: 30px;
    height: 30px;
    background-image: url(../images/cpcs_icon.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}
.pro_btn:hover {
   transform: translateY(-2px);
background-color: var(--main-color);
   color: var(--white-color);
}
.pro_btn_outline:hover i {
    background-image: url(../images/chevron-rightw.svg);
}
.pro_btn_ghost:hover i {
    background-image: url(../images/cpcs_iconw.svg);
}

/* 产品应用领域卡片 */
.prod_infor {
    padding-top: 60px;
    color: #BCBCBC;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; 
}

.pro_app_fields {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -32px;
}

.pro_app_card {
    margin-right: 32px;
    margin-bottom: 32px;
  border-radius: 24px;
background: #F0F1F2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
    cursor: pointer;
    transition: background 0.25s ease;
}
.pro_app_card:last-child {
    margin-right: 0;
}

.pro_app_icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

.pro_app_icon img {
    width: 100%;
}

.pro_app_name {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
}

/* 右侧画廊 */
.pro_detail_gallery {
    display: flex;
}

/* 主图 */
.pro_gallery_main {
    position: relative;
    flex: 1;
    width: 580px;
    height: 580px;
    background-color:var(--white-color);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro_gallery_main .img {
    position: relative;
     width: 100%;
    height: 100%;
}
.pro_gallery_main .img img:first-child {
    position: absolute;
    top: 0;
    left: 0;
   width: 100%;
   height: 100%;
   object-fit: contain;
   transition: opacity 0.3s ease;
}

.pro_gallery_pager {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #FFFFFF;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1;
}

.pro_gallery_pager_current {
    font-weight: 600;
}
.pro_gallery_pager_sep {
    margin: 0 4px;
    opacity: 0.6;
}
.pro_gallery_pager_total {
    font-weight: 400;
}

.pro_gallery_zoom_icon {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.85);
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.pro_gallery_zoom_icon:hover {
    background: #FFFFFF;
    color: var(--main-color);
}

/* 主图左右切换箭头 */
.pro_gallery_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.85);
    color: #333333;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.2s ease;
    pointer-events: none;
    display: none;
}

.pro_gallery_main:hover .pro_gallery_arrow {
    opacity: 1;
    pointer-events: auto;
}

.pro_gallery_arrow:hover {
    background-color: var(--white-color);
    color: var(--main-color);
}

.pro_gallery_prev { left: 12px; }
.pro_gallery_next { right: 12px; }

/* 缩略图列表（垂直） */
.pro_gallery_thumbs {
    width: 96px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.pro_gallery_thumbs_wrap {
    height:480px;
    overflow: hidden;
    border-radius: 10px;
}

.pro_gallery_thumbs_list {
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease;
}

.pro_gallery_thumbs_list::-webkit-scrollbar {
    display: none;
}

/* 缩略图上/下切换箭头 */
.pro_thumb_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 28px;
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    transition: color 0.2s ease;
}
.pro_thumb_arrow:hover {
    color: var(--main-color);
}
.pro_thumb_arrow:disabled {
    color: #D5D5D5;
    cursor: default;
}

.pro_gallery_thumbs_list::-webkit-scrollbar {
    width: 4px;
}
.pro_gallery_thumbs_list::-webkit-scrollbar-thumb {
    background: #CCCCCC;
    border-radius: 2px;
}

.pro_gallery_thumb {
    margin: 8px 0;
    width: 80px;
    height: 80px;
    background-color:var(--white-color);
    border-radius:10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
    position: relative;
}

.pro_gallery_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pro_gallery_thumb:hover {
    border-color: #DDDDDD;
}

.pro_gallery_thumb.active {
    border-color: var(--main-color);
}

.pro_gallery_thumb.active::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 127, 0, 0.15);
    border-radius: 6px;
}

/* 产品详情页响应式 */
@media (max-width: 1470px) {
    .pro_gallery_main {
        width: 500px;
        height: 500px;
    }
    .pro_btn_primary i {
    margin-left: 28px;
    }
    .pro_gallery_thumbs_wrap {
    height: 387px;
    }
    .pro_btn_outline i {
        margin-left: 28px;
    }

}

@media (max-width:1230px) {
.pro_detail_info {
  margin-top: 40px;
}    
  .pro_gallery_main {
   width: 450px;
    height: 450px;
  }

}
@media (max-width: 992px) {
  .pro_detail_top {
    flex-flow: column;
  }
.pro_detail_info {
  min-width: 0;
  margin-top: 0px;
  margin-right:0;
  max-width: inherit;
  width: 100%;
}
.pro_detail_gallery {
    padding-top: 30px;
  display: flex;
}


}
@media (max-width: 767px) {
    .prod_location a:nth-child(2) {
        margin-right: 0;
        padding-right: 0;
    }
.prod_location a:nth-child(2):after {
    display: none !important;
}    
.prod_location a:nth-child(3) {
    display: none !important;
}

.prod_infor {
    padding-top: 30px;
  }
  .pro_detail_desc {
    height: auto;
    margin-bottom: 30px;
}    
.pro_detail_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.pro_detail_actions>div:first-child {
    width: calc(50% - 10px);
}
.pro_detail_actions>div:first-child .pro_btn {
    width: 100%;
}
.pro_detail_actions>div{
    width: 100%;
}
    
  .pro_btn {
    width: calc(50% - 10px);
    height: 50px;
    padding: 16px 12px 16px 20px;
    font-size: 16px;
}
.pro_btn_outline {
    display: none;
}
.pro_btn_primary i,
.pro_btn_outline i {
    margin-left: 14px;
}
.pro_btn_ghost i {
    margin-right: 4px;
    width: 26px;
    height: 26px;
}
    .pro_detail_gallery {
        flex-flow: column;
        padding-top: 0px;
    margin-top: 30px;
    width: 100%;
}
     .pro_gallery_main {
        padding: 30px;
        width: 100%;
        height: auto;
     }
    .pro_gallery_thumbs{
        margin-top: 20px;
        width: 100%;
        height: 96px;
        flex-direction: row;
        align-items: flex-start;
        /* display: none !important; */
    }
    .pro_gallery_thumbs_wrap {
        height: 96px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .pro_gallery_thumbs_wrap::-webkit-scrollbar {
        display: none;
    }
    .pro_gallery_thumbs_list {
        flex-direction: row;
        margin-left: -8px;
        margin-right: -8px;
    }
    .pro_gallery_thumb {
        margin: 8px;
        flex-shrink: 0;
    }
.pro_thumb_arrow {
    display: none !important;
}

  .pro_gallery_arrow{
    opacity: 1;
  }

.pro_gallery_prev { left: 0; }
.pro_gallery_next { right: 0; }
.pro_gallery_arrow {
    display: none !important;
}



}

/* ============ 产品详情锚点导航 ============ */
.pro_xq_nav {
    position: sticky;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 96px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pro_xq_nav .my-container {
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.pro_xq_nav .my-container:after {
    display: none;
}
.pro_xq_nav_tabs {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.pro_xq_nav_tabs a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 45px;
    height: 100%;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-color);
    transition: color 0.3s;
    white-space: nowrap;
}

.pro_xq_nav_tabs a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: transparent;
    transition: all 0.3s;
}

.pro_xq_nav_tabs a.active {
    color: var(--main-color);
}

.pro_xq_nav_tabs a.active::after {
    width: 100%;
    background-color: var(--main-color);
}

@media (min-width:768px) {
    .pro_xq_nav_tabs a:hover {
        color: var(--main-color);
    }

    .pro_xq_nav_tabs a:hover::after {
        width: 100%;
        background-color: var(--main-color);
    }

}

.pro_xq_nav_btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px 12px 22px;
    width: 192px;
    height: 60px;
    background-color: var(--main-color);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s;
}

.pro_xq_nav_btn:hover {
     transform: translateY(-2px);
}

.pro_xq_nav_btn span {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
}

.pro_xq_nav_btn_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;}

.zy_text p {
    display: flex;
    padding-bottom: 10px;
    color: #666;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; 
}
.zy_text p span {
    margin-right: 4px;
}
.zy_text p:last-child {
    padding-bottom: 0;
}

@media (max-width: 1366px) {
    .pro_xq_nav_tabs a {
        margin-right: 40px;
    }

}

@media (max-width: 1280px) {
    .pro_xq_nav_tabs a {
        margin-right: 35px;
    }

}

@media (max-width: 1024px) {
    .pro_xq_nav_tabs a {
        margin-right: 25px;
    }

}

@media (max-width: 991px) {
    .pro_xq_nav_tabs a {
        margin-right: 16px;
    }

    .pro_xq_nav_btn {
        padding: 10px 10px 10px 20px;
        width: 156px;
        height: 56px;
    }

}

@media (max-width: 767px) {
    .pro_xq_nav {
        position: inherit;
        top: inherit;
        height: auto;
        padding: 0;
        display: none !important;
    }

    .pro_xq_nav .my-container {
        padding-right: 0;
    }

    .pro_xq_nav_tabs {
        height: 60px;
        overflow-x: auto;
    }

    .pro_xq_nav_tabs a {
        width: auto;
        padding: 0 8px;
    }

    .pro_xq_nav_btn {
        display: none;
    }
}

/* ============ 产品详情 - 产品优势 ============ */
.dis_flex {
    display: flex;
}
.pro_xq_advantage {
    padding-top: 77px;
    background-color:var(--white-color);
}

.pro_xq_advantage .term_box {
    /* overflow: hidden; */
}

.pro_xq_adv_wrap {
    /* padding-bottom: 48px;
    padding-top: 48px; */
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.10); */
}
.pro_x_line {
    /* margin-bottom: 56px; */
    margin-top: 56px;
    width: 100%;
    height:1px;
    background-color: rgba(0, 0, 0, 0.10);
}
.pro_xq_adv_wrap>.my-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pro_xq_adv_wrap:first-child {
    padding-top: 0;
}

.pro_xq_adv_left {
    width: 300px;
    flex-shrink: 0;
}

.pro_xq_adv_label {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.pro_xq_adv_title {
    font-weight: 400;
    color: var(--dark-color);
    line-height: 1.5;
    margin-top: 8px;
}

.pro_xq_adv_divider {
    margin-top: 16px;
}

.pro_xq_adv_divider img {
    display: block;
}

.pro_xq_adv_right {
    flex: 1;
    margin-left: 50px;
    max-width: 1094px;
}

.adv_loop {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: -15px;
    margin-left: -15px;
    margin-right: -15px;
}

.adv_loop li {
    padding:15px;
    width: 33.33%;
}

.pro_xq_adv_card {
    display: flex;
    flex-flow: column;
    padding:24px;
    width: 100%;
    height: 100%;
   border-radius: 24px;
    background-color: #F0F1F2;
    transition: transform 0.3s;
}

.pro_xq_adv_card:hover {
    transform: translateY(-5px);
}
.pro_xq_adv_icon {
    width: 35px;
    height: 35px;
    background:var(--main-color);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pro_xq_adv_icon img {
    width: auto;
    height: auto;
}

.pro_xq_adv_card_body {
    min-width: 0;
    margin-top: 43px;
}

.pro_xq_adv_card_body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.55;
}

.pro_xq_adv_card_body p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    margin-top: 10px;
}

.pro_xq_yy,
.pro_xq_zhinan,
.pro_xq_zysx {
    padding-top: 56px;
    /* border-bottom: 1px solid rgba(0, 0,0,0.1); */
}
.pro_xq_zysx {
    padding-bottom: 56px;
}
.pro_xq_zysx {
    border-bottom: none;
}

/* 产品指南 */
.pro_guide_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pro_guide_item {
    border-radius: 24px;
}

.pro_guide_title {
    font-size: 18px;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 700;
    color: #333333;
    margin: 0 0 24px;
    line-height: 1;
}

.pro_guide_text {
    font-size: 16px;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    color: #666666;
    line-height: 28px;
    margin: 0;
}





@media (max-width: 1230px) {
    .pro_xq_advantage {
        padding-top: 80px;
    }

    .pro_xq_adv_wrap>.my-container,
    .pro_xq_yy>.my-container,
    .pro_xq_zhinan>.my-container,
    .pro_xq_zysx>.my-container {
        flex-flow: column;
    }


    .pro_xq_adv_right {
        margin-left: 0;
        margin-top: 35px;
        max-width: inherit;
        width: 100%;
    }
    .adv_loop {
    margin-top: -10px;
    margin-left: -10px;
    margin-right: -10px;
}
.adv_loop li {
    padding: 10px;
}
   .pro_xq_adv_card {
    padding: 20px;
}
.pro_app_fields {
    margin-left: -10px;
    margin-right: -10px;
}
.pro_app_card {
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 32px;
    width: calc(20% - 20px);
    padding: 20px 16px;
}
.pro_app_icon {
    margin-bottom: 10px;
}

}
@media (max-width:991px) {
.pro_app_card {
    width: calc(25% - 20px);
}

}
@media (max-width: 767px) {
    .pro_xq_advantage {
        padding-top: 50px;
    }

    .pro_xq_adv_divider {
        margin-top: 5px;
    }

    .adv_loop li {
        width: 100%;
    }

    .pro_xq_adv_card {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .pro_xq_adv_icon {
        padding: 2px;
        width: 26px;
        height: 26px;
    }

    .pro_xq_ban_content .pro_x_top {
        padding-top: 50px;
        padding-bottom: 20px;
        flex-flow: column;
    }

    .pro_x_left {
        max-width: inherit;
        flex: 1;
        margin-right: 0;
    }
    .pro_app_fields {
        margin-left: -6px;
        margin-right: -6px;
    }

       .pro_app_card {
        margin: 6px;
        width: calc(50% - 12px);
    }
    .pro_app_icon {
        width: 40px;
        height: 40px;
        margin-bottom: 5;
    }
.prod_tj {
    padding-top: 50px;
    padding-bottom: 50px;
}
.pro_xq_yy, .pro_xq_zhinan, .pro_xq_zysx {
    padding-top: 50px;
    /* padding-bottom: 50px; */
}

}