:root {
            --primary-color: #2c3e50;
            --accent-color: #e74c3c;
            --secondary-color: #3498db;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --light-text: #7f8c8d;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: var(--dark-text);
            line-height: 1.6;
            /*padding: 40px 20px;*/
            min-height: 100vh;
        }
        
        .news-container {
            max-width: 1900px;
            margin: 0 auto;
            background: #fff;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            position: relative;
        }
        
        .news-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
        }
        
        .news-body {
            padding: 40px;
        }
        
        .news-tabs {
            margin-bottom: 35px;
            border-bottom: 1px solid #eaeff5;
        }
        
        .news-tabs-list {
            display: flex;
            list-style: none;
            padding: 0;
        }
        
        .news-tabs-list li {
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 500;
            color: var(--light-text);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            border-bottom: 3px solid transparent;
        }
        
        .news-tabs-list li.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
        }
        
        .news-tabs-list li:hover:not(.active) {
            color: var(--primary-color);
            background-color: rgba(44, 62, 80, 0.03);
        }
        
        /* 网格布局 */
        .news-list.news-list-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            list-style: none;
            padding: 0;
        }
        
        .news-item {
            display: flex;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            border: 1px solid #f1f5f9;
            position: relative;
            height: 150px;
        }
        
        .news-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
            transition: height 0.4s ease;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }
        
        .news-item:hover::before {
            height: 100%;
        }
        
        .news-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 100px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #3a506b 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .news-date::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: var(--transition);
        }
        
        .news-item:hover .news-date::after {
            transform: rotate(45deg) translate(20px, 20px);
        }
        
        .news-day {
            font-size: 36px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
        }
        
        .news-month {
            font-size: 15px;
            font-weight: 500;
            position: relative;
            z-index: 1;
            opacity: 0.9;
        }
        
        .news-content {
            padding: 25px;
            flex: 1;
            display: contents;
            flex-direction: column;
            justify-content: center;
        }
         .news-content a{
            text-decoration:none;/*大部分页面中的链接没有下划线*/
             /*color: #000000;*/
             
         }
          .news-content a img {
            min-height: 150px;
            max-height: 150px;
            min-width: 200px;
            max-width: 200px;
        }
         .news-content a p{
            text-decoration:none;/*大部分页面中的链接没有下划线*/
            padding: 0 20px;
            height: 70px;
             
         }
         .news-content a h1, h2, h3, h4, h5, h6{
            text-decoration:none;/*大部分页面中的链接没有下划线*/
            color: #000000;
            font-size: 20px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
            padding: 20px 20px;
            position: relative;
            z-index: 1;
            height: 70px;
}

        .article-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s;

	margin: 20px;
	width: 330px;
	    height: 420px;
	float: left;
        }
        .article-item a{
            text-decoration:none;/*大部分页面中的链接没有下划线*/
            color: #000000;
            background: #f2f2f2;
            padding: 10px;
            
        }
        .article-item a img {
            
            width: 310px;
            min-height: 200px;
            max-height: 200px;
            min-width: 310px;
            max-width: 310px;
        }
        .news-title {
            display: block;
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--transition);
            line-height: 1.4;
            position: relative;
        }

        
        .news-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .news-title:hover {
            color: var(--accent-color);
        }
        
        .news-title:hover::after {
            width: 40px;
        }
        
        .news-summary {
            display: block;
            font-size: 15px;
            color: var(--light-text);
            text-decoration: none;
            line-height: 1.6;
            transition: var(--transition);
        }
        
        .news-item:hover .news-summary {
            color: #5a6b82;
        }
        
        .news-more.news-more-wrap {
            grid-column: span 2;
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eaeff5;
            position: relative;
        }
        
        .more-button {
            display: inline-flex;
            align-items: center;
            padding: 16px 36px;
            background: linear-gradient(to right, var(--accent-color), #ff6b6b);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .more-button::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: 0.5s;
        }
        
        .more-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
        }
        
        .more-button:hover::before {
            left: 100%;
        }
        
        .more-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .more-button:hover i {
            transform: translateX(5px);
        }
        
        /* 响应式设计 */
        @media (max-width: 1100px) {
            .news-list.news-list-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .news-more.news-more-wrap {
                grid-column: span 1;
            }
        }
        
        @media (max-width: 768px) {
            .news-body {
                padding: 25px;
            }
            
            .news-tabs-list {
                overflow-x: auto;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
            }
            
            .news-tabs-list li {
                padding: 14px 24px;
                font-size: 16px;
            }
            
            .news-item {
                flex-direction: column;
            }
            
            .news-date {
                min-width: 100%;
                flex-direction: row;
                justify-content: flex-start;
                padding: 15px 25px;
            }
            
            .news-day {
                margin-right: 10px;
                margin-bottom: 0;
            }
            
            .news-content {
                padding: 20px;
            }
            
            body {
                padding: 20px 10px;
            }
        }
        
        /* 页面标题样式 */
        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .page-subtitle {
            font-size: 18px;
            color: var(--light-text);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* 装饰元素 */
        .decoration {
            position: absolute;
            z-index: 0;
            pointer-events: none;
        }
        
        .decoration-circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(231, 76, 60, 0.1) 100%);
            position: absolute;
            top: -150px;
            right: -150px;
        }
        
        .decoration-square {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
            position: absolute;
            bottom: -100px;
            left: -100px;
            transform: rotate(45deg);
        }


.xq_bt {
	margin: 60px auto 40px auto;
	width: 98%;
	text-align: center;
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 20px;
}
.xq_bt h3, .xq_bt time {
	display: block;
}
.xq_bt h3 {
	font-size: 32px;
	color: #525252;
}
.xq_bt time {
	padding-top: 15px;
	font-size: 14px;
	color: #707070;
}



.about_dq {
	width: 100%;
	background: #000;
}
.about_dq div {
	overflow: hidden;
	padding: 8px;
}
.about_dq div img {
	float: left;
	padding-right: 8px;
}
.about_dq div p {
	color: #FFF;
	font-size: 13px;
}
.about_dq div p a {
	color: #FFF;
}
.about_dq div p a:hover {
	color: #FF0;
	border-bottom: 1px solid #FF0;
}
.about_main {
	width: 1200px;
	margin: 0 auto;
	padding: 0px 0px 60px 0px;
}
.about_main p {
	font-size: 18px;
	color: #3d3d3d;
	line-height: 30px;
	
}
.about_main p a {
    text-decoration: none;
    color: #000000;
    font-size: 20px;
}
.about_main img {
	width: 100%;
	padding: 0px 0px;
	

}
.about_main img {

	padding: 0px 0px;