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

/* 字体和基础样式 */
body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

 

/* 英雄区域样式 */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

 
/* 通用部分样式 */
.section {
    padding: 80px 0;
}

.bg-gray {
    background-color: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #0066cc;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6600;
}

/* 卡片样式 */
.card1 {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card1 h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}

/* 手风琴样式 */
.accordion {
    margin-top: 10px;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f8f9fa;
    padding: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background-color: #f1f3f4;
}

.accordion-header::after {
    content: '▼';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-body.active {
    padding: 15px;
    max-height: 500px;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 5px;
}

/* 政策、院校、备考、发展前景等部分的内容样式 */
.policy-content, .schools-content, .preparation-content, .future-content, .tools-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* 日历样式 */
.calendar {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.calendar-month {
    background-color: #f0f7ff;
    border: 1px solid #d1e0ff;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.calendar-month:hover {
    background-color: #e0efff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.calendar-month h4 {
    color: #0066cc;
    margin-bottom: 8px;
    font-size: 16px;
}

.calendar-month p {
    font-size: 14px;
    color: #666;
}

/* 数据库和资料包样式 */
.database ul, .materials ul {
    padding-left: 20px;
}

.database li, .materials li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* FAQ样式 */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.faq-question {
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
}

.faq-question::after {
    content: '▶';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 5px 0 10px;
    color: #666;
    font-size: 14px;
}

.faq-answer.active {
    display: block;
}
 

/* 响应式设计 */
@media (max-width: 768px) {
 
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .policy-content, .schools-content, .preparation-content, .future-content, .tools-content {
        grid-template-columns: 1fr;
    }
    
 
    
    .calendar {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .card1 {
        padding: 20px;
    }
    
    .card1 h3 {
        font-size: 20px;
    }
 }