/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: #fff;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url('https://img.jegary.com/home/img/banner2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 深色遮罩层 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 玻璃态效果层 */
.glass-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 66.67%;
    max-width: 1200px;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 5, 5, 1) 0%, rgba(9, 9, 9, 0.59) 64.34%, rgba(119, 119, 119, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0 30px 30px 0;
    z-index: 2;
}

/* Hero 内容 */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
}

/* 标题 */
.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.hero-title .highlight {
    color: #FDB515;
    display: block;
}

/* 黄色装饰线 */
.underline-decoration {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 280px;
    height: 6px;
    background-color: #FDB515;
    display: block;
}

.underline-decoration::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    width: 20px;
    height: 8px;
    background-color: #FDB515;
}

/* 副标题 */
.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 400;
    max-width: 650px;
}

/* 按钮容器 */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* 按钮通用样式 */
.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

/* 主按钮 */
.btn-primary {
    background-color: #FDB515;
    color: #000;
}

.btn-primary:hover {
    background-color: #e5a413;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 181, 21, 0.3);
}

/* 次按钮 */
.btn-secondary {
    background-color: #FDB515;
    color: #000;
}

.btn-secondary:hover {
    background-color: #e5a413;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 181, 21, 0.3);
}

/* 中等屏幕适配 (最大 1000px) */
@media screen and (max-width: 1000px) {
    /* Purchase Process */
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 平板设备适配 (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .hero-content .container {
        max-width: 100%;
        width: 62%;
        padding: 0 30px;
    }
    
    .glass-effect {
        width: 66.67%;
        border-radius: 0 25px 25px 0;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .underline-decoration {
        width: 240px;
    }
    
    /* Factories & Products */
    .factories-products {
        padding: 60px 0;
    }
    
    .main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .fp-wrapper {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto;
        gap: 25px;
    }
    
    .fp-left {
        grid-column: auto;
        grid-row: auto;
    }
    
    .fp-right {
        grid-column: auto;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .fp-right .fp-section-header {
        grid-column: auto;
        grid-row: auto;
    }
    
    .fp-right .fp-card:first-of-type {
        grid-column: auto;
        grid-row: auto;
    }
    
    .fp-right .fp-card-small {
        grid-column: auto;
        grid-row: auto;
        flex: none;
    }
    
    .fp-right .fp-card-small .week-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: auto;
        max-height: none !important;
        max-width: none !important;
        flex: none !important;
    }
    
    .fp-content-inline {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .fp-right .fp-card-small .week-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .factory-thumbs {
        gap: 10px;
    }
    
    .week-image {
        flex: none !important;
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
    }
    
    .week-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .week-title {
        font-size: 16px;
    }
    
    .week-desc {
        font-size: 13px;
    }
    
    /* Customer Reviews */
    .customer-reviews {
        padding: 60px 0;
    }
    
    .customer-reviews .container {
        max-width: 100%;
    }
    
    .reviews-header {
        margin-bottom: 50px;
    }
    
    .reviews-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .reviews-desc {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .reviews-slider {
        width: 100%;
        max-width: 100%;
    }
    
    .slider-container {
        width: 100%;
    }
    
    .slider-track {
        width: 100%;
    }
    
    .review-slide {
        width: 100%;
        max-width: 100%;
    }
    
    .review-slide img {
        width: 100%;
        max-width: 100%;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: -50px;
    }
    
    .slider-next {
        right: -50px;
    }
    
    .slider-dots {
        margin-top: 25px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 32px;
        text-align: center;
    }
    
    .contact-subtitle {
        font-size: 15px;
        text-align: center;
    }
    
    .contact-form-card {
        padding: 30px 25px;
    }
    
    /* Purchase Process */
    .purchase-process {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 38px;
        margin-bottom: 50px;
    }
    
    /* Advantages */
    .advantages {
        padding: 50px 0;
    }
    
    .advantages-wrapper {
        gap: 40px;
    }
    
    .advantages-left {
        min-width: 320px;
    }
    
    .advantages-title {
        font-size: 36px;
    }
    
    .advantages-grid {
        gap: 22px 0;
    }
    
    .advantage-item {
        padding: 0 25px;
        display: block;
    }
    
    .advantage-item:nth-child(odd)::after {
        height: 60px;
    }
    
    .advantage-number {
        font-size: 48px;
        display: inline-block;
    }
    
    .advantage-plus {
        font-size: 32px;
        display: inline-block;
        margin-top: 0;
    }
    
    .advantage-desc {
        font-size: 12px;
        white-space: normal;
        word-break: break-word;
        display: block;
        clear: both;
        margin-top: 4px;
        line-height: 1.3;
    }
}

/* 移动端适配 (最大 768px) */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-section {
        min-height: 100vh;
        background-position: 65% center;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-content .container {
        max-width: 100%;
        width: 65%;
        padding: 0 20px;
    }
    
    .glass-effect {
        width: 70%;
        border-radius: 0 20px 20px 0;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 35px;
        max-width: 100%;
    }
    
    .underline-decoration {
        width: 200px;
        height: 5px;
        bottom: -12px;
    }
    
    .underline-decoration::after {
        width: 16px;
        height: 5px;
        right: -25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 15px;
    }
    
    /* Factories & Products */
    .factories-products {
        padding: 50px 0;
    }
    
    .main-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .fp-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .fp-left {
        grid-column: auto;
        grid-row: auto;
    }
    
    .fp-right {
        grid-column: auto;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .fp-section-header {
        margin-bottom: 8px;
    }
    
    .fp-section-title {
        font-size: 17px;
    }
    
    .fp-content {
        padding: 20px;
    }
    
    .fp-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .factory-images {
        gap: 12px;
    }
    
    .factory-thumbs {
        gap: 8px;
    }
    
    .product-images {
        gap: 12px;
    }
    
    .fp-card-small {
        flex: none;
    }
    
    .fp-content-inline {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 15px;
    }
    
    .week-image {
        flex: none !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        max-width: none !important;
    }
    
    .week-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .week-title {
        font-size: 16px;
    }
    
    .week-desc {
        font-size: 13px;
    }
    
    /* Customer Reviews */
    .customer-reviews {
        padding: 50px 0;
    }
    
    .customer-reviews .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .reviews-header {
        margin-bottom: 40px;
        padding: 0;
    }
    
    .reviews-title {
        font-size: 22px;
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .reviews-desc {
        font-size: 13px;
        line-height: 1.7;
        padding: 0 10px;
    }
    
    .reviews-slider {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        padding: 0;
        margin: 0 20px;
    }
    
    .slider-container {
        width: 100%;
        max-width: 100%;
    }
    
    .slider-track {
        width: 100%;
    }
    
    .review-slide {
        width: 100%;
        max-width: 100%;
    }
    
    .review-slide img {
        width: 100%;
        max-width: 100%;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-prev {
        left: -18px;
    }
    
    .slider-next {
        right: -18px;
    }
    
    .slider-dots {
        margin-top: 20px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 35px;
    }
    
    .contact-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .contact-subtitle {
        font-size: 14px;
        text-align: center;
    }
    
    .contact-form-card {
        padding: 28px 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 18px;
        width: 100%;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 11px 13px;
        font-size: 13px;
    }
    
    .privacy-notice {
        font-size: 10px;
        margin-bottom: 20px;
    }
    
    .btn-submit {
        padding: 13px 25px;
        font-size: 15px;
    }
    
    /* Purchase Process */
    .purchase-process {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .process-cards {
        gap: 18px;
    }
    
    .process-card {
        max-width: 100%;
    }
    
    .process-card:hover {
        transform: translateY(-5px);
    }
    
    /* Advantages */
    .advantages {
        padding: 50px 0;
    }
    
    .advantages .container {
        padding: 0 15px;
    }
    
    .advantages-wrapper {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
    }
    
    .advantages-left {
        flex: none;
        text-align: center;
        min-width: auto;
    }
    
    .advantages-title {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 12px;
        padding: 0 5px;
    }
    
    .advantage-item {
        text-align: center;
        padding: 0 3px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* 移动端隐藏分割线 */
    .advantage-item:nth-child(odd)::after {
        display: none;
    }
    
    .advantage-number {
        font-size: 34px;
        display: block;
    }
    
    .advantage-plus {
        font-size: 22px;
        display: block;
        margin-top: -5px;
    }
    
    .advantage-desc {
        font-size: 10px;
        white-space: normal !important;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        width: 100%;
        max-width: 100%;
        display: block;
    }
}

/* 小屏手机适配 (最大 480px) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .hero-content .container {
        width: 80%;
        padding: 0 16px;
    }
    
    .glass-effect {
        width: 85%;
        border-radius: 0 15px 15px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
    }
    
    .underline-decoration {
        width: 160px;
        height: 4px;
        bottom: -10px;
    }
    
    .underline-decoration::after {
        width: 14px;
        height: 4px;
        right: -20px;
    }
    
    .btn {
        max-width: 240px;
        padding: 13px 25px;
        font-size: 14px;
    }
    
    /* Factories & Products */
    .factories-products {
        padding: 40px 0;
    }
    
    .main-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .fp-wrapper {
        gap: 18px;
    }
    
    .fp-section-header {
        margin-bottom: 6px;
    }
    
    .fp-section-title {
        font-size: 16px;
    }
    
    .fp-more {
        font-size: 12px;
    }
    
    .fp-content {
        padding: 18px;
    }
    
    .fp-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .factory-images {
        gap: 10px;
    }
    
    .factory-thumbs {
        gap: 6px;
    }
    
    .product-images {
        gap: 10px;
    }
    
    .fp-card-small {
        flex: none;
    }
    
    .fp-content-inline {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        gap: 12px;
    }
    
    .week-image {
        flex: none !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        max-width: none !important;
    }
    
    .week-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .week-title {
        font-size: 16px;
    }
    
    .week-desc {
        font-size: 12px;
    }
    
    /* Customer Reviews */
    .customer-reviews {
        padding: 40px 0;
    }
    
    .customer-reviews .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .reviews-header {
        margin-bottom: 35px;
        padding: 0;
    }
    
    .reviews-title {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.5;
        padding: 0 8px;
    }
    
    .reviews-desc {
        font-size: 12px;
        line-height: 1.6;
        padding: 0 8px;
    }
    
    .reviews-slider {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        padding: 0;
        margin: 0 16px;
    }
    
    .slider-container {
        width: 100%;
        max-width: 100%;
    }
    
    .slider-track {
        width: 100%;
    }
    
    .review-slide {
        width: 100%;
        max-width: 100%;
    }
    
    .review-slide img {
        width: 100%;
        max-width: 100%;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-prev {
        left: -16px;
    }
    
    .slider-next {
        right: -16px;
    }
    
    .slider-dots {
        margin-top: 18px;
        gap: 8px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .contact-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 12px;
        padding: 0 10px;
    }
    
    .contact-subtitle {
        font-size: 13px;
        text-align: center;
        padding: 0 10px;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 16px;
        width: 100%;
    }
    
    .form-group label {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .privacy-notice {
        font-size: 9px;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Purchase Process */
    .purchase-process {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .process-cards {
        gap: 15px;
    }
    
    .process-card {
        border-width: 2px;
    }
    
    .process-card:hover {
        transform: translateY(-4px);
    }
    
    /* Advantages */
    .advantages {
        padding: 40px 0;
    }
    
    .advantages .container {
        padding: 0 12px;
    }
    
    .advantages-wrapper {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }
    
    .advantages-left {
        flex: none;
        text-align: center;
        min-width: auto;
    }
    
    .advantages-title {
        font-size: 22px;
        padding: 0 5px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 8px;
        padding: 0 3px;
    }
    
    .advantage-item {
        text-align: center;
        padding: 0 2px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* 小屏手机隐藏分割线 */
    .advantage-item:nth-child(odd)::after {
        display: none;
    }
    
    .advantage-number {
        font-size: 30px;
        display: block;
    }
    
    .advantage-plus {
        font-size: 20px;
        display: block;
        margin-top: -5px;
    }
    
    .advantage-desc {
        font-size: 9px;
        white-space: normal !important;
        line-height: 1.3;
        margin: 5px auto 0;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        width: 100%;
        max-width: 100%;
        display: block;
    }
}

/* ==================== 我们的优势部分 ==================== */
.advantages {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background-image: url('https://img.jegary.com/home/img/youshi.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.advantages .container {
    position: relative;
    max-width: 1400px;
}

.advantages-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.advantages-left {
    flex: 0 0 auto;
    min-width: 400px;
}

.advantages-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}

.advantages-right {
    flex: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
    row-gap: 25px;
    width: 100%;
    max-width: 100%;
}

.advantage-item {
    text-align: left;
    color: #fff;
    padding: 0 25px;
    position: relative;
    min-width: 0;
    display: block;
}

/* 竖型分割线 - 只在每行的第一个元素右侧显示 */
.advantage-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

.advantage-number {
    font-size: 56px;
    font-weight: 700;
    color: #FDB515;
    line-height: 1;
    display: inline-block;
}

.advantage-plus {
    font-size: 36px;
    font-weight: 700;
    color: #FDB515;
    display: inline-block;
    margin-left: 1px;
    vertical-align: top;
    padding-top: 5px;
}

.advantage-desc {
    font-size: 13px;
    line-height: 1.3;
    color: #fff;
    margin: 5px 0 0 0;
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    clear: both;
}

/* ==================== 工厂和产品展示部分 ==================== */
.factories-products {
    width: 100%;
    padding: 80px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    color: #000;
}

.fp-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* 左侧工厂展示 */
.fp-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 右侧产品展示 */
.fp-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 区块标题（在卡片外面） */
.fp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.fp-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.fp-more {
    font-size: 13px;
    color: #999;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.fp-more:hover {
    color: #FDB515;
    text-decoration: underline;
}

/* 卡片通用样式 */
.fp-card {
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fp-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* 卡片内容 */
.fp-content {
    padding: 20px;
}

.fp-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.fp-count {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

/* 工厂图片展示 */
.factory-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.factory-main {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.factory-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.factory-main:hover img {
    transform: scale(1.02);
}

.factory-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.factory-thumb {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.factory-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.factory-thumb:hover img {
    transform: scale(1.05);
}

/* 产品图片展示 */
.product-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-item {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

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

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

/* 本周推荐卡片 */
.fp-card-small {
    flex: 1;
}

.fp-content-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 20px;
    height: 100%;
}

.week-image {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

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

.week-text {
    flex: 1;
}

.week-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 6px 0;
}

.week-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ==================== 客户评价部分 ==================== */
.customer-reviews {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.customer-reviews .container {
    width: 100%;
    max-width: 1200px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    margin: 0 0 25px 0;
    max-width: 925px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #FDB515;
    font-weight: 600;
}

.reviews-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 1000px;
}

/* 轮播容器 */
.reviews-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.slider-container {
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.review-slide {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    display: none;
}

.review-slide.active {
    display: block;
}

.review-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* 箭头按钮 */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
}

.slider-arrow:hover {
    background: #FDB515;
    color: #fff;
    border-color: #FDB515;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -60px;
}

.slider-next {
    right: -60px;
}

/* 指示点 */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: #FDB515;
    transform: scale(1.2);
}

.dot.active {
    background: #FDB515;
    width: 30px;
    border-radius: 5px;
}

/* ==================== 联系表单部分 ==================== */
.contact-section {
    width: 100%;
    padding: 80px 0;
    background-image: url('https://img.jegary.com/home/img/xp.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 左侧文字 */
.contact-left {
    color: #fff;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* 右侧表单卡片 */
.contact-right {
    width: 100%;
}

.contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    max-width: 100%;
    display: block;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FDB515;
    box-shadow: 0 0 0 3px rgba(253, 181, 21, 0.1);
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    width: 100%;
}

.char-count span {
    font-weight: 600;
}

.privacy-notice {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background-color: #FDB515;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #e5a413;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 181, 21, 0.3);
}

/* ==================== 购买流程部分 ==================== */
.purchase-process {
    width: 100%;
    padding: 100px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.process-card:hover {
    border-color: #FDB515;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(253, 181, 21, 0.25);
}

.process-card:hover img {
    transform: scale(1.05);
}

/* 超大屏幕适配 (1920px+) */
@media screen and (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    .glass-effect {
        max-width: 1200px;
        border-radius: 0 40px 40px 0;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .underline-decoration {
        width: 320px;
        height: 7px;
    }
    
    .section-title {
        font-size: 48px;
        margin-bottom: 80px;
    }
    
    .process-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    /* Advantages */
    .advantages {
        padding: 70px 0;
    }
    
    .advantages-wrapper {
        gap: 80px;
    }
    
    .advantages-left {
        min-width: 480px;
    }
    
    .advantages-title {
        font-size: 50px;
    }
    
    .advantages-grid {
        gap: 30px 0;
    }
    
    .advantage-item {
        padding: 0 40px;
        display: block;
    }
    
    .advantage-item:nth-child(odd)::after {
        height: 80px;
    }
    
    .advantage-number {
        font-size: 64px;
        display: inline-block;
    }
    
    .advantage-plus {
        font-size: 42px;
        display: inline-block;
        margin-top: 0;
    }
    
    .advantage-desc {
        font-size: 14px;
        display: block;
        clear: both;
        margin-top: 5px;
        line-height: 1.3;
    }
    
    /* Factories & Products */
    .factories-products {
        padding: 100px 0;
    }
    
    .main-title {
        font-size: 38px;
        margin-bottom: 50px;
    }
    
    .fp-wrapper {
        gap: 30px;
    }
    
    .fp-section-header {
        margin-bottom: 8px;
    }
    
    .fp-section-title {
        font-size: 20px;
    }
    
    .fp-content {
        padding: 25px;
    }
    
    .fp-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .factory-images {
        gap: 15px;
    }
    
    .factory-thumbs {
        gap: 12px;
    }
    
    .product-images {
        gap: 15px;
    }
    
    .fp-content-inline {
        flex-direction: row !important;
        align-items: center !important;
        height: 100%;
    }
    
    .week-image {
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
    }
    
    .week-title {
        font-size: 17px;
    }
    
    .week-desc {
        font-size: 14px;
    }
    
    /* Customer Reviews */
    .customer-reviews {
        padding: 100px 0;
    }
    
    .reviews-header {
        margin-bottom: 70px;
    }
    
    .reviews-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .reviews-desc {
        font-size: 16px;
    }
    
    .reviews-slider {
        max-width: 1200px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .slider-prev {
        left: -70px;
    }
    
    .slider-next {
        right: -70px;
    }
    
    .slider-dots {
        margin-top: 35px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 100px 0;
    }
    
    .contact-wrapper {
        gap: 80px;
    }
    
    .contact-title {
        font-size: 44px;
    }
    
    .contact-subtitle {
        font-size: 17px;
    }
    
    .contact-form-card {
        padding: 40px 35px;
    }
    
    .form-row {
        gap: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .privacy-notice {
        font-size: 12px;
    }
    
    .btn-submit {
        padding: 16px 35px;
        font-size: 17px;
    }
}

