/* 大户定制页面样式 */
.container2 {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero区域 */
.custom-hero-section {
    padding: 100px 0;
    text-align: center;
    background: #ffffff;
    color: #1a2b4d;
}

.custom-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0065BD;
}

.custom-hero-section .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #606266;
}

.custom-hero-section .btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-hero-section .btn-primary {
    background-color: #0065BD;
    color: white;
    height: 43px;
    min-width: 134px;
    padding: 0 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.custom-hero-section .btn-primary:hover {
    background-color: #0056a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 101, 189, 0.3);
}

.custom-hero-section .btn-primary img {
    width: 18px;
    height: 18px;
    display: block;
    filter: brightness(0) invert(1);
}

.custom-hero-section .btn-primary span {
    display: block;
    white-space: nowrap;
}

.custom-hero-section .btn-consult {
    background-color: #0065BD;
}

.custom-hero-section .btn-consult:hover {
    background-color: #0056a3;
}

.custom-hero-section .btn-service {
    background-color: #0065BD;
}

.custom-hero-section .btn-service:hover {
    background-color: #0056a3;
}

/* 服务优势区域 */
.advantages-section {
    padding: 80px 0;
    background: #ffffff;
}

.advantages-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a2b4d;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: #0065BD;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.advantage-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2b4d;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* 服务内容区域 */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a2b4d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    border-left: 4px solid #0065BD;
    padding-left: 30px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a2b4d;
}

.service-item ul {
    list-style: none;
    padding: 0;
    color: #666;
    line-height: 2;
}

/* 联系表单区域 */
.contact-form-section {
    padding: 80px 0;
    background: #EFF3F9;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a2b4d;
}

.custom-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0065BD;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #0065BD;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 101, 189, 0.4);
}

.submit-btn:hover {
    background: #0056a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 101, 189, 0.5);
}

/* 联系方式区域 */
.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a2b4d;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a2b4d;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    color: #0065BD;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* 移动端样式 */
@media (max-width: 600px) {
    .custom-hero-section {
        padding: 60px 0;
    }
    
    .custom-hero-section h1 {
        font-size: 32px;
    }
    
    .custom-hero-section .subtitle {
        font-size: 16px;
    }
    
    .custom-hero-section .btn-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .custom-hero-section .btn-primary {
        width: 100%;
        max-width: 280px;
        height: 44px;
        padding: 0 20px;
    }
    
    .custom-hero-section .btn-primary img {
        width: 16px;
        height: 16px;
        filter: brightness(0) invert(1);
    }
    
    .advantages-section,
    .services-section,
    .contact-form-section,
    .contact-info-section {
        padding: 40px 0;
    }
    
    .advantages-section h2,
    .services-section h2,
    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-item {
        padding-left: 20px;
    }
    
    .contact-form-section {
        padding: 40px 20px;
    }
    
    .custom-form {
        padding: 30px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
}

