@charset "utf-8";
/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/
@charset 'utf-8';
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: 'Microsoft Yahei', sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: 'Microsoft Yahei';
	font-size: 16px;
	line-height: 1.7;
	color: #ff0000;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  text-decoration: none;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #a64bf4;
}
p {
	font-family: 'Microsoft Yahei';
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  background-image: url(../images/bg.png);
  background-color: #172d35;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  }

.wrap-login100 {
  width: 450px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding-right: 45px;
  padding-left: 45px;
  padding-bottom: 45px;
  padding-top: 50px;
  position: absolute;
  left: 50%;
  margin-left: -236px;
  top: 50%;
  margin-top: -234px;/*276*/

}


.login100-form {
  width: 100%;
}

.login100-form-title {
	
  display: block;
  font-family: 'Microsoft Yahei';
  font-size: 32px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 10px;
  font-weight:700;
      
}

.login100-form-text{font-size: 18px;line-height: 1.2;}

#message{
	text-align: center;
	font-size: 16px;
	line-height: 40px;
    height: 40px;
	color: red;
}

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 23px;
}
.wrap-input60 {
  width: 60%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 23px;
}
.wrap-input60 {
  width: 50%;
  float: left;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 23px;
}
.wrap-input40 {
  width: 50%;
  padding-top: 40px;
  display: inline-block;
}

.label-input100 {
  font-family: 'Microsoft Yahei';
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
  padding-left: 7px;
}

.input100 {
  font-family: 'Microsoft Yahei';
  font-size: 16px;
  color: #000000;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 55px;
  background: transparent;
  padding: 0 7px 0 43px;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;

}
.focus-input100 img{
  width: 25px; 
  margin-left: 6px;
  margin-top: 45px;
}
.focus-input100::after {
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  color: #adadad;
  font-size: 22px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: calc(100% - 20px);
  bottom: 0;
  left: 0;
  padding-left: 13px;
  padding-top: 3px;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7f7f7f;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.input100:focus + .focus-input100::after {
  color: #a64bf4;
}

.has-val.input100 + .focus-input100::after {
  color: #a64bf4;
}


/*[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;

  box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -moz-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -webkit-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -o-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
  -ms-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #FF9800, #F44336, #FF9800, #FF5722);
  background: -o-linear-gradient(right, #FF9800, #F44336, #FF9800, #FF5722);
  background: -moz-linear-gradient(right, #FF9800, #F44336, #FF9800, #FF5722);
  background: linear-gradient(right, #FF9800, #F44336, #FF9800, #FF5722);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: 'Microsoft Yahei';
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}

.validate-input {
  position: relative;
}


@media (max-width: 576px) {
  .wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
  }
  
} 


/* 提示框图标 */
.icon_notice{width:24px; height:24px;vertical-align: middle;margin-right: 5px;margin-top: -3px;}

.htlogin{position:absolute;right:20px;bottom:20px;}
.htlogin a{ position:relative; background:#ff0101; color: #fff; overflow: hidden; width: 126px; height: 40px;line-height: 40px; display: block;border-radius: 10px;text-align: center;text-decoration: none;font-size: 16px;}
.htlogin a .bgsqr1{ position:absolute; background:#fff; opacity:0.2; *filter:alpha(opacity=20); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=20); left:0; top:0; right:0; height:100%;-webkit-transition: all .3s ease-in-out;transition: all .3s ease-in-out;}
.htlogin a:hover .bgsqr1{ height:0;}
.htlogin a span{ position:relative; z-index:1;}
.htlogin a span{ position:relative; z-index:1;}

input.btn{display: block; width: 100%;line-height: 2.0;font-size: 16px;}

.tiyan_deg {position: absolute;right: 0;top: 0;background: linear-gradient(45deg, #ffffff00 50%, #e84620 50%);width: 126px;height: 126px;font-size: 16px;color: #fff;border-radius: 0 5px 0 0px;}
.tiyan_deg:hover {background: linear-gradient(45deg, #ffffff00 50%, #ff3100 50%);}
.tiyan_deg a {
    transform: rotate(45deg);
    display: block;
    cursor: pointer;
    text-align: center;
    color: #fff;
    width: 160px;
    font-size: 18px;
    /* height: 85px; */
    /* bottom: 15px; */
        line-height: 80px;
    text-align: center;
    position: absolute;
}

.try{width:30vw;line-height:2.0}
.try a{background: #0586ff;padding: 5px 10px;border-radius: 2px;margin-left: 10%;color: #fff;}
.try a:hover{background: #0069cc;}

.msgbox{line-height:2.0}
.ui-dialog .ui-dialog-close{
	top: 3px;
	font-size: 3vw;
	opacity: .5;
	right: 8px;
}
.ui-dialog .ui-dialog-title{
	    padding: 12px;
		font-size: 2.0vmin;
}
.ui-dialog .ui-dialog-content
{
		font-size: 2.0vmin;
}
.ui-dialog .ui-dialog-content a
{
		font-size: 2.0vmin;
}