#loading{
	position: fixed;
	background: #fff;
	height: 100%;
	width: 100%;
	z-index: 99999;
	opacity: 0;
}
.wrapper {
  color: white;
  font-weight: 300;
}
.wrapper ::-webkit-input-placeholder {
  color: white;
  font-weight: 300;
}
.wrapper :-moz-placeholder {
  color: white;
  opacity: 1;
  font-weight: 300;
}
.wrapper ::-moz-placeholder {
  color: white;
  opacity: 1;
  font-weight: 300;
}
.wrapper :-ms-input-placeholder {
  color: white;
  font-weight: 300;
}
.wrapper {
  background: #E96C2A;
  background: -webkit-linear-gradient(top left, #E96C2A 0%, #FF9966 100%);
  background: linear-gradient(to bottom right, #E96C2A 0%, #FF9966 100%);
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 25%;
  height: 400px;
  margin-top: -200px;
  overflow: hidden;
	border-radius: 20px;
}

.wrapper.form-success .container h1 {
  -webkit-transform: translateY(85px);
      -ms-transform: translateY(85px);
          transform: translateY(85px);
}
.container {
  /*max-width: 800px;*/
  width:100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 40px 0;
  height: 400px;
  text-align: center;
}
.container h1 {
  font-size: 40px;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease-in-put;
          transition-timing-function: ease-in-put;
  font-weight: 200;
}
.form {
  padding: 20px 0;
  position: relative;
  z-index: 22;
}
.form input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  width: 250px;
  border-radius: 3px;
  padding: 10px 15px;
  margin: 0 auto 10px auto;
  display: block;
  text-align: center;
  font-size: 18px;
  color: white;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  font-weight: 300;
}
.form input:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.form input:focus {
  background-color: white;
  width: 300px;
  color: #FF9966;
}
.form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  background-color: white;
  border: 0;
  padding: 10px 15px;
  color: #FF9966;
  border-radius: 3px;
  width: 250px;
  cursor: pointer;
  font-size: 18px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
.form button:hover {
  background-color: #f5f7f9;
}
.bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 21;
}
.bg-bubbles li {
	position: absolute;
	list-style: none;
	display: block;
	width: 40px;
	height: 40px;
	opacity:0.2;

	/*
	background-image: url(../../image/10.png);
	background-repeat: no-repeat;
	background-size:100% 100%;  
	*/

	/*background-color: #FFFFFF;*/

	bottom: -160px;
  -webkit-animation: square 25s infinite;
	animation: square 25s infinite;
  -webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}
.bg-bubbles li:nth-child(1) {
  left: 10%;
	opacity:0.1;
}
.bg-bubbles li:nth-child(2) {
  left: 20%;
 /* width: 80px;
  height: 80px;*/
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 17s;
          animation-duration: 17s;
}
.bg-bubbles li:nth-child(3) {
	opacity:0.1;
  left: 25%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.bg-bubbles li:nth-child(4) {
  left: 40%;
 /* width: 60px;
  height: 60px;*/
  -webkit-animation-duration: 22s;
          animation-duration: 22s;
  /*background-color: rgba(255, 255, 255, 0.25);*/
}
.bg-bubbles li:nth-child(5) {
	opacity:0.1;
  left: 70%;
}
.bg-bubbles li:nth-child(6) {
  left: 80%;
 /* width: 120px;
  height: 120px;*/
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  /*background-color: rgba(255, 255, 255, 0.2);*/
}
.bg-bubbles li:nth-child(7) {
	opacity:0.1;
  left: 32%;
 /* width: 140px;
  height: 140px;*/
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
.bg-bubbles li:nth-child(8) {
  left: 55%;
 /* width: 20px;
  height: 20px;*/
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
}
.bg-bubbles li:nth-child(9) {
  left: 5%;
	opacity:0.1;
/*  width: 10px;
  height: 10px;*/
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  /*background-color: rgba(255, 255, 255, 0.3);*/
}
.bg-bubbles li:nth-child(10) {

  left: 90%;
  width: 140px;
  height: 140px;
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
}
@-webkit-keyframes square {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-700px) rotate(600deg);
            transform: translateY(-700px) rotate(600deg);
  }
}
@keyframes square {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-700px) rotate(600deg);
            transform: translateY(-700px) rotate(600deg);
  }
}
/*首页通用*/
html{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.html,.body{height:100%;}
.left{
	position: absolute;
	padding-top:50px;
	width:140px;
	height:100%;
	background:#373D41;
	z-index:21;
}
.top{
	position: absolute;
	background:#272C2E;
	width:100%;
	height:50px;
	color:#FFFFFF;
	padding-left:15px;
	z-index:24;
}
.top .tit{
	position: absolute;
	height:50px;
	line-height: 50px;
	font-size:16px;
}
.top .but{
	position: absolute;
	height:50px;
	width:120px;
	line-height: 50px;
	opacity: 0.5;
	right:160px;
	background:#000000;
	padding-left:15px;
	padding-right:15px;
}
.bye{
	position: absolute;
	height:50px;
	line-height: 50px;
	opacity: 0.5;
	right:20px;
	padding-left:10px;
	padding-right:10px;
}
.welcome{
	position: absolute;
	height:50px;
	line-height: 50px;
	opacity: 0.5;
	/*right:290px;*/
	right:160px;
	padding-left:15px;
	padding-right:15px;
}
.top .but i{
	margin-right:5px;
}
.right{
	position: absolute;
	padding-top:50px;
	padding-left:140px;
	width:100%;
	height:100%;
	background:#EAEDF1;
	overflow: scroll;
	/*overflow-x: hidden;*/
	left: 3px;
	top: -1px;
}
.left li{
	list-style-type:none;
	padding-left:45px; 
	line-height: 40px;
	height:40px;
	color:#FFFFFF;
	font-size:14px
}
.left li i{
	position: absolute;
	margin-right:13px;
	opacity: 0.5;
	left:18px;
	padding-top:13px;
	z-index:23;
	font-size:14px
}
.left li:hover,.left li:hover i{
	background:#FE7831;
	opacity: 1;
}
.dangqian, .dangqian i{
	background:#5F6467;
	opacity: 1;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
}
a{text-decoration:none}
a:focus{text-decoration: none}

/* 老师后台 */
.houbiankuang{
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
}
.houbiankuang div:hover{
	background-color: #CCCCCC;
}
.liuxia{
	position: fixed;
}
.biao_24, .biao_7{
	top:70px;
	left:160px;
	position: absolute;
}
.biao_24 div{
	width:100px;
	background-color: #efefef;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
.biao_7 div{
	width:80px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
.youkong,.youkong_yiyue{
	font-size:12px;
	height:25px;
	overflow:hidden;
}
.youkong{
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #5CB85C;	
}
.youkong_yiyue{
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #FFaa00;	
}
.zongkecheng_qian{
	float:left;
	margin:0 12px 0 0;
	width:50px;
	line-height:38px;
	font-size:16px;
	overflow:hidden;
}
.zongkecheng{
	width:800px;
	margin:6px 0 0 0;
	height:40px;
	line-height:38px;
	font-size:14px;
	border-radius:5px; 
	background-color:#fff;
	overflow:hidden;
}
.zongkecheng_bj0{
	background-color:#FFAA00;
	opacity: 0.2;
}
.zongkecheng_bj1{
	background-color:#4D97FF;
	opacity: 0.2;
}
.zongkecheng_bj2{
	background-color:#DD5544;
	opacity: 0.2;
}
.zongkecheng_bj3{
	background-color:#5CB85C;
	opacity: 0.2;
}
.zongkecheng_bj4{
	background-color:#993399;
	opacity: 0.2;
}
.zongkecheng0_2,.zongkecheng1_2,.zongkecheng2_2,.zongkecheng3_2,.zongkecheng4_2{
	border: 1px solid #ccc;
}
.zongkecheng0_0,.zongkecheng1_0,.zongkecheng2_0,.zongkecheng3_0,.zongkecheng4_0{
	opacity: 0.5;
}
.zongkecheng0_0,.zongkecheng0_1{
	border: 1px solid #FFAA00;
}
.zongkecheng1_0,.zongkecheng1_1{
	border: 1px solid #4D97FF;
}
.zongkecheng2_0,.zongkecheng2_1{
	border: 1px solid #DD5544;
}
.zongkecheng3_0,.zongkecheng3_1{
	border: 1px solid #5CB85C;
}
.zongkecheng4_0,.zongkecheng4_1{
	border: 1px solid #993399;
}
.zongkecheng5_0,.zongkecheng5_1{
	border: 1px solid #CC6600;
}
.zongkecheng_ming_0_2,.zongkecheng_ming_1_2,.zongkecheng_ming_2_2,.zongkecheng_ming_3_2,.zongkecheng_ming_4_2,.zongkecheng_ming_5_2{
	width:70px;
	font-size:16px;
	color:#666;
	background-color:#eee;
	float:left;
	overflow:hidden;
}
.zongkecheng_ming_0_0,.zongkecheng_ming_0_1{
	width:70px;
	font-size:16px;
	color:#FFF;
	background-color:#FFAA00;
	float:left;
	overflow:hidden;
}
.zongkecheng_ming_1_0,.zongkecheng_ming_1_1{
	width:70px;
	font-size:16px;
	color:#FFF;
	background-color:#4D97FF;
	float:left;
	overflow:hidden;
}
.zongkecheng_ming_2_0,.zongkecheng_ming_2_1{
	width:70px;
	font-size:16px;
	color:#FFF;
	background-color:#DD5544;
	float:left;
	overflow:hidden;
}
.zongkecheng_ming_3_0,.zongkecheng_ming_3_1{
	width:70px;
	font-size:16px;
	color:#FFF;
	background-color:#5CB85C;
	float:left;
	overflow:hidden;
}
.zongkecheng_ming_4_0,.zongkecheng_ming_4_1{
	width:70px;
	font-size:16px;
	color:#FFF;
	background-color: #993399;
	float:left;
	overflow:hidden;
}
.zongkecheng_ming_5_0,.zongkecheng_ming_5_1{
	width:70px;
	font-size:16px;
	color:#FFF;
	background-color: #CC6600;
	float:left;
	overflow:hidden;
}