* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

/* 1. 电脑 ≥1200px */
/* @media (min-width: 1200px) {} */

/* 2. 小电脑 992px ~ 1199px */
/* @media (min-width: 992px) and (max-width: 1199px) {} */

/* 3. 平板 768px ~ 991px */
/* @media (min-width: 768px) and (max-width: 991px) {} */

/* 4. 手机 ≤767px */
/* @media (max-width: 767px) {} */



/* banner图 */
html {
    font-size: 16px;
    /* 基础字体大小，1rem = 16px */
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 版心 */
.wrapper {
    width: 80%;
}



/* 导航 */
.tabber {
    position: static !important;
    background: rgba(237, 240, 241, 1);
    border-bottom: 1px solid rgb(211, 210, 210);
}

.tabber .container {
    background: rgba(237, 240, 241, 1) !important;
}

.tabber .navbar .nav-item-second {
    top: 5rem !important;
}

.tabber .navbar .nav-item-second .nav-item-second-inner {
    background: rgba(237, 240, 241, 1);
}


/* =========================中心 */
.banner {
    width: 100%;
    height: 56.25rem;
    background: rgba(237, 240, 241, 1);
    position: relative;
    overflow: hidden;
}

.banner .b-img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.banner .b-img img {
    width: 100%;
}

.banner .s-c-n {
    position: absolute;
    top: 2.125rem;
    left: 8.3125rem;
    font-size: 1.2rem;
    line-height: 1.5625rem;
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 300;

}

.banner .b-big-box {
    position: absolute;
    top: 6.375rem;
    left: 5.3125rem;
    width: 100%;
    /* height: 100%; */
    display: flex;

}

.banner .b-big-box .big-box-l {
    /* margin-left: 7.375rem; */
    width: 40%;
    border-radius: 0.5rem;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* 产品图片画廊 */
.banner .b-big-box .big-box-l .product-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.banner .b-big-box .big-box-l .product-gallery .gallery-main {
    overflow: hidden;
    width: 80%;
    height: 32rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 0.5rem;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.banner .b-big-box .big-box-l .product-gallery .gallery-main:hover .main-image {
    transform: scale(1.1);
}

.banner .b-big-box .big-box-l .product-gallery .gallery-main .main-image {
    transition: transform 0.3s linear;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-prev,
.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-next {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 2px solid rgba(250, 106, 113, 1);
    background: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-prev:hover,
.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-next:hover {
    background: rgba(250, 106, 113, 1);
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-prev img,
.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-next img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-prev:hover img,
.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-next:hover img {
    filter: brightness(0) invert(1);
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumbnails {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    flex: 1;
    justify-content: center;
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumbnails .thumb-item {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 0.375rem;
    background: rgba(204, 204, 204, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumbnails .thumb-item.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(238, 236, 236, 0.2);
    background: rgba(255, 255, 255, 1);
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumbnails .thumb-item:hover {
    border-color: #fff;
}

.banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumbnails .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.banner .b-big-box .big-box-r {
    flex: 1;
    height: 100%;
    margin-left: 3.5625em;
}

.banner .b-big-box .big-box-r h2 {
    color: rgba(23, 23, 23, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 1.875em;
    line-height: 2.5em;
    width: 20.3125em;
    height: 3em;
    gap: 0.5em;
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
    place-content: flex-start;
    place-items: flex-start;

    flex-shrink: 0;
    border-bottom: 1px solid rgba(0, 150, 224, 1);
}

.banner .b-big-box .big-box-r .box-r-text {
    margin-top: 2.125em;
    width: 80%;
    /* height: 10em; */
    font-size: 1.4em;
    /* line-height: 2.5em; */
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;

}

.banner .b-big-box .big-box-r .box-r-text2 {
    margin-top: 1.125em;
    width: 80%;
    /* height: 10em; */
    font-size: 1.4em;
    /* line-height: 2.5em; */
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
}

.banner .b-big-box .big-box-r .box-r-text2 .box-r-text2item {
    margin-bottom: 1rem;

}

.banner .b-big-box .big-box-r .box-r-text2 .box-r-text2item::before {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background: url('../images/Icon.svg') no-repeat center center;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
}

.banner .b-big-box .big-box-r .b-d {
    display: flex;
    margin-left: 9.0625em;
    margin-top: 2.0625em;
    gap: 1.8125em;
}

.banner .b-big-box .big-box-r .box-btn {
    width: 12.375rem;
    height: 3.4375rem;
    padding: 0 1rem;
    border-radius: 0.5rem;
    gap: 0.375rem;
    display: flex;
    place-content: center;
    place-items: center;
    flex-shrink: 0;
    background: rgba(250, 106, 113, 1);
    transition: all 0.3s linear;
    cursor: pointer;
}

.banner .b-big-box .big-box-r .box-btn:hover {
    transform: translateY(-5px);
}

.banner .b-big-box .big-box-r .box-btn:last-child {
    background: rgba(0, 150, 224, 1);
}

.banner .b-big-box .big-box-r .box-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .b-big-box .big-box-r .box-btn span {
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.5625rem;
}



/* 适用行业 */
.h-industry {
    position: relative;
    margin-top: -3rem;
    width: 100%;
    border-radius: 3.125rem 3.125rem 0 0;
    background: rgba(255, 255, 255, 1);
}

/* h-post */
.h-industry .h-post {
    position: absolute;
    z-index: 5;
    top: -6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 9.25rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0.25rem 1rem rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-industry .h-post .h-post-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.h-industry .h-post .h-post-item img {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
}

.h-industry .h-post .h-post-item .h-post-label {
    color: rgba(156, 163, 175, 1);
    font-family: "Alibaba PuHuiTi", Inter, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.25rem;
}

.h-industry .h-post .h-post-item h3 {
    color: rgba(17, 24, 39, 1);
    font-family: "Alibaba PuHuiTi", Inter, sans-serif;
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 2.25rem;
    letter-spacing: 0.4px;
}

.h-industry .h-post .h-post-item p {
    color: rgba(156, 163, 175, 1);
    font-family: "Alibaba PuHuiTi", Inter, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.25rem;
}

.h-industry .h-post .h-post-divider {
    width: 1px;
    height: 6.25rem;
    background: rgba(229, 231, 235, 1);
}







.h-industry .wrapper {
    height: 100%;
    margin: 0 auto;
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
}

.h-industry .wrapper .h-title {
    margin-top: 7rem;
    display: flex;
    margin-left: 1.25rem;
    align-items: center;
    gap: 0.3rem;
}

.h-industry .wrapper .h-title img {
    width: 1.78rem;
    height: 1.78rem;
}

.h-industry .wrapper .h-title span:first-child {
    /* width: 1.78rem;
    height: 1.78rem; */
    background: rgba(0, 150, 224, 1);
    border-radius: 50%;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 1.78rem;

}

/* 表面处理 */
.h-industry .wrapper .h-title span:last-child {
    font-size: 1.875rem;
    line-height: 2.56rem;
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
}

.h-industry .wrapper .h-p-text {
    margin-top: 1rem;
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.375rem;
    margin-left: 1.25rem;
}

.h-industry .wrapper .h-industry-box {
    padding-top: 1px;
    padding-bottom: 1px;
    position: relative;
    margin-top: 4.56rem;
    margin-bottom: 6.87rem;
    /* height: 450px; */
    width: 80%;
    border-radius: 12px;
    border-left: 4px solid rgba(238, 106, 112, 1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.12);
}

.h-industry .wrapper .h-industry-box h2 {
    color: rgba(238, 106, 112, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.375rem;
    text-decoration-line: underline;
    text-underline-offset: 25%;
    text-underline-position: from-font;
    text-decoration-skip-ink: auto;
    margin-top: 2.5rem;
    margin-left: 6rem;
}

.h-industry .wrapper .h-industry-box ul {
    display: flex;
    /* background-color: #00aaff; */
    width: 50%;
    flex-direction: column;
    margin-left: 6rem;
    margin-top: 3.125rem;
    gap: 1.875rem;
}

.h-industry .wrapper .h-industry-box ul li {
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2rem;
    position: relative;

}

.h-industry .wrapper .h-industry-box ul li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml;utf8,%3Csvg width='100%' height='100%' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2216_3579)'%3E%3Cpath d='M9.99935 18.3327C14.6017 18.3327 18.3327 14.6017 18.3327 9.99935C18.3327 5.39698 14.6017 1.66602 9.99935 1.66602C5.39698 1.66602 1.66602 5.39698 1.66602 9.99935C1.66602 14.6017 5.39698 18.3327 9.99935 18.3327Z' stroke='%230096E0' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.5 10.0007L9.16667 11.6673L12.5 8.33398' stroke='%230096E0' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2216_3579'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    /* 放SVG */
    position: absolute;
    left: -1.5rem;
    top: 0;
    z-index: 2;
}

.h-industry .wrapper .h-industry-box ul li span {
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-size: 1.4rem;
    line-height: 1.8rem;
}

/* 分页 */
/* 分页容器 */
.page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* 按钮和数字之间的间距 */
    margin-bottom: 2.5rem;
    margin-top: 3.75rem;
    margin-left: 20rem;
}

/* 上/下一页按钮 */
.page-btn {
    width: 3.56rem;
    height: 3.56rem;
    border-radius: 2.5rem;
    background: rgba(0, 150, 224, 1);
    border: none;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    transform: rotate(-90deg);
}

.next1 {
    transform: rotate(90deg);
}

.page-btn:hover {
    background-color: #0077c2;
}

/* 页码显示 */
.page-number {
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    font-size: 1.31rem;
    line-height: 1.875rem;
    font-weight: bold;
}

.page-number .current {
    /* color: #ff5252; */
    /* 红色当前页 */
    color: rgba(250, 106, 113, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 2.25rem;
}

.page-number .total {
    color: #000;
}

.h-industry .wrapper .h-industry-box .h-industry-rbox {
    overflow: hidden;
    position: absolute;
    top: -7.375rem;
    right: -13.75rem;
    width: 26.125rem;
    height: 28.875rem;
    border-radius: 8px;
}

.h-industry .wrapper .h-industry-box .h-industry-rbox:hover img {
    transform: scale(1.1);
}

.h-industry .wrapper .h-industry-box .h-industry-rbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s linear;
}

/* 适用行业 */


/* 工艺流程 */

.g-Process {
    overflow: hidden;
    position: relative;
    /* margin-top: -2.25rem; */
    width: 100%;
    /* height: 75rem; */
    border-radius: 3.125rem 3.125rem 0rem 0rem;
    background: rgba(255, 255, 255, 1);
    z-index: 2;
    margin-bottom: 5rem;
}

.g-Process .wrapper {
    overflow: hidden;
    height: 100%;
    margin: 0 auto;
}

.g-Process .wrapper .g-Process-title {
    margin-top: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.g-Process .wrapper .g-Process-title img {
    width: 1.78rem;
    height: 1.78rem;
}

.g-Process .wrapper .g-Process-title span:first-child {
    /* width: 1.78rem;
    height: 1.78rem; */
    background: rgba(0, 150, 224, 1);
    border-radius: 50%;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 1.78rem;

}

.g-Process .wrapper .g-Process-title span:last-child {
    font-size: 1.875rem;
    line-height: 2.56rem;
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
}

.g-Process .wrapper .c-text {
    text-align: center;
    margin-top: 1rem;
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.8rem;

}

/* 展示图 */

.g-Process .wrapper .process-section {
    margin-bottom: 6.5rem;
}

.g-Process .wrapper .process-section .process-grid {
    margin-top: 4.6875rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3.4rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item {
    min-height: 16.25rem;
    height: auto;
    background-image: url('../images/Moldimg/image_321.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: space-between;
    border-radius: 0.5rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:nth-child(2) {
    background-image: url('../images/Moldimg/image_322.png');
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:nth-child(3) {
    background-image: url('../images/Moldimg/image_325.png');
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:nth-child(4) {
    background-image: url('../images/Moldimg/image_324.png');
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:nth-child(5) {
    background-image: url('../images/Moldimg/image_323.png');
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:nth-child(6) {
    background-image: url('../images/Moldimg/image_274.png');
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:hover,
.g-Process .wrapper .process-section .process-grid .process-grid-item.is-active {
    background-size: 110% 110%;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item-hidden {
    display: none;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .number {
    /* background-color: yellow; */
    margin-top: 1.4375rem;
    margin-left: 2.25rem;
    color: #fff;
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 3rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:first-child .number {
    color: rgba(0, 150, 224, 1);
}


.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text {
    margin-top: 1.81rem;
    margin-left: 1.68rem;
    flex: 1;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text h3 {

    color: rgba(250, 106, 113, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 2.25rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text p {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.18rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-pant {

    margin-top: 1.1875rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-pant span {
    display: block;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.18rem;
    margin-bottom: 0.8rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-bat {
    display: flex;
    height: 100%;
    align-items: end;
    margin-left: 8.875rem;
    padding-bottom: 1.5rem;
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 2.25rem;
}

/* --- hover交互逻辑 --- */
/* 默认所有项全量内容隐藏，只显示标题缩略 (.g-bat) */
.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text h3,
.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text p,
.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-pant {
    display: none;
    opacity: 0;
    transform: translateY(0.625rem);
}

/* 没有被悬浮的时候，第一个显示全量内容，隐藏缩略 */
.g-Process .wrapper .process-section .process-grid .process-grid-item.is-active .g-text h3,
.g-Process .wrapper .process-section .process-grid .process-grid-item.is-active .g-text p,
.g-Process .wrapper .process-section .process-grid .process-grid-item.is-active .g-text .g-pant {
    display: block;
    animation: processTextFadeIn 0.35s ease both;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item.is-active .g-text .g-bat {
    display: none;
}

/* 任意项悬浮时显示全量内容，隐藏缩略 */
.g-Process .wrapper .process-section .process-grid .process-grid-item:hover .g-text h3,
.g-Process .wrapper .process-section .process-grid .process-grid-item:hover .g-text p,
.g-Process .wrapper .process-section .process-grid .process-grid-item:hover .g-text .g-pant {
    display: block;
    animation: processTextFadeIn 0.35s ease both;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:hover .g-text .g-bat {
    display: none;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:not(.is-active):hover .g-text h3,
.g-Process .wrapper .process-section .process-grid .process-grid-item:not(.is-active):hover .g-text p,
.g-Process .wrapper .process-section .process-grid .process-grid-item:not(.is-active):hover .g-text .g-pant {
    display: none;
    animation: none;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:not(.is-active):hover .g-text .g-bat {
    display: flex;
}

@keyframes processTextFadeIn {
    from {
        opacity: 0;
        transform: translateY(0.625rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.g-Process .wrapper .process-section .process-grid .process-grid-item:hover .number,
.g-Process .wrapper .process-section .process-grid .process-grid-item.is-active .number {
    color: rgba(0, 150, 224, 1);
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .number {
    /* background-color: yellow; */
    margin-top: 1.4375rem;
    margin-left: 2.25rem;
    color: rgba(0, 150, 224, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 3rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text {
    margin-top: 1.81rem;
    margin-left: 1.68rem;
    flex: 1;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text h3 {

    color: rgba(250, 106, 113, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 2.25rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text p {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.18rem;
    margin-right: 3rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-pant {

    margin-top: 1.1875rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-pant span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.18rem;

}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-pant span::before {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(0, 150, 224, 1);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-bat {
    margin-top: 1.1875rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-bat span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.18rem;
}

.g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-bat span::before {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(0, 150, 224, 1);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.g-Process .wrapper .f-look {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;

}

.g-Process .wrapper .f-look span {
    display: block;
}

.g-Process .wrapper .f-look img {
    display: block;
}

/* 工艺流程 */


/* 获取定制方案、 了解模具定制服务 */
.hz {
    width: 100%;
    height: 102px;
    display: flex;
    place-content: center;
    place-items: center;
    gap: 26px;
    flex-shrink: 0;
    padding: 22px 63px;
    box-sizing: border-box;
    background: rgba(238, 241, 242, 0.25);
    border-top: 1px solid rgba(156, 156, 156, 0.25);
}

.hz .wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
}

.hz .wrapper button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    border: none;
    width: 218px;
    height: 52px;
    border-radius: 8px;
    background: rgba(250, 106, 113, 1);
    gap: 10px;
    transition: all 0.3s linear;
}

.hz .wrapper button:hover {
    transform: translateY(-5px);
}

.hz .wrapper span {
    font-size: 1.4rem;
}

.hz .wrapper button:last-child {
    background: rgba(0, 150, 224, 1);
}

/* 获取定制方案、 了解模具定制服务 */



/* 售后服务 */
.after-sales {
    background: rgba(238, 241, 242, 0.25);
    height: 55.125rem;
    width: 100%;
    /* background: yellow; */
    overflow: hidden;
}

.after-sales .wrapper {
    height: 100%;
    margin: 0 auto;
    /* background: palegreen; */
    overflow: visible;
}

/* 售后服务 */

/* 售后服务 */
.after-sales {
    /* height: 45.125rem; */
    width: 100%;
    /* background: yellow; */
    overflow: hidden;
}

.after-sales .wrapper {
    height: 100%;
    margin: 0 auto;
    width: 100% !important;
    /* background: palegreen; */
    overflow: visible;
}

/* 售后服务 */


.after-sales .wrapper .a-swiper .swiper {
    width: 100%;
    height: calc(100% - 3.75rem);
    /* margin-top: 6.875rem; */
    border-radius: 0.75rem;
    overflow: visible;
}

.after-sales .wrapper .a-swiper .mySwiper3 .swiper-wrapper {
    border-radius: 0.75rem;
}

.after-sales .wrapper .a-swiper .mySwiper3 .swiper-slide {
    overflow: hidden;
    border-radius: 0.75rem;
}

.after-sales .wrapper .a-swiper .swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.after-sales .wrapper .a-swiper .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.after-sales .wrapper .a-swiper .swiper .swiper-slide .title {

    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
}

.after-sales .wrapper .a-swiper .swiper .swiper-slide .title .title-a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

.after-sales .wrapper .a-swiper .swiper .swiper-slide .title .title-a img {
    width: 1.78rem;
    height: 1.78rem;
}

.after-sales .wrapper .a-swiper .swiper .swiper-slide .title .title-a span {
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.56rem;
}

.after-sales .wrapper .a-swiper .swiper .swiper-slide .title p {
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.375rem;
}

.after-sales .wrapper .a-swiper .swiper .swiper-slide .p-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2.25rem;
}

.after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-prev,
.after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-next {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    top: 50%;
    margin-top: -1.75rem;
    color: rgba(255, 255, 255, 1);
}

.after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-prev {
    left: 3.25rem;
    background: rgba(255, 255, 255, .45);
}

.after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-next {
    right: 3.25rem;
    background: rgba(255, 100, 113, 1);
}

.after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-prev::after,
.after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-next::after {
    font-size: 1.5rem;
    font-weight: 400;
}

.after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-disabled {
    opacity: .55;
}

.after-sales .wrapper .a-swiper .mySwiper3 .after-sales-pagination {
    /* position: absolute;
    bottom: -2.75rem; */
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.375rem;
}

.after-sales .wrapper .a-swiper .mySwiper3 .after-sales-pagination .swiper-pagination-bullet {
    width: .625rem;
    height: .625rem;
    background: rgba(180, 180, 180, 1);
    opacity: 1;
    margin: 0;
    border-radius: 50%;
}

.after-sales .wrapper .a-swiper .mySwiper3 .after-sales-pagination .swiper-pagination-bullet-active {
    width: 3.875rem;
    border-radius: 999px;
    background: rgba(255, 100, 113, 1);
}

.after-sales .wrapper .a-swiper .swiper .swiper-slide .p-j {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 2.25rem;
}

/* 售后服务 */

/* 相关产品 */
/* 相关产品 */
/* 相关产品 */
.x-about {
    /* height: 30rem; */
    width: 100%;
}

.x-about .wrapper {
    /* height: 100%; */
    margin: 0 auto;
    overflow: hidden;

}

.x-about .wrapper .x-title {
    margin-top: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1857rem;
}

.x-about .wrapper .x-title img {
    width: 1.78rem;
    height: 1.78rem;
}

.x-about .wrapper .x-title span:first-child {
    /* width: 1.78rem;
    height: 1.78rem; */
    background: rgba(0, 150, 224, 1);
    border-radius: 50%;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 1.78rem;

}

.x-about .wrapper .x-title span:last-child {
    font-size: 1.875rem;
    line-height: 2.56rem;
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
}

/* 图纸定制描述 */
.x-about .wrapper .wrapper .c-text {
    text-align: center;
    margin-top: 0.3125rem;
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.375rem;
}

/* Swiper 容器 */
.x-swiper {
    margin-top: 3rem;
    width: 100%;
    overflow: hidden;
}

.x-swiper .mySwiper {
    /* padding-bottom: 40px; */
    /* 给分页器留出空间 */
    padding-bottom: 2.5rem;
}

/* 产品卡片样式 */
.x-swiper .swiper-slide .product-card {
    padding: 1.4375rem;
    border-radius: 0.5rem;
    /* padding: 23px;
    border-radius: 8px; */
    background: rgba(243, 244, 246, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-swiper .swiper-slide .product-card .product-card-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    /* width: 29.4375rem;
    height: 18.875rem;
    border-radius: 0.625rem; */
    width: 26.4375rem;
    height: 18.875rem;
    /* width: 471px;
    height: 302px; */
    border-radius: 10px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.24);
}

.x-swiper .swiper-slide .product-card .product-card-sm .tag {
    z-index: 10;
    position: absolute;
    top: 0.9375rem;
    left: 0.9375rem;
    /* top: 15px;
    left: 15px; */
    background: #fff;
    color: #007bff;
    font-size: 1rem;
    padding: 0.25rem 1.125rem;
    /* font-size: 12px;
    padding: 4px 18px; */
    border-radius: 18641400px;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.x-swiper .swiper-slide .product-card .product-card-sm:hover img {
    transform: scale(1.1);
}

.x-swiper .swiper-slide .product-card .product-card-sm img {
    /* width: 100%;
    height: auto; */
    width: 14.5rem;
    height: 13.6875rem;
    margin: 1em 0;
    /* height: 220px;
    margin: 15px 0 15px; */
    object-fit: contain;
    transition: all 0.4s linear;

}

.x-swiper .swiper-slide .product-card .product-card-sm .icon-expand {
    position: absolute;
    top: 1.25rem;
    /* 20 ÷ 16 = 1.25 */
    right: 1.25rem;
    width: 2.5rem;
    /* 40 ÷ 16 = 2.5 */
    height: 2.5rem;
    font-size: 1.125rem;
    /* top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
     font-size: 18px; */
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;


    background: rgba(0, 150, 224, 0.25);
}

.x-swiper .swiper-slide .product-card .product-card-sm .card-name {
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

/* 箭头放底部、居中排列 */
.x-swiper .swiper-btns {
    display: flex;
    justify-content: center;
    /* gap: 38px; */
    gap: 2.375rem;
    /* 两个按钮间距 */
}

/* 自定义按钮样式 */
.x-swiper .swiper-btns .swiper-btn {
    margin: 2.25rem 0;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
    /* margin: 36px 0;
    width: 44px;
    height: 44px;
    font-size: 16px; */
    /* border: 2px solid #333; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;

    pointer-events: auto !important;
    z-index: 999 !important;
    position: relative;
}

.x-swiper .swiper-btns .swiper-btn:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

/* 相关产品 */


/* FAQ */
/* faq */
.faq {
    width: 100%;
    /* height: 50rem; */
    background: rgba(238, 241, 242, 1);
}

.faq .wrapper {
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}



.faq .wrapper .x-title {
    margin-top: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1857rem;
}

.faq .wrapper .x-title img {
    width: 1.78rem;
    height: 1.78rem;
}

.faq .wrapper .x-title span:first-child {
    /* width: 1.78rem;
    height: 1.78rem; */
    background: rgba(0, 150, 224, 1);
    border-radius: 50%;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 1.78rem;

}

.faq .wrapper .x-title span:last-child {
    font-size: 1.875rem;
    line-height: 2.56rem;
    color: rgba(0, 0, 0, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
}

/* faq-box  折叠盒子 */
.faq .wrapper .faq-box {
    margin-top: 3rem;
}

.faq .wrapper .faq-box .faq-item {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(229, 231, 235, 1);
    box-shadow: 0px 0.125rem 0.375rem rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.faq .wrapper .faq-box .faq-item.active {
    border-color: rgba(0, 150, 224, 0.38);
    box-shadow: 0px 0.25rem 0.625rem rgba(0, 0, 0, 0.18);
}

.faq .wrapper .faq-box .faq-question {
    min-height: 6.25rem;
    padding: 0 2.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq .wrapper .faq-box .faq-question h3 {
    color: rgba(17, 24, 39, 1);
    font-family: "Alibaba PuHuiTi", Inter, sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.875rem;
}

.faq .wrapper .faq-box .faq-item.active .faq-question h3 {
    color: rgba(0, 150, 224, 1);
}

.faq .wrapper .faq-box .faq-arrow {
    width: 0.75rem;
    height: 0.75rem;
    border-top: 2px solid rgba(156, 163, 175, 1);
    border-right: 2px solid rgba(156, 163, 175, 1);
    transform: rotate(135deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq .wrapper .faq-box .faq-item.active .faq-arrow {
    transform: rotate(-45deg);
}

.faq .wrapper .faq-box .faq-answer {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height 0.3s ease;
}

.faq .wrapper .faq-box .faq-item.active .faq-answer {
    max-height: 100rem;
    border-top-color: rgba(229, 231, 235, 1);
}

.faq .wrapper .faq-box .faq-answer p {
    padding: 1.5rem 2.75rem 2rem;
    color: rgba(75, 85, 99, 1);
    font-family: "Alibaba PuHuiTi", Inter, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.25rem;
}


.faq .wrapper .f-look {
    margin-bottom: 5rem;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.faq .wrapper .f-look img {
    width: 2rem;
    height: 2rem;
}

/* faq */

.contact-section .wrapper {
    overflow: hidden !important;
}






@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .wrapper {
        width: 90%;
    }

    /* banner */
    .banner .b-big-box {
        left: 0;
    }

    .banner .b-big-box .big-box-l {
        width: 45%;
        margin-left: 0;
        flex-shrink: 0;
    }

    .banner .b-big-box .big-box-l .product-gallery {
        padding: 2rem;
    }

    .banner .b-big-box .big-box-l .product-gallery .gallery-main {
        height: 28rem;
    }

    .banner .b-big-box .big-box-l .big-img {
        width: 70%;
    }

    .banner .b-big-box .big-box-l .sm-item .img-item {
        width: 5.75em;
        height: 5.8125em;
    }

    .banner .b-big-box .big-box-l .sm-item .img-item img {
        width: 5.1875em;
        height: 4.375em;
    }

    .banner .b-big-box .big-box-r {
        min-width: 0;
        overflow: hidden;
    }

    .banner .b-big-box .big-box-r h2 {
        width: 100%;
    }

    .banner .b-big-box .big-box-r .box-r-text {
        font-size: 1rem;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .banner .b-big-box .big-box-r .b-d {
        width: 100%;
        margin-top: 2rem;
        margin-left: 0;
    }

    .banner .b-big-box .big-box-r .box-btn {
        width: 10.375rem;
    }

    /* banner */

    /* 中间定位 */
    .h-industry .h-post {
        /* display: none; */
        width: 80% ;
    }


    /* 适用行业 */
    .h-industry .wrapper .h-industry-box {
        width: 90%;
    }

    .h-industry .wrapper .h-industry-box .h-industry-rbox {
        top: -4.375rem;
        right: -4.75rem;
        width: 20.125rem;
        height: 21.875rem;
    }

    .h-industry .wrapper .h-p-text {
        font-size: 1rem;
    }

    .h-industry .wrapper .h-industry-box ul li {
        font-size: 1rem;
    }




    .h-industry .wrapper .h-industry-box ul li span {
        font-size: 1rem;
        line-height: 2rem;
    }

    /* 售后服务 */
    .after-sales {
        height: 45rem;
    }

    /* 工艺流程 */
    .g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-bat {
        margin-left: 0;
    }

    .g-Process .wrapper .c-text {
        font-size: 1rem;
    }

    .hz .wrapper span {
        font-size: 1rem;
    }

    .faq .wrapper .faq-box .faq-answer p {
        font-size: 1rem;
    }

    .x-swiper .swiper-slide .product-card .product-card-sm {
        width: 22rem;
    }


    .banner .b-big-box .big-box-r .box-r-text2 {
        font-size: 1rem;
    }


}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }

    /* banner */
    .banner {
        height: 75rem;
    }

    .banner .s-c-n {
        left: 50%;
        transform: translateX(-50%);
    }

    .banner .b-big-box {
        flex-direction: column;
        align-items: center;
    }

    .banner .b-big-box .big-box-l {
        width: auto;
    }

    .banner .b-big-box .big-box-l .product-gallery .gallery-main {
        height: 24rem;
    }

    .banner .b-big-box .big-box-r {
        margin-left: 0;
    }

    .banner .b-big-box .big-box-r h2 {
        align-items: center;
    }

    .banner .b-big-box .big-box-r .box-r-text {
        margin-top: 2rem;
        padding: 0 2rem;
    }

    .banner .b-big-box .big-box-r .b-d {
        justify-content: center;
    }


    /* 适用行业 */
    .h-industry .wrapper {
        width: 100%;
        margin-top: 6rem;
    }

   .h-industry .h-post {
        display: none !important;
    }

    .h-industry .wrapper .h-title {
        justify-content: center;
    }

    .h-industry .wrapper .h-p-text {
        text-align: center;
        font-size: 1.2rem;
    }

    .h-industry .wrapper .h-industry-box {
        width: 100%;
        margin-bottom: 1rem;
    }

    .h-industry .wrapper .h-industry-box ul {
        width: 50%;
    }

    .page {
        margin-left: 0;
    }

    .h-industry .wrapper .h-industry-box .h-industry-rbox {
        top: 4.625rem;
        right: 1.25rem;
        width: 16.125rem;
        height: 16.875rem;
    }

    .h-industry .wrapper .h-industry-box ul li {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }


    .banner .b-big-box .big-box-r .box-r-text2 {
        padding:  0 2rem;
      text-align: start;
        width: 100%;
    }


}

@media screen and (max-width: 862px) {}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .banner {
        height: 68rem;
    }

    .banner .s-c-n {
        display: none;
    }

    .banner .b-big-box .big-box-l .sm-item .btn {
        display: none;
    }

    .banner .b-big-box .big-box-l .product-gallery .gallery-main {
        height: 20rem;
    }

    .h-industry .h-post {
        display: none;
    }

    .h-industry {
        margin-top: 2rem;
    }

    .h-industry .wrapper {
        margin-top: 2rem;
        width: 100%;
    }

    .h-industry .wrapper .h-title {
        justify-content: center;
        margin-top: 2rem;
    }

    .h-industry .wrapper .h-p-text {
        text-align: center;
        font-size: 1rem;
    }

    .h-industry .wrapper .h-industry-box {
        width: 100%;
        margin-top: 1.5rem;
    }

    .h-industry .wrapper .h-industry-box h2 {
        margin-left: 0;
        text-align: center;
    }

    .h-industry .wrapper .h-industry-box ul {
        margin-top: 1rem;
        margin-left: 0;
        width: 100%;
        padding: 0 1.5rem;
    }

    .h-industry .wrapper .h-industry-box .h-industry-rbox {
        width: 100%;
        height: 28rem;
        position: static;
        padding: 1.5rem;
        /* box-sizing: border-box; */
    }

    .h-industry .wrapper .h-industry-box .h-industry-rbox img {
        width: 100%;
        height: 100%;
        /* display: block;
        height: auto; */
        object-fit: cover;
    }

    .page {
        margin-top: 0;
        margin-left: 0;
    }

    .page .page-btn {
        width: 2.56rem;
        height: 2.56rem;
        font-size: 1.5rem;
    }

    /* xxxx */
    .banner .b-big-box .big-box-r h2 {
        font-size: 1.45rem;
    }

    .banner .b-big-box .big-box-r .b-d {
        margin-top: 5rem;
    }

    .banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumbnails {
        flex-wrap: wrap;
    }

    .h-industry .wrapper .h-title span:last-child {
        font-size: 1.45rem;
    }

    .h-industry .wrapper .h-industry-box h2 {
        font-size: 1.45rem;
    }

    .g-Process .wrapper .g-Process-title span:last-child {
        font-size: 1.45rem;
    }

    .g-Process .wrapper .process-section .process-grid .process-grid-item {
        flex-direction: column;
    }

    .g-Process .wrapper .process-section .process-grid .process-grid-item .number {
        margin-left: 0;
        text-align: center;
    }

    .g-Process .wrapper .process-section .process-grid .process-grid-item .g-text {
        margin-top: 0;
        margin-left: 0;
        text-align: center;
    }

    .g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-bat {
        justify-content: center;
    }

    .g-Process .wrapper .process-section .process-grid .process-grid-item .g-text .g-pant {
        text-align: left;
        padding-left: 2rem;
    }

    .g-Process .wrapper .process-section .process-grid .process-grid-item .g-text p {
        margin-right: 0;
        margin-left: 2rem;
        text-align: left;
    }

    .after-sales .wrapper .a-swiper .swiper .swiper-slide .title .title-a span {
        font-size: 1.45rem;
    }

    .x-about .wrapper .x-title span:last-child {
        font-size: 1.45rem;
    }

    .faq .wrapper .x-title span:last-child {
        font-size: 1.45rem;
    }

    .after-sales .wrapper .a-swiper .swiper .swiper-slide {
        height: 220px;
    }

    .after-sales .wrapper .a-swiper .swiper .swiper-slide .p-j {
        width: 100%;
    }

    .g-Process .wrapper .process-section .process-grid {
        grid-template-columns: 1fr;
    }

    .hz {
        height: auto;
    }

    .hz .wrapper {
        flex-direction: column;
    }

    .after-sales .wrapper .a-swiper .swiper {
        font-size: 1rem;
    }

    .after-sales .wrapper .a-swiper .swiper {
        margin-top: 2rem;
    }

    .after-sales .wrapper .a-swiper .swiper .swiper-slide .p-text {
        display: none;
    }

    .after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-prev,
    .after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-next {
        width: 2.5rem;
        height: 2.5rem;
        margin-top: -1.25rem;
        top: 50%;
        z-index: 10;
    }

    .after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-prev,
    .after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-prev.swiper-button-disabled {
        left: 0 !important;
        right: auto !important;
    }

    .after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-next,
    .after-sales .wrapper .a-swiper .mySwiper3 .swiper-button-next.swiper-button-disabled {
        right: 0 !important;
        left: auto !important;
    }

    .after-sales .wrapper .a-swiper .swiper .swiper-slide .p-j {
        font-size: 1rem;
    }


    .after-sales {
        height: 30rem;
    }

    .faq {
        /* height: 36rem; */
        width: 100%;
    }

    .banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumbnails .thumb-item {
        height: 5.25rem;

    }

    .banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-prev,
    .banner .b-big-box .big-box-l .product-gallery .gallery-thumbs-container .thumb-next {
        width: 2.5rem;
        height: 2.5rem;
    }


    .x-swiper .swiper-slide .product-card .product-card-sm img {
        margin-bottom: 0;
    }

}


@media (min-width: 375px) and (max-width: 650px) {
    .banner {
        height: 82rem;
    }
}

@media (min-width: 375px) and (max-width: 600px) {
    .after-sales {
        height: 18rem;
    }




}