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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'SimHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* 顶部信息栏 */
.top-bar {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    margin-right: 5px;
}

.top-links .qr-code {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.top-links .qr-code:hover {
    opacity: 0.8;
}

/* 头部导航 */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.school-info h1 {
    font-size: 26px;
    color: #1e40af;
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.2;
}

.school-info p {
    font-size: 14px;
    color: #64748b;
    letter-spacing: 1px;
}

/* 导航菜单 */
.nav-menu {
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e40af;
    transition: 0.3s;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2px;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.dropdown .fas {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
    list-style: none;
    padding: 6px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 8px 14px;
    color: #374151;
    border-radius: 0;
    font-size: 13px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: #1e40af;
}

/* 主要内容区域 */
.main-content {
    min-height: calc(100vh - 200px);
}

/* 轮播图区域 */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
    background: rgba(30, 64, 175, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.slide-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 18px;
    opacity: 0.95;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.slider-nav button {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1e40af;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    font-size: 18px;
}

.slider-nav button:hover {
    background: white;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

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

/* 内容容器 */
.content-container {
    padding: 40px 20px;
}

/* 通用章节头部 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e2e8f0;
}

.section-header h3 {
    font-size: 22px;
    color: #1e40af;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header i {
    font-size: 20px;
}

.more-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.more-link:hover {
    color: #1e40af;
}

/* 新闻区域 */
.news-section {
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    padding: 18px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.news-item:hover {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.news-item.featured {
    border-left: 4px solid #3b82f6;
}

.news-tag {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    position: absolute;
    top: -8px;
    left: 15px;
}

.news-item h4 {
    margin-bottom: 8px;
}

.news-item h4 a {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.news-item h4 a:hover {
    color: #3b82f6;
}

.news-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.news-item time {
    color: #94a3b8;
    font-size: 12px;
}

.news-item.with-image {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.news-item.with-image img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
}

/* 活动区域 */
.activities-section {
    margin-bottom: 50px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.featured-activity {
    position: relative;
    overflow: hidden;
}

.featured-activity img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-activity:hover img {
    transform: scale(1.05);
}

.activity-info {
    padding: 20px;
}

.activity-info h4 a {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin-bottom: 10px;
}

.activity-info h4 a:hover {
    color: #3b82f6;
}

.activity-info p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.activity-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.activity-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.activity-text h5 a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin-bottom: 6px;
}

.activity-text h5 a:hover {
    color: #3b82f6;
}

.activity-text p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

.activity-timeline {
    padding: 20px;
}

.timeline-item {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item time {
    color: #3b82f6;
    font-size: 12px;
    background: #eff6ff;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-item h5 {
    flex: 1;
}

.timeline-item h5 a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.timeline-item h5 a:hover {
    color: #3b82f6;
}

.psychology-services {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.service-item img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.service-item h5 a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.service-item h5 a:hover {
    color: #3b82f6;
}

.featured-psychology {
    margin: 10px 0;
    text-align: center;
}

.featured-psychology img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.psychology-content h4 a {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.psychology-content h4 a:hover {
    color: #3b82f6;
}

/* 底部区域 */
.bottom-section {
    margin-bottom: 50px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.bottom-item {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
    cursor: pointer;
}

.bottom-item:hover {
    transform: translateY(-5px);
}

.bottom-item.international {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.icon-section i {
    font-size: 48px;
    opacity: 0.9;
}

.content-section h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.content-section p {
    font-size: 14px;
    opacity: 0.9;
}

/* 师资队伍 */
.faculty-section {
    margin-bottom: 50px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.faculty-member {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.faculty-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.faculty-member.featured {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.faculty-member img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.faculty-member h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.faculty-member p {
    font-size: 14px;
    color: #64748b;
}

.faculty-member.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.teacher-spotlight {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 25px;
    align-items: center;
}

.teacher-spotlight img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.spotlight-content {
    padding: 25px;
    flex: 1;
}

.spotlight-content h4 {
    font-size: 18px;
    color: #374151;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.spotlight-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.read-more:hover {
    color: #1e40af;
}

/* 学生风采 */
.student-section {
    margin-bottom: 50px;
}

.student-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.student-achievement img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

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

.student-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.student-item:hover img {
    transform: scale(1.05);
}

/* 友情链接 */
.links-section {
    margin-bottom: 50px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.link-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.link-item img {
    width: 100%;
    height: 40px;
    object-fit: contain;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.footer-left .school-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.footer-left .school-info p {
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.footer-center p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 14px;
}

.qr-codes {
    display: flex;
    gap: 20px;
}

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

.qr-item img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.qr-item p {
    font-size: 12px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list {
        gap: 1px;
    }
    
    .nav-list a {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faculty-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s;
        gap: 0;
        max-height: 70vh;
        overflow-y: auto;
        width: 100vw;
        z-index: 1000;
    }
    
    .nav-list.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        padding: 18px 25px;
        border-radius: 0;
        font-size: 16px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        min-height: 50px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-left: 0;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 15px 40px;
        font-size: 15px;
        color: #64748b;
        display: block;
        width: 100%;
        box-sizing: border-box;
        min-height: 45px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .dropdown-menu a:hover {
        background: #e2e8f0;
        color: #1e40af;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo-section {
        gap: 10px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .school-info h1 {
        font-size: 20px;
    }
    
    .school-info p {
        font-size: 12px;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .teacher-spotlight {
        flex-direction: column;
    }
    
    .teacher-spotlight img {
        width: 100%;
        height: 200px;
    }
    
    .student-gallery {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .top-info span {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 20px 15px;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .slide-content {
        padding: 20px 15px;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .student-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bottom-item {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .icon-section i {
        font-size: 36px;
    }
}

/* 汉堡菜单动画 */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 内页样式 */
/* 面包屑导航 */
.breadcrumb {
    background: #f8fafc;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #1e40af;
}

.breadcrumb i {
    font-size: 12px;
}

/* 页面布局 */
.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin: 40px 0;
}

/* 侧边栏 */
.sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 0;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-section {
    padding: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-nav a {
    color: #374151;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 12px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info strong {
    color: #374151;
}

/* 主要内容列 */
.main-column {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* 内容区域 */
.content-section {
    padding: 40px;
}

.content-section h2 {
    color: #1e40af;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.content-section p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* 学校简介区域 */
.intro-section {
    margin-bottom: 50px;
}

.intro-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.intro-image:hover img {
    transform: scale(1.05);
}

/* 办学特色 */
.features-section {
    margin-bottom: 50px;
}

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

.feature-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-item h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 14px;
}

/* 办学成果 */
.achievements-section {
    margin-bottom: 50px;
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.stat-item {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.achievements-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.achievements-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    color: #374151;
    font-weight: 500;
}

.achievements-list i {
    color: #f59e0b;
    font-size: 16px;
}

/* 发展愿景 */
.vision-section {
    margin-bottom: 30px;
}

.vision-content blockquote {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #374151;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.goal-item {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s;
}

.goal-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.goal-item h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.goal-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }
    
    .main-column {
        order: 1;
    }
    
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .achievements-stats {
        grid-template-columns: 1fr;
    }
    
    .achievements-list {
        grid-template-columns: 1fr;
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb {
        padding: 10px 0;
    }
    
    .breadcrumb .container {
        font-size: 12px;
        flex-wrap: wrap;
    }
}

/* 新闻页面专用样式 */
/* 重要日程 */
.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    transition: all 0.3s;
}

.event-item:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.event-date {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    min-width: 50px;
    text-align: center;
}

.event-title {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

/* 搜索框 */
.search-box {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-box button {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

/* 热点新闻 */
.featured-news {
    margin-bottom: 40px;
}

.featured-news-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.news-image {
    position: relative;
    flex-shrink: 0;
    width: 400px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content h3 a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: #3b82f6;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #64748b;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    align-self: flex-start;
}

.read-more:hover {
    color: #1e40af;
    gap: 12px;
}

/* 新闻列表区域 */
.news-list-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-tabs {
    display: flex;
    gap: 5px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s;
    font-size: 14px;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

/* 新闻网格 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.category-tag.teaching {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.category-tag.student {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.category-tag.activity {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.news-card-content {
    padding: 20px;
}

.news-card-content h3 {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card-content h3 a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-content h3 a:hover {
    color: #3b82f6;
}

.news-card-content .news-meta {
    margin-bottom: 12px;
    gap: 15px;
}

.news-card-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

/* 分页导航 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    background: white;
    border: 1px solid #e2e8f0;
    color: #374151;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    min-width: 40px;
}

.page-btn:hover:not(:disabled) {
    border-color: #3b82f6;
    color: #3b82f6;
}

.page-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-color: transparent;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-dots {
    color: #94a3b8;
    padding: 0 8px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-news-item {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .featured-news-item {
        gap: 0;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .calendar-events {
        gap: 8px;
    }
    
    .event-item {
        padding: 10px;
    }
    
    .event-date {
        min-width: 45px;
        font-size: 12px;
        padding: 6px 8px;
    }
}

/* 教学页面专用样式 */
/* 教学数据统计卡片 */
.teaching-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.stat-card:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
}

/* 教学资源链接 */
.resource-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.resource-link:hover {
    background: #f1f5f9;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateX(5px);
}

.resource-link i {
    width: 16px;
    color: #64748b;
    transition: color 0.3s;
}

.resource-link:hover i {
    color: #3b82f6;
}

/* 教学亮点 */
.teaching-highlights {
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.highlight-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.highlight-image {
    height: 200px;
    overflow: hidden;
}

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

.highlight-item:hover .highlight-image img {
    transform: scale(1.05);
}

.highlight-content {
    padding: 20px;
}

.highlight-content h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.highlight-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

/* 学科建设 */
.subject-section {
    margin-bottom: 50px;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.subject-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.subject-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.subject-card h3 {
    color: #1e40af;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.subject-details p {
    color: #374151;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
}

.subject-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.subject-details li {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.subject-details li:before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 教学活动时间线 */
.activities-section {
    margin-bottom: 50px;
}

.activities-timeline {
    margin-top: 30px;
    position: relative;
}

.activities-timeline:before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #1e40af 100%);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-date {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
    position: relative;
    z-index: 2;
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.date-day {
    font-size: 20px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.timeline-content h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.activity-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #3b82f6;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #bfdbfe;
}

/* 教学成果展示 */
.achievements-gallery {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 200px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 64, 175, 0.9) 100%);
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .subjects-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-timeline:before {
        left: 40px;
    }
    
    .timeline-date {
        min-width: 70px;
    }
}

@media (max-width: 768px) {
    .teaching-stats {
        gap: 8px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .highlights-grid {
        gap: 20px;
    }
    
    .highlight-content {
        padding: 15px;
    }
    
    .subjects-grid {
        gap: 20px;
    }
    
    .subject-card {
        padding: 20px 15px;
    }
    
    .subject-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .activities-timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-date {
        min-width: 60px;
        padding: 10px;
    }
    
    .date-month {
        font-size: 12px;
    }
    
    .date-day {
        font-size: 16px;
    }
    
    .timeline-content {
        padding: 15px 18px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 180px;
    }
}

/* 学生风采页面专用样式 */
/* 获奖统计 */
.award-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    border: 1px solid #f59e0b;
    transition: all 0.3s;
}

.award-item:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
}

.award-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.award-info {
    flex: 1;
}

.award-number {
    font-size: 18px;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 2px;
}

.award-label {
    font-size: 12px;
    color: #92400e;
}

/* 学生组织链接 */
.student-orgs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.org-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.org-link:hover {
    background: #f1f5f9;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateX(5px);
}

.org-link i {
    width: 16px;
    color: #64748b;
    transition: color 0.3s;
}

.org-link:hover i {
    color: #3b82f6;
}

/* 优秀学生展示 */
.outstanding-students {
    margin-bottom: 50px;
}

.students-showcase {
    margin-top: 30px;
}

.student-spotlight {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.student-photo {
    position: relative;
    flex-shrink: 0;
}

.student-photo img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.student-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.student-info {
    flex: 1;
}

.student-info h3 {
    color: #1e40af;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.student-class {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 15px;
}

.student-achievements {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.achievement-tag {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #bfdbfe;
}

.student-quote {
    color: #64748b;
    font-style: italic;
    line-height: 1.6;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 0;
}

.students-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.student-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.student-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.student-card img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.student-card h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.student-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

.student-tags {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.student-tags span {
    background: #f1f5f9;
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* 学生活动 */
.student-activities {
    margin-bottom: 50px;
}

.activity-categories {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 14px;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-color: transparent;
}

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

.activity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 64, 175, 0.8) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.activity-overlay p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.9;
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.activity-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.activity-meta {
    display: flex;
    gap: 15px;
    color: #94a3b8;
    font-size: 12px;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 社团风采 */
.clubs-section {
    margin-bottom: 30px;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.club-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.club-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.club-card h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.club-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.club-achievements {
    margin-top: 15px;
}

.club-achievements span {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #f59e0b;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .student-spotlight {
        flex-direction: column;
        text-align: center;
    }
    
    .students-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .clubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .award-stats {
        gap: 8px;
    }
    
    .award-item {
        padding: 12px;
    }
    
    .award-icon {
        width: 35px;
        height: 35px;
    }
    
    .award-number {
        font-size: 16px;
    }
    
    .student-spotlight {
        padding: 20px;
        gap: 20px;
    }
    
    .student-photo img {
        width: 120px;
        height: 160px;
    }
    
    .student-info h3 {
        font-size: 20px;
    }
    
    .students-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .activity-content {
        padding: 15px;
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .club-card {
        padding: 20px;
    }
    
    .club-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* 校园建设页面专用样式 */
/* 建设进度 */
.progress-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.progress-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress-label span:first-child {
    color: #374151;
    font-weight: 500;
}

.progress-percent {
    color: #3b82f6;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* 投资概况 */
.investment-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.investment-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 8px;
    border: 1px solid #0ea5e9;
}

.investment-amount {
    font-size: 20px;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 5px;
}

.investment-label {
    font-size: 12px;
    color: #0284c7;
}

/* 建设概述 */
.construction-overview {
    margin-bottom: 50px;
}

.overview-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
}

.overview-text {
    flex: 1;
}

.overview-text p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.overview-image {
    flex-shrink: 0;
    width: 400px;
}

.overview-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 重点项目 */
.key-projects {
    margin-bottom: 50px;
}

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

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.project-status.completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.project-status.in-progress {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.project-status.planning {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.project-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.project-budget,
.project-timeline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.project-budget i,
.project-timeline i {
    color: #3b82f6;
}

/* 智慧校园 */
.smart-campus {
    margin-bottom: 50px;
}

.smart-features {
    margin-top: 30px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

/* 环境改造 */
.environment-section {
    margin-bottom: 50px;
}

.environment-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.environment-gallery .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 200px;
}

.environment-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.environment-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.environment-gallery .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 64, 175, 0.9) 100%);
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.environment-gallery .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.environment-gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.environment-gallery .gallery-overlay h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.environment-gallery .gallery-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
}

/* 建设时间线 */
.construction-timeline {
    margin-bottom: 30px;
}

.timeline {
    margin-top: 30px;
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #e2e8f0 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.timeline-marker.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.timeline-marker.future {
    background: #94a3b8;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .overview-content {
        flex-direction: column;
    }
    
    .overview-image {
        width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .environment-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .progress-items {
        gap: 10px;
    }
    
    .progress-item {
        padding: 12px;
    }
    
    .investment-info {
        gap: 10px;
    }
    
    .investment-item {
        padding: 12px;
    }
    
    .investment-amount {
        font-size: 18px;
    }
    
    .overview-content {
        gap: 20px;
    }
    
    .overview-image img {
        height: 250px;
    }
    
    .projects-grid {
        gap: 20px;
    }
    
    .project-content {
        padding: 15px;
    }
    
    .project-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .feature-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .environment-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline:before {
        left: 15px;
    }
    
    .timeline-marker {
        left: -25px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        padding: 20px 15px;
    }
}

/* 国际视野、招生咨询、服务保障、一生一策、资源中心、服务平台等页面通用样式 */

/* 国家国旗和合作机构 */
.country-flags, .country-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s;
}

.country-item:hover {
    background: #f1f5f9;
}

.country-item img {
    width: 30px;
    height: 20px;
    border-radius: 3px;
}

.country-item span {
    font-size: 14px;
    color: #374151;
}

/* 即将到来的活动 */
.upcoming-events {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.event-date {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
    min-width: 35px;
}

.event-title {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

/* 愿景统计和成果展示 */
.vision-stats, .philosophy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-item, .stat-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.stat-item:hover, .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

/* 学校卡片 */
.schools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.school-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    display: flex;
    gap: 20px;
}

.school-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.school-flag img {
    width: 60px;
    height: 40px;
    border-radius: 4px;
}

.school-info h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.school-location {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
}

.school-desc {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.cooperation-type {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cooperation-type span {
    background: #eff6ff;
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 项目列表 */
.programs-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.program-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.program-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.program-content h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.program-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.program-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.program-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #94a3b8;
    font-size: 14px;
}

.program-details i {
    color: #3b82f6;
}

/* 课程标签系统 */
.curriculum-tabs, .process-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn, .process-tab {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 14px;
}

.tab-btn.active, .tab-btn:hover,
.process-tab.active, .process-tab:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-color: transparent;
}

.tab-content, .process-content {
    position: relative;
}

.tab-panel, .process-panel {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.tab-panel.active, .process-panel.active {
    display: block;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    color: #3b82f6;
    font-size: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h5 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 14px;
}

/* 成果展示网格 */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.achievement-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.achievement-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.achievement-content {
    padding: 20px;
}

.achievement-content h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.achievement-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.achievement-date {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
}

/* 招生相关样式 */
.admission-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.admission-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* 表格样式 */
.plan-table, .fee-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.plan-table table, .fee-table table {
    width: 100%;
    border-collapse: collapse;
}

.plan-table th, .plan-table td,
.fee-table th, .fee-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.plan-table th, .fee-table th {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    font-weight: 600;
}

.plan-table tr:last-child td,
.fee-table tr:last-child td {
    border-bottom: none;
}

.plan-table tr:hover,
.fee-table tr:hover {
    background: #f8fafc;
}

/* 要求卡片 */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.requirement-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.requirement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

.requirement-card h4 {
    color: #1e40af;
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card li {
    color: #64748b;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.requirement-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* 流程步骤 */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-content h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.step-arrow {
    color: #3b82f6;
    font-size: 20px;
    margin: 0 10px;
}

/* 费用说明 */
.fee-note {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #3b82f6;
}

.fee-note strong {
    color: #1e40af;
}

.fee-note ul {
    margin-top: 10px;
    padding-left: 20px;
}

.fee-note li {
    color: #64748b;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* 表单样式 */
.consultation-form, .booking-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.form-grid, .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.submit-btn, .reset-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.reset-btn {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #d1d5db;
}

.reset-btn:hover {
    background: #e2e8f0;
}

/* FAQ样式 */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h4 {
    color: #1e40af;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.faq-question i {
    color: #3b82f6;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .vision-stats, .philosophy-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .schools-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: stretch;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .school-card, .program-item {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-content {
        left: 20px;
        right: 20px;
    }
    
    .banner-content h3 {
        font-size: 24px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .form-grid, .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .curriculum-tabs, .process-tabs {
        gap: 8px;
        margin: 20px 0 15px;
    }
    
    .tab-btn, .process-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .tab-panel, .process-panel {
        padding: 20px;
    }
    
    .step-arrow {
        display: none;
    }
}

/* 一生一策页面特殊样式 */
.advisor-team {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advisor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s;
}

.advisor-item:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.advisor-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.advisor-info strong {
    color: #1e40af;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.advisor-info p {
    color: #64748b;
    font-size: 12px;
    margin: 0;
}

/* 核心体系圆形布局 */
.system-overview {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.system-center {
    position: absolute;
    z-index: 10;
}

.center-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.center-circle h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.center-circle p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.system-modules {
    position: relative;
    width: 400px;
    height: 400px;
}

.module-item {
    position: absolute;
    width: 120px;
    height: 120px;
    transform-origin: center;
    left: 50%;
    top: 50%;
    margin-left: -60px;
    margin-top: -60px;
    transform: rotate(var(--angle)) translateY(-200px) rotate(calc(-1 * var(--angle)));
}

.module-item .module-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 20px;
    margin: 0 auto 10px;
    transition: all 0.3s;
}

.module-item:hover .module-icon {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}

.module-item h4 {
    text-align: center;
    color: #1e40af;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.module-item p {
    text-align: center;
    color: #64748b;
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
}

/* 时间线样式 */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-track {
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #e2e8f0 100%);
}

.process-step {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.step-marker {
    position: absolute;
    left: 0;
    top: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    z-index: 2;
}

.step-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.step-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.step-content h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.step-details span {
    background: #eff6ff;
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 特色服务网格 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    color: #64748b;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.service-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* 成功案例滑块 */
.cases-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.case-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 25px;
    transition: all 0.3s;
}

.case-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.case-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eff6ff;
}

.case-content h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.case-major {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.case-story {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.case-achievement {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.case-achievement span {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 资源中心样式 */
.search-box {
    position: relative;
    display: flex;
    gap: 0;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
}

.search-btn {
    padding: 10px 15px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.hot-resources {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    transition: all 0.3s;
}

.hot-item:hover {
    background: #eff6ff;
}

.hot-item i {
    color: #3b82f6;
    font-size: 16px;
    width: 20px;
}

.hot-title {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    margin-bottom: 2px;
}

.hot-downloads {
    font-size: 11px;
    color: #94a3b8;
}

/* 资源统计 */
.resource-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-stats .stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
    border: 1px solid #3b82f6;
}

.resource-stats .stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.resource-stats .stat-label {
    font-size: 12px;
    color: #3b82f6;
}

/* 资源概览卡片 */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.overview-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    display: flex;
    gap: 20px;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.overview-content h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.overview-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.overview-stats {
    display: flex;
    gap: 15px;
}

.overview-stats span {
    background: #eff6ff;
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 资源列表 */
.resources-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.resource-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}

.resource-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.resource-info {
    flex: 1;
}

.resource-info h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.resource-info p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 14px;
}

.resource-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.resource-meta span {
    color: #94a3b8;
    font-size: 12px;
}

.resource-type {
    background: #eff6ff !important;
    color: #3b82f6 !important;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
}

.resource-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-preview, .btn-download {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-preview {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #d1d5db;
}

.btn-preview:hover {
    background: #e2e8f0;
}

.btn-download {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.btn-download:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* 精品推荐 */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.featured-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.featured-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.featured-content {
    padding: 20px;
}

.featured-content h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.featured-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.featured-stats {
    display: flex;
    gap: 15px;
}

.featured-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #94a3b8;
    font-size: 12px;
}

.featured-stats i {
    color: #3b82f6;
}

/* 文件上传 */
.upload-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.upload-info {
    text-align: center;
    margin-bottom: 30px;
}

.upload-info h3 {
    color: #1e40af;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.upload-info p {
    color: #64748b;
    line-height: 1.6;
}

.file-upload {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
}

.file-upload:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-hint i {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.upload-hint p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 10px;
}

.upload-hint small {
    color: #94a3b8;
    font-size: 12px;
}

/* 服务平台特殊样式 */
.login-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 14px;
}

.login-form input[type="checkbox"] {
    width: auto;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.login-links a {
    color: #3b82f6;
    font-size: 12px;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

/* 系统公告 */
.announcements {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.announcement-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.announcement-date {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
    min-width: 30px;
}

.announcement-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

/* 帮助链接 */
.help-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.help-links a:hover {
    background: #f1f5f9;
    border-color: #3b82f6;
    color: #3b82f6;
}

.help-links i {
    width: 16px;
    color: #64748b;
    transition: color 0.3s;
}

.help-links a:hover i {
    color: #3b82f6;
}

/* 功能卡片网格 */
.functions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.function-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.function-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.function-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

.function-card h3 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.function-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.function-card li {
    color: #64748b;
    padding: 3px 0;
    font-size: 13px;
    position: relative;
    padding-left: 15px;
}

.function-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.function-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.function-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* 快速入口 */
.access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.access-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.access-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.access-item:hover .access-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: scale(1.1);
}

.access-item span {
    font-size: 14px;
    font-weight: 500;
}

/* 平台统计仪表板 */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.stats-dashboard .stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.stats-dashboard .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.stats-dashboard .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stats-dashboard .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.stats-dashboard .stat-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 5px;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
}

.stat-trend.up {
    color: #10b981;
}

.stat-trend i {
    font-size: 10px;
}

/* 技术支持区域 */
.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.support-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.channel-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.channel-item strong {
    color: #1e40af;
    font-size: 16px;
    display: block;
    margin-bottom: 3px;
}

.channel-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.support-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.support-form h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

/* 服务系统卡片 */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.system-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.system-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.system-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.system-header h3 {
    color: #1e40af;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.system-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
}

.system-features .feature-item i {
    color: #10b981;
    font-size: 12px;
    width: 12px;
}

/* 服务热线和联系信息 */
.service-hotlines, .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hotline-item, .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s;
}

.hotline-item:hover, .contact-item:hover {
    background: #eff6ff;
}

.hotline-item i, .contact-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.hotline-item strong, .contact-item strong {
    color: #1e40af;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.hotline-item p, .contact-item p {
    color: #64748b;
    font-size: 12px;
    margin: 0;
}

/* 服务时间 */
.service-schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.schedule-item strong {
    color: #1e40af;
    font-size: 13px;
    display: block;
    margin-bottom: 3px;
}

.schedule-item p {
    color: #64748b;
    font-size: 12px;
    margin: 0;
}

/* 服务承诺 */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.commitment-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.commitment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

.commitment-card h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.commitment-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* 设施画廊 */
.facilities-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.facility-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.facility-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-info {
    padding: 20px;
}

.facility-info h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.facility-info p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* 招生日程 */
.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.schedule-date {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
    min-width: 30px;
}

.schedule-event {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .system-overview {
        height: 400px;
    }
    
    .system-modules {
        width: 350px;
        height: 350px;
    }
    
    .module-item {
        transform: rotate(var(--angle)) translateY(-175px) rotate(calc(-1 * var(--angle)));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .functions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .access-grid, .stats-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-item {
        flex-direction: column;
        text-align: center;
    }
    
    .system-overview {
        height: 300px;
        transform: scale(0.8);
    }
    
    .functions-grid, .access-grid, .stats-dashboard {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-grid, .facilities-gallery {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding-left: 60px;
    }
    
    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content {
        padding: 20px 15px;
    }
    
    .resource-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .resource-actions {
        justify-content: center;
    }
}

/* 教师发展页面专用样式 */
/* 荣誉统计 */
.honor-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.honor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    border: 1px solid #f59e0b;
    transition: all 0.3s;
}

.honor-item:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
}

.honor-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.honor-info {
    flex: 1;
}

.honor-number {
    font-size: 18px;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 2px;
}

.honor-label {
    font-size: 12px;
    color: #92400e;
}

/* 培训日程 */
.training-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.training-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.training-date {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
    min-width: 30px;
}

.training-title {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

/* 发展体系框架 */
.system-framework {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.framework-center {
    position: absolute;
    z-index: 10;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.center-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.center-content p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.framework-layers {
    position: relative;
    width: 600px;
    height: 600px;
}

.layer-item {
    position: absolute;
    width: 140px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #3b82f6;
    transition: all 0.3s;
}

.layer-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.layer-item:nth-child(1) {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.layer-item:nth-child(2) {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.layer-item:nth-child(3) {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.layer-item:nth-child(4) {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.layer-content h4 {
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.layer-content p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

/* 培训项目标签 */
.programs-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.program-tab {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 14px;
}

.program-tab.active,
.program-tab:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-color: transparent;
}

.programs-content {
    position: relative;
}

.program-panel {
    display: none;
}

.program-panel.active {
    display: block;
}

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

.program-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.program-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.program-card h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.program-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.program-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.program-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #94a3b8;
    font-size: 12px;
}

.program-details i {
    color: #3b82f6;
}

/* 名师工作室 */
.studios-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.studio-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.studio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.studio-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.studio-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eff6ff;
}

.studio-info h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.studio-info p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
}

.studio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.studio-tags span {
    background: #eff6ff;
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.studio-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.studio-achievements {
    display: flex;
    gap: 30px;
    justify-content: space-around;
}

.achievement-item {
    text-align: center;
}

.achievement-item strong {
    display: block;
    color: #1e40af;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.achievement-item span {
    color: #64748b;
    font-size: 12px;
}

/* 发展成果统计 */
.achievements-stats {
    margin: 30px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.stat-data .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.stat-data .stat-label {
    font-size: 14px;
    color: #64748b;
}

.achievements-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.highlight-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.highlight-item h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* 发展规划时间线 */
.planning-timeline {
    margin-top: 30px;
    position: relative;
    padding-left: 40px;
}

.planning-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #e2e8f0 100%);
}

.planning-item {
    position: relative;
    margin-bottom: 40px;
}

.planning-year {
    position: absolute;
    left: -30px;
    top: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.planning-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.planning-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.planning-content h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.planning-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.planning-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planning-content li {
    color: #64748b;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.planning-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .framework-layers {
        width: 500px;
        height: 500px;
    }
    
    .layer-item {
        width: 120px;
        padding: 15px;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .honor-stats {
        gap: 8px;
    }
    
    .honor-item {
        padding: 12px;
    }
    
    .honor-icon {
        width: 35px;
        height: 35px;
    }
    
    .honor-number {
        font-size: 16px;
    }
    
    .system-framework {
        min-height: 300px;
        transform: scale(0.8);
    }
    
    .framework-center {
        width: 140px;
        height: 140px;
    }
    
    .center-content h3 {
        font-size: 18px;
    }
    
    .framework-layers {
        width: 400px;
        height: 400px;
    }
    
    .layer-item {
        width: 100px;
        padding: 12px;
    }
    
    .layer-content h4 {
        font-size: 14px;
    }
    
    .layer-content p {
        font-size: 11px;
    }
    
    .programs-tabs {
        gap: 8px;
        margin: 20px 0 15px;
    }
    
    .program-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .program-card {
        padding: 20px;
    }
    
    .studio-header {
        flex-direction: column;
        text-align: center;
    }
    
    .studio-achievements {
        gap: 20px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-box .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-data .stat-number {
        font-size: 24px;
    }
    
    .planning-timeline {
        padding-left: 30px;
    }
    
    .planning-timeline:before {
        left: 15px;
    }
    
    .planning-year {
        left: -25px;
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .planning-content {
        padding: 20px 15px;
    }
}
