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

/* 触摸友好的交互效果 */
@media (hover: none) and (pointer: coarse) {
    /* 移动端触摸设备优化 */
    .btn, .btn-service, .nav-link, .service-card, .contact-item, .stat, .feature {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .btn:active, .btn-service:active {
        transform: scale(0.98);
    }
    
    .service-card:active {
        transform: scale(0.99);
    }
    
    .nav-link:active {
        transform: scale(0.95);
    }
    
    /* 增加触摸目标大小 */
    .nav-toggle {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .user-menu-btn {
        padding: 8px;
        min-width: 32px;
        min-height: 32px;
    }
    
    .close {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* 表单元素优化 */
    .form-group input, .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* 防止iOS缩放 */
    }
    
    .payment-btn {
        min-height: 50px;
    }
    
    /* 滚动优化 */
    .modal-body {
        -webkit-overflow-scrolling: touch;
    }
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* 首页横幅 */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #e0e7ff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* 科技动画 */
.tech-animation {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 8s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.element-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 40%;
    animation-delay: 5s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-15px) rotate(90deg) scale(1.05); 
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.1); 
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.05); 
    }
}

/* 服务项目 */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(102,126,234,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-service {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-service::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;
}

.btn-service:hover::before {
    left: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* 客户信息表单样式 */
.customer-info {
    margin: 30px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.customer-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.customer-info h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

/* 滚动提示 */
.scroll-hint {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: rgba(102, 126, 234, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    animation: fadeInOut 3s ease-in-out;
    z-index: 10;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    opacity: 0.6;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* 服务Banner样式 */
.service-banner {
    width: 100%;
    height: 227px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    z-index: 1;
}

.service-banner img {
    position: relative;
    z-index: 2;
}

/* 默认banner样式（当没有图片时） */
.service-banner.default {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.service-banner.default::after {
    content: '🎨 专业服务';
    position: absolute;
    z-index: 3;
}

/* 订单弹窗 */
/* 用户信息区域样式 */
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-phone {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.user-menu {
    position: relative;
}

.user-menu-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.user-menu-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    display: none !important;
    overflow: hidden;
}

.user-dropdown.show {
    display: block !important;
    animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: #f8f9fa;
    color: #667eea;
}

.user-dropdown a i {
    width: 16px;
    text-align: center;
}

/* 登录按钮样式 */
.login-btn button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}


/* 我的订单弹窗样式 */
.order-search {
    margin-bottom: 20px;
}

.search-input {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
}

.search-input:focus-within {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input i {
    color: #999;
    margin: 0 10px;
    font-size: 16px;
}

.search-input input {
    flex: 1;
    border: none;
    background: none;
    padding: 12px 0;
    font-size: 16px;
    outline: none;
}

.search-input button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-input button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.my-orders-list {
    max-height: 400px;
    overflow-y: auto;
}

.order-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.order-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-number {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.paid {
    background: #d4edda;
    color: #155724;
}

.order-status.processing {
    background: #cce5ff;
    color: #004085;
}

.order-status.completed {
    background: #d1ecf1;
    color: #0c5460;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.order-detail-item {
    display: flex;
    flex-direction: column;
}

.order-detail-item .label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.order-detail-item .value {
    font-weight: 600;
    color: #333;
}

.no-orders {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-orders i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ddd;
}

/* 用户登录弹窗样式 */
.login-tips {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #667eea;
}

.login-tips p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.login-tips i {
    color: #667eea;
    margin-right: 8px;
}

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

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

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 25px;
    width: 95%;
    max-width: 650px;
    max-height: 90vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
    flex: 1;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

/* 自定义滚动条样式 */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.order-info {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.order-info h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.order-details {
    display: grid;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: #64748b;
    font-weight: 500;
}

.detail-row .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #667eea;
}

.payment-section h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.payment-methods {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-btn {
    flex: 1;
    padding: 20px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-btn.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.02);
}

.payment-btn:hover {
    border-color: #667eea;
    transform: scale(1.02);
}

.payment-btn i {
    font-size: 1.5rem;
}

.qr-section {
    text-align: center;
}

.qr-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed #667eea;
    margin-bottom: 25px;
}

.qr-code {
    color: #667eea;
}

.qr-code i {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
}

.qr-code p {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.qr-code small {
    color: #999;
    font-size: 0.9rem;
}

.payment-tips {
    display: grid;
    gap: 10px;
}

.payment-tips p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.95rem;
}

.payment-tips i {
    color: #667eea;
}

.payment-confirm-section {
    margin-top: 20px;
    text-align: center;
}

.payment-confirm-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.payment-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838, #1ea085);
}

.payment-confirm-btn:active {
    transform: translateY(0);
}

.modal-footer {
    padding: 20px 30px;
    background: #f8fafc;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-shrink: 0;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 25px 25px;
}

.modal-footer .btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.modal-footer .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.modal-footer .btn-success {
    background: #28a745;
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.modal-footer .btn-success:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* 客户评价 */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonials-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-dots)"/></svg>');
    opacity: 0.3;
}

.testimonials-slider {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.testimonial-item.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.author-info span {
    font-size: 1rem;
    opacity: 0.8;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* 服务流程 */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 0 40px;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.process-step:nth-child(odd) .step-content::before {
    right: -30px;
    border-left-color: white;
    transform: translateY(-50%);
}

.process-step:nth-child(even) .step-content::before {
    left: -30px;
    border-right-color: white;
    transform: translateY(-50%);
}

.step-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-details ul {
    list-style: none;
    padding: 0;
}

.step-details li {
    color: #64748b;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* 价格方案 */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-price {
    margin-bottom: 20px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    color: #64748b;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #28a745;
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.pricing-note {
    text-align: center;
    padding: 30px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    border-left: 5px solid #667eea;
    position: relative;
    z-index: 2;
}

.pricing-note p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-note i {
    color: #667eea;
    font-size: 1.2rem;
}

/* 加载占位符样式 */
.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px dashed #e2e8f0;
}

.loading-placeholder i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #667eea;
}

.loading-placeholder p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* 关于我们 */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature i {
    color: #ffd700;
    font-size: 1.5rem;
}

.feature span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat h3 {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 900;
}

.stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 600;
}

/* 联系我们 */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-details p {
    margin-bottom: 25px;
    color: #64748b;
    font-size: 1.1rem;
}

/* 新版联系内容容器 */
.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 联系卡片 */
.contact-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* 大图标 */
.contact-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    max-width: 300px;
}

/* 订阅卡片特殊样式 */
.newsletter-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.newsletter-card .contact-icon-large {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.newsletter-card h3 {
    color: white;
}

.newsletter-card .contact-text {
    color: rgba(255, 255, 255, 0.9);
}

/* 订阅表单样式 */
.newsletter-card .newsletter-form {
    width: 100%;
}

.newsletter {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    color: white;
}

.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter p {
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 20px 35px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 社交媒体图标 */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 快速链接 */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.footer-links a i {
    width: 20px;
    color: #667eea;
}

.footer-links a:hover {
    opacity: 1;
    color: #667eea;
    transform: translateX(5px);
}

/* 联系方式 */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 1rem;
}

.footer-contact p i {
    width: 20px;
    color: #667eea;
}

/* 联系方式链接样式 */
.contact-link {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.contact-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.contact-link:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
}

/* 电话链接特殊样式 */
.contact-link[href^="tel:"]:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.3);
}

/* 邮箱链接特殊样式 */
.contact-link[href^="mailto:"]:hover {
    background: rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.3);
}

/* 分隔线 */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 40px 0 30px;
}

/* 页脚底部 */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    font-size: 0.95rem;
}

.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copyright i {
    color: #667eea;
}

/* 备案信息 */
.footer-beian {
    text-align: center;
}

.footer-beian a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.footer-beian a i {
    color: #667eea;
}

.footer-beian a:hover {
    opacity: 1;
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

/* 统计信息 */
.footer-stats {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    opacity: 0.8;
}

.footer-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-stats i {
    color: #667eea;
}

/* ==================== 信息弹窗样式 ==================== */

/* 信息类模态框内容 */
.info-modal-content {
    max-width: 900px;
}

/* 常见问题样式 */
.faq-section {
    padding: 10px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.faq-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: #667eea;
    font-size: 0.9rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

/* 服务条款样式 */
.terms-section {
    padding: 10px 0;
}

.terms-section h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
}

.terms-section h4 i {
    color: #667eea;
    font-size: 1.1rem;
}

.terms-section p {
    color: #64748b;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-left: 10px;
}

.terms-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* 隐私政策样式 */
.privacy-section {
    padding: 10px 0;
}

.privacy-section h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #764ba2;
}

.privacy-section h4 i {
    color: #764ba2;
    font-size: 1.1rem;
}

.privacy-section p {
    color: #64748b;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-left: 10px;
}

.privacy-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* 用户信息和登录按钮的显示控制 */
/* 默认隐藏所有用户信息和登录按钮 */
.user-info,
.login-btn,
.mobile-user-info,
.mobile-login-btn {
    display: none !important;
}

/* 登录状态下显示用户信息 */
.user-info.logged-in {
    display: flex !important;
}

/* 未登录状态下显示登录按钮 */
.login-btn.show {
    display: block !important;
}

/* 移动端用户信息（通过媒体查询控制） */
.mobile-user-info.logged-in {
    display: none !important; /* 桌面端始终隐藏 */
}

.mobile-login-btn.show {
    display: none !important; /* 桌面端始终隐藏 */
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 桌面端用户信息在移动端隐藏 */
    .user-info.logged-in,
    .login-btn.show {
        display: none !important;
    }
    
    /* 移动端：登录状态下显示用户信息 */
    .mobile-user-info.logged-in {
        display: block !important;
    }
    
    /* 移动端：未登录状态下显示登录按钮 */
    .mobile-login-btn.show {
        display: block !important;
    }

    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .nav-logo h2 {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        overflow-y: auto;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px 20px;
        gap: 20px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
    }

    /* 移动端用户信息样式 */
    .mobile-user-info {
        margin: 20px 20px 40px 20px;
        padding: 20px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 15px;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-user-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-user-avatar {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        backdrop-filter: blur(10px);
    }

    .mobile-user-details {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-user-phone {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
    }

    .mobile-user-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .mobile-user-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-user-action {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-user-action:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }

    .mobile-user-action i {
        width: 20px;
        text-align: center;
        font-size: 1.1rem;
    }

    /* 移动端登录按钮样式 */
    .mobile-login-btn {
        margin: 20px 20px 40px 20px;
        padding: 0;
    }

    .mobile-login-btn button {
        width: 100%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .mobile-login-btn button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .mobile-login-btn button:active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* 移动端用户信息优化 */
    .user-info {
        order: 2;
        flex-direction: column;
        gap: 5px;
        margin-right: 15px;
    }
    
    .user-details {
        align-items: center;
    }
    
    .user-phone {
        font-size: 12px;
    }
    
    .user-dropdown {
        right: -20px;
        min-width: 120px;
    }

    .login-btn {
        order: 2;
        margin-right: 15px;
    }

    .login-btn button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 90vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 30px;
        font-size: 1rem;
    }

    /* 科技动画在移动端简化 */
    .tech-animation {
        height: 300px;
    }

    .floating-element {
        display: none;
    }

    .floating-element.element-1 {
        display: block;
        width: 60px;
        height: 60px;
        top: 20%;
        left: 20%;
    }

    .services {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .service-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .service-card p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .service-price {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .btn-service {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }

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

    .feature {
        padding: 15px;
        gap: 15px;
    }

    .feature i {
        font-size: 1.2rem;
    }

    .feature span {
        font-size: 1rem;
    }

    .about-stats {
        gap: 20px;
    }

    .stat {
        padding: 25px 20px;
    }

    .stat h3 {
        font-size: 2.5rem;
    }

    .stat p {
        font-size: 1rem;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    /* 联系卡片移动端适配 */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .contact-card {
        padding: 40px 30px;
    }

    .contact-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .contact-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .contact-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form input {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .newsletter-form button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    /* 旧样式保留（如果其他地方用到） */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-details h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .contact-details p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .newsletter {
        padding: 30px 20px;
    }

    .newsletter h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .newsletter p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section h3 {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-copyright p {
        justify-content: center;
    }

    .footer-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
        max-width: none;
        border-radius: 15px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h3 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 20px 15px;
        max-height: calc(95vh - 120px);
    }

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

    .customer-info {
        padding: 15px;
        margin: 15px 0;
    }
    
    .customer-info h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .payment-methods {
        flex-direction: column;
        gap: 15px;
    }

    .payment-btn {
        padding: 15px;
        font-size: 1rem;
    }

    .qr-container {
        padding: 20px;
    }

    .qr-code i {
        font-size: 3rem;
    }

    .qr-code p {
        font-size: 1.1rem;
    }

    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .modal-footer .btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 10px;
        height: 60px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-menu {
        top: 60px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        max-width: 250px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services {
        padding: 60px 0;
    }

    .service-card {
        padding: 25px 15px;
        margin: 0 5px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 1.4rem;
    }

    .btn-service {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .feature {
        padding: 12px;
        gap: 10px;
    }

    .feature i {
        font-size: 1rem;
    }

    .feature span {
        font-size: 0.9rem;
    }

    .stat {
        padding: 20px 15px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    .contact {
        padding: 60px 0;
    }

    /* 联系卡片小屏幕适配 */
    .contact-content {
        gap: 20px;
        padding: 0 15px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .contact-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .newsletter-form input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* 旧样式保留 */
    .contact-item {
        padding: 20px 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-details h3 {
        font-size: 1.2rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .newsletter {
        padding: 25px 15px;
    }

    .newsletter h3 {
        font-size: 1.2rem;
    }

    .newsletter p {
        font-size: 0.9rem;
    }

    .modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 10px;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 15px 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .payment-btn {
        padding: 12px;
        font-size: 0.9rem;
    }

    .qr-container {
        padding: 15px;
    }

    .qr-code i {
        font-size: 2.5rem;
    }

    .qr-code p {
        font-size: 1rem;
    }

    .modal-footer {
        padding: 10px 15px;
    }

    .modal-footer .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* 新增区域的移动端样式 */
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonials-slider {
        padding: 0 15px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
        margin-bottom: 60px;
    }
    
    .step-icon {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        margin: 0;
        padding: 25px 20px;
    }
    
    .step-content::before {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
    
    /* 团队成员移动端样式 */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .member-avatar {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-role {
        font-size: 1rem;
    }
    
    .member-description {
        font-size: 0.9rem;
    }
    
    .member-skills {
        gap: 6px;
    }
    
    .member-skills span {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .team-stat {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-content h3 {
        font-size: 1.1rem;
    }
    
    .stat-content p {
        font-size: 0.9rem;
    }
}

/* 骨架屏样式 */
.skeleton-loader {
    padding: 20px;
}

.skeleton-header {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 20px;
}

.skeleton-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-line {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

.skeleton-line.short {
    width: 60%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 页面加载完成动画 */
body.loaded {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 动画进入效果 */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}