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

body {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* 导航栏样式 */
.header-7ae9ef {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-7ae9ef .container-848885 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.nav-brand-85863c h1 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.tagline-f443d7 {
    font-size: 0.85rem;
    opacity: 0.9;
    color: #ecf0f1;
}

/* 桌面端导航 */
.desktop-nav-6699d5 {
    display: flex;
    gap: 2rem;
}

.desktop-nav-6699d5 a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.desktop-nav-6699d5 a:hover {
    background: rgba(255,255,255,0.1);
    color: #f1c40f;
}

/* 移动端菜单按钮 */
.mobile-menu-btn-8d3f39 {
    display: none;
}

/* 移动端抽屉菜单 - 完全隐藏 */
.mobile-drawer-86b52b {
    display: none;
}

/* 抽屉背景遮罩 - 完全隐藏 */
.drawer-overlay-65457b {
    display: none;
}

/* 联系按钮样式 */
.contact-quick-9a70ce {
    display: flex;
    align-items: center;
}

.phone-btn-a7d44a {
    background: #e74c3c;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.phone-btn-a7d44a:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

/* PC端显示手机号，移动端显示按钮文字 */
.phone-number-2847b4 {
    display: inline;
}

.phone-text-84d022 {
    display: none;
}

/* 主横幅样式 */
.hero-771fa8 {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-771fa8 h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle-3e4bc0 {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: #ecf0f1;
}

.hero-features-f83a1c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item-de788e {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-item-de788e span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item-de788e h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-cta-38f364 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-17dc24 {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-btn-17dc24.primary-daa47c {
    background: #e74c3c;
    color: white;
}

.cta-btn-17dc24.secondary-52ad74 {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-17dc24:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 通用部分样式 */
.section-title-e0823c {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    font-weight: 700;
}

.section-title-e0823c::after {
    content: '';
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle-79e0c2 {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

/* 服务项目样式 */
.services-d050c4 {
    padding: 4rem 0;
    background: white;
}

.services-grid-f86890 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-76e7b5 {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ecf0f1;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card-76e7b5:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52,152,219,0.15);
}

.service-icon-97ae1c {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card-76e7b5 h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card-76e7b5 ul {
    list-style: none;
    text-align: left;
}

.service-card-76e7b5 li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #ecf0f1;
    color: #555;
    font-size: 0.95rem;
}

.service-card-76e7b5 li:last-child {
    border-bottom: none;
}

/* 样本展示样式 */
.samples-aea8f4 {
    padding: 4rem 0;
    background: #f8f9fa;
}

.samples-grid-fd66aa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sample-item-f6f452 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sample-item-f6f452:hover {
    transform: scale(1.05);
}

.sample-item-f6f452 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sample-overlay-1a5514 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sample-item-f6f452:hover .sample-overlay-1a5514 {
    transform: translateY(0);
}

/* 制作工艺样式 */
.process-00d94d {
    padding: 4rem 0;
    background: white;
}

.process-content-915810 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.process-text-8e9621 h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.process-steps-820d14 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-d3c255 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number-97d522 {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content-6f81f5 h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content-6f81f5 p {
    color: #7f8c8d;
}

.process-features-4f58d3 {
    display: grid;
    gap: 1.5rem;
}

.feature-2e8d83 {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ecf0f1;
    transition: all 0.3s;
}

.feature-2e8d83:hover {
    border-color: #3498db;
}

.feature-2e8d83 h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-2e8d83 p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* 联系方式样式 */
.contact-a0a762 {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
}

.contact-a0a762::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c, #27ae60, #f39c12);
}

.contact-a0a762 .section-title-e0823c {
    color: white;
}

.contact-a0a762 .section-title-e0823c::after {
    background: linear-gradient(135deg, #f1c40f, #e67e22);
}

.contact-content-db5fdb {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-d418ed {
    display: grid;
    gap: 2rem;
}

.contact-item-06e22f h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item-06e22f p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item-06e22f a {
    color: #f1c40f;
    text-decoration: none;
}

.contact-item-06e22f small {
    opacity: 0.8;
    color: #bdc3c7;
}

.wechat-qr-ac6274 {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.wechat-qr-ac6274 img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* 免责声明样式 */
.disclaimer-e6c465 {
    background: #e74c3c;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.disclaimer-text-ae5129 {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Flink */
.flink-section-5aba0d {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-c0c9d5{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-5aba0d li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-5aba0d a{
    color: #718096;
    text-decoration: none;
}

/* 底部样式 */
.footer-dd429e {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content-d70ebc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand-1d26ba h3 {
    margin-bottom: 0.5rem;
    color: #f1c40f;
    font-weight: 600;
}

.footer-links-c04734 h4,
.footer-contact-1231a6 h4 {
    margin-bottom: 1rem;
    color: #f1c40f;
    font-weight: 600;
}

.footer-links-c04734 ul {
    list-style: none;
}

.footer-links-c04734 li {
    padding: 0.3rem 0;
    color: #bdc3c7;
}

.footer-contact-1231a6 p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-bottom-fd32be {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* 移动端底部操作栏 */
.mobile-bottom-bar-b77332 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 0.8rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    border-top: 1px solid #ecf0f1;
}

.mobile-action-32a3af {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #7f8c8d;
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-action-32a3af:hover,
.mobile-action-32a3af:active {
    color: #2c3e50;
}

.mobile-action-32a3af span {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.mobile-action-32a3af small {
    font-size: 0.7rem;
    font-weight: 500;
}

.mobile-action-32a3af.phone-d598a2 span {
    color: #e74c3c;
}

.mobile-action-32a3af.wechat-8fad7e span {
    color: #27ae60;
}

.mobile-action-32a3af.service-65aa4b span {
    color: #3498db;
}

/* 模态框样式 */
.modal-c0238d {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content-6fec2b {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close-modal-7a7399 {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #7f8c8d;
    background: none;
    border: none;
    z-index: 10;
    transition: color 0.3s;
}

.close-modal-7a7399:hover {
    color: #e74c3c;
}

.modal-content-6fec2b h3 {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    border-radius: 15px 15px 0 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.wechat-info-6d047e {
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.wechat-info-6d047e img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 2px solid #ecf0f1;
}

.wechat-details-f08a64 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wechat-label-a3e5eb {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.wechat-id-32e3ee {
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 8px;
    border: 2px solid #ecf0f1;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wechat-id-32e3ee:hover {
    border-color: #27ae60;
    background: #e8f5e8;
}

.wechat-id-32e3ee span {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.copy-btn-d39af6 {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

.copy-btn-d39af6:hover {
    background: #229954;
}

.wechat-tips-3b00d4 {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.wechat-tips-3b00d4 p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #2c3e50;
}

.wechat-tips-3b00d4 p:first-child {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-hours-96ced6 {
    background: #fff3cd;
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.service-hours-96ced6 p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container-848885 {
        padding: 0 15px;
    }
    
    .header-7ae9ef .container-848885 {
        flex-wrap: nowrap;
    }
    
    .desktop-nav-6699d5 {
        display: none;
    }
    
    /* 移动端电话按钮样式 */
    .phone-number-2847b4 {
        display: none;
    }
    
    .phone-text-84d022 {
        display: inline;
    }
    
    .hero-771fa8 h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-3e4bc0 {
        font-size: 1rem;
    }
    
    .hero-features-f83a1c {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item-de788e {
        padding: 1.5rem;
    }
    
    .hero-cta-38f364 {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-17dc24 {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid-f86890 {
        grid-template-columns: 1fr;
    }
    
    .samples-grid-fd66aa {
        grid-template-columns: 1fr;
    }
    
    .process-content-915810 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content-db5fdb {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content-d70ebc {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-bottom-bar-b77332 {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .wechat-info-6d047e {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .wechat-info-6d047e img {
        justify-self: center;
    }
}

@media (max-width: 480px) {
    .container-848885 {
        padding: 0 10px;
    }
    
    .hero-771fa8 {
        padding: 2rem 0;
    }
    
    .hero-771fa8 h2 {
        font-size: 1.5rem;
    }
    
    .section-title-e0823c {
        font-size: 1.8rem;
    }
    
    .feature-item-de788e span {
        font-size: 2rem;
    }
    
    .wechat-qr-ac6274 img {
        width: 150px;
        height: 150px;
    }
    
    .modal-content-6fec2b {
        margin: 15% auto;
        width: 95%;
    }
    
    .wechat-info-6d047e {
        padding: 1.5rem;
    }
    
    .wechat-info-6d047e img {
        width: 120px;
        height: 120px;
    }
}

/* 超小屏幕设备（320px及以下） */
@media (max-width: 320px) {
    .container-848885 {
        padding: 0 8px;
    }
    
    .nav-brand-85863c h1 {
        font-size: 1.4rem;
    }
    
    .tagline-f443d7 {
        font-size: 0.75rem;
    }
    
    .phone-btn-a7d44a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-771fa8 h2 {
        font-size: 1.3rem;
    }
    
    .hero-subtitle-3e4bc0 {
        font-size: 0.9rem;
    }
    
    .feature-item-de788e {
        padding: 1rem;
    }
    
    .feature-item-de788e span {
        font-size: 1.8rem;
    }
    
    .feature-item-de788e h3 {
        font-size: 1.1rem;
    }
    
    .cta-btn-17dc24 {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title-e0823c {
        font-size: 1.6rem;
    }
    
    .service-card-76e7b5 {
        padding: 1.5rem;
    }
    
    .service-icon-97ae1c {
        font-size: 2.5rem;
    }
    
    .service-card-76e7b5 h3 {
        font-size: 1.2rem;
    }
    
    .mobile-bottom-bar-b77332 {
        padding: 0.6rem 0;
    }
    
    .mobile-action-32a3af span {
        font-size: 1.3rem;
    }
    
    .mobile-action-32a3af small {
        font-size: 0.65rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-676dff,
.service-card-76e7b5,
.sample-item-f6f452,
.step-d3c255 {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动行为 */
html {
    scroll-behavior: smooth;
}

/* 链接样式 */
a {
    transition: all 0.3s ease;
}

/* 按钮悬停效果 */
.cta-btn-17dc24:hover,
.phone-btn-a7d44a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 加载优化 */
img {
    max-width: 100%;
    height: auto;
}

/* 可访问性 */
:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* 打印样式 */
@media print {
    .mobile-bottom-bar-b77332,
    .modal-c0238d {
        display: none !important;
    }
} 