/* 新闻中心样式 */
.news-banner {
	font-size: 14px;
	height: 380px;
	padding: 90px 0;
	background: url(../images/new-banner.png) no-repeat center;
}

.banner-content {
	width: 80%;
	height: 100%;
	padding-left: 80px;
	padding-top: 80px;
	margin: auto;
	background-color: #ffffff;
	border-left: 4px solid #005eaf;
	box-sizing: border-box;
}

.banner-content-title {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	margin-bottom: 34px;
}

.banner-content-title-min {
	font-size: 16px;
	color: #666;
	margin-bottom: 4px;
}

.banner-content-title-time {
	font-size: 14px;
	color: #666;
	margin-top: 30px;
}

/* 标题样式 */
.title-news {
	width: 100%;
	padding: 20px 0;
}

.news-title {
	font-size: 22px;
	font-weight: bold;
}

.title-bg {
	width: 32px;
	height: 4px;
	margin-top: 14px;
	background-color: #005eaf;
}

/* 新闻资讯*/
.interview-content {
	width: 100%;
	font-size: 14px;
	background-color: #fff;
}

.news-carousel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	padding: 30px 20px;
	position: relative;
	min-height: 400px;
}

.carousel-prev,
.carousel-next {
	width: 18%;
	opacity: 0.8;
	transition: all 0.5s ease;
	background-color: #f5f5f5;
	padding: 20px;
	margin-top: 200px;
	box-sizing: border-box;
	overflow: hidden;
}

.prev-link,
.next-link {
	display: block;
	color: #666;
	text-decoration: none;
	font-size: 13px;
	line-height: 1.4;
}

.prev-label,
.next-label {
	display: block;
	margin-bottom: 6px;
	color: #999;
	font-size: 12px;
}

.prev-title,
.next-title {
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 14px;
}

.prev-date,
.next-date {
	display: block;
	color: #999;
	margin-bottom: 4px;
	font-size: 12px;
}

.prev-desc,
.next-desc {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 12px;
}

.carousel-current {
	width: 60%;
	text-align: center;
	padding: 20px 30px;
	margin: 0 20px;
	transition: all 0.5s ease;
	transform: scale(1);
	background-color: #f5f5f5;
}

.carousel-current.fade {
	opacity: 0;
	transform: scale(0.95);
}

.current-date {
	font-size: 42px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.2;
}

.current-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
}

.current-desc {
	color: #666;
	line-height: 1.6;
	margin-bottom: 25px;
	font-size: 16px;
	padding: 0 20px;
}

.current-link {
	color: #007bff;
	text-decoration: none;
	font-size: 16px;
	padding: 8px 16px;
	border: 1px solid #007bff;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.current-link:hover {
	background: #007bff;
	color: #fff;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #ddd;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	color: #333;
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-arrow:hover {
	background: #007bff;
	color: #fff;
	border-color: #007bff;
}

.arrow-left {
	left: 20px;
}

.arrow-right {
	right: 20px;
}

/* 媒体采访 */
.news-content {
	width: 100%;
	font-size: 14px;
	background-color: #f5f5f5;
}

.carousel-container {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	background: white;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
	height: 400px;
}

.carousel-slide {
	min-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.slide-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-date {
	font-size: 14px;
	color: #666;
	background: rgba(255, 255, 255, 0.7);
	padding: 4px 12px;
	border-radius: 20px;
	display: flex;
	margin-left: 20px;
}

.slide-content {
	display: flex;
	gap: 30px;
	margin-bottom: 25px;
	padding: 0 100px;
}

.slide-image {
	flex: 0 0 440px;
	height: 220px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-text {
	flex: 1;
}

.slide-text h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #1a237e;
	line-height: 1.3;
}

.slide-text p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.slide-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #777;
	padding-top: 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-pagination {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-right: 20px;
}

.page-number {
	font-weight: 600;
	color: #1a237e;
}

.page-total {
	color: #999;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	color: #1a237e;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-nav:hover {
	background: #1a237e;
	color: white;
	transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
	left: 20px;
}

.carousel-nav.next {
	right: 20px;
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 25px 0;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #1a237e;
	transform: scale(1.3);
}

.data-content {
	width: 80%;
	margin: auto;
}

/* 峰会活动 */
.activity-content {
	width: 100%;
	font-size: 14px;
	background-color: #fff;
	margin-bottom: 80px;
}

.activity-data {
	padding: 20px 0;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}

.activity-data div {
	width: 100%;
	padding: 0 12px;
}

.activity-title {
	font-size: 16px;
	font-weight: bold;
	margin: 12px 0;
	color: #333;
}

.activity-text {
	color: #999999;
	font-size: 14px;
	height: 80px;
}

.activity-time{
	font-size: 16px;
	margin-top: 20px;
}

.slide-mt {
	margin-left: 20px;
}

/* 新闻详情 */
.content-xw {
	width: 86%;
	font-size: 14px;
	margin: auto;
}

.news-banner-bg {
	width: 100%;
	height: 200px;
	margin-bottom: 40px;
	background: url(../images/abuot_banner1.jpg) no-repeat center;
}

.news-details {
	width: 100%;
}

.news-title-box  {
	font-size: 15px;
	margin: 14px 0;
	border-radius: 8px;
	padding: 12px 14px;
	background-color: #ececec;
	cursor: pointer;
}

.title-text {
	font-size: 30px;
	font-weight: bold;
	color: #333;
}

.title-text-description {
	padding: 16px 0;
	font-size: 16px;
	color: #999;
	margin-bottom: 40px;
}

.cont-news-box {
	font-size: 14px;
	width: 74%;
}

.cont-news-box-r {
	width: 23%;
}

.news-l-r {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.news-images  {
	width: 100%;
	height: 640px;
}

.news-images img {
	width: 100%;
	height: 100%;
}

.x-title {
	font-size: 17px;
	font-weight: bold;
	color: #333;
}

.span-text {
	font-size: 16px;
	color: #333;
	padding: 16px 0;
}

.r-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
}

.r-div {
	width: 40px;
	height: 4px;
	margin-top: 14px;
	background-color: #005eaf;
}

.more-news {
	width: 100%;
	margin: 26px 0;
}

.more-news:hover {
	cursor: pointer;
	color: #005eaf;
}

.more-news-iamge {
	width: 100%;
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
}

.more-news-iamge img {
	width: 100%;
	height: 100%;
}

.more-news-title {
	padding: 8px 0;
	font-weight: bold;
	font-size: 16px;
	color: #333;
}