/* 基础样式 */
body {
	margin: 0;
	padding: 0;
	background-image: url(../img/arknights/bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	background-attachment: fixed;
}

a {
	text-decoration: none;
	color: inherit;
	outline: none;
}

/* 外层容器 */
.main-wrapper {
	width: 80%;
	box-sizing: border-box;
	max-width: 100%;
	min-height: 100vh;
	position: relative;
	overflow: visible;
	padding-bottom: 200px;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 20px;
}

/* 导航栏样式 */
.nav {
	width: 100%;
	overflow: hidden;
	margin-bottom: 5px;
	background-color: white;
	height: 70px;
	display: flex;
	align-items: center;
}

.nav ul {
	width: 100%;
	display: flex;
	padding: 0;
	margin: 0;
}

.nav li {
	list-style: none;
	height: 60px;
	width: 17%;
	border-right: #000 1px solid;
}

.gold a {
	font-size: 12px;
	text-decoration: none;
	color: #919191;
	display: block;
	padding: 20px 0;
	text-align: center;
}

.gold a:hover {
	background: #FFCC33;
	color: #FFFFFF;
}

.wood a {
	font-size: 12px;
	text-decoration: none;
	color: #919191;
	display: block;
	padding: 20px 0;
	text-align: center;
}

.wood a:hover {
	background: rgba(108, 168, 125, 0.5);
	color: #FFFFFF;
}

.water a {
	font-size: 12px;
	text-decoration: none;
	color: #919191;
	display: block;
	padding: 20px 0;
	text-align: center;
}

.water a:hover {
	background: rgba(135, 206, 250, 0.5);
	color: #ffffff;
}

.fire a {
	font-size: 12px;
	text-decoration: none;
	color: #919191;
	display: block;
	padding: 20px 0;
	text-align: center;
}

.fire a:hover {
	background: rgba(204, 96, 96, 0.5);
	color: #fff;
}

.dirt a {
	font-size: 12px;
	text-decoration: none;
	color: #919191;
	display: block;
	padding: 20px 0;
	text-align: center;
}

.dirt a:hover {
	background: #D3A4FF;
	color: #ffffff;
}

/* 装饰元素 */
.zhedang_shang {
	position: absolute;
	top: -3px;
	right: 200px;
	height: 50px;
	width: 100px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.zhedang_xia {
	clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
	position: absolute;
	right: 0px;
	top: 10px;
	height: 100%;
	width: 300px;
	z-index: 3;
}

/* 主体容器 */
.main-container {
	width: 100%;
	min-height: 850px;
	position: relative;
	overflow: visible;
	margin-top: 20px;
}

/* 内容区域 */
.content-section {
	width: 100%;
	min-height: 100px;
	position: relative;
}

/* 引言样式 */
.quote-section {
	position: relative;
	box-shadow: 0px 5px 5px #888;
	margin: 1em 0;
}

.quote-content {
	background: linear-gradient(45deg, #ffe099 0%, #f7865d 50%, #ea2803 51%, #ff6600 75%, #c72200 100%);
	padding: .2em;
	font-weight: bold;
	font-size: 1.2em;
	display: flex;
}

/* 标题区域 */
.header-section {
	margin-bottom: 20px;
	padding: 20px 0px 20px 0px;
}

.content-title {
	position: relative;
	height: 200px;
	margin: 25px 0px;
	background-color: #fff;
	display: flex;
	align-items: center;
}

.content-title-logo-left-decor {
	position: absolute;
	left: 0;
	top: 0px;
	clip-path: polygon(0% 0%, 65% 0%, 0% 100%);
	background: black;
	width: 40px;
	height: 40px;
}

.content-title-logo-right-decor {
	position: absolute;
	top: -3px;
	right: 110px;
	height: 20px;
	width: 40px;
	background: black;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.content-title-logo-right-bottom-decor {
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
	width: 150px;
	height: 50px;
	background: black;
	position: absolute;
	right: 0px;
}

/* 轮播图样式 */
.carousel-section {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel-container {
	position: relative;
	height: 100%;
	width: 100%;
}

.carousel-img {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}

.carousel-img.active {
	opacity: 1;
}

/* 指示器样式 */
.indicators {
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}

.indicator {
	height: 12px;
	width: 12px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.indicator.active {
	background-color: white;
	transform: scale(1.2);
}

.indicator:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

/* 左右按钮样式 */
.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.3);
	color: white;
	font-size: 24px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	border: none;
	opacity: 0.7;
}

.nav-btn:hover {
	background: rgba(0, 0, 0, 0.6);
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
}

.prev-btn {
	left: 20px;
}

.next-btn {
	right: 20px;
}

.nav-btn .iconfont {
	font-size: 20px;
}

/* 站内导航栏样式 - 图片左侧，文字居中 */
.main-select {
	height: 120px;
	width: 100%;
	display: flex;
}

.main-select1 {
	display: flex;
	height: 120px;
	width: 30%;
	margin: 0px 10px;
	font-size: 22px;
	/* text-align: center; */
	padding-left: 12%;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #FFFFFF;
	cursor: pointer;
	transition: all 0.3s ease;
	background-size: 100% 200%;
	background-position: top;
	background-image: linear-gradient(to bottom, #2b2b2b 50%, #0099DD 50%);
	position: relative;
}

/* 图片固定在左侧 */
.main-select1 img {
	width: 35%;
	height: 90%;
	position: absolute;
	left: 1%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}

/* 文字居中 */
.main-select1 span {
	display: block;
	width: 100%;
	left: 400px;
	z-index: 2;
}

.main-select1:hover {
	background-position: bottom;
	color: #000;
}

/* 父容器悬停时图片变黑 */
.main-select1:hover img {
	filter: brightness(0) contrast(100%);
}

.main-level {
	height: 200px;
	width: 100%;
	display: flex;
}

.main-level img {
	width: 200px;
	height: 200px;
	margin: 0px auto;
	transition: all 0.3s ease;
}


.main-level-title {
	color: #000;
	font-size: 25px;
	margin-bottom: 10px;
	padding: 0px 25px 10px;
}

.level {
	margin: 10px 0px;
	background-color: #FFFFFF;
	padding: 25px 0px;
}

.bottom-container {
	width: 100%;
	box-sizing: border-box;
	/* width: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	padding:20px; */
}

.bottom {
	margin: 15px 0px;
	background-color: #FFFFFF;
	padding: 30px;
	display: flex;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-break: break-word;
	line-height: 1.7;
}

.left {
	background-color: #0099DD;
	width: 50%;
	box-sizing: border-box;
	min-width: 0;
}

.right {
	background-color: #D3A4FF;
	width: 50%;
	box-sizing: border-box;
	min-width: 0;
}
