/* 基本样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	color: #333;
}
.fn-publicsy:hover {
	transition: all .5s;
	cursor: pointer;
	transform: translateY(-0.625rem)
}
/* 正常 */
.fn-publicImg img{
	transform: scale(1);
	transition: all .5s;
}
/* 放大10% */
.fn-publicImg img:hover {
  transform: scale(1.1);
  transition: all .5s;
}

.fn-Bg {
	background: #F8F8F8;
}

.container {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fn-navLouout {
	display: flex;
	align-items: center;
	justify-content: space-between;
}


input,
select {
	color: #999;
	outline: none;
}

header {
	background-color: #fff;
	/* background: rgba(0, 0, 0, 0.6); */
	height: 70px;
	/* padding: 10px 0 0 0; */
	position: relative;
	display: flex;
	align-items: center;
	transition: all 1s;
}

header a {
	color: #333;
}

.fn-headerBg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: #ffffff !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 1s;
}

.fn-headerBg a {
	color: #333;
	/* width: 94px; */
}

.fn-navActive::after {
	width: 100%;
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 2px;
	background: #235b8a;
	transition: width 0.3s;
}

.fn-navActive {
	color: #235b8a !important;
}

header img {
	width: 160px;
}
.fn-telLink{
	font-size: 18px;
	font-weight: bold;
	color: #235b8a;
	text-decoration: none;
	letter-spacing: 1px;
	white-space: nowrap;
}
.fn-telLink:hover{
	color: #1a4a73;
}
.fn-logo a{
	display: block;
	font-size: 26px;
	font-weight: bold;
	color: #235b8a;
	text-decoration: none;
	letter-spacing: 2px;
	line-height: 1.2;
}
.fn-slogan{
	display: block;
	font-size: 12px;
	font-weight: normal;
	color: #888;
	letter-spacing: 1px;
	margin-top: 2px;
}
nav {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
}

nav ul li {
	position: relative;
}

nav ul li a {
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	padding: 4px 10px;
	display: block;
	cursor: pointer;
	white-space: nowrap;
}

nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #235b8a;
	transition: width 0.3s;
}

nav ul li a:hover {
	color: #235b8a;
}

nav ul li a:hover::after {
	width: 100%;
}

.dropdown-login {
	z-index: 1002;
}

.login-dropbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	padding: 8px 18px;
	border: 1px solid #235b8a;
	border-radius: 999px;
	color: #235b8a;
	line-height: 1;
	transition: all 0.3s;
}

.login-dropbtn::after {
	display: none;
}

.login-dropbtn:hover {
	background: #235b8a;
	color: #fff;
}

.fn-headerBg .login-dropbtn {
	border-color: #235b8a;
	color: #235b8a;
}

.fn-headerBg .login-dropbtn:hover,
.login-dropbtn.is-open {
	border-color: #235b8a;
	background: #235b8a;
	color: #fff !important;
}


/* 下拉菜单样式 */
.dropdown-content {
	/* display: none; */
	position: absolute;
	background-color: #fff;
	width: 100%;
	left: 0;
	top: 100%;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	padding-top: 20px;
	height: 0;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}

.dropdown-contentBg {
	background-color: #ffffff !important;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.dropdown-contentBg a {
	color: #333 !important;
}

.dropdown-contentBg a:hover {
	color: #fff !important;
}

.dropdown-grid {
	width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
}

.dropdown-content a {
	color: #333;
	padding: 10px;
	text-decoration: none;
	display: block;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.dropdown-content a:hover {
	background-color: #235b8a;
}

/* 展开时的样式 */
.dropdown-content.show {
	/* display: block; */
	height: 100px;
	visibility: inherit;
	opacity: 1;
	transition: all 0.5s;
}

/* 小尺寸下拉（如“关于我们”二级菜单） */
.dropdown-content--mini {
	width: 160px;
	padding-top: 6px;
}
.dropdown-content--mini.show {
	height: auto;
}
.dropdown-content--mini a {
	text-align: left;
	border: none;
	border-bottom: 1px solid #f0f0f0;
	border-radius: 0;
	padding: 10px 16px;
}
.dropdown-content--mini a:last-child {
	border-bottom: none;
}

/* 桌面端下拉触发器箭头 */
nav ul li.dropdown > a.dropbtn {
	position: relative;
	padding-right: 16px;
}
nav ul li.dropdown > a.dropbtn::before {
	content: '\25BE';
	font-size: 10px;
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
}

.dropdown-content-login {
	width: 220px;
	height: auto;
	left: 50%;
	top: calc(100% + 14px);
	padding: 10px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 16px 36px rgba(22, 30, 54, 0.18);
	transform: translateX(-50%) translateY(10px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.dropdown-content-login.show {
	height: auto;
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.dropdown-loginList {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dropdown-content-login a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(243, 152, 0, 0.15);
	border-radius: 12px;
	background: #f0f5fa;
	text-align: left;
}

.dropdown-content-login a::after {
	display: none;
}

.dropdown-content-login a strong {
	color: #2f2f2f;
	font-size: 14px;
	line-height: 1.2;
}

.dropdown-content-login a:hover {
	background: #235b8a;
	border-color: #235b8a;
}

.dropdown-content-login a:hover strong {
	color: #fff;
}

.dropdown-content-login.dropdown-contentBg {
	background: rgba(255, 255, 255, 0.98) !important;
	box-shadow: 0 16px 36px rgba(22, 30, 54, 0.18);
}

.dropdown-content-login.dropdown-contentBg a {
	color: inherit !important;
}

.dropdown-content-login.dropdown-contentBg a strong {
	color: #2f2f2f !important;
}

.dropdown-content-login.dropdown-contentBg a:hover strong {
	color: #fff !important;
}

/* 其他部分保持不变 */
.hero {
	/* background-color: #f4f4f4; */
	padding: 50px 0;
	text-align: center;
}

.fn-container {
	width: 1200px;
	margin: auto;
}

@keyframes fnSkeletonShimmer {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

.fn-skeleton {
	position: relative;
	overflow: hidden;
	background: #e9edf3;
}

.fn-skeleton::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(233, 237, 243, 0) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(233, 237, 243, 0) 100%);
	animation: fnSkeletonShimmer 1.6s ease-in-out infinite;
}

.fn-skeletonLine {
	display: block;
	height: 12px;
	border-radius: 999px;
	background: #e9edf3;
}

.fn-skeletonLine + .fn-skeletonLine {
	margin-top: 10px;
}

.fn-errorState {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(22, 30, 54, 0.08);
}

.fn-errorState img {
	display: block;
	width: min(420px, 100%);
	height: auto;
}

/* .hero h2 {
	background: linear-gradient(to right, #235b8a, #e33208);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 36px;
	margin-bottom: 10px;
} */


section {
	padding: 50px 0;
}

h2 {
	font-size: 28px;
}

footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 50px 0 20px 0;
}

footer p {
	margin: 0;
}

.fn-footContent {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #d0d0d0;
	position: relative;
}

.fn-footContent h3 {
	text-align: left;
	position: absolute;
	top: 0;
}

.foot-left {
	text-align: left;
}

.foot-left,
.foot-right ul {
	line-height: 30px;
}

.foot-rightLi {
	display: flex;
	flex-wrap: wrap;
	/* gap: 0.6rem; */
	width: 170px;
}

.foot-rightLi li {
	margin-right: 14px;
}

.foot-copy {
	text-align: center;
	font-size: 13px;
	color: #d0d0d0;
	/*margin-top: 40px;*/
}

.foot-copy a {
	color: #d0d0d0;
	text-decoration: none;
}

.fn-footContent ul {
	list-style: none;
	height: 160px;
	font-size: 14px;
}

.fn-footContent>div>p {
	width: 38px;
	height: 2px;
	background: #235b8a;
	margin: 28px 0 14px 0;
}

.foot-meta {
	display: flex;
	height: 160px;
	font-size: 14px;
}

.foot-meta img {
	width: 136px;
	height: 136px;
}

.super-code:last-of-type {
	margin-left: 20px;
}

/* 轮播图容器 */
.hero {
	position: relative;
	/* height: 600px;
	overflow: hidden; */
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	position: relative;
	text-align: center;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fn-statistics {
	display: flex;
	align-items: center;
	justify-content: space-around;
}


/* 定义动画关键帧 */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		transform: scale(1.1);
	}

	to {
		transform: scale(1);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* 图片缩放动画 */
.swiper-slide-active .slide-image {
	animation: scaleIn 2s linear forwards;
}

.fn-guidance {
	position: fixed;
	z-index: 2;
	right: 0;
}








.fn-guidanceCon {
	width: 90px;
	height: 75px;
	text-align: center;
	margin-left: -10px;
	position: relative;
	font-size: 14px;
	display: block;
	cursor: pointer;
	color: #333;
}

.fn-guidanceCon p {
	font-size: 14px;
}



/* 侧边导航栏样式 */
.side-navCon {
	padding: 0;
}

.side-nav {
	position: fixed;
	right: 0;
	top: 60%;
	transform: translateY(-50%);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
	/* padding: 15px 0 15px 15px; */
	background: #fff;
	border-radius: 8px 0 0 8px;
	box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
}

/* 导航项 */
.nav-item {
	position: relative;
	width: 60px;
	height: 60px;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: all 0.3s;
	background: #235b8a;
	border-radius: 6px;
	margin: 10px auto;
}

.nav-item:hover {
	background: #1a4a73;

}

.nav-item i {
	color: white;
	font-size: 24px;
}

.fn-top {
	display: none;
}

.fn-code {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 4px;
	height: 34px;
}

.fn-codeIpt {
	border: none !important;
	border-right: 1px solid #ccc !important;
	border-radius: revert !important;
	width: 50% !important;
	padding: 6px 8px !important;
}

.fn-getCode {
	width: 50%;
	text-align: center;
	cursor: pointer;
}

/* 内容面板 */
.nav-content {
	position: fixed;
	right: 75px;
	top: 50%;
	transform: translateY(-50%);
	width: 240px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 20px;
	z-index: 999;
	text-align: center;
}

.nav-content.active {
	opacity: 1;
	visibility: visible;
}

/* 连接线 */
.nav-item::after {
	content: '';
	position: absolute;
	right: -25px;
	top: 50%;
	width: 25px;
	height: 2px;
	background: #235b8a;
	opacity: 0;
	transition: opacity 0.3s;
}

.nav-item:hover::after {
	opacity: 0;
}

/* 内容区样式 */
.nav-content h3 {
	color: #333;
	margin-bottom: 15px;
	font-size: 18px;
	border-bottom: 2px solid #235b8a;
	padding-bottom: 8px;
}

/* 费用计算器样式 */
.calculator input,
.country-select {
	width: 100%;
	padding: 8px;
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.result {
	color: #235b8a;
	font-weight: bold;
	margin: 15px 0;
}

.btn {
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.2s;
}

.btn:active {
	transform: scale(0.95);
}

.btn-detail {
	background: #235b8a;
	color: white;
	margin-top: 10px;
}



/* 弹框样式 */
.consult-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}

.modal-content {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 400px;
	background: #fff;
	max-width: 400px;
	padding: 25px;
	border-radius: 8px;
	animation: modalShow 0.3s;
}

.modal-content h3 {
	margin-bottom: 25px;
}

@keyframes modalShow {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}

h3 {
	color: #235b8a;
	/* margin-bottom: 25px; */
	text-align: center;
}

.form-group {
	margin-bottom: 20px;
}


input,
select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.code-input {
	display: flex;
	gap: 10px;
}

#code {
	flex: 1;
}

.error-tip {
	position: absolute;
	left: 10px;
	color: #ff4d4d;
	height: 20px;
	line-height: 20px;
	margin-top: 4px;
	text-align: left;
	bottom: -24px;
}

.submit-btn {
	width: 100%;
	background: #235b8a;
	color: white;
	padding: 12px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	margin-top: 15px;
	font-size: 16px;
}


/* 鼠标经过按钮样式 */
.btn4 {
	border: 1px solid #d0d0d0;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.btn4:hover {
	color: #fff;
}

.btn4 .btnbg-x {
	background: #235b8a;
	border-radius: 20px;
	position: absolute;
	z-index: -1;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	opacity: 0;
	*filter: alpha(opacity=0);
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}

.btn4:hover .btnbg-x {
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	opacity: 1;
	*filter: alpha(opacity=100);
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.btn4 span {
	position: relative;
	z-index: 1;
}

.btn12 {
	border: 1px solid #d0d0d0;
	position: relative;
	overflow: hidden;
	-webkit-transition: all .6s;
	transition: all .6s;
}

/* .btn12:hover {
	color: #fff !important;
	border-color: #235b8a;
} */

.btn12 .bgsqr1,
.btn12 .bgsqr2 {
	background: #235b8a;
	position: absolute;
	top: 50%;
	top: 0\9;
	content: '';
	width: 20px;
	height: 20px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
	opacity: 0.5;
}

.btn12 .bgsqr1 {
	left: -20px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.btn12 .bgsqr2 {
	right: -20px;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}

.btn12:hover .bgsqr1 {
	-webkit-animation: criss-cross-left .8s both;
	animation: criss-cross-left .8s both;
	width: 375px\9;
	height: 375px\9;
	opacity: 1;
}

.btn12:hover .bgsqr2 {
	-webkit-animation: criss-cross-right .8s both;
	animation: criss-cross-right .8s both;
	width: 375px\9;
	height: 375px\9;
	opacity: 1;
}

.btn12 span {
	position: relative;
	z-index: 1;
}

@-webkit-keyframes criss-cross-left {
	0% {
		left: -20px
	}

	50% {
		left: 50%;
		width: 20px;
		height: 20px;
	}

	100% {
		left: 50%;
		width: 375px;
		height: 375px;
	}
}

@keyframes criss-cross-left {
	0% {
		left: -20px
	}

	50% {
		left: 50%;
		width: 20px;
		height: 20px;
	}

	100% {
		left: 50%;
		width: 375px;
		height: 375px;
	}
}

@-webkit-keyframes criss-cross-right {
	0% {
		right: -20px
	}

	50% {
		right: 50%;
		width: 20px;
		height: 20px;
	}

	100% {
		right: 50%;
		width: 375px;
		height: 375px;
	}
}

@keyframes criss-cross-right {
	0% {
		right: -20px
	}

	50% {
		right: 50%;
		width: 20px;
		height: 20px;
	}

	100% {
		right: 50%;
		width: 375px;
		height: 375px;
	}
}

ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.btn14 {
	border: 1px solid #d0d0d0;
	position: relative;
	color: #666;
	overflow: hidden;
	-webkit-transition: all .6s;
	transition: all .6s;
}

.btn14:hover {
	color: #fff !important;
	border-color: #083A76;
}

.btn14 .bgsqr1,
.btn14 .bgsqr2,
.btn14 .bgsqr3,
.btn14 .bgsqr4 {
	background: #083A76;
	position: absolute;
	top: 0;
	width: 0px;
	height: 100%;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	opacity: 0.35;
}

.btn14 .bgsqr3,
.btn14 .bgsqr4 {
	opacity: 0.75;
}

.btn14 .bgsqr1 {
	left: 0;
}

.btn14 .bgsqr2 {
	right: 0
}

.btn14 .bgsqr3 {
	right: 0;
}

.btn14 .bgsqr4 {
	left: 0;
}

.btn14:hover .bgsqr1,
.btn14:hover .bgsqr2,
.btn14:hover .bgsqr3,
.btn14:hover .bgsqr4 {
	width: 100%;
}

.btn14:hover .bgsqr3,
.btn14:hover .bgsqr4 {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}

.btn14 span {
	position: relative;
	z-index: 1;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	zoom: 1;
}

.btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 20px;
	text-decoration: none;
	position: relative;
	color: #235b8a;
	border-radius: 20px;
	border: 1px solid #235b8a;
}

[v-cloak] {
	display: none !important;
}




.pic-3d {
	-webkit-perspective: 500;
	-moz-perspective: 500;
	-o-perspective: 500;
	-ms-perspective: 500;
	perspective: 500;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.pic {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	display: inline-block;
	margin-top: 30px;
	-webkit-animation: anima 2s;
	-moz-animation: anima 2s;
	-o-animation: anima 2s;
	-ms-animation: anima 2s;
	animation: anima 2s;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden
}

.pic-caption {
	cursor: default;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 10px;
	text-align: center;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=($opacity * 100))";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0
}

.pic-image {

	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.pic:hover .pic-image {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

a,
a:hover,
.pic .pic-image,
.pic-caption,
.pic:hover .pic-caption,
.pic:hover img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease
}

.pic:hover .bottom-to-top,
.pic:hover .top-to-bottom,
.pic:hover .left-to-right,
.pic:hover .right-to-left,
.pic:hover .rotate-in,
.pic:hover .rotate-out,
.pic:hover .open-up,
.pic:hover .open-down,
.pic:hover .open-left,
.pic:hover .open-right,
.pic:hover .come-left,
.pic:hover .come-right {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=($opacity * 100))";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-moz-touch-callout: none;
	-o-touch-callout: none;
	-ms-touch-callout: none;
	touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	-moz-tap-highlight-color: transparent;
	-o-tap-highlight-color: transparent;
	-ms-tap-highlight-color: transparent;
	tap-highlight-color: transparent
}

.come-right {
	-webkit-transform: rotateY(-90deg) rotateX(-90deg);
	-moz-transform: rotateY(-90deg) rotateX(-90deg);
	-o-transform: rotateY(-90deg) rotateX(-90deg);
	-ms-transform: rotateY(-90deg) rotateX(-90deg);
	transform: rotateY(-90deg) rotateX(-90deg);
	left: 0;
	top: 0
}

.pic:hover .come-right {
	-webkit-transform: rotateY(0) rotateX(0);
	-moz-transform: rotateY(0) rotateX(0);
	-o-transform: rotateY(0) rotateX(0);
	-ms-transform: rotateY(0) rotateX(0);
	transform: rotateY(0) rotateX(0)
}

.pic-title {
	font-size: 1.8em
}

.wrapper:before,
.wrapper:after {
	content: '';
	display: table;
	clear: both
}







:root {
	/* 日间模式变量 */
	--bg-color: #ffffff;
	--text-color: #333333;
	--primary-color: #2196f3;
	--transition-duration: 0.3s;
}

/* 夜间模式变量 */
.dark-mode {
	--bg-color: #1a1a1a;
	--text-color: #000;
	--primary-color: #4fc3f7;
}

body {
	background-color: var(--bg-color);
	color: var(--text-color);
	transition:
		background-color var(--transition-duration) ease,
		color var(--transition-duration) ease;
}

.theme-toggle {
	bottom: 30px;
	right: 30px;
	background: var(--primary-color);
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.theme-toggle i {
	font-size: 24px;
	color: white;
}

/* 隐藏默认图标 */
.theme-toggle .show-on-dark {
	display: none;
}

.dark-mode .theme-toggle .show-on-light {
	display: none;
}

.dark-mode .theme-toggle .show-on-dark {
	display: block;
}


/* 全国分校/集中式备考校区 */
.fn-areaMain {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	flex-wrap: wrap;
}

.fn-areaName {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	border-radius: 24px;
	flex: 0 0 24%;
	margin-top: 15px;
	height: 100px;
	line-height: 92px;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	cursor: pointer;
	transition: all 1s;
}

.fn-areaBg {
	height: 45px;
	background-image: url(../images/areaTitle.png);
	background-repeat: no-repeat;
	background-position: center;
}

.hover-effect4 {
	display: inline-block;
	perspective: 1000px;
}

.hover-effect4 span {
	display: inline-block;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.fn-areaName:hover span {
	transform: rotateX(360deg);
}

.fn-areaName:last-child {
	margin-right: auto;
}

.fn-areaName:nth-child(4n) {
	margin-right: 0;
}

.fn-preparationName {
	padding: 12px 50px;
}

.fn-address,
.fn-phone {
	display: flex;
	align-items: center;
}

.fn-address span,
.fn-phone span {
	margin-left: 8px;
	letter-spacing: 1px;
	text-indent: 1px;
}

.fn-addressCon {
	width: 100%;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 10px;
	margin-top: 30px;
}

.fn-addressName {
	color: #235b8a;
	font-size: 26px;
}

.fn-areaBtn {
	line-height: 24px;
}

.fn-addressLayout {
	width: 46%;
	text-align: left;
	line-height: 44px;
}

.fn-areaImage {
	width: 47%;
}

.fn-areaImage img {
	border-radius: 12px;
	width: 100%;
}

/* 南京校区单独展示模块（与首页一致） */
.fn-nanjingCampus .fn-nanjingTitle {
	font-size: 32px;
	color: #235b8a;
	text-align: center;
	font-weight: 700;
	margin: 0 0 30px;
	position: relative;
}
.fn-nanjingCampus .fn-nanjingTitle::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #235b8a;
	border-radius: 2px;
	margin: 14px auto 0;
}
@media (max-width: 768px) {
	.fn-nanjingCampus .fn-nanjingTitle { font-size: 24px; }
}

.fn-banner img {
	width: 100%;
	cursor: pointer;
}




.image-container {
	position: relative;
	overflow: hidden;
}

.image-container img {
	object-fit: cover;
	transition: transform 0.3s;
}

/* 默认显示的标题 */
.image-title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	margin: 0;
	z-index: 2;
	transition: all 0.3s;
}

/* 遮罩层 */
.mask {
	position: absolute;
	bottom: -100%;
	z-index: 99;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 20px;
	box-sizing: border-box;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 悬停效果 */
.image-container:hover .mask {
	bottom: 0;
}

.image-container:hover .image-title {
	opacity: 0;
	transform: translateY(20px);
}

.mask-content h3 {
	margin-top: 0;
}

.mask-content p {
	line-height: 1.5;
}
/* ========== 右侧悬浮导航栏（现代蓝白风格） ========== */
.fixed-nav {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 99;
	width: 100px;
	transform: translateY(-50%);
	transform-origin: right center;
}
.fixed-nav img{
	display: block;
	width: 100%;
}

.fixed-navInner {
	overflow: visible;
	width: 100%;
	padding: 20px 0 24px;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
	box-shadow:
		0 4px 6px rgba(35, 91, 138, 0.06),
		0 12px 36px rgba(35, 91, 138, 0.10);
	text-align: center;
	box-sizing: border-box;
	border: 1px solid rgba(35, 91, 138, 0.08);
}

.fixed-navLogo {
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(35, 91, 138, 0.08);
}

.fixed-navLogo img {
	display: block;
	width: 80%;
	margin: 0 auto;
	opacity: 0.92;
	transition: opacity .2s ease;
}

.fixed-navLogo:hover img {
	opacity: 1;
}

.fixed-navItem {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	margin-bottom: 4px;
	color: #235b8a;
	text-align: center;
	text-decoration: none;
	flex-direction: column;
	border-radius: 12px;
	transition: background-color .25s ease, transform .2s ease;
	cursor: pointer;
}

.fixed-navItem:last-child {
	margin-bottom: 0;
}

.fixed-navItem:hover {
	background-color: rgba(35, 91, 138, 0.06);
	transform: translateX(-2px);
}

/* 图标：支持 SVG（优先）及旧 PNG 兜底 */
.fixed-navItem .nav-iconSvg {
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 auto 8px;
	object-fit: contain;
	transition: transform .25s ease, color .2s ease;
	color: #7a8c9e;
}

.fixed-navItem:hover .nav-iconSvg {
	transform: translateY(-2px) scale(1.06);
	color: #235b8a;
}

.fixed-navItem img {
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 auto 8px;
	object-fit: contain;
	transition: transform .25s ease;
	opacity: 0.55;
}

.fixed-navItem:hover img {
	transform: translateY(-2px) scale(1.06);
	opacity: 0.75;
}

/* 文字标签 - 紧凑双行 */
.fixed-navItem span {
	display: block;
	color: #4a5568;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0;
	text-shadow: none;
	transition: color .2s ease;
}

.fixed-navItem:hover span {
	color: #235b8a;
}

/* 返回顶部按钮 */
.nav-item.fn-top {
	width: 48px;
	height: 48px;
	margin: 14px auto 0;
	padding: 0;
	background: linear-gradient(135deg, #235b8a 0%, #2d70b3 100%);
	border-radius: 14px;
	box-shadow: 0 4px 12px rgba(35, 91, 138, 0.30);
	display: grid;
	place-items: center;
	transition: transform .25s ease, box-shadow .25s ease;
	cursor: pointer;
}

.nav-item.fn-top:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(35, 91, 138, 0.40);
}

.nav-item.fn-top i {
	color: #fff;
	font-size: 22px;
	font-weight: bold;
}

/* IP 弹层 */
.fixed-ipPopover {
	position: absolute;
	right: calc(100% + 12px);
	top: -6px;
	min-width: 164px;
	max-width: 210px;
	padding: 12px 14px 13px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(35, 91, 138, 0.10);
	box-shadow: 0 10px 28px rgba(35, 91, 138, 0.14);
	color: #333;
	font-size: 13px;
	line-height: 1.35;
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	transform: translateX(8px) scale(0.96);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	pointer-events: none;
}

.fixed-ipPopover.is-active {
	display: block !important;
	opacity: 1;
	visibility: visible;
	transform: translateX(0) scale(1);
	pointer-events: auto;
}

.fixed-ipPopover::after {
	content: "";
	position: absolute;
	right: -6px;
	top: 18px;
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.98);
	border-top: 1px solid rgba(35, 91, 138, 0.10);
	border-right: 1px solid rgba(35, 91, 138, 0.10);
	transform: rotate(45deg);
}

.fixed-ipPopover p {
	margin: 0;
}

.fixed-ipPopover p + p {
	margin-top: 8px;
}

.fixed-ipPopover p {
	font-size: 12px;
	color: #666;
}

.fixed-ipPopover .fixed-ipValue,
.fixed-ipPopover .fixed-cityValue {
	display: block;
	margin-top: 2px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.08;
	color: #235b8a;
	letter-spacing: 0;
	word-break: break-word;
}

.fixed-ipPopover .fixed-cityValue {
	font-size: 20px;
}

.fixed-ipPopover .fixed-qrcodeImage {
	display: none;
	width: 112px;
	height: 112px;
	margin: 0 auto;
	object-fit: contain;
}

.fixed-ipPopover .fixed-qrcodeText {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.4;
	color: #666;
	text-align: center;
}

/* 公号弹层特殊：显示二维码 */
.fixed-navIpItem.is-qrcode .fixed-qrcodeImage {
	display: block;
}

/* 响应式 */
@media (max-width: 1440px) {
	.fixed-nav {
		right: 10px;
		width: 86px;
	}

	.fixed-navInner {
		padding: 16px 0 18px;
		border-radius: 14px;
	}

	.fixed-navLogo {
		margin-bottom: 14px;
		padding-bottom: 12px;
	}

	.fixed-navLogo img {
		width: 72px;
	}

	.fixed-navItem {
		padding: 8px 0;
		border-radius: 10px;
	}

	.fixed-navItem .nav-iconSvg,
	.fixed-navItem img {
		width: 40px;
		height: 40px;
		margin-bottom: 6px;
	}

	.fixed-navItem span {
		font-size: 12px;
	}

	.nav-item.fn-top {
		width: 40px;
		height: 40px;
		margin-top: 12px;
		border-radius: 12px;
	}

	.nav-item.fn-top i {
		font-size: 19px;
	}
}

@media (max-width: 1280px) {
	.fixed-nav {
		right: 8px;
		width: 76px;
	}

	.fixed-navInner {
		padding: 14px 0 16px;
	}

	.fixed-navLogo {
		margin-bottom: 12px;
		padding-bottom: 10px;
	}

	.fixed-navLogo img {
		width: 64px;
	}

	.fixed-navItem {
		padding: 6px 0;
	}

	.fixed-navItem .nav-iconSvg,
	.fixed-navItem img {
		width: 36px;
		height: 36px;
		margin-bottom: 5px;
	}

	.fixed-navItem span {
		font-size: 11px;
	}

	.nav-item.fn-top {
		width: 36px;
		height: 36px;
		margin-top: 10px;
		border-radius: 10px;
	}

	.nav-item.fn-top i {
		font-size: 17px;
	}
}

@media (max-width: 1024px) {
	.fixed-nav {
		display: none;
	}
}

.fixed-phoneModal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.46);
	z-index: 10000;
}

.fixed-phoneModal.is-active {
	display: flex;
}

.fixed-phoneDialog {
	position: relative;
	width: 430px;
	max-width: calc(100vw - 32px);
	padding: 34px 28px 28px;
	border-radius: 12px;
	background: linear-gradient(180deg, #f0f5fa 0%, #ffffff 48%, #fff 100%);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(245, 159, 0, 0.22);
}

.fixed-phoneDialog::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 6px;
	border-radius: 12px 12px 0 0;
	background: linear-gradient(90deg, #235b8a, #3a7bb5);
}

.fixed-phoneDesc {
	margin: -12px 0 18px;
	font-size: 13px;
	line-height: 1.5;
	color: #718096;
	text-align: center;
}

.fixed-phoneDialog h2,
.fixed-phoneTitle {
	display: block;
	width: auto;
	height: auto;
	margin: 0 0 22px;
	padding: 0;
	background: none;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: #222;
	text-align: center;
	letter-spacing: 0;
	text-indent: 0;
	overflow: visible;
	white-space: normal;
}

.fixed-phoneClose {
	position: absolute;
	right: 14px;
	top: 12px;
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.fixed-phoneClose::before,
.fixed-phoneClose::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 14px;
	width: 14px;
	height: 2px;
	background: #999;
	border-radius: 2px;
}

.fixed-phoneClose::before {
	transform: rotate(45deg);
}

.fixed-phoneClose::after {
	transform: rotate(-45deg);
}

.fixed-phoneField {
	display: flex;
	align-items: center;
	height: 46px;
	border: 1px solid #eadfce;
	border-radius: 7px;
	background: #fff;
	overflow: hidden;
}

.fixed-phoneIcon {
	width: 44px;
	color: #235b8a;
	font-size: 17px;
	text-align: center;
	flex: 0 0 auto;
}

.fixed-phoneMobileIcon {
	position: relative;
	height: 100%;
}

.fixed-phoneMobileIcon::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 13px;
	height: 20px;
	border: 2px solid #235b8a;
	border-radius: 4px;
	transform: translate(-50%, -50%);
}

.fixed-phoneMobileIcon::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 13px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #235b8a;
	transform: translateX(-50%);
}

.fixed-phoneInput,
.fixed-phoneCodeInput {
	width: 100%;
	height: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: #333;
	font-size: 14px;
}

.fixed-phoneInput::placeholder,
.fixed-phoneCodeInput::placeholder {
	color: #b7b7b7;
}

.fixed-phoneCodeRow {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.fixed-phoneCodeField {
	flex: 1;
	min-width: 0;
}

.fixed-phoneCodeBtn {
	width: 112px;
	height: 46px;
	border: 0;
	border-radius: 7px;
	background: #e8eef5;
	color: #1a4a73;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
}

.fixed-phoneCodeBtn:disabled {
	color: #999;
	background: #f1f1f1;
	cursor: not-allowed;
}

.fixed-phoneSubmit {
	width: 100%;
	height: 48px;
	margin-top: 14px;
	border: 0;
	border-radius: 7px;
	background: linear-gradient(90deg, #235b8a, #3a7bb5);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(245, 159, 0, 0.24);
}

.fixed-phoneSubmit:hover {
	background: linear-gradient(90deg, #1a4a73, #f8a80f);
}

.fixed-phoneSubmit:disabled {
	background: #d8d8d8;
	box-shadow: none;
	cursor: not-allowed;
}

.fixed-phoneMsg {
	min-height: 18px;
	margin: 4px 0 0 44px;
	color: #e34d4d;
	font-size: 12px;
	line-height: 18px;
	text-align: left;
}

.home-newsQrcodeModal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.46);
	z-index: 10000;
}

.home-newsQrcodeModal.is-active {
	display: flex;
}

.home-newsQrcodeDialog {
	position: relative;
	width: 360px;
	max-width: calc(100vw - 32px);
	padding: 34px 24px 24px;
	border-radius: 12px;
	background: linear-gradient(180deg, #f0f5fa 0%, #ffffff 48%, #fff 100%);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(245, 159, 0, 0.22);
}

.home-newsQrcodeDialog::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 6px;
	border-radius: 12px 12px 0 0;
	background: linear-gradient(90deg, #235b8a, #3a7bb5);
}

.home-newsQrcodeTitle {
	margin: 0 0 20px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: #222;
	text-align: center;
}

.home-newsQrcodeClose {
	position: absolute;
	right: 14px;
	top: 12px;
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.home-newsQrcodeClose::before,
.home-newsQrcodeClose::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 14px;
	width: 14px;
	height: 2px;
	background: #999;
	border-radius: 2px;
}

.home-newsQrcodeClose::before {
	transform: rotate(45deg);
}

.home-newsQrcodeClose::after {
	transform: rotate(-45deg);
}

.home-newsQrcodeCard {
	padding: 18px 16px;
	border-radius: 12px;
	background: #fff;
	text-align: center;
}

.home-newsQrcodeImage {
	display: none;
	width: 180px;
	height: 100px;
	margin: 0 auto;
	object-fit: contain;
}

.home-newsQrcodeText {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.5;
	color: #666;
	text-align: center;
}

.student-loginModal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.46);
	z-index: 10000;
}

.student-loginModal.is-active {
	display: flex;
}

.student-loginDialog {
	position: relative;
	width: 430px;
	max-width: calc(100vw - 32px);
	padding: 34px 28px 28px;
	border-radius: 12px;
	background: linear-gradient(180deg, #f0f5fa 0%, #ffffff 48%, #fff 100%);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(245, 159, 0, 0.22);
}

.student-loginDialog::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 6px;
	border-radius: 12px 12px 0 0;
	background: linear-gradient(90deg, #235b8a, #3a7bb5);
}

.student-loginTitle {
	margin: 0 0 22px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: #222;
	text-align: center;
}

.student-loginClose {
	position: absolute;
	right: 14px;
	top: 12px;
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.student-loginClose::before,
.student-loginClose::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 14px;
	width: 14px;
	height: 2px;
	background: #999;
	border-radius: 2px;
}

.student-loginClose::before {
	transform: rotate(45deg);
}

.student-loginClose::after {
	transform: rotate(-45deg);
}

.student-loginField {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.student-loginField + .student-loginField {
	margin-top: 10px;
}

.student-loginLabel {
	color: #333;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 600;
	text-align: left;
}

.student-loginInput,
.student-loginSelect {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	border: 1px solid #eadfce;
	border-radius: 7px;
	outline: 0;
	background: #fff;
	color: #333;
	font-size: 14px;
	box-sizing: border-box;
}

.student-loginInput::placeholder {
	color: #b7b7b7;
}

.student-loginSelect {
	cursor: pointer;
}

.student-loginSubmit {
	width: 100%;
	height: 48px;
	margin-top: 14px;
	border: 0;
	border-radius: 7px;
	background: linear-gradient(90deg, #235b8a, #3a7bb5);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(245, 159, 0, 0.24);
}

.student-loginSubmit:hover {
	background: linear-gradient(90deg, #1a4a73, #f8a80f);
}

.student-loginMsg {
	min-height: 18px;
	margin: 4px 0 0;
	color: #e34d4d;
	font-size: 12px;
	line-height: 18px;
	text-align: left;
}

.student-loginMsg.is-success {
	color: #1f8f45;
}

.fixed-phoneCodeMsg,
.fixed-phoneSubmitMsg {
	margin-left: 0;
}

/* ===== 渐变文字（首页 / 雅思等页面） ===== */
.home-gradient-text {
	font-size: 46px;
	font-weight: 1000;
	background: linear-gradient(92deg, #95b6d7, #0d497f);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.gradient-text {
	font-size: 55px;
	font-weight: bold;
	background: linear-gradient(90deg, #0738bd, #00ccff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.fixed-phoneMsg.is-success {
	color: #30a46c;
}

.fixed-phoneTip {
	margin: 8px 0 0;
	color: #666;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
	white-space: nowrap;
}

.fixed-phoneTipIcon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	border-radius: 50%;
	background: #666;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	vertical-align: 1px;
}

@media (max-width: 480px) {
	.fixed-phoneDialog {
		padding: 30px 20px 24px;
	}

	.fixed-phoneTip {
		white-space: normal;
	}

	.fixed-phoneCodeBtn {
		width: 98px;
	}
}

.global-endorse-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.global-endorse-carousel.is-loading {
	min-height: 320px;
	border-radius: 8px;
	background: #e9edf3;
}

.global-endorse-carousel.is-loading::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(233, 237, 243, 0) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(233, 237, 243, 0) 100%);
	animation: fnSkeletonShimmer 1.6s ease-in-out infinite;
}

.global-endorse-carousel.is-loading > img {
	opacity: 0.35;
}

.global-endorse-carousel.is-ready {
	aspect-ratio: 1200 / 420;
	border-radius: 8px;
	background: #f7f7f7;
}

.global-endorse-swiper {
	position: relative;
	width: 100%;
	height: 100%;
}

.global-endorse-slide {
	height: 100%;
}

.global-endorse-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.global-endorse-pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px !important;
	z-index: 2;
}

.global-endorse-pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: rgba(255, 255, 255, 0.65);
	opacity: 1;
	transition: width 0.2s ease, background 0.2s ease;
}

.global-endorse-pagination .swiper-pagination-bullet-active {
	width: 22px;
	border-radius: 999px;
	background: #235b8a;
}

@media (max-width: 768px) {
	.global-endorse-carousel.is-loading {
		min-height: 100px;
	}

	.global-endorse-carousel.is-ready {
		aspect-ratio: 16 / 7;
	}
}

/* ===== 右侧悬浮栏微信客服 hover 二维码 ===== */
.fixed-wechatItem {
	position: relative;
	cursor: pointer;
}

.fixed-wechatPopover {
	position: absolute;
	right: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%) translateX(8px) scale(0.96);
	min-width: 150px;
	max-width: 210px;
	padding: 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(35, 91, 138, 0.10);
	box-shadow: 0 10px 28px rgba(35, 91, 138, 0.14);
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	pointer-events: none;
}

.fixed-wechatPopover.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0) scale(1);
	pointer-events: auto;
}

.fixed-wechatPopover::after {
	content: "";
	position: absolute;
	right: -6px;
	top: 50%;
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.98);
	border-top: 1px solid rgba(35, 91, 138, 0.10);
	border-right: 1px solid rgba(35, 91, 138, 0.10);
	transform: translateY(-50%) rotate(45deg);
}

/* ===== 右侧悬浮栏在线测评侧边弹窗（左侧抽屉卡片，不影响滚动条） ===== */
.fixed-evalSideModal {
	position: fixed;
	right: 108px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fixed-evalSideModal.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.fixed-evalSidePanel {
	position: relative;
	width: 300px;
	max-width: calc(100vw - 96px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
	transform: translateX(-18px);
	transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
	overflow: hidden;
}

.fixed-evalSideModal.is-active .fixed-evalSidePanel {
	transform: translateX(0);
}

.fixed-evalSideHeader {
	position: relative;
	padding: 15px 42px 15px 20px;
	background: linear-gradient(90deg, #3eb7ff, #1e9aff);
	border-radius: 12px 12px 0 0;
}

/* 指向右侧的箭头，贴合悬浮按钮 */
.fixed-evalSideHeader::after {
	content: "";
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 10px solid #1e9aff;
}

.fixed-evalSideHeader h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	letter-spacing: 0.5px;
}

.fixed-evalSideClose {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 2;
}

.fixed-evalSideClose::before,
.fixed-evalSideClose::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 12px;
	width: 14px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
}

.fixed-evalSideClose::before {
	transform: rotate(45deg);
}

.fixed-evalSideClose::after {
	transform: rotate(-45deg);
}

.fixed-evalSideBody {
	padding: 20px;
}

.fixed-evalSideField {
	display: flex;
	align-items: center;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.fixed-evalSideCodeRow {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.fixed-evalSideCodeField {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.fixed-evalSideField .fixed-phoneInput,
.fixed-evalSideCodeField .fixed-phoneCodeInput {
	width: 100%;
	height: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: #333;
	font-size: 13px;
}

.fixed-evalSideField .fixed-phoneInput::placeholder,
.fixed-evalSideCodeField .fixed-phoneCodeInput::placeholder {
	color: #bbb;
}

.fixed-evalSideCodeRow .fixed-phoneCodeBtn {
	width: 100px;
	height: 40px;
	border: 0;
	border-radius: 8px;
	background: #e8f6ff;
	color: #1e9aff;
	font-size: 12px;
	cursor: pointer;
	white-space: nowrap;
}

.fixed-evalSideCodeRow .fixed-phoneCodeBtn:disabled {
	color: #999;
	background: #f1f1f1;
	cursor: not-allowed;
}

.fixed-evalSideSubmit {
	width: 100%;
	height: 42px;
	margin-top: 16px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(90deg, #3eb7ff, #1e9aff);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(30, 154, 255, 0.26);
}

.fixed-evalSideSubmit:hover {
	background: linear-gradient(90deg, #1e9aff, #3eb7ff);
}

.fixed-evalSideSubmit:disabled {
	background: #d8d8d8;
	box-shadow: none;
	cursor: not-allowed;
}

.fixed-evalSideBody .fixed-phoneMsg {
	margin: 5px 0 0;
	min-height: 16px;
	font-size: 12px;
}

@media (max-width: 480px) {
	.fixed-evalSideModal {
		right: 92px;
	}

	.fixed-evalSidePanel {
		width: 260px;
		max-width: calc(100vw - 84px);
	}

	.fixed-evalSideHeader {
		padding: 14px 38px 14px 16px;
	}

	.fixed-evalSideHeader h2 {
		font-size: 15px;
	}

	.fixed-evalSideBody {
		padding: 16px;
	}

	.fixed-evalSideCodeRow .fixed-phoneCodeBtn {
		width: 90px;
		font-size: 12px;
	}
}
