.title {
    font-family: "Fraunces", Sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #41332C;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
}


.content {
    white-space: normal;
    text-indent: 0;
    margin: 0;
    padding: 0;
}

.content .br-space {
    display: block;
    height: 12px;
    /* 控制每行之间的间距 */
}


/* 按钮容器 - 居中 */
.btn {
    text-align: center;
    margin-top: 20px;
}

/* 按钮样式 */
.btn a {
    font-family: "Poppins", Sans-serif;
    display: inline-block;
    padding: 14px 45px;
    background: #A46F96;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn a:hover {
    background: #925084;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(164, 111, 150, 0.3);
}

.carousel-prev,
.carousel-next {
    color: #fff;
    background-color: #883E74;
    border: 2px solid #883E74;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: #fff;
    color: #883E74;
}

.carousel-dot.active {
    background-color: #883E74;
}

/* ========== Product Detail Banner ========== */
.product-detail-banner {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 12 / 5;
    overflow: hidden;
}

/* 背景图 */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 灰色遮罩 */
.banner-overlay {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* 灰色半透明遮罩 */
    z-index: 2;
}

/* 底部波浪 */
.banner-wave {
    transform: rotate(180deg);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.banner-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.banner-wave path {
    fill: #ffffff;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
    .product-detail-banner {
        height: auto;
        aspect-ratio: 750/1289;
    }

    .banner-wave svg {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .product-detail-banner {
        height: auto;
        aspect-ratio: 750/1289;
    }

    .banner-wave svg {
        height: 50px;
    }

    .cpsp-container {
        width: 100%;
        margin: 10px auto;
    }

    .cpsp-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .cpsp-video-wrapper {
        border-width: 3px;
        margin-bottom: 25px;
    }

    .cpsp-gallery {
        gap: 12px;
    }

    .cpsp-gallery-item {
        flex: 1 1 calc(50% - 6px);
    }
}

@media (max-width: 576px) {
    .product-detail-banner {
        height: auto;
        aspect-ratio: 750/1289;
    }

    .banner-wave svg {
        height: 40px;
    }

    .cpsp-gallery-item {
        flex: 1 1 100%;
    }
}


/* ========== 产品介绍 - 左图右文 ========== */
.cpjs-container {
    margin: 60px auto;
    padding: 0 20px;
}

.cpjs-inner {
    display: flex;
    align-items: center;
}

/* 左边产品图片 */
.cpjs-image {
    flex: 0 0 50%;
}

.cpjs-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 右边产品描述 */
.cpjs-content {
    flex: 1;
    padding: 10px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 大标题 */
.cpjs-title {
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: "Fraunces", Sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #883E74;
}

/* 描述文字 */
.cpjs-description {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    margin-bottom: 25px;
}

.cpjs-button {
    text-align: left;
}


@media (max-width: 992px) {
    .cpjs-container {
        margin: 40px auto;
        padding: 0 15px;
    }

    .cpjs-inner {
        flex-direction: column;
        gap: 30px;
    }

    .cpjs-image {
        flex: none;
        width: 100%;
        order: 1;
    }

    .cpjs-content {
        flex: none;
        width: 100%;
        padding: 0;
        order: 2;
    }

    .cpjs-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cpjs-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .cpjs-button {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .cpjs-container {
        margin: 30px auto;
        padding: 0 12px;
    }

    .cpjs-inner {
        gap: 20px;
    }

    .cpjs-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .cpjs-description {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .cpjs-button {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ========== 产品视频展示区 ========== */
.cpsp .box1,
.cpsp .box2 {
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;

}

.cpsp .box1 {
    background: linear-gradient(180deg, #FFFFFF00 0%, #9946FF40 32%);

}

.cpsp .box2 {
    background-image: linear-gradient(180deg, #9946FF40 0%, #FFFFFF00 32%);
}

.cpsp-container {
    width: 1000px;
    padding-top: 100px;
    margin: 0 auto;
}

/* 标题 - 居中 */
.cpsp-title {
    font-family: "Fraunces", Sans-serif;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: #41332c;
    margin-bottom: 30px;
}

/* 视频容器 - 紫色粗边框 */
.cpsp-video-wrapper {
    width: 100%;
    border: 10px solid #9946FF;
    border-radius: 30px;
    overflow: hidden;
    background: #000000;
    margin-bottom: 40px;
}

.cpsp-video-wrapper video,
.cpsp-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

/* 产品图片画廊 - flex布局 */
.cpsp-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: transparent;
}

.cpsp-gallery-item {
    flex: 1 1 calc(33.333% - 14px);
    border-radius: 6px;
    overflow: hidden;
}

.cpsp-gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cpsp-gallery-item img:hover {
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .cpsp-container {
        width: 100%;
        padding-top: 60px;
    }
}

@media (max-width: 992px) {

    .cpsp .box1,
    .cpsp .box2 {
        padding: 0 15px;
    }

    .cpsp-container {
        width: 100%;
        padding-top: 50px;
    }

    .cpsp-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cpsp-video-wrapper {
        border-width: 6px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .cpsp-gallery {
        gap: 15px;
    }

    .cpsp-gallery-item {
        flex: 1 1 calc(50% - 8px);
    }
}

@media (max-width: 576px) {

    .cpsp .box1,
    .cpsp .box2 {
        padding: 0 10px;
    }

    .cpsp-container {
        padding-top: 30px;
    }

    .cpsp-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cpsp-video-wrapper {
        border-width: 4px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .cpsp-gallery {
        gap: 10px;
    }

    .cpsp-gallery-item {
        flex: 1 1 100%;
    }
}



/* ========== 产品展示横向无限滚动 ========== */
.cpslider-container {
    width: 100%;
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

.cpslider-wrapper {
    width: 100%;
    overflow: hidden;
}

.cpslider-track {
    display: flex;
    width: fit-content;
    animation: scrollLeft 30s linear infinite;
    will-change: transform;
}


.cpslider-item {
    flex-shrink: 0;
    width: 180px;
    margin-right: 20px;
    text-align: center;
}

.cpslider-item-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 8px;
}

.cpslider-item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.cpslider-item-title {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* 从左向右无限滚动动画 */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 响应式 */
@media (max-width: 992px) {
    .cpslider-container {
        padding: 20px 0;
    }

    .cpslider-item {
        width: 140px;
        margin-right: 15px;
    }

    .cpslider-item-title {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .cpslider-container {
        padding: 15px 0;
    }

    .cpslider-item {
        width: 100px;
        margin-right: 10px;
    }

    .cpslider-item-title {
        font-size: 11px;
    }
}

/* ========== 产品类型 ========== */
.product-types-section {
    padding: 80px 20px;
    background: #FDEBFF;
}

.product-types-section .container {
    max-width: 90%;
    padding: 10px;
}

.product-types-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-types-title {
    font-family: "Fraunces", Sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #41332c;
    margin-bottom: 20px;
}

.product-types-title span {
    color: #883E74;
}

.product-types-grid {
    overflow: hidden;
    width: 100%;
    height: auto;
    /*margin: 0 auto;*/
    /*display: grid;*/
    /*grid-template-columns: repeat(3, 1fr);*/
    /*row-gap: 30px;*/
    /*column-gap: 30px;*/
}
.product-type-item {
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.product-type-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-type-title {
    font-family: "Fraunces", Sans-serif;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.product-type-image {
    width: 80%;
    height: auto;
    aspect-ratio: 5/6;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}

.product-type-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-type-item:nth-child(even) {
    background-color: transparent;
    background-image: linear-gradient(149deg, #A7ECC3 0%, #EEE759 100%);
}

.product-type-item:nth-child(odd) {
    background-color: transparent;
    background-image: linear-gradient(149deg, #74DDFF 0%, #F586FF 100%)
}

.product-type-item:hover .product-type-image img {
    transform: scale(1.05);
}

/* ========== 产品类型 响应式 ========== */
@media (max-width: 992px) {
    .product-types-section {
        padding: 50px 15px;
    }

    .product-types-title {
        font-size: 32px;
    }

    .product-types-grid {
        gap: 20px;
    }

    .product-type-item {
        padding: 25px 15px 15px;
        border-radius: 12px;
    }

    .product-type-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .product-types-section {
        padding: 40px 12px;
    }

    .product-types-title {
        font-size: 26px;
    }

    .product-types-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-type-item {
        padding: 20px 12px 12px;
        border-radius: 10px;
    }

    .product-type-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* ========== 产品参数上方小图文 ========== */

.xtw {
    max-width: 1140px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.xtw-item {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.xtw-item-image {
    width: 108px;
    height: 108px;
    margin: 0 auto 15px;
    overflow: hidden;
    background: transparent;
}

.xtw-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.xtw-item-text {
    color: #000;
    line-height: 1.5;
    font-family: "Fraunces", Sans-serif;
    font-size: 20px;
    font-weight: 700;
}

/* 响应式 */
@media (max-width: 992px) {

    .xtw {
        gap: 20px;
    }

    .xtw-item-image {
        width: 60px;
        height: 60px;
    }

    .xtw-item-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .xtw {
        gap: 15px;
    }

    .xtw-item {
        padding: 10px;
    }

    .xtw-item {
        padding: 10px;
    }

    .xtw-item-image {
        margin-bottom: 10px;
    }

    .xtw-item-text {
        font-size: 13px;
    }
}

/* ========== 产品参数 ========== */
.cpcs-container {
    margin: 100px auto;
    padding: 0;
    max-width: 1320px;
}

/* 居中白色带阴影的框 - 圆角 */
.cpcs-box {
    background: #ffffff;
    border-radius: 30px;
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    padding: 80px 60px;
}

/* 标题 - 紫色居中 */
.cpcs-title {
    font-family: "Fraunces", Sans-serif;
    ;
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #883e74;
    margin-bottom: 25px;
}

/* 表格容器 */
.cpcs-table-wrapper {
    overflow-x: auto;
}

/* 产品参数表格 - 后台粘贴的原生表格 */
.cpcs-box table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0;
}

/* 表头 - 紫色背景白色字体 (保持你原有的要求) */
.cpcs-box table tr:first-child {
    background: #d9edf7 !important;
    color: #111 !important;
    border-block-start: 1px solid hsla(0, 0%, 50%, .502);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
}

/* 表格单元格 - 斑马线风格 */
.cpcs-box table td {
    padding: 8px;
    font-size: 14px;
    color: #444444;
    border-top: 1px solid #ddd;
    line-height: 1.5;
}

/* 第一列加粗深色 */
.cpcs-box table td:first-child {
    font-weight: bolder;
    color: #111;
}

/* 斑马线效果 - 偶数行背景色 */
.cpcs-box table tbody tr:nth-child(even) {
    background-color: #fff;
}

/* 斑马线效果 - 偶数行第一列也要匹配背景色 */
.cpcs-box table tbody tr:nth-child(even) td:first-child {
    background-color: #fff;
}

/* 斑马线效果 - 奇数行保持白色 */
.cpcs-box table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

/* 悬停效果 - 整行高亮 */
.cpcs-box table tbody tr:hover {
    background-color: #f3f3f3;
    transition: background-color 0.2s ease;
}

/* ========== 产品参数响应式 ========== */
@media (max-width: 768px) {
    .cpcs-container {
        width: 92%;
        margin: 30px auto;
    }

    .cpcs-box {
        padding: 20px 15px;
        border-radius: 6px;
    }

    .cpcs-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .cpcs-box table th {
        padding: 10px 12px;
        font-size: 13px;
    }

    .cpcs-box table td {
        padding: 8px 10px;
        font-size: 12px;
    }

    /* .cpcs-box table td:first-child {
        width: 38%;
    } */
}

/* ========== 产品优势 ========== */
.crys-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* 大标题 */
.crys-title {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

/* 网格布局 - 一排两个 */
.crys-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* 优势项 - 圆角方框 */
.crys-item {
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 悬停效果 */
.crys-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 4个不同背景色 */
.crys-item:nth-child(1) {
    background: linear-gradient(95deg, #A7ECC3 0%, #EEE759 100%);
}

.crys-item:nth-child(2) {
    background: linear-gradient(95deg, #74DDFF 0%, #86C8FF 100%);
}

.crys-item:nth-child(3) {
    background: linear-gradient(95deg, #FFBC90 0%, #EEE759 100%);
}

.crys-item:nth-child(4) {
    background: linear-gradient(95deg, #8EBDFF 0%, #B9B7FF 100%);
}

/* 优势标题 */
.crys-item-title {
    font-family: "Poppins", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 18px;
}

/* 分割线 - 加长 */
.crys-divider {
    width: 100%;
    border-top: 1px solid #000;
    margin: 0 auto 18px auto;
    border-radius: 2px;
}

/* 优势描述 */
.crys-item-desc {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
}


/* ========== 产品优势响应式 ========== */
@media (max-width: 768px) {
    .crys-container {
        margin: 30px auto;
    }

    .crys-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .crys-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .crys-item {
        padding: 25px 20px;
    }

    .crys-item-title {
        font-size: 18px;
    }

    .crys-divider {
        width: 80px;
    }

    .crys-button {
        padding: 12px 40px;
        font-size: 15px;
    }
}

/* ========== 客户案例轮播 ========== */
.client-case-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 60px;
    position: relative;
    margin-top: 100px;
    overflow: visible;
}

/* 大标题 */
.client-case-title h2 {
    font-family: "Fraunces", Sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #000000;
}


.client-case-slide {
    padding: 0 10px;
}

/* 单个案例卡片 */
.client-case-slide a {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
}

.client-case-slide a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(136, 62, 116, 0.2);
}

/* 案例图片 */
.client-case-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.client-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.client-case-slide a:hover img {
    transform: scale(1.05);
}

/* 案例标题 */
.client-case-name {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    line-height: 1.4;
    background: #ffffff;
    transition: color 0.3s ease;
}

.client-case-slide a:hover .client-case-name {
    color: #883E74;
}

.client-case-carousel.carousel-container {
    padding-bottom: 20px;
}


/* ========== 客户案例响应式 ========== */


@media (max-width: 768px) {
    .client-case-container {
        margin: 30px auto;
        padding: 0 40px;
    }

    .client-case-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .client-case-slide {
        padding: 0 10px;
    }

    .client-case-title h2 {
        font-size: 32px;
    }
}

/* ===== 中部大图区域 ===== */
.middle-big-image-section {
    position: relative;
    width: 100%;
    margin: 80px 0;
    background: #fff;
    /* 添加上下padding，给波浪留出空间 */
    padding: 30px 0;
}

/* ===== 波浪线分隔 ===== */
.wave-divider {
    position: absolute;
    width: 100%;
    line-height: 0;
    left: 0;
    z-index: 10;
}

.wave-divider svg {
    width: 100%;
    height: 50px;
    display: block;
}

/* 顶部波浪 - 翻转180度向下凸，向上移动遮住图片顶部 */
.wave-top {
    top: 0;
    transform: translateY(30px);
}

/* 底部波浪 - 不翻转，向上凸，向下移动遮住图片底部 */
.wave-bottom {
    bottom: 0;
    transform: translateY(-30px);
}

.wave-fill {
    fill: #ffffff;
    /* 波浪颜色，与页面背景一致 */
}

/* ===== 大图容器 ===== */
.middle-big-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.middle-big-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== 响应式调整 ===== */
@media (max-width: 768px) {
    .middle-big-image-section {
        margin: 0;
        margin-bottom: 20px;
        padding: 20px 0;
    }

    .wave-top {
        transform: translateY(18px);
    }

    .wave-bottom {
        bottom: 0;
        transform: translateY(-18px);
    }

    .wave-divider svg {
        height: 40px;
    }
}

/* ========== 客户评价轮播 ========== */
.testimonial-section {
    padding: 80px 0;
    background: #fafafa;
}

.testimonial-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 50px;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    border: 2px solid #883E74;
    /* 紫色边框 */
    border-radius: 16px;
    /* 圆角 */
    padding: 40px 30px;
    margin: 0 10px;
    background: #ffffff;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(136, 62, 116, 0.08);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    font-weight: 700;
    color: #883E74;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    font-size: 22px;
    line-height: 1.8;
    color: #883E74;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 18px;
    color: #555555;
    text-align: center;
}

/* ========== 客户评价响应式 ========== */
@media (max-width: 768px) {
    .testimonial-section .container {
        width: 100%;
    }

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .testimonial-content {
        font-size: 16px;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 18px;
    }
}


/* ========== 产品广告屏 ========== */
.product-banner-section {
    width: 100%;
    margin: 80px 0;
}

.product-banner-section .br-space {
    display: block;
    height: 8px;
}

.product-banner-container {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #883E74;
    /* 紫色背景 */
    display: flex;
    align-items: center;
    overflow: visible;
}

.product-banner-image-wrapper {
    position: relative;
    width: 33.33%;
    /* 占1/3宽度 */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-banner-image {
    position: relative;
    width: 400px;
    height: 400px;
    border-style: solid;
    border-width: 20px 20px 20px 20px;
    border-color: #883E74;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 2;
}

.product-banner-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.product-banner-content {
    flex: 1;
    padding: 0 60px 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.product-banner-text {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    /* 白色字体 */
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-banner-button {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-transform: capitalize;
}

.product-banner-button:hover {
    color: #dfd4d4;
}

/* ========== 产品广告屏响应式 ========== */
@media (max-width: 1024px) {
    .product-banner-container {
        height: 280px;
    }

    .product-banner-image {
        width: 340px;
        height: 340px;
        /* 上下各凸出30px */
        border-width: 6px;
    }

    .product-banner-text {
        font-size: 26px;
    }

    .product-banner-button {
        font-size: 22px;
        padding: 12px 36px;
    }
}

@media (max-width: 768px) {
    .product-banner-section {
        margin: 50px 0;
    }

    .product-banner-container {
        height: auto;
        flex-direction: column;
        padding: 40px 20px;
    }

    .product-banner-image-wrapper {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .product-banner-image {
        width: 200px;
        height: 200px;
        border-width: 5px;
    }

    .product-banner-content {
        width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .product-banner-text {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .product-banner-button {
        font-size: 18px;
        padding: 10px 28px;
    }
}


/* ========== 相关产品区域 - 复用index样式 ========== */
.related-products-section.main-products {
    padding: 80px 20px;
    background: #fff;
    background-image: url('/static/fl/img14/Ellipse-yellow.optimized.webp');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 50% auto;
}

.related-products-carousel {
    max-width: 1400px;
    margin: 0 auto;
    /* padding-top: 100px; */
    overflow: visible;
}

.related-products-carousel .product-card {
    margin-top: 115px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #FFEFD1;
    background-image: url('/static/fl/img14/machine-background6.webp');
    background-size: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-products-carousel .product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.related-products-carousel .product-card .product-img {
    position: relative;
    padding-top: 75%;
}

.related-products-carousel .product-card .product-img img {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-products-carousel .product-card:hover .product-img img {
    transform: scale(1.08);
}

.related-products-carousel .product-card .product-info {
    padding: 24px 20px;
    text-align: center;
}

.related-products-carousel .product-card .product-info h3 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.3;
}

.related-products-carousel .product-card .product-info .inquiry-btn a {
    display: inline-block;
    padding: 12px 40px;
    background: #A46F96;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.related-products-carousel .product-card .product-info .inquiry-btn a:hover {
    background: #925084;
    color: #fff;
}



.related-products-section .btn a {
    display: inline-block;
    padding: 14px 45px;
    background: #A46F96;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.related-products-section .btn a:hover {
    background: #925084;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(164, 111, 150, 0.3);
}

/* ========== 相关产品响应式 ========== */
@media (max-width: 992px) {
    .related-products-section.main-products {
        padding: 60px 20px;
    }

    .products-title h2 {
        font-size: 36px;
    }

    .related-products-carousel .product-card .product-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .related-products-section.main-products {
        padding: 40px 15px;
    }

    .products-title h2 {
        font-size: 28px;
    }

    .divider {
        width: 150px;
    }

    .related-products-carousel .product-card .product-info h3 {
        font-size: 22px;
    }
}

/* ========== 产品链接区域 ========== */
.product-links-section {
    padding: 60px 0;
    background: #fff;
    font-size: 16px;
}

.product-links-section .container {
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.product-links-header {
    margin-bottom: 25px;
}

.product-links-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    color: #000;
    text-align: left;
    margin: 0;
}

.product-links-content {
    line-height: 2;
}

.product-link-item {
    color: #000;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link-item:not(:last-child):after {
    content: "|";
    margin: 0 12px;
    color: #883E74;
}

.product-link-item:hover {
    color: #A46F96;
}

/* ========== 产品链接响应式 ========== */
@media (max-width: 992px) {
    .product-links-section {
        padding: 45px 20px;
    }

    .product-links-title {
        font-size: 24px;
    }

    .product-link-item {
        font-size: 15px;
    }

    .product-link-item:not(:last-child):after {
        margin: 0 8px;
    }
}

@media (max-width: 576px) {
    .product-links-section {
        padding: 35px 15px;
    }

    .product-links-title {
        font-size: 20px;
    }

    .product-links-content {
        line-height: 1.8;
    }

    .product-link-item {
        font-size: 14px;
    }

    .product-link-item:not(:last-child):after {
        margin: 0 6px;
    }
}


/* ========== FAQ 常见问题手风琴 ========== */
.faq {
    background: #fff;
}

.faq .title {
    text-align: center;
    margin-bottom: 50px;
}

.faq .title h2 {
    font-family: "Fraunces", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000;
}

.faq .title h2 span {
    color: #883E74;
}

.faq-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.faq-item {
    border: 2px solid #000;
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: #883E74;
}

.faq-question {
    padding: 24px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    color: #100f28;
    font-family: "Fraunces", Sans-serif;
}

.faq-question h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.faq-item.active .faq-question h3 {
    color: #883E74;
}

.faq-icon {
    font-size: 28px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    color: #883E74;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    padding: 0 25px 22px;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 1350px) {
    .faq-container {
        width: 90%;
        gap: 0;
    }
}

/* 响应式 */
@media (max-width: 992px) {
    .faq .title h2 {
        font-size: 32px;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .faq .title h2 {
        font-size: 26px;
    }

    .faq-container {
        gap: 0;
        width: 90%;
    }

    .faq-item {
        border-width: 1px;
        border-radius: 8px;
    }

    .faq-question {
        padding: 18px 15px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-icon {
        font-size: 24px;
        min-width: 24px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 15px 18px;
    }
}