/* 询问页面样式 */
.inquire-page {
    min-height: 100vh;
    padding: 40px 0;
}

.inquire-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 联系方式区域 */
.contact-section {
    background: #FFFFFF;
    border-radius: 16px;
}

.contact-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 30px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 20px 0;
    color: #D4AF37;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .contact-text {
    flex: 1;
    min-width: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.contact-icon.email-icon {
    background: linear-gradient(135deg, #db4a39, #c23321);
}

.contact-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon.phone-icon {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.contact-icon.address-icon {
    background: linear-gradient(135deg, #D4AF37, #B8962E);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}

.contact-value {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.5;
}

/* 社交媒体链接 */
.social-links {
    margin-bottom: 35px;
    padding: 30px;
    border-radius: 16px;
}

.social-links h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 25px 0;
    color: #D4AF37;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links h3::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.social-icons > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: calc(33.333% - 14px);
    min-width: 120px;
}

.social-link {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link svg {
    width: 26px;
    height: 26px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d66e6);
    color: #fff;
}

.social-link.instagram {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #fff;
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #fff;
}

.social-icons > div > div:last-child {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    word-break: break-all;
    max-width: 150px;
    line-height: 1.4;
}

/* 高亮滚动效果 */
.highlight-section {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 159, 32, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(236, 159, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(236, 159, 32, 0);
    }
}

/* 复制按钮 */
.copy-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: #f1f3f4;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.copy-btn:hover {
    background: #D4AF37;
    color: #fff;
    transform: scale(1.08);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn.copied {
    background: #10b981;
    color: #fff;
}

/* 在线客服 */
.online-service {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.online-service h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 20px 0;
    color: #D4AF37;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-item:last-child {
    border-bottom: none;
}

.service-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.service-value {
    font-size: 14px;
    font-weight: 700;
    color: #2C3E50;
}

.wechat-qr {
    display: flex;
    align-items: center;
}

.qr-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.qr-icon {
    font-size: 32px;
}

.qr-text {
    font-size: 10px;
    text-align: center;
    font-weight: 500;
}

/* 页面标题 */
.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
    position: relative;
    display: inline-block;
}


/* 主要内容区域 */
.inquire-content {
    display: flex;
    gap: 40px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
}

/* 产品展示区域 */
.product-section {
    flex: 1;
}

.product-card {
    overflow: hidden;
}

.product-image-box {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-box {
    padding: 24px;
}

.product-name-box {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 12px 0;
    line-height: 1.4;
}


/* 表单区域 */
.form-section {
    flex: 1;
}

.form-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 30px 0;
}

.inquire-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.form-group {
    display: flex;
    gap: 20px;
}

.form-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-item label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* 必填标记样式 - 红色星号 */
.required-mark {
    color: #FF0000;
    font-weight: 700;
    margin-right: 5px;
    font-size: 16px;
}

/* 表单错误提示样式 - 红色显示 */
.form-error {
    color: #FF0000;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
    padding-left: 4px;
    line-height: 1.4;
}

/* 错误输入框样�?- 红色边框 */
.form-item input.error,
.form-item textarea.error {
    border-color: #FF0000 !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1) !important;
}

.form-item input,
.form-item textarea {
    padding: 14px 16px;
    border: 2px solid #E0E6ED;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
    outline: none;
}

.form-item input:focus,
.form-item textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.form-item input::placeholder,
.form-item textarea::placeholder {
    color: #999;
}

.form-item textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 16px 40px;
    background: #D4AF37;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}


/* 没有产品时的样式 */
.no-product-section {
    width: 100%;
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
    .inquire-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .inquire-page {
        padding: 30px 0;
    }
    
    .page-title h1 {
        font-size: 28px;
    }
    
    .inquire-content {
        padding: 20px;
        border-radius: 12px;
    }
    
    .product-name-box {
        font-size: 18px;
    }
    
    .form-section h2 {
        font-size: 20px;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .page-title h1 {
        font-size: 24px;
    }
    
    .inquire-content {
        padding: 15px;
    }
    
    .form-item input,
    .form-item textarea {
        padding: 12px;
        font-size: 13px;
    }
}

/* 产品详情页面表单样式覆盖 */
.product-detail-page .form-section {
    border-radius: 16px;
    padding: 40px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.product-detail-page .form-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 30px 0;
}

.product-detail-page .form-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 30px 0;
}

.product-detail-page .form-section .form-group {
    margin-bottom: 0;
}

.product-detail-page .form-section .form-item {
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .product-detail-page .form-section {
        padding: 30px;
    }
    
    .product-detail-page .form-section h2,
    .product-detail-page .form-section h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .product-detail-page .form-section {
        padding: 20px;
        border-radius: 12px;
    }
    
    .product-detail-page .form-section h2,
    .product-detail-page .form-section h3 {
        font-size: 20px;
        margin: 0 0 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .product-detail-page .form-section {
        padding: 15px;
    }
    
    .product-detail-page .form-section h2,
    .product-detail-page .form-section h3 {
        font-size: 18px;
    }
}

/* ============ H5 修复：阻止横向滚�?============ */
.ny,
.ny *,
.ny-title,
.ny-title h2,
.ny-title h3,
.ny-crumbs,
.ny-crumbs p {
    max-width: 100%;
    box-sizing: border-box;
}

/* 解决 pw1100 固定宽度导致 H5 端溢�?*/
.ny .pw1100 {
    width: 100%;
    max-width: 1100px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 防止装饰元素溢出 */
.ny::before,
.ny::after {
    max-width: 100%;
    overflow: hidden;
}

/* 标题长文本溢出保�?*/
.ny-title h2,
.ny-title h3,
.ny-crumbs p {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* 询盘页面所�?pw1100 容器响应式（覆盖公共样式�?*/
.pw1100 {
    width: 100%;
    max-width: 1100px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 响应式断�?- 公共容器 */
@media screen and (max-width: 1024px) {
    .ny .pw1100,
    .pw1100 {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .ny {
        padding: 30px 0 20px;
    }
    
    .ny .pw1100,
    .pw1100 {
        padding: 0 16px;
    }
}

@media screen and (max-width: 480px) {
    .ny {
        padding: 24px 0 18px;
    }
    
    .ny .pw1100,
    .pw1100 {
        padding: 0 12px;
    }
}

@media screen and (max-width: 375px) {
    .ny .pw1100,
    .pw1100 {
        padding: 0 10px;
    }
}

/* 页面头部样式 - 参考天蓝风�?*/
.ny {
    background: #fff;
    padding: 40px 0 30px;
}

.ny-crumbs {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #D4AF37;
}

.ny-crumbs .crumbs-arrow {
    width: 12px;
    height: 12px;
    border-top: 2px solid #D4AF37;
    border-right: 2px solid #D4AF37;
    transform: rotate(45deg);
    margin-right: 10px;
}

.ny-crumbs p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.ny-title {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #D4AF37;
}

.ny-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #D4AF37;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.ny-title h3 {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.6;
}


/* 描述内容区域 */
.contact {
    background: #fff;
    padding: 50px 0;
}

.contact .pw1100 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin: 0 0 25px 0;
}

.contact p:last-child {
    margin-bottom: 0;
}

/* 响应式调�?*/
@media screen and (max-width: 768px) {
    .ny-title h2 {
        font-size: 26px;
    }
    
    .ny-title h3 {
        font-size: 18px;
    }
    
    .contact p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .ny {
        padding: 30px 0 20px;
    }
    
    .ny-title h2 {
        font-size: 22px;
    }
    
    .ny-title h3 {
        font-size: 16px;
    }
    
    .contact {
        padding: 35px 0;
    }
    
    .contact p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* 邀请横�?*/
.contact-invite-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 30px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(236, 159, 32, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-invite-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.invite-banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.invite-banner-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.invite-banner-text {
    flex: 1;
    z-index: 1;
}

.invite-banner-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #fff;
}

.invite-banner-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.5;
}

.invite-banner-btn {
    background: #fff;
    color: #D4AF37;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.invite-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    color: #B8962E;
}

/* 联系方式卡片网格 */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.method-card {
    background: linear-gradient(145deg, #ffffff 0%, #f6f8fa 100%);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.method-card-email::before { background: linear-gradient(90deg, #db4a39, #ea684f); }
.method-card-whatsapp::before { background: linear-gradient(90deg, #25d366, #128c7e); }
.method-card-phone::before { background: linear-gradient(90deg, #3b5998, #4a6fb1); }

.method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.method-card:hover::before {
    opacity: 1;
}

.method-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.method-card-email .method-card-icon { background: linear-gradient(135deg, #db4a39, #ea684f); }
.method-card-whatsapp .method-card-icon { background: linear-gradient(135deg, #25d366, #128c7e); }
.method-card-phone .method-card-icon { background: linear-gradient(135deg, #3b5998, #4a6fb1); }

.method-card-icon svg {
    width: 26px;
    height: 26px;
}

.method-card-content {
    flex: 1;
    min-width: 0;
}

.method-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.method-hint {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.method-value {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    word-break: break-all;
    flex: 1;
    min-width: 0;
}

.method-value-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.method-value-row:last-child {
    margin-bottom: 0;
}

.method-card .copy-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f1f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex-shrink: 0;
}

.method-card .copy-btn:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.method-card .copy-btn svg {
    width: 18px;
    height: 18px;
    color: #495057;
}

/* 工厂展示 */
.factory-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 35px;
}

.factory-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.factory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.factory-image:hover img {
    transform: scale(1.05);
}

.factory-image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(236, 159, 32, 0.95);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
}

.factory-image-badge svg {
    width: 16px;
    height: 16px;
}

.factory-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 12px 0;
}

.factory-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.factory-address-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid #e9ecef;
}

.factory-address-box svg {
    width: 20px;
    height: 20px;
    color: #D4AF37;
    flex-shrink: 0;
}

.factory-address-box span {
    flex: 1;
    font-size: 14px;
    color: #2C3E50;
    line-height: 1.5;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: #B8962E;
    gap: 12px;
}

.map-link svg {
    width: 16px;
    height: 16px;
}

/* 底部联系区域 */
.contact-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.social-follow h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 8px 0;
}

.social-hint {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.social-follow .social-icons {
    display: flex;
    gap: 14px;
}

.social-follow .social-link {
    width: 50px;
    height: 50px;
    border-radius: 14px;
}

/* 在线客服卡片 */
.online-service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e9ecef;
}

.online-service-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.online-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #B8962E);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    flex-shrink: 0;
}

.online-service-icon svg {
    width: 24px;
    height: 24px;
    z-index: 1;
}

.online-pulse {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.online-service-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 2px 0;
}

.online-status {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

.online-service-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.wechat-qr-section {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
}

.wechat-qr-section .qr-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
}

.wechat-qr-section .qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-tip {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qr-tip strong {
    font-size: 15px;
    color: #2C3E50;
    font-weight: 700;
}

.qr-tip span {
    font-size: 12px;
    color: #888;
}

/* 响应�?*/
@media screen and (max-width: 992px) {
    .contact-invite-banner {
        padding: 22px 24px;
    }
    
    .invite-banner-text h3 {
        font-size: 20px;
    }
    
    .factory-showcase,
    .contact-bottom {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .contact-invite-banner {
        flex-wrap: wrap;
        padding: 20px;
        text-align: center;
        justify-content: center;
    }
    
    .invite-banner-icon {
        width: 50px;
        height: 50px;
    }
    
    .invite-banner-text {
        flex: 1 0 100%;
        order: 2;
    }
    
    .invite-banner-text h3 {
        font-size: 18px;
    }
    
    .invite-banner-btn {
        flex: 1 0 100%;
        order: 3;
        text-align: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .factory-showcase {
        padding: 20px;
    }
    
    .factory-info h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .method-card {
        padding: 18px;
    }
    
    .method-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .method-card-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .online-service-card {
        padding: 20px;
    }
}

/* ============ 滚动进入动画 ============ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-animate="fadeInUp"] {
    transform: translateY(60px);
}

[data-animate="fadeInLeft"] {
    transform: translateX(-80px);
}

[data-animate="fadeInRight"] {
    transform: translateX(80px);
}

[data-animate="fadeInDown"] {
    transform: translateY(-60px);
}

[data-animate="zoomIn"] {
    transform: scale(0.85);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============ 工厂展示特效 ============ */
.factory-showcase {
    position: relative;
    overflow: hidden;
}

.factory-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: float-blob 8s ease-in-out infinite;
    pointer-events: none;
}

.factory-showcase::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    animation: float-blob 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* 工厂图片扫光效果 */
.factory-image {
    position: relative;
    overflow: hidden;
}

.factory-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 70%,
        transparent 100%
    );
    pointer-events: none;
    animation: shine-sweep 4s ease-in-out infinite;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    60%, 100% { left: 200%; }
}

/* 工厂角标脉冲 */
.factory-image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(236, 159, 32, 0.95);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(236, 159, 32, 0.3);
    animation: badge-bounce 2.5s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.factory-image-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid rgba(236, 159, 32, 0.5);
    animation: badge-ring 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes badge-ring {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.6); }
}

/* 工厂信息标题装饰�?*/
.factory-info h3 {
    position: relative;
    padding-bottom: 12px;
}

.factory-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B8962E);
    border-radius: 2px;
    animation: line-grow 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    transform-origin: left;
}

@keyframes line-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* 工厂地址框悬浮特�?*/
.factory-address-box {
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.factory-address-box::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #B8962E);
    border-radius: 0 0 10px 10px;
    transition: width 0.4s ease;
}

.factory-address-box:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(236, 159, 32, 0.12);
    border-color: rgba(236, 159, 32, 0.2);
}

.factory-address-box:hover::after {
    width: 100%;
}

.factory-address-box:hover svg {
    color: #D4AF37;
    transform: scale(1.1);
}

.factory-address-box svg {
    transition: all 0.3s ease;
}

/* 复制按钮样式 */
.copy-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.15);
    color: #D4AF37;
}

.copy-btn.copied {
    background: #22c55e !important;
    color: #fff !important;
    border-color: #22c55e !important;
}

/* 复制提示气泡 */
.copy-toast {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(34, 197, 94, 0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
    pointer-events: none;
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-toast::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(34, 197, 94, 0.95);
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.method-card,
.factory-address-box,
.contact-item {
    position: relative;
    overflow: visible;
}
