/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	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: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #a64bf4;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: 'Microsoft Yahei';
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
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;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: 'Microsoft Yahei';
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.txt2 {
  font-family: 'Microsoft Yahei';
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  text-transform: uppercase;
}

.bg1 {background-color: #3b5998}
.bg2 {background-color: #1da1f2}
.bg3 {background-color: #ea4335}



/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /*align-items: center;*/
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center top;
  /*background-size: cover;*/
  background-size: revert;
}

.wrap-login100 {
  width: 600px;
  /*background: #fff;*/
  border-radius: 10px;
  overflow: hidden;
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-h1 {
  	color:#fff;font-size: calc(1vw + 1vh + 5px);text-align: center;font-weight: 600;font-family: cursive;
	background: #0c9cfc;
	line-height: 40px;
    padding: 10px;
}
.login100-form-h1 font{
  	font-size: calc(1vw + .8vh + 1px);
    display: block;
    text-align: right;
    margin-right: 25px;
}
.login100-form-title {
  display: block;
  font-family: 'Microsoft Yahei';
  font-size: 26px;
  color: #333333;
  line-height: 2.2;
  text-align: center;
}
.login100-form-bottom{
    display: block;
    line-height: 2;
    font-weight: 600;
}


/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
}

.label-input100 {
  font-family: 'Microsoft Yahei';
  color: #333333;
  line-height: 1.5;
  padding-left: 7px;
}

.input100 {
  font-family: 'Microsoft Yahei';
  font-size: 16px;
  color: #333333;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 55px;
  background: transparent;
  padding: 0 7px 0 43px;
}


/*---------------------------------------------*/
.focus-input1 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input1::after {
  content:'\f11d';
  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: 4px;
}

.focus-input1::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-input1::before {
  width: 100%;
}

.has-val.input100 + .focus-input1::before {
  width: 100%;
}

.input100:focus + .focus-input1::after {
  color: #a64bf4;
}

.has-val.input100 + .focus-input1::after {
  color: #a64bf4;
}


.focus-input10 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input10::after {
  content:'\f206';
  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: 4px;
}

.focus-input10::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-input10::before {
  width: 100%;
}

.has-val.input100 + .focus-input10::before {
  width: 100%;
}

.input100:focus + .focus-input10::after {
  color: #a64bf4;
}

.has-val.input100 + .focus-input10::after {
  color: #a64bf4;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::after {
  content:'\f190';
  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: 4px;
}

.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;
}

.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, #00dbde, #0066ff, #00dbde, #0066ff);
  background: -o-linear-gradient(right, #00dbde, #0066ff, #00dbde, #0066ff);
  background: -moz-linear-gradient(right, #00dbde, #0066ff, #00dbde, #0066ff);
  background: linear-gradient(right, #00dbde, #0066ff, #00dbde, #0066ff);
  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: 16px;
  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;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;

  font-family: 'Microsoft Yahei';
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Social item ]*/
.login100-social-item {
  font-size: 25px;
  color: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 5px;
}

.login100-social-item:hover {
  color: #fff;
  background-color: #333333;
}

/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/

@media (max-width: 576px) {
  /*.wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
  }*/
}





/*main*/
.signup {
  padding: 80px 60px;
  background-color: white;
  border-radius: 30px;
  width: 100%;
  max-width: 480px;
}
.signup-heading {
  text-align: center;
  font-weight: 600;
  color: #363A40;
  font-size: 35px;
  margin-bottom: 35px;
}
.signup-google {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  border-radius: 16px;
  background-color: #4C6EF4;
  text-decoration: none;
  padding: 8px;
  margin-bottom: 45px;
  box-shadow: 0 10px 20px -5px rgba(76, 110, 244, 0.9);
}
.signup-google-icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  color: #ff7870;
  border-radius: 10px;
  background-color: white;
  font-size: 25px;
}
.signup-google-text {
  color: white;
  font-weight: 500;
  display: block;
  margin: 0 auto;
}
.header-tel {
  width: 92%;
  height: 36px;
  text-align: center;
  margin: 0px auto;
  margin-top:20px;
}
.header-tel h2 {
  position: relative;
  font-size: 15px;
  font-weight: normal;
  color: #666;
}
.header-tel h3 {
  position: relative;
  font-size: 15px;
  font-weight: normal;
  color: #333;
}
.header-tel h3:before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 33%;
  height: 1px;
  background: #bbb;
  content: "";
}
.header-tel h3:after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 33%;
  height: 1px;
  background: #bbb;
  content: "";
}
.signup-already {
  border-bottom: 1px dashed #bbb;
  margin:40px 0;
}

.form-text {
  display: block;
  margin-top: 35px;
  width: 100%;
  padding: 10px 20px;
  border: 1px #eee solid;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  box-shadow: 0 10px 10px -5px rgba(71, 126, 255, 0.3);
  outline: none;
}

.form-submit {
  display: block;
  margin-top: 35px;
  width: 100%;
  padding: 10px 20px;
  color: white;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-radius: 15px;
  background-color: #477eff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  box-shadow: 0 10px 10px -5px rgba(71, 126, 255, 0.3);
  outline: none;
}
.form-book {
  display: block;
  margin-top: 35px;
  width: 100%;
  padding: 10px 20px;
  color: white;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-radius: 15px;
  background-color: #F60;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  box-shadow: 0 10px 10px -5px rgba(183, 183, 183, 0.3);
  outline: none;
}
.form-exit {
  display: block;
  margin-top: 35px;
  width: 100%;
  padding: 10px 20px;
  color: white;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-radius: 15px;
  background-color: #b7b7b7;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  box-shadow: 0 10px 10px -5px rgba(183, 183, 183, 0.3);
  outline: none;
}

@media screen and (max-width: 767px) {
  .signup {
    padding: 30px 20px;
  }
}

/*rule*/
.c_c_text {
    height: 265px;
    text-align: left;
	overflow-y:scroll;
}
.c_c_text p {
    font-family: 'Microsoft Yahei';
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin: 0px;
	text-indent: 2ch;
}
.c_c_btn {
	border-top: 1px dashed #bbb;
    height: 30px;
    text-align: center;
    margin: 10px 0;
    line-height: 30px;
    font-size: 15px;
}

/*kaoshi*/
.btn {
	width: 70px;
	font-size: 12px;
	color: #333;
	margin-top: 10px;
	height: 26px;
	cursor: pointer;
}
.timess{ background:#f7fbffa3; position:fixed; top:0; left:50%; margin-left: 300px;z-index: 999; /*position:fixed; top:254px;right:190px; */}
.timess h3{ font-size:16px; color:#4c4c4c; line-height:38px; padding-left:30px;}
.timess h3 span{ font-size:16px; color:#ff0000;}
.timess p{ font-size:14px; color:#666; line-height:25px; padding-left:30px;}
.timess{ width:300px; border:#d5dfe8 solid 1px; height:100px; }
.content { width:100%; margin:0 auto; margin-bottom:70px; position:relative;}
.content .zainxian{ float:left; width:100%; border:#d5dfe8 solid 1px; background:#fff; margin-bottom:70px;}
.zainxian h4{ font-size:18px; color:#1772c5; text-align:center; line-height:38px; font-weight:normal; border-bottom:#d5dfe8 solid 1px; padding:10px 0;}
.zainxian ul li{border-bottom:#d5dfe8 solid 1px; padding-bottom:20px;background:#f7fbff;}
.zainxian ul li input{ margin-right:10px;}
.zainxian ul li:nth-child(2){ background:#fff;}
.zainxian ul li:nth-child(4){ background:#fff;}
.zainxian .exercises h5{ font-size:14px; color:#4c4c4c; line-height:48px; padding-left:20px;}
.exercises img{ max-width:100% !important;}
.exercises .picture,.exercises p{ padding-left:37px;}
.exercises .picture{ padding-bottom:21px;}
.exercises p{ font-size:14px; color:#4c4c4c; line-height:26px;}
.exercises div{ font-size:14px; line-height:40px;}
.exercises a{ color:#1772c5; line-height:40px;text-decoration: none;}
.last{ padding-bottom:18px; border-bottom:#d5dfe8 solid 1px;}
.exercises p img{ padding-right:10px;}
.zainxian .anniu {
    text-align: center;
}
.zainxian .btn{ width:100px; font-size:15px; color:#333; margin-top:30px; margin-bottom:6px; height:32px; cursor:pointer;}
@media screen and (max-width: 767px) {
  .timess{ background:#f7fbffa3; position:fixed; bottom:0 !important;top: auto;left: auto; margin:0px auto; z-index: 999; width:92.5%;}
  .wrap-login100{padding-bottom:25px}
}

/*over*/
.ksjs {
	width: 315px;
	height: 235px;
	background:url(/Public/Images/beijing.png) 0 0 no-repeat;
	margin: 100px auto 0;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
.ksjs h1 {
	font-size: 18px;
	padding:60px 0 0 60px;
	font-weight: bold;
	line-height: 50px;
}
.ksjs h2 {
	color: #f00;
	text-align: center;
	line-height: 100px;
	font-size: 50px;
	font-weight: bold;
}

.eyoumain5 {
    padding: 55px 18% 0 18%;
	width: 100%;
	text-align: center;
}
.w30 {
    width: 48%;
	float: left;
	text-align: center;
}
.w30 img{
    max-width: 100%;
}
@media screen and (max-width: 750px) {
	.eyoumain5 {
		padding: 15px 5% 0 5%;
		width: 100%;
		text-align: center;
	}
    .w30 {
        width: 100%;
    }
	.w30 img{
		max-width: 80%;
	}
}