 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: #f9f9f9;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .service-nav-wrapper {
            width: 100%;
            max-width: 1280px;
            background: white;
            overflow: hidden;
            margin: 0 auto;
        }
        
        /* 固定顶部区域 */
        .fixed-header {
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: white;
            display: flex;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .fixed-header-content {
            width: 100%;
            max-width: 1280px;
        }
        
        /* LOGO模块 */
        .logo-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            background: white;
            border-bottom: 2px solid #f9f9f9;
            width: 100%;
        }
        
        .logo {
            height: 50px;
        }
        
        .site-title {
			font-size: 15px;
			font-weight: 700;
			color: #c00;
			margin: 0;
			padding: 4px 15px;
			border: 2px solid;
			border-top-color: #e33;
			border-right-color: #900;
			border-bottom-color: #900;
			border-left-color: #e33;
			border-radius: 5px;
			display: inline-block;
			background: #fff;
			box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        /* 中间占位区域 */
        .header-placeholder {
            flex: 1;
            height: 40px;
            margin: 0 20px;
            background: #fff5f5;
            border: 1px dashed #c00;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
        }
        
        /* 桌面端导航 */
        .nav-desktop {
            display: flex;
            height: 70px;
            background: white;
            border: 1px solid #f9f5f5;
            margin: 5px 0;
        }
        
        /* 移动端布局 */
        .nav-mobile {
            display: none;
            border: 1px solid #ffe6e6;
            margin-top: 5px;
        }
        
        /* BANNER模块 - 修复方案 */
        .banner-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .banner-container {
            position: relative;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
            overflow: hidden;
            height: 100px;
        }
        
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        
        /* Footer模块 */
        .footer-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .footer-container {
            position: relative;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
            overflow: hidden;
        }
        
        .footer-section {
            background: #f8f9fa;
            padding: 40px 0;
            border-top: 1px solid #ffe6e6;
            text-align: center;
        }
        
        .footer-content {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-placeholder {
            color: #666;
            font-size: 14px;
            padding: 20px;
        }
        
        /* 左侧标题区域 */
        .section-title {
            width: 40px;
            background: linear-gradient(135deg, #c00 0%, #a00 100%);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
            padding: 0 2px;
            word-break: break-all;
        }
        
        /* 内容区域 */
        .section-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 0 10px;
            border-right: 1px solid #ffe6e6;
            overflow: hidden;
        }
        
        .section-row {
            flex: 1;
            display: flex;
            align-items: center;
            min-height: 35px;
            flex-wrap: wrap;
            gap: 8px;
            overflow: hidden;
        }
        
        .section-links {
            display: flex;
            gap: 5px;
            width: 100%;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-start;
        }
        
        .section-links a {
            display: inline-block;
            padding: 4px 10px;
            background: #f9f9f9;
            border-radius: 4px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            border: 1px solid #f9f9f9;
            white-space: nowrap;
            line-height: 1.3;
            flex-shrink: 0;
            -webkit-tap-highlight-color: rgba(204, 0, 0, 0.2);
        }
        
        .section-links a:hover {
            background: #c00;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
        }
        
        /* 模块宽度调整 */
        .cooperation-section {
            flex: 1.5;
        }
        
        .hot-section {
            flex: 1.4;
        }
        
        .overseas-section {
            flex: 1.2;
        }
        
        .admission-section {
            flex: 1;
        }
        
        /* 内容区域 */
        .content-area {
            padding: 0px 0;
            background: white;
            min-height: 500px;
        }
        
        .content-placeholder {
            text-align: center;
            color: #999;
            font-size: 16px;
            padding: 60px 20px;
            border: 2px dashed #ffe6e6;
            border-radius: 8px;
            background: #fffbfb;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        /* 移动端样式 */
        .mobile-section {
            border-bottom: 1px solid #ffe6e6;
        }
        
        .mobile-section:last-child {
            border-bottom: none;
        }
        
        .mobile-header {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: #fff5f5;
            cursor: pointer;
            transition: all 0.3s ease;
            -webkit-tap-highlight-color: rgba(204, 0, 0, 0.2);
        }
        
        .mobile-header:hover {
            background: #ffe6e6;
        }
        
        .mobile-header:active {
            background: #ffe0e0;
        }
        
        .mobile-header .section-title {
            width: 40px;
            height: 40px;
            font-size: 14px;
            margin-right: 12px;
            word-break: break-all;
        }
        
        .mobile-content {
            padding: 10px 15px;
            background: white;
            display: none;
        }
        
        .mobile-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .mobile-links a {
            display: inline-block;
            padding: 6px 12px;
            background: #fff5f5;
            border-radius: 4px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            border: 1px solid #ffe6e6;
            line-height: 1.3;
            -webkit-tap-highlight-color: rgba(204, 0, 0, 0.2);
        }
        
        .mobile-links a:hover {
            background: #c00;
            color: white;
            transform: translateY(-1px);
        }
        
        .mobile-links a:active {
            background: #b30000;
            transform: scale(0.98);
        }
        
        .mobile-toggle {
            margin-left: auto;
            transition: transform 0.3s ease;
            font-size: 14px;
            color: #c00;
        }
        
        .mobile-section.active .mobile-toggle {
            transform: rotate(180deg);
        }
        
        .mobile-section.active .mobile-content {
            display: block;
        }
        
        /* 响应式断点 */
        @media (max-width: 1200px) {
            .nav-desktop {
                height: 80px;
            }
            
            .section-content {
                padding: 7px 10px;
            }
            
            .section-row {
                min-height: 33px;
            }
            
            .section-links {
                gap: 6px;
            }
            
            .section-links a {
                font-size: 13px;
                padding: 3px 8px;
            }
            
            .banner-container {
                height: 90px;
            }
        }
        
        @media (max-width: 1024px) {
            .nav-desktop {
                flex-wrap: wrap;
                height: auto;
            }
            
            .section-content {
                min-height: 75px;
            }
            
            .logo {
                height: 45px;
            }
            
            .site-title {
                font-size: 18px;
            }
            
            .header-placeholder {
                height: 35px;
                margin: 0 15px;
                font-size: 13px;
            }
        }
        
        /* 移动端布局 */
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            
            .nav-mobile {
                display: block;
            }
            
            .logo-header {
                padding: 12px 0;
            }
            
            .logo {
                height: 40px;
				padding-left: 5px;
            }
            
            .site-title {
				display: none;
                font-size: 16px;
            }
            
            .banner-container {
                height: 80px;
            }
            
            .content-area {
                padding: 20px 0;
            }
            
            .header-placeholder {
                height: 30px;
                margin: 0 10px;
                font-size: 12px;
            }
            
            .footer-section {
                padding: 30px 0;
            }
        }
        
        @media (max-width: 480px) {
            .mobile-links {
                gap: 6px;
            }
            
            .mobile-links a {
                font-size: 13px;
                padding: 5px 10px;
            }
            
            .mobile-header {
                padding: 10px 12px;
            }
            
            .mobile-content {
                padding: 8px 12px;
            }
            
            .content-area {
                padding: 15px 0;
            }
            
            .banner-container {
                height: 70px;
            }
            
            .header-placeholder {
                display: none;
            }
            
            .footer-section {
                padding: 20px 0;
            }
        }

        /* 全局容器宽度调整 */
        .fixed-header-content,
        .footer-content,
        .content-area,
        .service-nav-wrapper,
        .form-grid,
        .comparison-table {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* 最简单的广告位解决方案 */
        .fixed-ad {
            position: relative;
            width: 100%;
            height: 150px;
            background: linear-gradient(135deg, #ff6b6b, #c00);
            margin: 5px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            overflow: hidden;
        }
        
        .fixed-ad-content {
            text-align: center;
            z-index: 2;
        }
        
        .fixed-ad-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .fixed-ad-content p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* 其他样式保持不变 */
        .content-section {
            margin-bottom: 30px;
            padding: 30px 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #f9f9f9;
        }
        
        .content-section h3 {
            color: #c00;
            margin-bottom: 20px;
            font-size: 20px;
            border-left: 4px solid #c00;
            padding-left: 15px;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .content-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 6px;
            border: 1px solid #f8f9fa;
            transition: all 0.3s ease;
        }
        
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.1);
            border-color: #c00;
        }
        
        .content-card h4 {
            color: #c00;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .content-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 10px;
        }
  
        .content-card .btn {
            display: inline-block;
            padding: 8px 16px;
            background: #c00;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .content-card .btn:hover {
            background: #a00;
            transform: translateY(-2px);
        }
        
        /* 表单模块样式 */
        .form-section {
            padding: 20px 20px;
            margin: 30px 0 20px 0;
            border-radius: 10px;
           /*  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 1px solid #ffe6e6;
			background: white;*/
        }
        
        .form-section h3 {
            text-align: center;
            color: #c00;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: #333;
            font-weight: 600;
            font-size: 14px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 13px 12px;
            border: 2px solid #f9f9f9;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #c00;
            outline: none;
            box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
        }
        
        .form-submit {
          /*  grid-column: 1 / -1;*/
            text-align: center;
            margin-top: 15px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #c00, #a00);
            color: white;
            padding: 10px 30px;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
        }
        
        /* Footer样式 */
        .footer-main {
            background: #000000;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .footer-column h4 {
           margin-bottom: 15px;
			padding-bottom: 10px;
			font-size: 16px;
			/* border-left: 3px solid #c00; */
			/* padding-left: 10px; */
			position: relative;
        }
		.footer-column h4:after{
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 40px;
			height: 2px;
			background: #c00;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 13px;
        }
        
        .footer-links a:hover {
            color: #c00;
        }
        
        .contact-info {
            color: #bdc3c7;
        }
        
        .contact-info p {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            font-size: 13px;
        }
        
        .contact-info i {
            margin-right: 8px;
            color: #f3dfdf;
            width: 16px;
            font-size: 14px;
        }
        
        .qr-code {
            text-align: center;
        }
        
        .qr-row {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            margin-bottom: 10px;
        }
        
        .qr-item {
            text-align: center;
            flex: 1;
        }
        
        .qr-placeholder {
            width: 80px;
            height: 80px;
            background: #333;
            border-radius: 8px;
            margin: 0 auto 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c00;
            font-size: 10px;
            line-height: 1.2;
            text-align: center;
        }
        
        .qr-text {
            font-size: 11px;
            color: #bdc3c7;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid #333;
            color: #bdc3c7;
            font-size: 12px;
        }
        
        /* 新增：对比模块样式 */
        .comparison-section {
            background: white;
            padding: 30px 20px;
            margin: 30px 0px 0px 0px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 1px solid #ffe6e6;
        }
        
        .comparison-section h3 {
            text-align: center;
            color: #c00;
            margin-bottom: 30px;
            font-size: 24px;
        }
        
        .comparison-table {
            width: 100%;
          /*   border-collapse: collapse;*/
            margin: 0 auto;
            max-width: 1400px;
			font-size: 14px;
        }
        
        .comparison-table th {
            background: #c00;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 18px;
        }
        
        .comparison-table td {
            padding: 15px;
            border: 1px solid #eee;
            text-align: center;
            vertical-align: top;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        .comparison-table .feature {
            font-weight: bold;
            background: #f9f9f9;
            width: 20%;
        }
        
        .comparison-table .domestic {
            width: 40%;
        }
        
        .comparison-table .international {
            width: 40%;
        }
        
        .comparison-table .pros {
            color: #0363a9;
            font-weight: bold;
        }
        
        .comparison-table .cons {
            color: #e74c3c;
            font-weight: bold;
        }
        
        /* 新增：内容区域4带图片样式 */
        .success-case-card {
            display: flex;
            align-items: center;
            background: #fffbfb;
            padding: 20px;
            border-radius: 6px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .success-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.1);
            border-color: #c00;
        }
        
        .case-image {
            flex: 0 0 100px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            background: #c00;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
        }
        
        .case-content {
            flex: 1;
        }
        
        .case-content h4 {
            color: #c00;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .case-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        .success-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #c00;
            color: white;
            border-radius: 20px;
            font-size: 12px;
            margin-top: 10px;
        }
        
        /* 新增：内容区域模块样式 */
        .content-layout {
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 20px;
            margin-bottom: 30px;
			margin-top: 5px;
        }
        
        .section-a {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .section-b {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .carousel-section {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #ffe6e6;
        }
        
        .carousel-section h3 {
            color: #c00;
            margin-bottom: 15px;
            font-size: 18px;
            border-left: 4px solid #c00;
            padding-left: 10px;
        }
        
        .carousel-container {
            position: relative;
            height: 200px;
            overflow: hidden;
            border-radius: 6px;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
		.carousel-slide-text{
			margin-bottom: 5px;
			padding: 5px 10px;
			background: rgba(0, 0, 0, 0.3);
			border-radius: 8px;
        }
        .carousel-nav {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            text-align: center;
        }
        
        .carousel-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .carousel-dot.active {
            background: white;
        }
        /* 原有的链接样式保持不变 */
.carousel-container {
    position: relative;
    /*height: 400px;  需要设置一个高度 */
}

.carousel-container > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.carousel-container > a:has(.carousel-slide.active) {
    pointer-events: auto;
    z-index: 2;
}

/* 关键修改：把圆点容器放到底部 */
.carousel-nav {
    position: absolute;
    bottom: -10px; /* 距离底部20像素 */
    left: 0;
    width: 100%;
    text-align: center; /* 居中显示 */
    z-index: 100; /* 确保在最上层 */
    height: auto; /* 自动高度 */
    padding: 10px 0;
}

.carousel-dot {
    display: inline-block; /* 改为行内块，方便居中 */
    width: 12px;
    height: 12px;
    margin: 0 8px; /* 左右间距 */
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.carousel-dot.active {
    background: #c00;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}
        .hot-articles {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #ffe6e6;
        }
        
        .hot-articles h3 {
            color: #c00;
            margin-bottom: 15px;
            font-size: 18px;
            border-left: 4px solid #c00;
            padding-left: 10px;
        }
        
        .article-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .article-item {
            padding: 10px 15px;
            background: #f8f9fa;
            border-radius: 4px;
            border: 1px solid #f8f9fa;
            transition: all 0.3s ease;
        }
        
        .article-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 3px 10px rgba(204, 0, 0, 0.1);
            border-color: #c00;
        }
        
        .article-item a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.4;
            display: block;
        }
        
        .article-item a:hover {
            color: #c00;
        }
        
        /* 更新：B1横向菜单样式 */
        .dynamic-list {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #ffe6e6;
        }
        
        .dynamic-list h3 {
            color: #c00;
            margin-bottom: 15px;
            font-size: 18px;
            border-left: 4px solid #c00;
            padding-left: 10px;
        }
        
        .tab-menu {
            display: flex;
            border-bottom: 2px solid #ffe6e6;
            margin-bottom: 15px;
        }
        
        .tab-item {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            color: #666;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        
        .tab-item.active {
            color: #c00;
            border-bottom-color: #c00;
        }
        
        .tab-item:hover {
            color: #c00;
        }
        
        .tab-content-container {
            min-height: 300px;
            position: relative;
        }
        
        .tab-content {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .tab-content.active {
            display: block;
            opacity: 1;
            position: relative;
        }
        
        .university-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .university-item {
            padding: 10px 15px;
            margin-bottom: 8px;
            background: #f8f9fa;
            border-radius: 4px;
            border: 1px solid #f8f9fa;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .university-item:hover {
            background: #f8f9fa;;
            border-color: #c00;
        }
        
        .university-item a {
            color: #333;
            text-decoration: none;
            display: block;
        }
        
        .university-item a:hover {
            color: #c00;
        }
        
        .side-ad {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #f8f9fa;;
            text-align: center;
        }
        
        .side-ad h3 {
            color: #c00;
            margin-bottom: 15px;
            font-size: 18px;
            border-left: 4px solid #c00;
            padding-left: 10px;
            text-align: left;
        }
 
        .ad-content {
            height: 110px;
            background: linear-gradient(135deg, #ff6b6b, #c00);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        
        /* 更新：content-placeholder样式 */
        .content-placeholder {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #ffe6e6;
            margin-bottom: 30px;
        }
        
        .placeholder-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .placeholder-header h2 {
            color: #c00;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .placeholder-header p {
            color: #666;
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .placeholder-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        
        .placeholder-image {
            text-align: center;
        }
 .placeholder-img {
            width: 100%;
          /*  max-width: 400px;*/
            height: 270px;
            background: linear-gradient(135deg, #c00, #ff6b6b);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: bold;
        }
        
        .placeholder-text {
			font-size: 14px;
            color: #333;
        }
        
        .placeholder-text h3 {
            color: #c00;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .placeholder-text p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .placeholder-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .placeholder-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
          /* 更新：搜索框样式 */
        .search-box {
            display: flex;
            align-items: center;
            background: #fff;
            /*padding: 10px 15px;*/
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.05);
            border: 1px solid #ffe6e6;
            transition: all 0.3s ease;
            transform: perspective(500px) rotateX(1deg);
            background: linear-gradient(135deg, #fff, #f9f9f9);
            margin: 5px 0;
        }
        
        .search-box:focus-within {
            box-shadow: 0 6px 20px rgba(204, 0, 0, 0.15), 0 2px 6px rgba(0,0,0,0.1);
            border-color: #c00;
            transform: perspective(500px) rotateX(0deg) translateY(-2px);
        }
        
        .search-input {
            flex: 1;
            border: none;
            outline: none;
            padding: 8px 12px;
            font-size: 15px;
            background: transparent;
        }
        
        .search-btn {
            background: #c00;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .search-btn:hover {
            background: #a00;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
        }
        
        /* 更新：院校LOGO轮播样式 - 新版本 */
        .university-showcase {
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .university-carousel {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
        }
        
        .university-card {
            flex: 0 0 calc(16% - 20px);
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .university-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px #e0e0e0;
        }
        
        .university-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            background: #f9f9f9;
        }
        
        .university-logo img {
		    border-radius: 4px;
            max-height: 100%;
            max-width: 100%;
            filter: grayscale(30%);
            transition: all 0.3s ease;
        }
        
        .university-card:hover .university-logo img {
            filter: grayscale(0%);
        }
        
        .university-info {
            padding: 15px 10px;
        }
        
        .university-info h4 {
            color: #c00;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .university-info p {
            color: #666;
            font-size: 12px;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        
        .university-info .btn {
            display: inline-block;
            padding: 5px 12px;
            background: #c00;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .university-info .btn:hover {
            background: #a00;
        }
        
        /* 新增：轮播导航按钮 */
        .carousel-nav-btn {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 20px;
            background: rgba(204, 0, 0, 0.7);
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        
        .carousel-nav-btn:hover {
            background: rgba(204, 0, 0, 0.9);
        }
        
        .carousel-prev {
            left: 0;
        }
        
        .carousel-next {
            right: 0;
        }
        
        /* 新增：招生简章模块样式 */
        .admission-section {
            background: white;
            /*padding: 30px 20px;*/
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 1px solid #eee;
        }
		  .admission-section2 {
            padding: 30px 20px;
        }
        
        .admission-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
            padding-bottom: 15px;
        }
        
        .admission-header h3 {
            color: #c00;
            font-size: 20px;
            border-left: 4px solid #c00;
            padding-left: 15px;
            margin: 0;
        }
        
        .admission-tabs {
            display: flex;
            gap: 10px;
        }
        
        .admission-tab {
            padding: 8px 16px;
            background: #f5f5f5;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            color: #666;
            border: 1px solid #e0e0e0;
        }
        
        .admission-tab:hover {
            background: #ffe6e6;
            color: #c00;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(204, 0, 0, 0.1);
        }
        
        .admission-tab.active {
            background: #c00;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
        }
		.admission-more {
            padding: 8px 16px;
            /*  background: #f5f5f5;*/
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            color: #666;
           /*   border: 1px solid #e0e0e0;*/
        }
        
        .admission-more:hover {
            background: #ffe6e6;
            color: #c00;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(204, 0, 0, 0.1);
        }
		 .admission-more a{
		    color: #c00;
			text-decoration: none;
        }
        .admission-more.active {
            background: #c00;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
        }
        
        /* 修改：取消admission-content的grid布局 */
        .admission-content {
            /* display: grid; 取消这个属性 */
            /* grid-template-columns: 1fr 1fr; 取消这个属性 */
            gap: 20px;
        }
        
        .admission-left {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .admission-title {
            font-size: 18px;
            font-weight: bold;
            color: #c00;
            margin-bottom: 10px;
        }
        
        .admission-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .admission-image {
            height: 315px;
			background-size: cover; /* 让图片覆盖整个DIV */
			background-position: center; /* 图片居中显示 */
			background-repeat: no-repeat; /* 不重复 */
			border-radius: 8px;
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			font-weight: bold;
			font-size: 16px;
			transition: all 0.3s ease;
        }
        
        .admission-image:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.2);
        }
        
        .admission-right {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
		.admission-right a{
            text-decoration: none;
			color: #000;
		}
        .admission-item {
            display: flex;
            padding: 12px 15px;
            background: #f9f9f9;
            border-radius: 6px;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            cursor: pointer;
        }
        
        .admission-item:hover {
            background: #c00;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 3px 10px rgba(204, 0, 0, 0.2);
        }
		.admission-item:hover .item-content p{
			color: rgba(255, 255, 255, 0.9);
		}
		.admission-item:hover .item-date {
			background: white;
			color: #c00;
		}
        
        .admission-item:hover .admission-date {
            background: white;
            color: #c00;
        }
        
        .admission-date {
            flex: 0 0 60px;
            height: 60px;
            background: #e0e0e0;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .admission-day {
            font-size: 20px;
            line-height: 1;
        }
        
        .admission-month {
            font-size: 12px;
            line-height: 1;
        }
        
        .admission-info {
            flex: 1;
        }
        
        .admission-info h4 {
            margin: 0 0 5px 0;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .admission-item:hover .admission-info h4 {
            color: white;
        }
        
        .admission-info p {
            margin: 0;
            font-size: 13px;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .admission-item:hover .admission-info p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* 新增：招生简章布局样式 */
        .admission-layout {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .admission-layout.active {
            display: grid;
        }
        
        .admission-main {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
		 .admission-main a{
			text-decoration: none;
        }
        .admission-main.active {
            display: flex;
        }
        .i-admission-info-bar {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 0px 0px 0px 15px;
			border-left: 4px solid #c00;  /* 改为#c00色调 */
			border-radius: 4px;
		}

		.i-info-left {
			display: flex;
			align-items: center;
			font-size: 14px;
		}

		.i-info-label {
			color: #666;
			margin-right: 8px;
		}

		.i-info-value {
			color: #c00;  /* 改为#c00色调 */
			font-weight: bold;
			padding: 2px 8px;
			background-color: #f9f9f9;  /* 改为#c00色调 */
			border-radius: 3px;
		}

		.i-detail-link {
			display: inline-block;
			padding: 6px 15px;
			background-color: #c00;  /* 改为#c00色调 */
			color: white;
			text-decoration: none;
			border-radius: 4px;
			font-size: 14px;
			font-weight: bold;
			transition: all 0.3s ease;
		}

		.i-detail-link:hover {
			background-color: #e00;  /* 改为与#c00协调的深红色 */
			transform: translateY(-1px);
			box-shadow: 0 3px 6px rgba(204, 0, 0, 0.2);  /* 改为#c00色调 */
		}
        .admission-date {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .item-date-container {
            flex: 0 0 60px;
            margin-right: 15px;
        }
        
        .item-date {
            height: 60px;
            background: #e0e0e0;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .item-date .day {
            font-size: 20px;
            line-height: 1;
        }
        
        .item-date .month {
            font-size: 12px;
            line-height: 1;
        }
        
        .item-content {
            flex: 1;
        }
        
        .item-title {
            margin: 0 0 5px 0;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .item-description {
            margin: 0;
            font-size: 13px;
            color: #666;
            transition: all 0.3s ease;
        }
        
        /* 移动端导航菜单样式 */
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 15px;
            right: 15px;
            background: #c00;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 8px 12px;
            cursor: pointer;
            z-index: 1000;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-toggle:hover {
            background: #a00;
            transform: translateY(-2px);
        }
        
        /* 响应式调整 */
        @media (max-width: 1400px) {
            .fixed-header-content,
            .footer-content,
            .content-area,
            .service-nav-wrapper,
            .form-grid,
            .comparison-table {
                max-width: 100%;
                /*padding: 0 20px;*/
            }
        }
        
        @media (max-width: 768px) {
            /* 手机端取消content-area的padding */
            .content-area {
                padding: 0 !important;
            }
            
            .content-section {
                padding: 20px 15px;
                margin-bottom: 20px;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .content-card {
                padding: 15px;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .fixed-ad-content h3 {
                font-size: 18px;
            }
            
            .fixed-ad-content p {
                font-size: 14px;
            }
            
            .form-section {
                padding: 15px;
                margin: 20px 0 15px 0;
            }
            
            .comparison-table {
                font-size: 14px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 10px 5px;
            }
            
            .success-case-card {
                flex-direction: column;
                text-align: center;
            }
            
            .case-image {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .content-layout {
                grid-template-columns: 1fr;
            }
            
            .article-list {
                grid-template-columns: 1fr;
            }
            
            .tab-menu {
                flex-wrap: wrap;
            }
            
            .tab-item {
                flex: 1;
                text-align: center;
                min-width: 100px;
            }
            
            .placeholder-content {
                grid-template-columns: 1fr;
            }
            
            .qr-row {
                flex-direction: row;
            }
            
            .search-box {
                display: none;
            }
            
            .university-card {
                flex: 0 0 calc(50% - 20px);
            }
            
            .carousel-nav-btn {
                width: 20px;
                font-size: 14px;
            }
            
            .admission-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .admission-tabs {
                width: 100%;
                justify-content: space-between;
            }
            
            .admission-content {
                grid-template-columns: 1fr;
            }
            
            .admission-layout {
                grid-template-columns: 1fr;
            }
            
            /* 移动端导航菜单显示 */
            .mobile-nav-toggle {
                display: block;
            }
            
            .nav-mobile {
                display: none; /* 初始状态为关闭 */
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                border-top: 1px solid #ffe6e6;
            }
            
            .nav-mobile.active {
                display: block;
            }
        }
        
        /* PC端表单调整 */
        @media (min-width: 769px) {
            .form-grid {
                grid-template-columns: repeat(6, 1fr);
            }
            
            .form-group:nth-child(5) {
                /*grid-column: span 4;*/
            }
            
            .form-group textarea {
                height: 60px;
                font-size: 14px;
            }
        }
        
        .success-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #c00;
            color: white;
            border-radius: 20px;
            font-size: 12px;
            margin-top: 10px;
        }

        /* 确保body没有限制 */
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }