/* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        a {
			color:#333;
			text-decoration:none;
		}
		
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        header {
            background-color: #2c3e50;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            padding: 5px 10px;
            border-radius: 3px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover, 
        nav ul li a.active {
            background-color: #3498db;
        }
        
        /* 主要内容区域 */
        .main-content {
            padding: 30px 0;
            min-height: calc(100vh - 200px);
        }
        
        .section {
            padding: 20px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            color: #2c3e50;
        }
        
        /* 轮播图样式 */
        .slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 20px;
        }
        
        .slide-title {
            font-size: 28px;
            margin-bottom: 10px;
        }
		.slide-title a{
			color:#fff;
        }
        
        .slide-desc {
            font-size: 16px;
            max-width: 70%;
        }
        
        .slide-1 { background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('m1.jpeg') center/cover; }
        .slide-2 { background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('m2.png') center/cover; }
        .slide-3 { background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('m3.png') center/cover; }
        .slide-4 { background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('m4.png') center/cover; }
        
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        
        .slider-btn:hover {
            background: rgba(0,0,0,0.8);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        /* 首页样式 */
        .welcome-section {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            border-radius: 5px;
            margin-bottom: 30px;
        }
        
        .welcome-section h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .welcome-section p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-box {
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-box h3 {
            color: #3498db;
            margin: 15px 0;
        }
        
        .icon {
            font-size: 40px;
            color: #3498db;
        }
        
        /* 新闻中心样式 */
        .news-list {
            display: grid;
            gap: 15px;
        }
        
        .news-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .news-item:hover {
            background-color: #f9f9f9;
        }
        
        .news-date {
            min-width: 100px;
            width: 100px;
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .news-content h3 {
            margin-bottom: 8px;
            font-size: 18px;
        }
        
        .news-content p {
            color: #7f8c8d;
            font-size: 14px;
        }
        
        /* 活动展示样式 */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .event-card {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
        }
        
        .event-image {
            height: 160px;
            background-color: #ecf0f1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7f8c8d;
			overflow: hidden;
        }
        
        .event-info {
            padding: 15px;
        }
        
        .event-info h3 {
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .event-date {
            color: #3498db;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .event-info p {
            font-size: 14px;
            color: #7f8c8d;
        }
        
        /* 详情页样式 */
        .detail-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .detail-header {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .detail-title {
            font-size: 28px;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .detail-meta {
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .detail-content {
            line-height: 1.8;
        }
        
        .detail-content p {
            margin-bottom: 15px;
        }
        
        .detail-image {
            width: 100%;
            height: 400px;
			overflow:hidden;
            background-color: #f0f0f0;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7f8c8d;
            font-size: 18px;
        }
        
        .back-link {
            display: inline-block;
            margin-top: 30px;
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }
        
        .back-link:hover {
            text-decoration: underline;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .footer-section p {
            font-size: 14px;
            color: #ecf0f1;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #bdc3c7;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .welcome-section h1 {
                font-size: 28px;
            }
            
            .news-item {
                flex-direction: column;
            }
            
            .news-date {
                margin-bottom: 10px;
            }
            
            .slider-container {
                height: 300px;
            }
            
            .slide-title {
                font-size: 22px;
            }
            
            .slide-desc {
                font-size: 14px;
                max-width: 100%;
            }
        }