html {
  height: 100vh;
  width: 100%;
}
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
}
body::-webkit-scrollbar {
  display: none;
}
span.error {
  color: red;
}
.color1 {
  color: #e4393c;
}
.color2 {
  color: #33cc99;
}
.color3 {
  color: #f1b967;
}
.color4 {
  color: #e4e4e4;
}
.color5 {
  color: #d7d7d7;
}
.color6 {
  color: #bababa;
}
.color7 {
  color: #f8f8f8;
}
.color8 {
  color: #fff;
}
.color-success {
  color: #11d410;
}
.color-warning {
  color: #f8ac59;
}
.color-danger {
  color: #ed5565;
}
.bg-none {
  background: transparent !important;
}
.bg-color1 {
  background-color: #e4393c;
}
.bg-color2 {
  background-color: #33cc99;
}
.bg-color3 {
  background-color: #f1b967;
}
.bg-color4 {
  background-color: #e4e4e4;
}
.bg-color5 {
  background-color: #d7d7d7;
}
.bg-color6 {
  background-color: #bababa;
}
.bg-color7 {
  background-color: #f8f8f8;
}
.bg-color8 {
  background-color: #fff;
}
.bg-color-success {
  background-color: #11d410;
}
.bg-color-warning {
  background-color: #f8ac59;
}
.bg-color-danger {
  background-color: #ed5565;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", STHeiti, "Microsoft Yahei";
}
a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:active,
a:hover {
  background: transparent;
  text-decoration: none;
}
img {
  vertical-align: middle;
  border: none;
}
ul,
p,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.t-c {
  text-align: center;
}
.t-l {
  text-align: left;
}
.t-r {
  text-align: right;
}
.t-j {
  text-align: justify;
}
.b-n {
  border: none ;
}
.b-0 {
  border: 1px solid color:#f5f5f5;
}
.b-tr {
  border: 1px solid transparent;
}
.b-l {
  border-left: 1px solid color:#f5f5f5;
}
.b-ln {
  border-left: none;
}
.b-r {
  border-right: 1px solid color:#f5f5f5;
}
.b-rn {
  border-right: none;
}
.b-t {
  border-top: 1px solid color:#f5f5f5;
}
.b-tn {
  border-top: none;
}
.b-b {
  border-bottom: 1px solid color:#f5f5f5;
}
.b-bn {
  border-bottom: none;
}
/* 文本垂直居中 */
.t-c-v {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.ma0 {
  margin: 0 auto;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.fn {
  float: none;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.o-h {
  overflow: hidden;
}
.o-s {
  overflow: scroll;
}
.o-v {
  overflow: visible;
}
.dis-flex {
  display: flex;
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.j-b {
  justify-content: space-between;
}
.j-a {
  justify-content: space-around;
}
.flex-au {
  flex: auto;
}
.flex-no {
  flex: none;
}
.wh100 {
  width: 100% !important;
}
.hh100 {
  height: 100% !important;
}
.wh50 {
  width: 50% !important;
}
.wh30 {
  width: 33.33% !important;
}
input {
  border: none;
  outline: medium;
}
input,
textarea,
select {
  outline: medium;
  border: 1px solid #d4d4d4;
  padding: 0 10px;
}
select:focus,
input:focus,
textarea:focus {
  background-color: #fffae2;
  border-color: #33cc99;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #C2C2C2;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #C2C2C2;
}
input:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #C2C2C2;
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #C2C2C2;
}
.roll-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.roll-y {
  overflow-y: auto;
  overflow-x: hidden;
}
.roll-x::-webkit-scrollbar {
  height: 5px;
  background-color: #fff;
}
.roll-y::-webkit-scrollbar {
  height: 5px;
  background-color: #fff;
}
/*定义滚动条轨道 内阴影+圆角*/
.roll-x::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 2.5px;
  background-color: #F5F5F5;
}
.roll-y::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 2.5px;
  background-color: #F5F5F5;
}
/*定义滑块 内阴影+圆角*/
.roll-x::-webkit-scrollbar-thumb {
  border-radius: 2.5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f56363;
}
.roll-y::-webkit-scrollbar-thumb {
  border-radius: 2.5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f56363;
}
.roll-no::-webkit-scrollbar {
  display: none;
}
.login {
  background: url(../img/loginbg.png) no-repeat;
  background-size: 100% 100%;
  max-width: 550px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-top: 50px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.login-top {
  height: 50px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.login-top i {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s;
}
.login-top i:active,
.login-top i:hover {
  color: #fff;
}
.login-con {
  width: calc(100% - 50px);
  height: calc(100% - 50px);
}
.login-con .login-img {
  width: 60%;
  margin: 30px auto;
}
.login-con .login-img img {
  width: 100%;
}
.form-box {
  width: 100%;
  height: 40px;
  display: flex;
  margin-bottom: 22px;
  position: relative;
  justify-content: space-between;
}
.form-box label {
  height: 100%;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.form-box label i {
  font-size: 20px;
  color: #666;
  transition: all 0.5s;
}
.form-box .input-box {
  width: 100%;
  flex: 1;
  height: 100%;
}
.form-box .input-box input {
  width: 100%;
  height: 100%;
  background: #fff;
  padding-left: 35px;
  border: 1px solid #f1f1f1;
  transition: all 0.8s;
}
.form-box .input-box input:focus {
  border-color: #33cc99;
  z-index: 0;
  padding: 0 5px 0 35px;
  background: #cdfded;
}
.form-box .input-box input + span {
  display: block;
  line-height: 18px;
  color: red;
  padding-left: 10px;
  font-weight: bold;
  position: absolute;
  left: 0;
  bottom: -17px;
}
.form-box .yzm-input {
  background: #ff4500;
  padding: 5px;
  color: #fff;
  height: 100%;
  text-align: center;
  width: 40%;
  margin-left: 5px;
  border: none;
  transition: all 0.5s;
}
.form-box .yzm-input:active,
.form-box .yzm-input:hover {
  background: #ff4500;
}
.form-box .yzm-box {
  height: 100%;
  margin-left: 5px;
}
.form-box .yzm-box img {
  height: 100%;
  border: 1px solid #f1f1f1;
}
.form-box .yzm-box:hover,
.form-box .yzm-box:active {
  border-color: #33cc99;
}
.form-box:focus-within label i {
  color: #33cc99;
}
.btn-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.btn-box .login-btn {
  width: 100%;
  height: 40px;
  border-radius: 2px;
  padding: 0;
  border: none;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s;
  background: #ff4500;
  color: #fff;
  font-size: 16px;
}
.btn-box .login-btn:active,
.btn-box .login-btn:hover {
  background: #1fb180;
}
.login-foot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}
.login-foot a {
  color: #ff4500;
}
