@charset "utf-8";
/* CSS Document */
/* =====================
 * 首页通用
 * ===================== */
.contact-center{
    background: #FFFFFF !important;
}
/* ==============================================================================================================================
 *                                                                    产品列表
 * ============================================================================================================================== */
.product-center__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  padding: 0 6vw clamp(3rem, 5vw, 4rem);
}
/* 左边分类 */
/* ===================== 产品分类目录 ===================== */
.product-center__sidebar {
    position: sticky;
    top: calc(var(--header-height, 72px) + 3rem);
    align-self: start;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(9, 28, 68, 0.12);
    border: 1px solid rgba(12, 66, 138, 0.08);
    z-index: 10;
}
.product-center__sidebar-inner {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.product-center__sidebar-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}
.product-center__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
    position: relative;
    width: 100%; 
}
.product-center__nav ul li{
	position: relative;
}
/* 情况1：类名以指定字符串开头 */
.product-center__nav ul [class^="product-center__sidebar-inner_"],
/* 情况2：类名中包含该字符串，且前面有空格（即不是第一个类名） */
.product-center__nav ul [class*=" product-center__sidebar-inner_"] {
    list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	position: absolute;
	z-index: 999;
	width: 100%;
    align-self: start;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(9, 28, 68, 0.12);
    border: 1px solid rgba(12, 66, 138, 0.08);
}
.product-center__nav ul li ul {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* 情况1：类名以指定字符串开头 */
.product-center__nav ul [class^="product-center__sidebar-inner_"],
/* 情况2：类名中包含该字符串，且前面有空格（即不是第一个类名） */
.product-center__nav ul [class*=" product-center__sidebar-inner_"]  {
	top: 0;
	left: 100%;
}
.product-center__nav a {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.product-center__nav a:hover,
.product-center__nav a:focus {
    background: rgba(0, 52, 120, 0.08);
    color: var(--color-primary);
    transform: translateX(4px);
}
/* ===================== 结束 ===================== */



/* ===================== 搜索 ===================== */
.global-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f3f4f6;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    width: min(420px, 100%);
    position: relative;
}
.global-search input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--color-text);
    outline: none;
    width: clamp(100px, calc(100% - 80px), 220px)
}
.global-search input::placeholder {
    color: var(--color-muted);
}
.global-search button {
    border: none;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.45rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.global-search button:hover,
.global-search button:focus {
    background: var(--color-primary-light);
}
/* ===================== 结束 ===================== */



/* 右边产品列表 */
/* ===================== 没有产品 ===================== */
.product-ComingSoon{
    background: #ffffff;
    border-radius: 28px;
    padding: clamp(2.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 2rem);
    box-shadow: 0 20px 45px rgba(10, 22, 53, 0.08);
    border: 1px solid rgba(12, 66, 138, 0.08);
}
.product-ComingSoon .product-section__eyebrow {
    margin: 0;
    text-transform: uppercase;
    text-align:center; 
    font-size:2.2em; 
    color:#666;
}
.product-ComingSoon .product-section__description {
    margin: 0;
    text-align:center; 
    font-size:0.9625rem; 
    color:#999; 
    line-height:1.5em; 
    padding-bottom:2.5vw;
}
.product-ComingSoon .product-section__description a{
    color:#337ab7;
}
/* ===================== 结束 ===================== */



/* ===================== 有产品 ===================== */
.product-feature-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-content: start;
    align-items: start;
    
}
.product-feature-card {
    background: linear-gradient(160deg, rgba(0, 52, 120, 0.08), rgba(0, 52, 120, 0.02));
    border: 1px solid rgba(0, 52, 120, 0.12);
    border-radius: 24px;
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    box-shadow: 0 18px 36px rgba(7, 22, 53, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-feature-card:hover,
.product-feature-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(7, 22, 53, 0.18);
}
.product-feature-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-feature-card__category {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 52, 120, 0.75);
}
.product-feature-card__title {
    margin: 0;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--color-primary-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
    min-height: calc(1.35em * 2);
    font-weight: 700;
}
.product-feature-card__image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(7, 22, 53, 0.12);
    aspect-ratio: 1 / 1;
    display: block;
    cursor: pointer;
}
.product-feature-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.product-feature-card__price {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}
.product-feature-card__link {
    align-self: flex-start;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.product-feature-card__link:hover,
.product-feature-card__link:focus {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 52, 120, 0.28);
}

@media (max-width: 960px) {
    .product-feature-grid {
        grid-template-columns: 1fr;
        justify-content: center;
        justify-items: center;
    }
    .product-feature-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
        height: auto !important;
        max-height: none !important;
        min-height: unset !important;
        flex: 1 1 auto !important;
        padding: 1rem !important;
        gap: 0.75rem !important;
        border-radius: 16px !important;
    }
}
@media (min-width: 961px) and (max-width:1191px) {
    .product-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1192px) and (max-width:1439px) {
    .product-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width:1440px) {
    .product-feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    /* 特殊处理：当容器内只有一个子元素时 */
    .product-feature-grid:has(> :only-child) {
        /* 强制列宽为 320px，不再拉伸 */
        grid-template-columns: 320px;
    }
    .product-feature-card {
        width: min(320px, 100%); 
    }
}
@media (max-width: 1024px) {
     .product-center__layout {
         grid-template-columns: 1fr;
    }
    .product-center__sidebar {display: none;}
}
/* ===================== 结束 ===================== */
/* ==============================================================================================================================
 *                                                                    产品列表   结束
 * ============================================================================================================================== */



/* ==============================================================================================================================
 *                                                                    产品详情
 * ============================================================================================================================== */
.product-detail__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2.5rem, 4vw, 3.5rem);
    padding: 0 6vw clamp(3rem, 5vw, 4rem);
}
/* ===================== 产品图片集 ===================== */
.product-detail{
    width: calc(100vw - (6vw + 6vw + 280px + 17px + clamp(2.5rem, 4vw, 3.5rem)));
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 4vw, 4.5rem);
}
.product-detail__summary {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
    background: #FFFFFF;
/*
    font-size:0;
    display: flex;
    justify-content: space-between;
    gap: 6%;
*/
}
.product-detail__cover{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.prdImg {
    position: relative;
}
.prdImg img {
    cursor: pointer;
    border: 1px solid #eee;
}
.transparent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    pointer-events: none;
}
.prod-badge {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-wrapper li {
    list-style: none;
}
.swiper-android .swiper-slide,.swiper-wrapper {
    transform: translate3d(0px,0,0);
}
.swiper-pointer-events {
    touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.swiper-autoheight,.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform,height;
}

















/*-------------左右箭头-------------*/
.swiper-button-prev,.swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(44px / 44 * 27);
    height: 44px;
    margin-top: calc(0px - (44px / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-prev:after,.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: 44px;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-prev,.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}
.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after {
    content: 'prev';
}
.swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}
.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after {
    content: 'next';
}
.swiper-paginationswiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}
.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal > .swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
    left: 0;
    width: 100%;
}


@media (min-width: 1025px) and (max-width: 1220px) {
    .product-detail__summary {
        display: flex;
        flex-direction: column;
        gap: 1.875rem;
    }
    .product-detail__cover{
        width: 100%;
        display: grid;
        grid-template-columns: calc(100% - 85px) 1fr;
        gap: 0.3125rem;
    }
    .product-detail__info{
        width: 100%;
    }
    .prdImg {
        width: 100%;
    }
}
@media all and (min-width: 1220px) {
    .prdImg {
        width: calc(100% - 85px);
    }
}


@media all and (min-width: 1025px) {  
    .prdImg img {
        width: 100%;
        box-sizing: border-box;
        border-radius: 10px;
    } 
    .pagination {
        display: none;
    }
    
    /*-------------左右箭头-------------*/
    .prdImg .swiper-button-prev,.prdImg .swiper-button-next {
        opacity: 0;
        transition: opacity .25s ease;
        width: 50px;
        height: 50px;
    }
    .prdImg:hover .swiper-button-prev,.prdImg:hover .swiper-button-next {
        opacity: .5;
    }
    .prdImg .swiper-button-prev:hover,.prdImg .swiper-button-next:hover {
        opacity: 1;
    }
    .prdImg .swiper-button-prev {
        left: 0;
    }
    .prdImg .swiper-button-next {
        right: 0;
    }
    .prdImg .swiper-button-prev:after,.prdImg .swiper-button-next:after {
        content: "";
        width: 20px;
        height: 20px;
        top: 50%;
        position: absolute;
        left: 50%;
        margin-top: -10px;
        margin-left: -10px;
        border-top: 2px solid #444;
        border-left: 2px solid #444;
    }
    .prdImg .swiper-button-prev:after {
        transform: rotate(315deg);
        margin-left: -7px;
    }
    .prdImg .swiper-button-next:after {
        transform: rotate(135deg);
        margin-left: -15px;
    }
    .listImg {
        position: relative;
        width: 80px;
        max-height: 549px;
        box-sizing: border-box;
    }
    .swiper-container {
        height: 100%;
    }
    .listImg li.swiper-slide {
        height: auto !important;
    }
    .listImg li.swiper-slide img {
        width: 100%;
        cursor: pointer;
        box-sizing: border-box;
        border-radius: 10px;
        border: 1px solid #f1f1f1;
    }
    .listImg li.swiper-slide.selected img {
        border: 1px solid #aaa;
        width: calc(100% - 1px);
    } 
}


@media (max-width: 1024px) {
    img {height: 100%;}
    .prdImg {
        width: 100%;
    }
    .product-detail__layout {
        display: block;
    }
    .product-detail__summary {
        display: block;
        display: flex;
        flex-direction: column;
    }
    .product-detail__cover{
        display: block;
        width: 100%;
/*
        display: grid;
        grid-template-columns: calc(100% - 85px) 1fr;
        gap: 0.3125rem;
*/        
    }
    .product-detail__info {
        width: 100%;
    }
    .prdImg .swiper-button-prev,.prdImg .swiper-button-next,.listImg {
        display: none;
    }
    .prdImg .pagination {
        background: rgb(0 0 0 / 20%);
        position: absolute;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        color: #ddd;
        line-height: 1.3;
        min-width: 4.2rem;
        padding: 0.3rem 0;
        bottom: 1rem;
        border-radius: 1.5rem;
        font-size: .8rem;
        transform: translateX(-50%);
        left: 50%;
    }
    .prdImg .pagination span {
        margin: 0 5px;
    }
    .prdImg .pagination .swiper-pagination-current {
        color: #fff;
        font-weight: bold;
    }
    .product-detail{
        width: calc(100vw - 6vw - 6vw - 17px);
        float:none;
    	margin:0;
        padding:0;
    }
    .swiper-autoheight,.swiper-autoheight .swiper-slide {
        height: 100%;
    }
}










/* ===================== 结束 ===================== */



/* ===================== 产品参数说明 ===================== */
.product-detail__info{
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.product-detail__parameter{
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2.5rem);
    border-bottom: 1px solid #e5e5e5;
}
.product-detail__parameter_title{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product-detail__parameter_title .product-detail__parameter_headlin {
/*
    line-height: 1.2;
    font-weight: bold;
    display: block;
*/
    
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    display: block;
    
    
    
}
.product-detail__parameter_icon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.product-detail__parameter_icon .b_wish {
    cursor: pointer;
}
 .product-detail__parameter_icon .b_share a {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.product-detail__parameter_basic{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3125rem;
    font-size: 15px;
    color: var(--color-text);
}
.product-detail__parameter_basic b {
    font-weight: normal;
    color: #fb9804;
}
.product-detail__parameter_basic a {
    color: var(--color-text);
}
.product-detail__parameter_price {
    margin-bottom: 30px
}
.product-detail__introduction{
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.625rem;
}
.product-detail__introduction p{
    margin: 0;
}
.choose-amount {
    width: 120px;
}
.wrap-input{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    grid-template-rows: 40px
}
.choose-amount a {
    border: .5px solid rgba(0,0,0,.02);
    text-align: center;
    overflow: hidden;
    background: #f7f8fc;
    color: #1a1a1a;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 700;
}
.choose-amount input {
    display: block;
    line-height: 40px;
    border: none; /* 取消默认边框 */
    outline: none; /* 取消点击聚焦时的外轮廓 */
    text-align: center;
    font-size: 20px;
    font-weight: 400
}
.buyCartbutton{
    display: flex;
    gap: 1rem;
}
.buyCartbutton[class*="gColumn"] button {
    box-sizing: border-box;
    border: 1px solid #c7c7c7;
    background: none;
}
.actionCart {
    position: relative;
}
.buyCartbutton[class*="gColumn"] [class*='btn'] {
    flex: 1;
    padding: 0;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #000;
    margin: 0;
    border-radius: 5px;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    font-family: inherit;
}
.buyCartbutton[class*="gColumn"] .bt__buy {
    background-color: #f3675c;
    color: #fff;
}
@media all and (min-width: 1025px) {
    .product-detail__parameter_title .product-detail__parameter_headlin {
        font-size: 25px;
        line-height: 1.2;
        font-weight: 600;
        display: block;
    }
    .product-detail__parameter_icon .b_wish,.product-detail__parameter_icon .b_share {
        width: 24px;
        height: 24px;
    }
    .product-detail__parameter_price {
        font-size: 21px;
        font-weight: bold;
        display: inline-block;
        vertical-align: middle;
    }
}
@media all and (max-width: 1024px) {
    .product-detail__parameter_icon .b_wish,.product-detail__parameter_icon .b_share {
        width: 24px;
        height: 24px;
    }
}

/* ===================== 结束 ===================== */




























/* ===================== 购买信息 ===================== */
.detailbody{
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 4vw, 3.5rem);
}
.menu-inner {
     position: relative;
     height: 70px;
}
.menu-inner .menu {
    display: flex;
}
.menu-inner .menu > li {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 0;
    background: #fff;
    color: #222;
    border: 0;
    flex: auto;
}
.menu-inner .menu li a {
    display: inline-block;
    color: #6d6d6d;
    text-decoration: none;
    outline: 0;
    text-align: center;
}
.menu-inner .menu > li a {
    width: 100%;
    min-width: 0;
    word-break: break-all;
    padding: 0;
    color: #222;
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
}
.menu-inner .menu li.selected a {
    border-bottom: 3px solid #111;
    font-weight: bold;
}
.productInfo{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.productInfo .section_title{
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}
.productInfo .ec-base-fold {
    position: relative;
}
.productInfo .ec-base-fold > .title {
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.3;
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}
.productInfo .ec-base-fold > .title h2 {
    display: inline-block;
    font-size: 15px;
    padding: 18px 0;
    margin: 0px;
    line-height: 1.3;
    font-weight: normal;
}
.productInfo .ec-base-fold.theme1 > .title:after {
    content: "";
    position: absolute;
    top: 20px;
    right: 5px;
    overflow: hidden;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.productInfo .ec-base-fold.theme1.selected > .title:after {
    top: 25px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.productInfo .ec-base-fold.theme1 > .title {
    border-bottom: 1px solid #e9e9e9;
}






.productInfo .ec-base-fold > .contents {
    display: none;
    background: #fff;
}
.productInfo .ec-base-fold.selected > .contents {
    display: block;
}

.productInfo .ec-base-fold .info {
    line-height: 22px;
}





@media all and (min-width: 1025px) {
    .menu-inner .menu li a {
        font-size: 17px;
        height: 70px;
        line-height: 70px;
    }
     .productInfo .ec-base-fold.selected > .contents .info {
        box-sizing: border-box;
        background: #fff;
        font-size: 13px;
        padding: 14px 0;
        min-height: 48px;
        color: #888;
    }
/*
     #prdDetail {
        padding: 30px 0 0;
    }
*/
}
/* ===================== 结束 ===================== */






/* ==============================================================================================================================
 *                                                                    产品详情   结束
 * ============================================================================================================================== */








































