* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a{
	 text-decoration: none;  /* 移除下划线 */
	    color: inherit;        /* 继承父元素颜色 */
	    outline: none;  
}
html, body {
	overflow-x: hidden;
}
body {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
	font-family: Arial, sans-serif;
}

.box {
	width: 100%;
	margin: 0 auto;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.6);
}

/* 导航栏 - Flex 布局 */
.nav {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-shrink: 0;
	padding: 0 20px;
}

/* Logo 区域 */
.nav-logo {
	flex-shrink: 0;
}

.nav-logo img {
	height: 50px;
	width: auto;
	display: block;
}

/* 导航菜单 */
.nav-menu {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.nav-menu li {
	list-style: none;
}

.nav-menu li a {
	/* font-family: ; */
	font-size: 20px;
	text-decoration: none;
	color: #919191;
	display: block;
	padding: 20px clamp(20px, 4vw, 90px);
	text-align: center;
	transition: all 0.3s ease;
}

/* 各导航项悬停效果 */

.nav-menu li.gold a:hover { background: #FFCC33; color: #FFFFFF; }
.nav-menu li.wood a:hover { background: rgba(108, 168, 125, 0.5); color: #FFFFFF; }
.nav-menu li.water a:hover { background: rgba(135, 206, 250, 0.5); color: #ffffff; }
.nav-menu li.fire a:hover { background: rgba(204, 96, 96, 0.5); color: #fff; }
.nav-menu li.dirt a:hover { background: #D3A4FF; color: #ffffff; }
.nav-menu li.pink a:hover { background: #ffc0cb; color: #FFFFFF; }
/* 左边内容 */
.content {
	float: left;
	width: 500px;
	text-align: center;
	margin-top: 150px;
}

.content .title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #6ca97d;
}

.content .text {
	margin-left: 30px;
	margin-bottom: 40px;
	font-size: 14px;
	color: #919191;
	line-height: 20px;
}

.content .btn p {
	display: inline-block;
	border: 0.5px #c1c1c1 solid;
	border-radius: 50px;
	box-shadow: 0 0 3px #a1a1a1;
}

.content a {
	font-weight: bold;
	padding: 10px 40px;
	color: #6ca97d;
	text-decoration: none;
	display: block;
	border-radius: 50px;
}

.content a:hover {
	background: #6ca97d;
	color: #fff;
}

.content ul {
	margin-top: 10px;
}

.content li {
	list-style: none;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	border: #6ca97d 1px solid;
}

.content .point {
	background: #6ca97d;
}

/* 右边图片盒子 */
.img {
	float: right;
	width: 500px;
	text-align: center;
	margin-top: 100px;
	position: relative;
}

.img img {
	width: 90%;
	box-shadow: 0 0 10px #919191;
}

.img-mask {
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	bottom: 0;
	background: #C1C1C144;
	transition: 1s;
}

.img-mask:hover {
	background: #fff0;
}

/* 音乐 */
.audio {
	margin-top: -370px;
	clear: both;
	float: right;
}

.clear {
	margin-top: 430px;
	clear: both;
	width: 100%;
	height: 120px;
}

.clear p {
	color: #919191;
	font-size: 14px;
	text-align: right;
}

.clear ul {
	line-height: 35px;
	text-align: right;
	padding-right: 50px;
}

.clear li {
	height: 100%;
	list-style: none;
	display: inline-block;
	color: #F1F1F1;
	font-size: 13px;
	color: #919191;
}

.clear li img {
	margin-right: 10px;
	margin-left: 10px;
	width: 16px;
}

li {
	list-style: none;
}

/* 侧边导航菜单 */
.navigation {
	width: 120px;
	position: fixed;
	left: 30px;
	top: 350px;
	z-index: 1000;
	background: #2c3e50;
	border-radius: 8px;
	padding: 0;
	list-style: none;
}

.navigation>li {
	position: relative;
	line-height: 50px;
	width: 100%;
	border-bottom: 1px solid #34495e;
}

.navigation>li:last-child {
	border-bottom: none;
}

.navigation li a {
	display: block;
	color: #ecf0f1;
	text-decoration: none;
	padding: 0 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.navigation li a:hover {
	background: #34495e;
	color: #3498db;
}

/* 有二级菜单的项添加箭头 */
.navigation>li:has(> .two)>a::after {
	content: "›";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #bdc3c7;
	transition: transform 0.3s ease;
}

/* 有三级菜单的二级项添加箭头 */
.two>li:has(> .three)>a::after {
	content: "›";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	font-size: 16px;
	color: #7f8c8d;
	transition: transform 0.3s ease;
}

/* 菜单展开时箭头旋转 */
.navigation>li>a.active::after {
	transform: translateY(-50%) rotate(90deg);
	color: #3498db;
}

.two>li>a.active::after {
	transform: translateY(-50%) rotate(90deg);
	color: #3498db;
}

/* 二级菜单样式 */
.navigation .two {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	width: 120px;
	background: #34495e;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 0 8px 8px 0;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.navigation .two li {
	position: relative;
	border-bottom: 1px solid #2c3e50;
	line-height: 45px;
}

.navigation .two li:last-child {
	border-bottom: none;
}

.navigation .two li a {
	color: #bdc3c7;
	font-size: 14px;
}

.navigation .two li a:hover {
	background: #2c3e50;
	color: #3498db;
}

/* 三级菜单样式 */
.navigation .three {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	width: 120px;
	background: #2c3e50;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 0 8px 8px 0;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 20;
}

.navigation .three li {
	border-bottom: 1px solid #34495e;
	line-height: 40px;
}

.navigation .three li:last-child {
	border-bottom: none;
}

.navigation .three li a {
	color: #95a5a6;
	font-size: 13px;
}

.navigation .three li a:hover {
	background: #34495e;
	color: #3498db;
}

/* 激活状态 */
.navigation .two.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

.navigation .three.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateX(-10px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.has-submenu>a::after {
	content: "›";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #bdc3c7;
	transition: transform 0.3s ease;
}

.has-submenu>a.active::after {
	transform: translateY(-50%) rotate(90deg);
	color: #3498db;
}

/* TOP按钮 */
.to_top {
	/* position: fixed; */
	/* right: 20px; */
	/* top: 50%; */
	/* background-color: rgba(127, 255, 212, 0.8); */
	/* width: 50px; */
	/* height: 50px; */
	/* border-radius: 50%; */
	cursor: pointer;
	/* border: none; */
	text-align: center;
	color: #333;
	font-weight: bold;
	z-index: 1001;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.to_top:hover {
	/* background-color: aquamarine;
				transform: scale(1.1); */
	color: #007bff;
}

/* 轮播图样式 */
.carousel-section {
	position: relative;
	height: 360px;
	width: 650px;
	border: 1px solid #ddd;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-container {
	position: relative;
	height: 100%;
	width: 100%;
}

.carousel-img {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	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 {
	width: 100%;
	display: flex;
	margin-top: 20px;
	min-height: 600px;
	padding-left: 2%;
}

.left {
	width: 8%;
	min-height: 100px;
	/* background-color: aqua; */
}

.middle {
	width: 85%;
	height: 100%;
	margin: auto;
	/* display: flex; */
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px;
	background-color: #F0F0F0;
}

.right {
	position: absolute;
	width: 5%;
	min-height: 100px;
	/* background-color: blanchedalmond; */
}

/* 文字内容区域 */
.text-content {
	float: left;
	width: 650px;
	padding: 105.2px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 70px;
}

.text-item {
	display: none;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	text-align: center;
	opacity: 0;
	transition: opacity 5s ease-in-out;
	/* 增加文字切换时间 */
}

.text-item.active {
	display: block;
	opacity: 1;
	animation: fadeIn 1.5s ease;
	/* 增加文字动画时间 */
}

.carousel-area {
	float: right;
	width: 45%;
}

.img-role:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.img-role {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 280px;
	text-align: center;
	background-color: azure;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.img-role > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.img-role img {
	width: 110px;
	height: 110px;
	max-width: 110px;
	flex: 0 0 130px;
	display: block;
	margin: 8px auto 14px;
	object-fit: contain;
	object-position: center;
	transform: scale(1.35);
	transform-origin: center center;
}

.img-role span {
	margin-top: 10px;
	width: 100%;
	word-wrap: break-word;
	font-size: 14px;
	text-align: left;
	line-height: 1.4;
}

.top {
	width: 100%;
	display: block;
	height: 350px;
}

.role {
	width: 100%;
	min-height: 600px;
	background-color: #fff;
	display: flex;
	margin-top: 50px;
	clear: both;
	flex-direction: column;
}

.role-title {
	display: block;
	align-items: center;
	width: 100%;
	padding: 10px 20px;
	margin-top: 20px;
}

.role-title h3 {
	margin: 0;
	margin-right: 15px;
	white-space: nowrap;
}

.role-title hr {
	flex: 1;
	margin: 0;
	border: none;
	border-top: 1px solid #000;
}

.str-role {
	display: flex;
	width: 100%;
	min-height: 476px; /* 设置固定高度或最小高度 */
	 align-items: stretch; /* 关键：让所有卡片等高 */
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	/* padding: 20px; */
	margin:50px 0px;
}

.table {
	/* 尺寸定位 */
	width: 95px;
	height: 400px;
	position: fixed;
	right: 0px;
	top: 300px;

	/* 边框样式 */
	border: 1px solid black;
	border-collapse: collapse;
	/* 文字样式 */
	font-size: 95%;
	line-height: 1.42857143;
	font-family: sans-serif;
	direction: ltr;
	font-weight: bold;
	/* 布局控制 */
	overflow: hidden;
	zoom: 1;
	/* 兼容IE */

	/* 可选：添加背景和阴影美化 */
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	/* 轻微圆角 */
	font-size: 14px;
}

.table td {
	border: 1px solid black;
	padding: 8px 12px;
	text-align: center;
}

/* 可选：斑马纹效果 */
.table tr:nth-child(even) {
	background-color: #f9f9f9;
}

.table tr:hover {
	background-color: #f0f0f0;
}

.table a.smooth-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;

	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.table a.smooth-link:hover {
	background-color: #f0f0f0;
	color: #007bff;
}

/* 确保表格单元格有合适的样式 */
.table td {
	padding: 0;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.table td:hover {
	background-color: #f8f9fa;
}

button{
	all: unset;
	
}

.mini-button{
	cursor: pointer;
	position: fixed;
	right: 20px;
	top: 800px;
}
.card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
	width: 280px;
}
.img-role .card-content {
	flex: 1;
	margin-top: 10px;
	width: 100%;
	word-wrap: break-word;
	font-size: 14px;
	text-align: left;
	line-height: 1.4;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.img-role .card-content p:last-child {
	flex: 1;
	overflow-y: auto;
	margin-bottom: 0;
	max-height: 200px;
}
.img-role .card-content p:last-child::-webkit-scrollbar { width: 4px; }
.img-role .card-content p:last-child::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 2px; }
.img-role .card-content p:last-child::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 2px; }

.str-role .img-role {
	height: 500px;
	overflow: hidden;
}
.str-role .img-role img {
	width: 110px;
	height: 110px;
	max-width: 110px;
	flex-basis: 130px;
	object-fit: contain;
	object-position: center;
	display: block;
	transform: scale(1.35);
}

/* ========================================
   手机端适配 (屏幕宽度 ≤ 768px)
   ======================================== */
@media screen and (max-width: 768px) {

	/* 导航栏 - 垂直排列，缩小间距 */
	.nav {
		flex-direction: column;
		padding: 10px;
		gap: 10px;
	}

	.nav-logo img {
		height: 36px;
	}

	.nav-menu {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
	}

	.nav-menu li a {
		font-size: 14px;
		padding: 10px 16px;
	}

	/* 主布局 */
	.main {
		flex-direction: column;
		padding-left: 0;
	}

	.middle {
		width: 100%;
		padding: 10px;
	}

	/* 顶部区域 - 左右并排 */
	.top {
		height: auto;
		display: flex;
		flex-direction: row;
		align-items: stretch;
		gap: 10px;
	}

	/* 文字区域 */
	.text-content {
		float: none;
		flex: 1;
		width: auto;
		min-height: auto;
		padding: 10px;
		margin-left: 0;
		margin-bottom: 0;
	}

	.text-item {
		font-size: 11px;
		line-height: 1.5;
	}

	.text-item h3 {
		font-size: 13px;
	}

	/* 轮播图区域 */
	.carousel-area {
		float: none;
		flex: 1;
		width: auto;
	}

	.carousel-section {
		width: 100%;
		height: 180px;
	}

	.carousel-img {
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: cover;
	}

	.nav-btn {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.nav-btn .iconfont {
		font-size: 14px;
	}

	/* 专区标题 */
	.role {
		min-height: auto;
		margin-top: 30px;
	}

	.role-title h3 {
		font-size: 16px;
		white-space: normal;
	}

	/* 角色卡片 - 单列 */
	.str-role {
		gap: 15px;
		margin: 20px 0;
	}

	.img-role {
		width: 100%;
		max-width: 360px;
	}

	.str-role .img-role {
		height: auto;
		max-width: 100%;
	}

	.str-role .img-role img {
		width: 100px;
		height: 100px;
		max-width: 100px;
		flex-basis: 120px;
		object-fit: contain;
		transform: scale(1.3);
	}

	.card-link {
		width: 100%;
		max-width: 360px;
	}

	/* 右侧导航 - 移动端隐藏 */
	.right {
		display: none;
	}

	.table {
		display: none;
	}

	/* 音乐按钮 */
	.mini-button {
		position: fixed;
		right: 10px;
		bottom: 20px;
		top: auto;
		z-index: 999;
	}

	.mini-button img {
		width: 40px;
		height: 40px;
	}

	/* 底部备案 */
	hr + p {
		font-size: 11px !important;
		padding: 0 10px;
	}

	/* 侧边导航菜单 - 移动端隐藏 */
	.navigation {
		display: none;
	}
}

/* ========================================
   平板端适配 (769px ~ 1024px)
   ======================================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {

	.nav {
		gap: 16px;
		padding: 0 14px;
	}

	.nav-logo img {
		height: 44px;
	}

	.nav-menu {
		justify-content: flex-end;
		flex-wrap: nowrap;
	}

	.nav-menu li a {
		padding: 15px clamp(18px, 4vw, 32px);
		font-size: 17px;
	}

	.middle {
		width: 95%;
		padding: 15px;
	}

	.text-content {
		float: none;
		flex: 1;
		width: auto;
		padding: 20px;
		margin-left: 0;
		margin-bottom: 0;
		min-height: auto;
		font-size: 14px;
	}

	.carousel-area {
		float: none;
		flex: 1;
		width: auto;
	}

	.carousel-section {
		width: 100%;
		height: 280px;
	}

	.carousel-img {
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: cover;
	}

	.top {
		height: auto;
		display: flex;
		flex-direction: row;
		align-items: stretch;
		gap: 15px;
	}

	.img-role {
		width: 260px;
	}

	.str-role .img-role img {
		width: 108px;
		height: 108px;
		max-width: 108px;
		flex-basis: 128px;
		object-fit: contain;
		transform: scale(1.35);
	}

	.str-role {
		gap: 20px;
	}

	.right {
		display: none;
	}

	.table {
		display: none;
	}
}

/* 首页图片强制修正：避免共享响应式规则或缓存旧样式导致图片不变化 */
.box .main .middle .top .carousel-area .carousel-section .carousel-container .carousel-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center center !important;
}

.box .main .middle .role .str-role .img-role > a > img,
.box .main .middle .role .str-role .img-role > img {
	width: auto !important;
	height: 360px !important;
	max-width: 100% !important;
	flex: 0 0 360px !important;
	margin: 6px auto 8px !important;
	object-fit: contain !important;
	object-position: center center !important;
	transform: none !important;
	transform-origin: center center !important;
}

.box .main .middle .role .str-role .img-role {
	height: 500px !important;
	overflow: hidden !important;
}

.box .main .middle .role .str-role .img-role span {
	margin-top: 0 !important;
	overflow: hidden !important;
}

.box .main .middle .role .str-role .img-role span p {
	margin: 2px 0 !important;
	line-height: 1.35 !important;
}

.box .main .middle .role .str-role .img-role span p:last-child {
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 3 !important;
	overflow: hidden !important;
}

#star-rail .str-role .img-role span p:last-child,
#zenless .str-role .img-role span p:last-child {
	display: block !important;
	-webkit-line-clamp: unset !important;
	max-height: none !important;
	overflow-y: visible !important;
	overflow-x: hidden !important;
}

#star-rail .str-role .img-role span p:last-child::-webkit-scrollbar,
#zenless .str-role .img-role span p:last-child::-webkit-scrollbar {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
}

#paper-bride .str-role .img-role > a > img,
#paper-bride .str-role .img-role > img {
	width: 88% !important;
	height: 360px !important;
	max-width: 88% !important;
	flex: 0 0 360px !important;
	margin: 6px auto 8px !important;
	object-fit: cover !important;
	object-position: top center !important;
	transform: none !important;
}

#paper-bride .str-role .img-role span {
	overflow: visible !important;
	font-size: 13px !important;
	line-height: 1.28 !important;
}

#paper-bride .str-role .img-role span p {
	margin: 1px 0 !important;
}

#paper-bride .str-role .img-role span p:last-child {
	display: block !important;
	-webkit-line-clamp: unset !important;
	overflow: visible !important;
}

#arknights .str-role .img-role > a > img,
#arknights .str-role .img-role > img {
	width: auto !important;
	height: 360px !important;
	max-width: 82% !important;
	flex: 0 0 360px !important;
	margin: 6px auto 8px !important;
	object-fit: contain !important;
	object-position: center center !important;
	transform: none !important;
}

#arknights .str-role .img-role span {
	overflow: visible !important;
	font-size: 13px !important;
	line-height: 1.28 !important;
}

#arknights .str-role .img-role span p {
	margin: 1px 0 !important;
}

#arknights .str-role .img-role span p:last-child {
	display: block !important;
	-webkit-line-clamp: unset !important;
	overflow: visible !important;
}

@media screen and (max-width: 768px) {
	.box .main .middle .role .str-role .img-role > a > img,
	.box .main .middle .role .str-role .img-role > img {
		width: auto !important;
		height: 260px !important;
		max-width: 100% !important;
		flex-basis: 260px !important;
		margin-top: 6px !important;
		transform: none !important;
	}

	#star-rail .str-role .img-role span p:last-child,
	#zenless .str-role .img-role span p:last-child {
		max-height: none !important;
	}

	#paper-bride .str-role .img-role > a > img,
	#paper-bride .str-role .img-role > img {
		width: 88% !important;
		height: 260px !important;
		max-width: 88% !important;
		flex-basis: 260px !important;
		margin-top: 6px !important;
		object-fit: cover !important;
		object-position: top center !important;
	}

	#arknights .str-role .img-role > a > img,
	#arknights .str-role .img-role > img {
		width: auto !important;
		height: 260px !important;
		max-width: 82% !important;
		flex-basis: 260px !important;
		margin-top: 6px !important;
		object-fit: contain !important;
		object-position: center center !important;
	}
}
