/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Microsoft YaHei', sans-serif;
	background: #fff;
	color: #5d5d5d;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
	line-height: 2.2;
}

a {
	color: #ff360e;
	text-decoration: none;
}

a:hover {
	color: #be2b16;
}

p {
	text-indent: 2em;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.container {
	max-width: 100%;
	padding: 2vw 0 0 0;
	margin: 0 auto;
	position: relative;
}

/* 顶部区域样式 */
.header-container {
	text-align: center;
}

/* 标题容器样式 - 放大滑入效果 */
.title-container {
	margin: 2vw auto;
	position: relative;
	animation: titleSlideIn 1.5s ease-out forwards;
	opacity: 0;
	z-index: 20;
}

@keyframes titleSlideIn {
	0% {
		transform: translateY(10vw) scale(0.7);
		opacity: 0;
	}

	70% {
		transform: translateY(-1vw) scale(1.05);
		opacity: 1;
	}

	100% {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}

.main-title {
	width: 41vw;
	margin: 0 auto;
	position: relative;
	left: 0;
	right: 0;
}

.main-title img {
	width: 41vw;
}

/* 卷轴容器样式 */
.scroll-container {
	width: 50vw;
	height: 15vw;
	margin: 7vw auto 1vw;
	position: relative;
	perspective: 1000px;
	overflow: hidden;
	z-index: 20;
}

.scroll-painting img {
	width: 50vw;
}

/* 卷轴绘画区域 - 卷轴展开效果 */
.scroll-painting {
	width: 100%;
	height: 100%;
	position: relative;
	opacity: 0;
	animation: scrollOpen 2s 0.5s forwards;
}

/* 卷轴展开动画 */
@keyframes scrollOpen {
	0% {
		opacity: 0;
		clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
	}

	30% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

/* 卷轴两端的装饰 */
.scroll-painting::before,
.scroll-painting::after {
	content: '';
	position: absolute;
	width: 3vw;
	height: 100%;
	top: 0;
	z-index: 2;

}

.scroll-painting::before {
	left: -3vw;
	border-radius: 1.5vw 0 0 1.5vw;
}

.scroll-painting::after {
	right: -3vw;
	border-radius: 0 1.5vw 1.5vw 0;
}

/* Logo样式 - 滑入效果 */
.logo {
	position: absolute;
	width: 3.5vw;
	top: -6vw;
	left: 11vw;
	animation: logoSlideIn 1.8s 0.8s cubic-bezier(0.2, 0.2, 0.2, 0.2) forwards;
	z-index: 20;

}

@keyframes logoSlideIn {
	0% {
		transform: translate(0, 0);
	}

	70% {
		transform: translate(9vw, 9vw);
	}

	100% {
		transform: translate(9vw, 9vw);
	}
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	animation: logoRotate 8s infinite linear;
}

@keyframes logoRotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


.dy {
	width: 50vw;
	position: relative;
	margin: 0 auto;
	height: 4vw;
	z-index: 20;
}
.dy a{
	color: #fff5d6;
}

.dy a:hover{
	color: #ffdb6c;
}


.dy p {
	color: #fff;
	text-align: left;
}

.mountain-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50vw;
	background-size: cover;
	z-index: 1;
	overflow: hidden;
}

@media (max-width: 768px) {
	.mountain-bg {
		background: url("../images/bg.jpg") no-repeat center;

	}
}

@media (max-width: 480px) {
	.mountain-bg {
		background: url("../images/bg.jpg") no-repeat center;
	}

}


/* 内容区域样式 */
.content {
	width: 100%;
	margin: 5vw auto 0;
}

.tit1 {
	width: 100%;
	margin: 0 auto 2vw;
	text-align: center;
}

.tit {
	width: 100%;
	margin: 0 auto 2vw;
	text-align: center;
}

.tit img {
	width: 26vw;
}

.sol {
	width: 26vw;
	height: 29vw;
	background: #e1f0f9;
}

/* 001 */

.sol {
	flex: 1;
	min-width: 45%;
}

.stats-container {
	background: #e1f0f9;
	padding: 1vw 2vw 1vw 2vw;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.stats-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stats-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	border-radius: 5px;
}

.stats-title {
	color: #e74c3c;
	font-size: 2.2vw;
	margin-bottom: 1.5vw;
	padding-left: 1.5vw;
	position: relative;
	font-weight: 600;
}

.stats-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.6vw;
	height: 0.6vw;
	background: #e74c3c;
	border-radius: 50%;
}

.stats-container ul {
	list-style: none;
	padding-left: 1vw;
}

.stats-container li {
	position: relative;
	padding-left: 1.8vw;
	font-size: 1vw;
	line-height: 1.5;
	border-bottom: 1px dashed #e0e6ed;
	transition: all 0.3s ease;
}

.stats-container li:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.stats-container li:hover {
	transform: translateX(0.2vw);
	background-color: #f0f9ff;
}

.stats-container li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.5vw;
	width: 0.5vw;
	height: 0.5vw;
	background-color: #5d8bb0;
	border-radius: 50%;
	box-shadow: 0 0 0 0.3vw rgba(93, 139, 176, 0.15);
	z-index: 2;
	transition: all 0.3s ease;
}

.stats-container li:hover::before {
	transform: scale(1);
	box-shadow: 0 0 0 0.3vw rgba(93, 139, 176, 0.25);
}

.num {
	color: #e74c3c;
	font-weight: 700;
	display: inline-block;
	min-width: 3vw;
	text-align: center;
	margin: 0 0.5vw;
	font-size: 2vw;
	font-family: 'Arial', sans-serif;
	position: relative;
	top: 0.2vw;
}


/* 焦点图动效 */
.slider-container {
	position: relative;
	width: 50vw;
	height: 30vw;
	overflow: hidden;
	border-radius: 0.2vw;
	margin: 0 auto 2vw;
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.slider.active {
	opacity: 1;
}

.slider-content {
	background: rgba(0, 0, 0, 0.4);
	color: white;
	text-align: left;
	transform: translateY(2vw);
	transition: transform 0.5s ease;
}

.slider.active .slider-content {
	transform: translateY(0);
}

.slider-content p {
	padding-top: 1vw;
}



.slider p {
	font-size: 0.9vw;
	opacity: 0.9;
	text-align: center !important;
}

.controls {
	position: absolute;
	bottom:1vw;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 10;
}
.tmt{ width: 100%; text-align: center; font-size: 1.2vw;}

.dot {
	width: 2vw;
	height: 2vw;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	margin: 0 0.5vw;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 1vw;
	color: #fff;
	transition: all 0.3s ease;
	border: 0.2vw solid transparent;
}

.dot:hover {
	background: rgba(255, 204, 0, 0.7);
	transform: scale(1.1);
}

.dot.active {
	background: #ffcc00;
	color: #333;
	transform: scale(1.2);
	border-color: white;
}

.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3vw;
	height: 3vw;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1.8vw;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	border: 0.15vw solid rgba(255, 255, 255, 0.5);
}

.nav-btn:hover {
	background: #ffcc00;
	color: #333;
	transform: translateY(-50%) scale(1.1);
}

.prev {
	left: 2vw;
}

.next {
	right: 2vw;
}




/* 内容页 */
.panel {
	flex: 1;
	width: 58vw;
	margin: 0 auto 3vw;
	padding: 2vw;
	box-shadow: 0 0.8vw 1.5vw rgba(92, 44, 13, 0.15);
	transition: transform 0.4s, box-shadow 0.4s;
	overflow: hidden;
}

.panel:hover {
	transform: translateY(-1vw);
	box-shadow: 0 1.5vw 2.5vw rgba(92, 44, 13, 0.25);
}


.panel p {
	text-align: justify;
	margin-bottom: 1.5vw;
}

.nol {
	width: 27.5vw;
	margin-bottom: 2vw;
}

.nol img {
	width: 48%;
}

.nol:hover img {
	transition: transform 0.3s ease;
	transform: scale(1.05);
}

.nor {
	width: 25.5vw;
	margin-bottom: 2vw;
}

/* 新闻动效 */
.news-list {
	list-style: none;
}

.news-list p {
	margin-bottom: 0.6vw;
}

.news-item {
	padding: 0.5vw 0 0.5vw 1.2vw;
	border-bottom: 1px solid #eef2f7;
	position: relative;
	transition: all 0.3s ease;
}

.news-item:last-child {
	border-bottom: none;
}

/* 蓝色圆点样式 */
.news-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.2vw;
	width: 0.5vw;
	height: 0.5vw;
	background: #d83718;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(255, 199, 188, 0.8);
}

.news-item:hover {
	background: #f8fbff;
	transform: translateX(0.1vw);
}

.news-item:hover::before {
	background: #db543a;
	transform: scale(1.2);
}

.news-title {
	font-size: 0.8vw;
	color: #494949;
	display: block;
	text-decoration: none;
	transition: color 0.2s;
}

.news-title:hover {
	color: #d83718;

}


.col {
	width: 26vw;
	height:100%;
	background: #e1f0f9;
	padding:1vw;
}
/* switch */
.switch{width:100%;height:16.46vw;position:relative; }
.switch ul{width:100%;height:100%;position:relative;overflow:hidden;}
.switch li{width:100%;height:100%;position:absolute;top:0;left:0;}
.switch ul li img{width:100%; height:16.46vw;position:absolute;top:0;left:0; border-radius: 0.4vw;}
.switch-nav{bottom:1.04vw;right:12vw;position:absolute;z-index:1;height:0.47vw;}
.switch-nav span.active{ background: #f7eade; border-radius:10vw; width:1.04vw; height:0.52vw;  }
.switch-nav span{margin:0 0.16vw;text-align:center;line-height:0.52vw;cursor:pointer;float:left;display:block;width:0.52vw;height:0.52vw; background: #fff; border-radius:2.6vw;color:#fff;  }

/* 凡人微光 */
.fol {
	width: 26vw;
	overflow: hidden;
}

.fol h1 {
	font-size: 1.1vw;
	text-align: center;
}

.fol:hover img {
	transition: transform 0.3s ease;
	transform: scale(1.05);
}

.fol h1 a {
	color: #494949;
}

.fol img {
	width: 100%;
}


.rol {
	margin: 0 auto;
	width: 26vw;
	padding: 2vw 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	/* 为背景定位 */
	z-index: 1;
	/* 确保内容在背景之上 */
}

.left-img {
	width: 9vw;
	position: relative;
	/* 为图片定位 */
	z-index: 2;
	margin-left: 1vw;
}

.left-img img {
	width: 100%;
	height: auto;
	border-radius: 0.2vw;
	transition: transform 0.3s ease;
	/* 平滑过渡 */
}

/* 图片悬停效果 */
.left-img:hover img {
	transform: scale(1.1);
	/* 放大10% */
}

/* 最外层蓝色背景 */
.rol::before {
	content: '';
	position: absolute;
	top: 50%;
	/* 垂直居中关键点 */
	left: 0;
	width: 100%;
	height: 56%;
	background-color: #1e88e5;
	border-radius: 0.5vw;
	z-index: -1;
	transform: translateY(-50%);
	/* 上移自身高度的一半 */
}

.right-text {
	width: 10vw;
	flex: 1;
	margin: 0 1vw 0 1vw;
	position: relative;
	/* 确保文本在背景之上 */
	z-index: 2;
	height: 8vw;
}

.right-text h2 {
	font-size: 1vw;
	font-weight: bold;
	color: #fff;
}

.right-text p {
	color: #fff;
}

.right-text a {
	color: #fffedf;
	text-decoration: none;
	transition: text-decoration 0.3s;
}

.right-text a:hover {
	text-decoration: underline;
}

/*.bg_css{
	display: none;
}*/

/* 页脚样式 */
.footer {
	text-align: center;
	margin-top: 2vw;
	padding: 2vw;
	font-size: 0.8vw;
	border-top: 0.3vw solid rgba(29, 128, 184, 0.3);
}



/* 响应式调整 */
@media screen and (max-width: 768px) {
	html,
	body {
		min-width: 1200px;
		overflow-x: auto;
	}

	/*.bg_css{display: block;}*/
}


