/* 课程页面专属样式 */

/* 课程体系横幅 */
.courses-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/courses-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.courses-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* 课程体系概述 */
.system-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.system-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

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

.system-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.system-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.system-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-icon i {
    font-size: 2rem;
    color: var(--white);
}

.system-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.system-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.system-card ul {
    list-style: none;
    text-align: left;
}

.system-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.system-card ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* 课程模块 */
.modules-section {
    padding: 5rem 0;
}

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

.module-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-header {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.module-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.module-duration {
    font-size: 1.1rem;
    opacity: 0.9;
}

.module-content {
    padding: 2rem;
}

.module-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.module-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.module-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.module-content ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* 教学方法 */
.methodology-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.methodology-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.methodology-card:hover {
    transform: translateY(-5px);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.methodology-icon i {
    font-size: 2rem;
    color: var(--white);
}

.methodology-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.methodology-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.methodology-card ul {
    list-style: none;
    text-align: left;
}

.methodology-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.methodology-card ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* 师资力量 */
.faculty-section {
    padding: 5rem 0;
}

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

.faculty-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.faculty-image {
    height: 300px;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

.faculty-info {
    padding: 2rem;
}

.faculty-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.faculty-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.faculty-info ul {
    list-style: none;
}

.faculty-info ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.faculty-info ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* 申请入学 */
.apply-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.apply-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.apply-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.apply-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.apply-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.apply-info ul li i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.apply-price {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 5px;
}

.apply-price .price {
    display: block;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.apply-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
    padding: 1rem;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 5px;
    font-size: 1rem;
}

.apply-form textarea {
    height: 150px;
    resize: vertical;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .courses-hero h1 {
        font-size: 2.5rem;
    }
    
    .apply-content {
        grid-template-columns: 1fr;
    }
} 