.content-box {
	width: 100%;
	min-width: 750px;
	padding-left: 20px;
	padding-right: 20px;
}

.content {
	max-width: 1400px;
	min-width: 750px;
	margin: 0 auto;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.banner {
	padding-top: 5px;
}

/* toTop */
#toTop {
	background-color: rgba(0, 0, 0, 0.4);
	right: 20px;
	bottom: 90px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	z-index: 166;
}

#toTop:hover {
	background-color: rgba(233, 146, 169, 0.8);
}

#toTop img {
	width: 60%;
}

/* nav */
@font-face {
	font-family: 'HXB';
	src: url('../fonts/HXB.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

.text-HXB {
	font-family: 'HXB'
}


@font-face {
	font-family: 'PF';
	src: url('../fonts/PINGFANG MEDIUM.TTF') format('truetype');
	font-weight: normal;
	font-style: normal;
}

.text-PF {
	font-family: 'PF'
}

@font-face {
	font-family: 'SSSC';
	src: url('../fonts/SSSC.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

.text-SSSC {
	font-family: 'SSSC'
}

.nav-box {
	height: 104px;
}

.img-logo {
	width: 124px;
	height: auto;
	line-height: 1;
}

.btn-login {
	cursor: pointer;
	background-color: #fc8caa;
	border-radius: 200px;
	padding: 6px 19px;
	color: #fff;
	margin-left: 36px;
	font-family: 'HXB'
}

.nav-head-box {
	display: block;
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin-left: 40.5px;
	margin-right: 18px;
	cursor: pointer;
	overflow: hidden;
}

.nav-head-img {
	width: 48px;
	height: 48px;
	object-fit: cover;
}

.nav-head-img-h {
	width: 48px;
	height: 48px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	cursor: pointer;
}

.nav-head-box:hover .nav-head-img-h {
	display: block;
}

.nav-item {
	color: #727171;
	padding: 40px 20px;
	font-family: 'HXB';
	cursor: pointer;
}

.nav-item:hover {
	color: #fc8caa;
}

.nav-box .active {
	color: #fc8caa;
}


/* footer */
.img-girl {
	width: auto;
	height: 34px;
}

.icon-shejiao {
	width: auto;
	height: 30px;
	margin: 0 8px;
}

.footer-box {
	height: 200px;
	position: relative;
	overflow: hidden;
}

.beian-box {
	margin-top: 72px;
	padding-top: 20px;
	border-top: 1px solid #dcdcdc;
	display: inline-block;
	line-height: 1;
}

.beian-box a {
	font-size: 12.5px;
	color: #bbb;
}

.img-footer {
	width: 800px;
	height: auto;
	position: absolute;
	right: 0;
	bottom: -14px;
}

.shejiao-box {
	position: relative;
	cursor: pointer;
}

.shejiao-box:hover .erweima-box {
	display: block;
}

.erweima-box {
	position: absolute;
	top: -250px;
	left: -80px;
	display: none;
	z-index: 88;
	animation: fade 0.8s;
}

@keyframes fade {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.img-erweima {
	width: 200px;
	height: 200px;
}

/* 弹窗 */
.tkceng,
.tkceng2 {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 995;
	left: 0;
	top: 0;
	background: rgba(50, 50, 50, 0.8);
	display: none;
	transition: 0.3s;
	opacity: 0;
}

.tkbox,
.tkbox2 {
	position: fixed;
	width: 970px;
	z-index: 996;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	/* background-color: #fff; */
	/* background: rgba(255, 255, 255, 1); */
	box-sizing: border-box;
	display: none;
	max-width: 90%;
	min-width: 700px;
	animation: top 0.5s
}

.tkceng.active,
.tkbox.active,
.tkceng2.active,
.tkbox2.active {
	display: block !important;
	opacity: 1;
}

@keyframes top {
	0% {
		/* transform: translate(-50%, -100%); */
		opacity: 0;
	}

	100% {
		/* transform: translate(-50%, -50%); */
		opacity: 1;
	}
}

/* 登录 */
.login-content {
	width: 878px;
	height: 388px;
	position: relative;
	background-color: #fff;
	margin: auto;
	border-radius: 15px;
}

.icon-close {
	cursor: pointer;
	position: absolute;
	top: 14px;
	right: 18px;
	width: 20px;
	height: auto;
	z-index: 998;
}

.icon-close2 {
	cursor: pointer;
	position: absolute;
	top: 14px;
	right: 18px;
	width: 28px;
	height: auto;
	z-index: 998;
}

.img-login {
	display: block;
	width: 548px;
	height: 554px;
	object-fit: cover;
	position: absolute;
	top: -100px;
	left: -76px;
}

.login-box {
	width: 280px;
	margin: auto;
}

.login-title {
	font-size: 17px;
	letter-spacing: 1px;
	color: #424242;
}

.login-input-box {
	position: relative;
	border-bottom: 1px solid #b2b2b2;
	color: #a3a3a3;
}

.login-input-box:hover {
	color: #333;
	border-color: #333;
}

.login-input-box:hover .login-input-title {
	border-color: #333;
}

.title-border {
	border-right: 1px solid #aaa;
}

.login-input-title {
	position: absolute;
	top: 8px;
	left: 0;
	min-width: 60px;
	margin-right: 10px;
	line-height: 1;
	z-index: 998;
}

.login-input {
	position: relative;
	display: block;
	width: 100%;
	border: none;
	padding: 6px 0;
	line-height: 1;
	padding-left: 70px;
	z-index: 999;
	background-color: transparent;
}

input::placeholder, textarea::placeholder {
    color: #a3a3a3; /* 例如，设置为灰色 */
}

.login-btn {
	cursor: pointer;
	background-color: #ff90ad;
	padding: 7px;
	color: #fff;
	text-align: center;
}

.zhuce,.forget-password {
	cursor: pointer;
	color: #ff90ad;
}

.zhuce-title {
	width: 130px;
	text-align: center;
	font-size: 15px;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	color: #aaaaaa;
}

.zhuce-active {
	color: #616161;
	border-bottom: 2px solid #ff90ad;
}

.code-box {
	position: relative;
}

.code-btn {
	text-align: center;
	position: absolute;
	right: 0;
	top: 2px;
	padding: 6px 10px;
	border-radius: 5px;
	background-color: #ff90ad;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	line-height: 1;
	z-index: 1000;
}

.code-btn-gray {
	background-color: #999;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important; 
  background-clip: content-box;   
}

.tkbox66 {
	min-width: 592px;
	width: 592px;
	height: 730px;
	border-radius: 20px;
	background-color: #e5f1ff;
	padding-top: 60px;
}

.img-erweima66 {
	display: block;
	width: 480px;
	height: 480px;
	margin: 0 auto;
}

.text-66 {
	font-size: 58px;
	color: #6386e2;
	font-weight: bold;
	/* font-style: italic; */
}
.text-66-sub {
	font-size: 24px;
	color: #7f9deb;
}

.icon-copy {
	width: 19px;
	height: 17px;
}

.gradient-text {
  background: -webkit-linear-gradient(left, #5dcdf7, #7f9deb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}