* {
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  display: block;
  border: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); 
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
}
a, a:hover, a:active, a:visited, a:link, a:focus {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  outline:none;
  background: none;
  text-decoration: none;
} 
body {
  background: #fff;
}
input {
  outline: none;
  border: none;
  background: transparent;
  box-shadow: none;
}
input::placeholder {
  color: #CCCCCC;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.login_header {
  width: 100%;
  height: 125px;
  display: flex;
  overflow: hidden;
}
.login_header .logo_wrap {
  width: 1200px;
  height: 100%;
  background-image: url("../image/u181.png");
  background-repeat: no-repeat;
  background-size: 68px 73px;
  background-position: 0 center;
  padding-left: 78px;
  box-sizing: border-box;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo_wrap h1 {
  font-size: 30px;
  color: #333333;
}
.logo_wrap p {
  font-size: 11px;
  color: #333333;
  margin-top: 5px;
}
.login_wrap {
  width: 100%;
  min-width: 1200px;
  height: calc(100vh - 195px);
  min-height: 600px;
  background: url("../image/login_bg@2x.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.login_wrap .login_item {
  width: 550px;
  height: 535px;
  background: #fff;
  padding: 50px 60px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 420px;
  border-radius: 3px;
}
.login_item .login_title {
  font-size: 36px;
  color: #333333;
  font-weight: Bold;
  margin-bottom: 41px;
}
.login_item input {
  width: 100%;
  height: 44px;
  border: 1px solid #BDBDBD;
  font-size: 14px;
  padding: 0 14px;
  box-sizing: border-box;
  color: #333;
  border-radius: 3px;
  margin-bottom: 23px;
}
.login_item input:focus,.login_item .verification_code input:focus {
  border-color: #318be7;
}
.login_item .verification_code {
  width: 100%;
  height: 44px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.login_item .verification_code input {
  width: 316px;
  height: 100%;
  border: 1px solid #BDBDBD;
  box-sizing: border-box;
  border-radius: 3px;
}
.login_item .verification_code .code {
  width: calc(100% - 328px );
  height: 100%;
  border: 1px solid #BDBDBD;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 5px 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.code img {
  width: 100%;
  height: 100%;
}
.checkout_wrap {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666666;
  align-items: center;
  margin-bottom: 22px;
}
.checkbox_item {
  display: flex;
  align-items: center;
}
.checkout_wrap .checkbox_item .checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0 5px 0 0;
}
.checkout_wrap a {
  color: #318BE7;
}
.login_btn,.register_btn {
  outline: none;
  border: none;
  width: 100%;
  height: 44px;
  border-radius: 3px;
  font-size: 16px;
  color: #fff;
  margin-top: 18px;
  box-sizing: border-box;
  cursor: pointer;
}
.login_btn {
  background: #318BE7;
}
.login_btn:hover {
  background: #3c97f4;
}
.register_btn:hover {
  background: #e8f3ff;
}
.register_btn {
  background: #EFF7FF;
  color: #318BE7;
}
