* {
	padding: 0;
	margin: 0;
}

ul,
ol,
li {
	list-style: none;
}

a {
	text-decoration: none;
}

html, body {
	min-height: 100%;
	font-family: PingFang SC, Helvetica Neue, Helvetica,Tahoma, Arial, STXihei;
}

body {
  background-color: #F7F7F7;
}

.header {
  position: sticky;
  top: 0;
  height: 90px;
  background-color: #fff;
  z-index: 21;
}

.header-container {
  display: flex;
  margin: 0 auto;
  width: 1200px;
  height: 100%;
}

.header .header-menu {
  display: none;
  height: 100%;
}

.header .header-menu a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/menu_icon.png) no-repeat center center / .46rem .33rem;
  background-color: #F2F2F2;
}

.header .pc-logo img {
  vertical-align: middle;
  margin-top: -3px;
  height: 29px;
}

.header .pc-logo {
  font-size: 20px;
  line-height: 90px;
  font-weight: bold;
}

.header .wap-logo {
  display: none;
}

.header .header-nav {
  flex: 1;
  padding-left: 45px;
  font-size: 16px;
  line-height: 90px;
  font-weight: bold;
}

.header .header-nav-item {
  position: relative;
  display: inline-block;
  color: #414141;
  margin-right: 30px;
}


.header .header-nav-item:last-child {
  margin-right: 0;
}

.header .header-nav-item::after {
  content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	transform: translateX(-50%);
	width: 0%;
	height: 5px;
	background-color: #1b7eef;
	transition: width .2s;
}

.header .header-nav-item.active::after,
.header .header-nav-item:hover::after {
	width: 100%;
}

.header .header-login .pc-login {
  padding-top: 26px;
  display: flex;
  line-height: 90px;
}

.header .header-login .header-btn {
	display: inline-block;
	width: 60px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	font-size: 16px;
	border-radius: 17.5px;
	font-weight: 800;
}

.header .header-login .header-btn-login {
	color: #1b7eef;
	border: 1px solid #1b7eef;
	background-color: #f5f8ff;
}

.header .header-login .header-btn-login:hover {
	background-color: #d8ecfa;
	color: #259df5;
	border-color: #259df5;
}

.header .header-login .header-btn-register {
	margin-left: 12px;
	color: #FFF;
	background: #1b7eef;
	border-radius: 17.5px;
	border: 1px solid #1b7eef;
}

.header .header-login .header-btn-register:hover {
	background: #259df5;
	border-color: #259df5;
}

.header .header-login .wap-login {
  display: none;
}
  
.header .header-login .wap-login .user-btn {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/login_icon.png) no-repeat center center / .54rem .54rem;
}

.header .header-login .wap-login .close-btn {
  display: none;
  width: 100%;
  height: 100%;
  background: url(../img/common/close_icon.png) no-repeat center center / .33rem .33rem;
}

.right-avatar {
	position: relative;
  margin-top: -6px;
	padding-right: 10px;
}

.right-avatar .avatar-btn {
	position: relative;
	line-height: 50px;
	padding-right: 21px;
	cursor: pointer;
}

.right-avatar .avatar-btn img {
  display: block;
}

.right-avatar .avatar-btn i {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 8px;
	height: 11px;
	vertical-align: top;
	background: url(../img/common/right_arrow.png) no-repeat center / cover;
	transform: rotate(90deg) translateX(-6px);
	transition: all .2s;
}

.top-avatar {
	width: 50px;
	height: 50px;
}

.right-dropdown-container {
	display: none;
	position: absolute;
	right: 10px;
	top: 80px;
	padding: 12px 8px;
	background-color: #fff;
	box-shadow: 0px 1px 10px 0px rgba(6,0,1,0.15);
	border-radius: 15px;
	width: 210px;
	opacity: 0;
	transform: translateY(100px);
	transition: all .2s;
}

.right-dropdown-container .dropdown-user {
	display: flex;
	padding: 0 9px;
}

.right-dropdown-container .dropdown-user .user-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.right-dropdown-container .dropdown-user .user-info {
	flex: 1;
	width: 100%;
	margin-left: 10px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 60px;
	color: #414141;
}

.right-dropdown-container .dropdown-user .user-name {
	font-weight: bold;
	color: #414141;
	line-height: 24px;
	font-size: 18px;
}

.right-dropdown-container .dropdown-user .user-tel {
	font-size: 12px;
	height: 14px;
	line-height: 14px;
	margin-top: 10px;
}

.right-dropdown-container .dropdown-nav-list {
	margin-top: 8px;
}

.right-dropdown-container .dropdown-nav-list a {
	position: relative;
	display: block;
	background-color: #fff;
	color: #414141;
	border-radius: 8px;
	padding: 12px 40px;
	line-height: 14px;
	font-size: 14px;
	margin-bottom: 3px;
}

.right-dropdown-container .dropdown-nav-list a:hover {
	position: relative;
	background: #F0F0F0;
}

.right-dropdown-container .dropdown-nav-list .icon-logout {
	position: absolute;
	display: block;
	top: 11px;
	left: 13px;
	width: 16px;
	height: 16px;
	background: url(../img/common/logout.png) no-repeat center;
}

.right-avatar:hover .avatar-btn i{
	transform: rotate(-90deg) translateX(6px);
}

.right-avatar .right-dropdown-container.active {
	/* display: block; */
	opacity: 1;
	transform: translateY(-30px);
}

.page-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 1.15rem;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .95);
	z-index: 20;
	overflow: auto;
}

.page-nav.nav-show {
	display: block;
	animation: topNavShowAnimation .8s ease-in-out both;
}

.page-nav.nav-hide {
	display: block;
	animation: topNavHideAnimation .5s ease-in-out both;
}

.page-nav .page-nav-list {
	padding: 0 .3rem;
}

.page-nav .page-nav-item {
	height: 1.95rem;
	text-align: center;
	border-bottom: 1px solid rgba(2, 2, 3, .1);
}

.page-nav .page-nav-item a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.page-nav .page-nav-item a .nav-title {
	font-size: .36rem;
	line-height: .36rem;
	margin-bottom: .28rem;
	color: #000;
}

.page-nav .page-nav-item a .nav-title-en {
	font-size: .24rem;
	line-height: .24rem;
	color: #999999;
}

@media screen and (max-width: 1200px) {
  .header-container {
    width: 100%;
  }
  
  .header .pc-logo {
    padding-left: 20px;
  }
}

@media screen and (max-width: 750px) {
  .header {
    height: 1.15rem;
  }
  
  .header .header-menu {
    display: block;
    width: 1.15rem;
  }
  
  .header .pc-logo {
    display: none;
  }
  
  .header .header-logo {
    flex: 1;
  }
  
  .header .wap-logo {
    display: block;
    color: #414141;
    font-size: .48rem;
    font-weight: bold;
    line-height: 1.15rem;
    text-align: center;
  }
  
  .header .header-nav {
    display: none;
  }
  
  .header .header-login .pc-login {
    display: none;
  }
  
  .header .header-login .wap-login {
    display: block;
    width: 1.15rem;
    height: 100%;
  }
}


/* footer */
.footer {
	margin-top: 10px;
	width: 100%;
	background-color: #fff;
}

.footer .footer-container {
	margin: 0 auto;
	width: 1150px;
	padding-top: 30px;
	padding-bottom: 35px;
	background-color: #fff;
  text-align: center;
}

.footer .footer-info {
	position: relative;
	font-size: 14px;
}

.footer .footer-info a,
.footer .footer-info {
	color: #6B6B6B;
	line-height: 26px;
}

/* 弹窗提示 */
.kw-toast {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	padding: 16px 30px;
	background-color: #666666;
	color: #FFF;
	border-radius: 16px;
	line-height: .4rem;
	text-align: center;
	opacity: 0;
	transition: all .3s;
  font-size: 20px;
}

.kw-toast.active {
	top: 15%;
	opacity: 1;
}

@keyframes topNavShowAnimation {
	0%, 60%, 75%, 90%, 100% {
	    transition-timing-function: cubic-bezier(0.215,.61,.355,1);
	}
	0% {
		opacity: .01;
		transform: translate3d(0,-16rem,0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0,15px,0);
	}
	75% {
		transform: translate3d(0,-8px,0);
	}
	90% {
		transform: translate3d(0,4px,0);
	}
	100% {
		transform: none;
	}
}

@keyframes topNavHideAnimation {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}

.dialog-mark {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 100;
}

.dialog-mark.active {
  display: block;
}

.dialog-mark .dialog-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dialog-mark .dialog-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: url(../img/common/close_icon.png) no-repeat center center;
  cursor: pointer;
}

.login-form {
  padding: 40px;
  width: 400px;
  background-color: #fff;
  border-radius: 8px;
}

.login-form .form-item {
	position: relative;
	width: 100%;
	height: 50px;
	background: #F4F4F4;
	border-radius: 6px;
	margin-bottom: 18px;
	display: flex;
}

.login-form .form-icon {
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px 24px;
}

.login-form .form-icon.icon-user {
	background-image: url(../img/login/001.png);
}

.login-form .form-icon.icon-password {
	background-image: url(../img/login/002.png);
}

.login-form .form-icon.icon-code {
	background-image: url(../img/login/010.png);
}

.login-form .form-icon.icon-phone {
	background-image: url(../img/login/003.png);
}

.login-form .form-icon.icon-code-2 {
	background-image: url(../img/login/005.png);
}

.login-form .form-icon.icon-card {
	background-image: url(../img/login/004.png);
}

.login-form .icon-password-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	right: 0;
	top: 0;
	background-color: #F4F4F4;
	border-radius: 0 6px 6px 0;
	background: url(../img/login/password_eye_1.png) no-repeat center / 50%;
	cursor: pointer;
}

.login-form .icon-password-switch.active {
	background-image: url(../img/login/password_eye_2.png);
}

.login-form .form-item input,
.login-form .form-item select {
	width: 100%;
	flex: 1;
	border: none;
	background-color: transparent;
	outline: none;
	font-size: 16px;
}

.login-form .form-item select {
  padding: 0 10px;
}

.login-form .code-item {
	display: flex;
	justify-content: space-between;
}

.login-form .code-item .form-item {
	width: 224px;
}

.login-form .code-item .code-img {
	width: 124px;
	height: 50px;
}

.login-form .form-btn {
	display: block;
	margin-top: 4px;
	width: 100%;
	height: 50px;
	background: linear-gradient(to right, #58c2ff, #2189ff);
	border-radius: 25px;
	border: none;
	font-size: 18px;
	color: #FFFFFF;
	cursor: pointer;
	font-weight: 800;
}