body {
	background-color: #76152b;
	background-image: url("../img/body-bg.webp");
}

main {
	padding: 3%;
	margin: 3%;
	z-index: 111;
}


/* nav */
header {
	background-color: #150000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {
	width: 20%;
	text-align: center;
	padding: 1% 2%;
}

.logo img {
	width: 80%;
}

.menu {
	width: 70%;
	display: flex;
	justify-content: flex-end;
}

.menu a {
	color: white;
	text-decoration: none;
	margin: 0 3%;
	font-size: 1.6vw;
	transition: transform 0.3s ease-in-out;
	padding: 0 1%;
}

.menu a:hover {
	transform: scale(1.1);
	background: #76152B;
}

.menu-button {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

.close-menu {
	display: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}


/* main */

/* Banner容器 */
.banner {

	width: 100%;
	max-width: 1600px;
	overflow: hidden;
	margin: 0 auto;
}

/* layer-box: 最底层背景 */
.layer-box {
	position: relative;
	width: 100%;
}

.layer-box img {
	width: 100%;

	object-fit: cover;
}

.layer1 {
	position: absolute;
	left: 0.6%;
	top: 50%;
	width: 8vw;
	animation: floatUpDown1 3s infinite ease-in-out;
	max-width: 120px;
}

.layer1 img {
	width: 100%;

}

.layer2 {
	position: absolute;
	right: 0.6%;
	top: 50%;
	width: 8vw;
	animation: floatUpDown2 3s infinite ease-in-out;
	max-width: 120px;
}

.layer2 img {
	width: 100%;
	height: 100%;
}


.layer3 {
	position: absolute;
	bottom: 8%;
	left: 50%;
	transform: translateX(-50%);
	width: 30vw;
	animation: flashLight 1.5s infinite alternate;
}


.layer-l,
.layer-r {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 5vw;
	animation: moveSides 3s infinite alternate;
}

.layer-l {
	left: -10vw;
}

.layer-r {
	right: -4vw;
}

.layer-c {
	position: absolute;
	top: 50%;
	left: 12%;
	transform: translate(-50%, -50%);
	width: 25vw;
	animation: zoomInOut 3s infinite alternate;
	margin-top: -8%;
}

.layer4 {
	position: absolute;
	top: 8%;
max-width: 350px;
	right: 10%;
	transform: translateX(-50%);
	width: 20vw;
	animation: flashLight 1.5s infinite alternate;
}

/* 动画定义 */

/* layer1 上下浮动特效 */
@keyframes floatUpDown1 {
	0% {
		transform: translateY(-50%) translateY(-10px);
	}

	50% {
		transform: translateY(-50%) translateY(10px);
	}

	100% {
		transform: translateY(-50%) translateY(-10px);
	}
}

/* layer2 上下浮动特效 */
@keyframes floatUpDown2 {
	0% {
		transform: translateY(-50%) translateY(10px);
	}

	50% {
		transform: translateY(-50%) translateY(-10px);
	}

	100% {
		transform: translateY(-50%) translateY(10px);
	}
}

/* layer3 闪光特效 */
@keyframes flashLight {
	0% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

/* layer-l 和 layer-r 左右移动特效 */
@keyframes moveSides {
	0% {
		transform: translateY(-50%) translateX(0);
	}

	100% {
		transform: translateY(-50%) translateX(5vw);
	}
}

/* layer-c 放大缩小特效 */
@keyframes zoomInOut {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

/* chahua */
/* title 容器 */
.title {
	max-width: 600px;
	margin: 2% auto;
}

.title img {
	width: 100%;
	height: auto;
}

.title2 {
	max-width: 800px;
	margin: 2% auto;
}

.title2 img {
	width: 100%;
	height: auto;
}

/* illustration */
.illustration {
	width: 100%;
	max-width: 1200px;
	overflow: hidden;
	margin: 0 auto;
}

.illustration ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/* gap: 40px; */
	padding: 0;
	list-style: none;
}

.illustration ul li {
	width: 48%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.illustration-txt{
	width: 90%
}
/*ziwei*/
.ziwei {
	margin: 2% auto;
	width: 100%;
	max-width: 1200px;

}

.ziwei ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px;
	list-style: none;
	padding: 5%;
}

/* 每个 li 的样式 */
.ziwei li {

	position: relative;
	background-color: #76152a;
	padding: 40px 20px;
	border-radius: 10px;
	transition: background-color 0.5s ease;
	border-radius: 30px;
	border: 5px #f4ae29 solid;
}

.ziwei li:hover .ziwei-box2 {
	display: block;
}

/* ziwei-box 内容 */
.ziwei-box {
	display: block;
	text-align: center;
}

.ziwei-icon img {
	width: 40%;
	max-width: 160px;
	animation: floatUpDown 2s ease-in-out infinite;
}

/* 定义浮动的动画 */
@keyframes floatUpDown {
	0% {
		transform: translateY(0);

	}

	50% {
		transform: translateY(-10px);

	}

	100% {
		transform: translateY(0);

	}
}

.ziwei-txt {
	margin-top: 10px;
	font-size: 2vw;
	font-weight: bold;
	color: #fff;
}

.ziwei-box a {
	display: block;
	border: 2px #f4ae29 solid;
	border-radius: 20px;
	color: #f4ae29;
	width: 50%;
	margin: 0 auto;
	margin-top: 20px;
	line-height: 2rem;
	display: none;

}

/* ziwei-box2 弹出内容 */
.ziwei-box2 {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #f4ae29;
	color: #76152a;
	width: 100%;
	height: 100%;
	padding: 20px;
	border-radius: 24px;
	border: 5px #f4ae29 solid;
	text-align: center;

}

.ziwei-box2 h1 {
	font-size: 2.2rem;
	margin-bottom: 10px;

}

.ziwei-box2 h2 {
	width: 30%;
	height: 5px;
	background: #76152a;
	margin: 3% auto;

}

.ziwei-box2 p {
	font-size: 1.5rem;
	margin-top: 10%;
	text-align: left;
}

/* 第四模块  */
#proud {
	display: block;
}

#proud2 {
	display: none;
}

.proud {
	width: 100%;
	max-width: 1200px;
	overflow: hidden;
	margin: 0 auto;
}

.proud-a {
	position: relative;
	overflow: hidden;
}

.proud-a-l {
	float: left;
	width: 70%;
	text-align: center;
	padding: 30px 0;
}

.proud-a-l img {
	transform: rotate(355deg);
	width: 90%;
}

.proud-a-r {
	width: 24%;
	position: absolute;
	right: 10%;
	top: 16%;
	transform: rotate(15deg);
}

.proud-a-r a {
	display: block;
}

.proud-a-r a:hover {
	transform: rotate(5deg);
	transition: transform 0.3s ease-in-out;
}

.proud-a-r img {
	width: 100%;
}

.proud-a-r h2 {
	text-align: center;
	color: #f4ae29;
	font-size: 1.5rem;
}

.proud-b {
	position: relative;
	overflow: hidden;
	margin-top: -175px;
}

.proud-b-r {
	float: right;
	width: 70%;
	text-align: center;
	padding: 30px 0;
}

.proud-b-r img {
	transform: rotate(355deg);
	width: 90%;
}

.proud-b-l {
	width: 24%;
	position: absolute;
	left: 12%;
	top: 35%;
	transform: rotate(345deg);
}

.proud-b-l a {
	display: block;
}

.proud-b-l a:hover {
	transform: rotate(5deg);
	transition: transform 0.3s ease-in-out;
}

.proud-b-l img {
	width: 100%;
}

.proud-b-l h2 {
	text-align: center;
	color: #f4ae29;
	font-size: 1.5rem;
}

/* 弹出列表 */
.proud-open1 {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	background: #150000;
	opacity: 0;
	/* 默认完全透明 */
	visibility: hidden;
	/* 默认隐藏 */
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	z-index: 11;
}

.proud-open2 {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	opacity: 0;
	/* 默认完全透明 */
	visibility: hidden;
	/* 默认隐藏 */
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	z-index: 12;
}



.proud-open-box {
	width: 80%;
	max-width: 1200px;
	margin: 5% auto;
	position: relative;
	transform: scale(0.8);
	transition: transform 0.3s ease-in-out;
}

.proud-bg {
	width: 100%;
	height: 60vh;
	background: #752525;
	border: 2px dashed #fff;
	border-radius: 60px;
	overflow: hidden;
	transform: rotate(355deg);


}

.proud-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 5%;
	height: 60vh;
	background: #fff;
	border: 2px dashed #752525;
	border-radius: 60px;
	overflow: hidden;
}

.proud-box ul {
	width: 100%;
	max-height: 50vh;
	overflow-y: auto;
	padding: 0;
	list-style: none;
}

/* 列表项样式 */
.list-item {


	padding: 1% 2%;
	line-height: 3rem;
	color: #752525;
	transition: background 0.3s ease-in-out;
	cursor: pointer;
	font-size: 1.5rem;
}

.list-item:nth-child(even) {
	background: #e8e8e8;
}

.list-item a {
	display: block;
}

.list-item:hover {
	background: #f4ae29;
	color: white;
}

.detail-btn {
	display: none;
	background: #752525;
	color: white;
	padding: 0 15px;
	border-radius: 40px;
	font-size: 1.3rem;
	white-space: nowrap;
	float: right;

}

.list-item:hover .detail-btn {
	display: inline-block;
}

.off {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 70px;
	position: absolute;
	top: -1vw;
	right: -1vw;
	transform: rotate(45deg);
	font-size: 3rem;
	background: #f4ae29;
	color: #fff;
	cursor: pointer;
}

/* 显示时动画 */
.show {
	opacity: 1 !important;
	/* .proud-open2 完全显示 */
	visibility: visible !important;
}

.show-bg {
	opacity: 0.5 !important;
	/* .proud-open1 半透明 */
	visibility: visible !important;
}

/* footer */
footer {
	background-color: #150000;
	padding: 2vh 0;

}

.footerbox {
	width: 100%;
	max-width: 1200px;
	margin: 2% auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow: hidden;
	padding: 4% 0;
}

.footer-lofo {
	width: 100%;
	padding: 0 10%;
	text-align: center;
}

.left-panel {

	padding-right: 40px;
	text-align: center;
	border-right: 1px #CCCCCC solid;
}

.left-panel img {
	width: 100%;
	max-width: 150px;
	margin-bottom: 20px;
}

.share-buttons {
	display: flex;
	justify-content: center;
	gap: 1px;
}

.share-buttons a {
	display: block;
	padding: 10px 5px;
	color: #333;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.share-buttons a:hover {
	transform: rotate(355deg);
}

.contact-info {
	margin-left: 40px;
}

.contact-info ul li {
	display: flex;
	justify-content: flex-start;
}

.contact-icon {
	color: #FFFFFF;
	width: 25px;
	margin-right: 10px;
}

.contact-box {
	color: #FFFFFF;
	font-size: 1rem;
	line-height: 30px;
}

.contact-box a {
	color: #FFFFFF;
}

.contact-info ul li:nth-child(4) {
	color: #847f7f;
	margin-top: 15px;
}

.contact-info ul li:nth-child(4) a {
	color: #847f7f;
}

/* shopbg */
.shopbg {
	background: #F4AE29;
	opacity: 0.4;
	width: 150px;
	height: 150px;
	position: fixed;
	right: 50px;
	bottom: 50px;
	border-radius: 20px;
}

/* shop */
.shop {
	width: 150px;
	height: 150px;
	position: fixed;
	right: 50px;
	bottom: 50px;
	overflow: hidden;
	cursor: pointer;
	/* 添加指针样式 */
}

.shop-m {
	background: #F4AE29;
	width: 86%;
	margin: 7%;
	height: 86%;
	text-align: center;
	font-size: 2.3rem;
	font-weight: bold;
	line-height: 40px;
	overflow: hidden;
	border-radius: 15px;
}

.shop-m span {
	margin-top: 25px;
	display: block;
	color: #76152A;
}

/* shop-box */
.shop-box {
	position: fixed;
	right: 30%;
	left: 30%;
	top: 50%;
	width: 40%;
	background: #76152A;
	padding: 10px 30px;
	border: 5px #F4AE29 solid;
	border-radius: 30px;
	display: none;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	box-shadow: 30px 30px 60px #150000;
}

.shop-box.show {
	display: block;
	opacity: 1;
	transform: translateY(0);


}

.shop-box a {
	display: block;
	background: #FFFFFF;
	border-radius: 50px;
	line-height: 40px;
	height: 60px;
	margin-bottom: 20px;
	padding: 10px;
	overflow: hidden;
	fill: #ee4d2d;
}

.shop-box a:nth-child(1) svg {
	width: 80%;
}

.shoptop {
	overflow: hidden;
	height: 40px;
	margin-top: -30px;
	margin-right: -40px;
	margin-bottom: 10px;
}

.shopoff {
	float: right;
	width: 40px;
	height: 40px;
	background: #F4AE29;
	text-align: center;
	font-size: 40px;
	line-height: 40px;
	border-radius: 40px;
	transform: rotate(45deg);

	cursor: pointer;
	/* 添加指针样式 */
}

