@charset "utf-8";
/* CSS Document */
body{
	overflow-x: hidden;
}
.logo{background: url(../img/logo.svg) no-repeat;}
.nav a{ 
   color: #093979 !important;
}
.login-container {
  width: 510px;
  height: 425px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  margin-top: -200px;
  left: 10%;
}
/* 标签栏 */
.tab-header {
  display: flex;
  font-size: 28px;
  margin-bottom: 40px;
}
.tab-item {
  cursor: pointer;
  color: #fff;
  height: 76px;
  width: 50%;
  line-height: 2.8;
  background-color: #e57921;
  text-indent: 17px;
}
.tab-item.active {
  background-color: #fff;
  color: #073979;
  font-size: 28px;
  text-indent: 65px;
  width: 70% !important;
}
.login-container .tab-item.active {
  background-image: url(../img/login_bg.jpg);
  background-repeat: no-repeat;
  background-position: right center;
  border-top-left-radius: 40px;
}
.login-container .tab-item:first-child.active {
  border-top-left-radius: 40px
}
.login-container .tab-item:last-child {
  border-top-right-radius: 40px;
  text-indent: 17px;
}
.login-container .tab-item:first-child {
  border-top-left-radius: 40px;
  text-indent: 65px;
}
.login-container .tab-item:last-child.active {
  background-image: url(../img/login_bg_1.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  border-top-right-radius: 40px;
  border-top-left-radius: 0;
  text-indent: 100px !important;
}
/* 输入框组 */
.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #093979;
  border-radius: 28px;
  padding: 0 20px;
  height: 55px;
  margin-bottom: 25px;
}
.input-group .icon {
  margin-right: 15px;
  font-size: 22px;
  color: #093979;
}
.input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
}
/* 验证码按钮 */
.verify-btn {
  border: none;
  background: transparent;
  color: #093979;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap; /* 防止按钮文字换行 */
}
/* 登录按钮 */
.login-btn {
  width: 184px;
  height: 60px;
  background: url(../img/login_but.png) no-repeat center;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
  position: relative;
  left: 50%;
  margin-left: -92px;
}
.login-btn:hover {
  background: url(../img/login_but_h.png) no-repeat center; /* hover深色效果 */
  transition: all 0.2s
}
/* 注册链接 */
.register-link {
  text-align: center;
  color: #093979;
  font-size: 16px;
  cursor: pointer;
}
.register-link:hover {
  text-decoration: underline; /* hover下划线 */
}
/* 选项卡面板（默认隐藏） */
.tab-panel {
  display: none;
  padding: 20px 30px;
}
/* 激活的面板显示 */
.tab-panel.active {
  display: block;
}
#info {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
  color: white;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 0 5px #fff;
  display:none;
}
#drop-zone {
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 20px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.tf-wrap .hr_more {
  width: 120px;
  height: 27px;
  letter-spacing: 0px !important;
}
.tf-wrap .f_shu.donghua_4 {
  -webkit-animation: scaleInCenter 1s 0.8s;
  animation: scaleInCenter 1s 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
footer{
	position: relative;
}