             * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
		.container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5px;
        }
			 /* 当前位置导航 */
        .breadcrumb {
            padding: 15px 0px 5px 0px;
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        .breadcrumb i.fa-chevron-right:last-of-type {
    display: none;
}
        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #c00;
        }
        
        .breadcrumb i {
            margin: 0 8px;
            color: #999;
        }
        
        .breadcrumb .current {
            color: #c00;
            font-weight: bold;
        }
        
		/* 内容区域布局 */
        .content-wrapper {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        /* A区容器 */
        .article-container {
            flex: 7.5;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        /* A上 - 文章区域 */
        .article-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .article-section:hover {
          /*    transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);*/
        }
        
        .article-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            background: white;
        }
        
        .article-title {
            font-size: 28px;
            color: #c00;
            margin-bottom: 15px;
            line-height: 1.3;
          /*  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);*/
        }
        
        .article-description {
            background: #f8f8f8;
            padding: 5px;
			margin:10px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #c00;
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }
        
        .article-key-info {
			font-size: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 15px;
            border-radius: 8px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            padding: 5px 8px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .info-item i {
            color: #c00;
            margin-right: 8px;
        }
        
        .info-label {
            font-weight: bold;
            margin-right: 5px;
            color: #555;
        }
        
        .info-value {
            color: #c00;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 12px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            margin-right: 20px;
            padding: 5px 10px;
            background: #f0f0f0;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .meta-item:hover {
            background: #e6e6e6;
            transform: translateY(-2px);
        }
        
        .meta-item i {
            margin-right: 5px;
            color: #c00;
        }
        
        .article-cover {
            width: 100%;
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://via.placeholder.com/1200x600/c00/ffffff?text=清华大学4+0国际本科项目');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.5s;
            position: relative;
            overflow: hidden;
        }
        
        .article-cover:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(192,0,0,0.2), rgba(255,255,255,0.1));
            z-index: 1;
        }
        
        .article-cover:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .article-content {
            padding: 10px 20px;
            font-size: 14px;
            line-height: 1.8;
        }
        
        .article-content h2 {
            color: #c00;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            position: relative;
        }
        
        .article-content h2:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #c00;
        }
        
        .article-content h3 {
            color: #d33;
            margin: 20px 0 10px;
            padding-left: 15px;
            border-left: 4px solid #c00;
        }
        
        .article-content p {
            margin-bottom: 15px;
        }
        
        .article-content ul, .article-content ol {
            margin: 15px 0 15px 20px;
        }
        
        .article-content li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 10px;
        }
        
        .article-content li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: #c00;
            border-radius: 50%;
        }
        
        .highlight-box {
            background: #f8f8f8;
            border-left: 4px solid #c00;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .highlight-box:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .keywords-section {
            padding: 15px 30px;

        }
        
        .keywords-title {
            font-size: 16px;
            color: #c00;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .keywords-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
			justify-content: center;
        }
        
        .keyword {
            background: #f0f0f0;
            color: #c00;
            padding: 5px 12px;
            border-radius: 10px;
            font-size: 14px;
            border: 1px solid #ddd;
            transition: all 0.3s;
            cursor: pointer;
        }
		 .keyword a{
			 background: none !important;
            color: #c00;
			text-decoration:none;
        }
		.keyword a:hover {
            background: #c00;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(192,0,0,0.2);
        }
        
        .keyword:hover {
            background: #c00;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(192,0,0,0.2);
        }
        
        .article-navigation {
			font-size: 14px;
            display: flex;
            justify-content: space-between;
            padding: 10px;
            margin-bottom: 20px;
        }
        
        .nav-btn {
            display: flex;
            align-items: center;
            padding: 6px 20px;
            background: white;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
        }
        
        .nav-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(192,0,0,0.1), transparent);
            transition: all 0.5s;
        }
        
        .nav-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(192,0,0,0.15);
            color: #c00;
        }
        
        .nav-btn:hover:before {
            left: 100%;
        }
        
        .nav-btn i {
            margin: 0 10px;
            font-size: 18px;
        }
        
        .nav-btn.prev {
            padding-left: 15px;
        }
        
        .nav-btn.next {
            padding-right: 15px;
        }
        
        /* A下 - 相关文章推荐模块 */
        .related-articles-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            padding:10px 30px 18px 30px;
        }
        
        .related-articles-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        
        .related-title {
            font-size: 20px;
            color: #c00;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            position: relative;
        }
        
        .related-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: #c00;
        }
        
        .related-grid {
			font-size: 14px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .related-item {
            display: flex;
            align-items: center;
            padding: 6px 15px;
            background: white;
            border-radius: 8px;
            transition: all 0.3s;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            border-left: 3px solid transparent;
        }
        
        .related-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(192,0,0,0.1);
            border-left: 3px solid #c00;
        }
        
        .related-item i {
            color: #c00;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .related-item:hover i {
            transform: scale(1.2);
        }
        
        .related-item a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            flex: 1;
        }
        
        .related-item:hover a {
            color: #c00;
        }
        
        /* B区 - 侧边栏 */
        .sidebar {
            flex: 2.5;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .sidebar-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .sidebar-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        
        .sidebar-header {
            background: white;
            color: #333;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: bold;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-title {
            display: flex;
            align-items: center;
            border-left: 4px solid rgb(204, 0, 0);
            padding-left: 15px;
        }
        
        .sidebar-header i {
            margin-right: 10px;
            font-size: 20px;
            color: #c00;
        }
        
        .sidebar-content {
            padding: 20px;
        }
        
        /* 报名表单样式 */
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .form-group {
            flex: 1;
            margin-bottom: 0;
            position: relative;
        }
        
        .form-group.full-width {
            flex: 0 0 100%;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #555;
            font-size: 13px;
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s;
            background: #f9f9f9;
        }
        
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: #c00;
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(192,0,0,0.1);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #c00, #d33);
            color: white;
            border: none;
            padding: 12px 20px;
            width: 100%;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.5s;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(192, 0, 0, 0.4);
        }
        
        .submit-btn:hover:before {
            left: 100%;
        }
        
        /* 热点推荐样式 */
        .hot-articles-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .hot-article-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 5px;
            background: #fffbfb;
            border-radius: 8px;
            border: 1px solid #ffe6e6;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .hot-article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #c00, #a00);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }
        
        .hot-article-card:hover {
            background: #ffe6e6;
            border-color: #c00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.1);
        }
        
        .hot-article-card:hover::before {
            transform: scaleY(1);
        }
        
        .hot-article-title {
            font-size: 13px;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .hot-article-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .hot-article-title a:hover {
            color: #c00;
        }
        
        .hot-article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #888;
        }
        
        /* 院校介绍样式 */
        .university-info {
            text-align: center;
            padding: 10px;
        }
        
        .university-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #e6e6e6;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .university-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .university-logo img {
            max-width: 80%;
            max-height: 80%;
        }
        
        .university-name {
            font-size: 20px;
            color: #c00;
            margin-bottom: 10px;
        }
        
        .university-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }
        
        .university-stats {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .stat-item:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
        }
        
        .stat-value {
            font-size: 20px;
            font-weight: bold;
            color: #c00;
        }
        
        .stat-label {
            font-size: 12px;
            color: #888;
        }
        
        .view-details {
            display: inline-block;
            background: #f0f0f0;
            color: #c00;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            border: 1px solid #ddd;
        }
        
        .view-details:hover {
            background: #c00;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(192,0,0,0.3);
        }
        
        /* 项目推荐样式 */
        .project-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .project-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 5px;
            background: #fffbfb;
            border-radius: 8px;
            border: 1px solid #ffe6e6;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .project-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #c00, #a00);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }
        
        .project-item:hover {
            background: #ffe6e6;
            border-color: #c00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.1);
        }
        
        .project-item:hover::before {
            transform: scaleY(1);
        }
        
        .project-icon {
            width: 50px;
            height: 50px;
            background: #f0f0f0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #c00;
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .project-item:hover .project-icon {
            background: #c00;
            color: white;
        }
        
        .project-content {
            flex: 1;
        }
        
        .project-title {
            font-size: 13px;
             /*   margin-bottom: 5px; */
        }
        
        .project-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .project-title a:hover {
            color: #c00;
        }
        
        .project-desc {
            font-size: 13px;
            color: #666;
        }
        
        /* 广告位样式 */
        .ad-container {
            background: linear-gradient(135deg, #c00, #d33);
            color: white;
            padding: 8px 15px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(192, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .ad-container:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .ad-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(192, 0, 0, 0.4);
        }
        
        .ad-title {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }
        
        .ad-desc {
            margin-bottom: 12px;
            font-size: 13px;
            position: relative;
            z-index: 1;
        }
        
        .ad-btn {
            display: inline-block;
            background: white;
            color: #c00;
            padding: 2px 20px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }
        
        .ad-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,255,255,0.3);
        }
        
       
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .article-container, .sidebar {
                flex: 1;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .article-cover {
                height: 250px;
            }
            
            .article-title {
                font-size: 24px;
            }
            
            .article-meta {
                flex-wrap: wrap;
            }
            
            .meta-item {
                margin-bottom: 5px;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .article-key-info {
                flex-direction: column;
                gap: 10px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 10px;
            }
        }