/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img {
    margin: 0;
    padding: 0;
}

.clear{
	clear: both;
}
.hide{
	display: none;
}
/*将标签原有的默认内外边距去掉*/

fieldset, img, input, button {
    border: none; /*去掉边框*/
    padding: 0;
    margin: 0;
    outline-style: none; /*去掉环绕边框*/
}

ul, ol {
    list-style: none; /*去掉原样式中的小黑点*/
    /*ctrl+alt+l*/
}

input {
    padding-top: 0;
    padding-bottom: 0;

}

select, input {
    vertical-align: middle; /*输入字居中显示*/
}

select, input, textarea {
    font-size: 14px;
    margin: 0;
}

/**/
textarea {
    resize: none; /*防止拖动*/
}

img {
    border: 0;
    vertical-align: middle; /*  去掉图片底部默认的3像素空白缝隙*/
}

table {
    border-collapse: collapse; /*合并外边线*/
}

body {
   font-family:  Microsoft YaHei, Arial, "\5b8b\4f53";
  /* background: linear-gradient(0deg, #735765, #763218);*/
   background: #763218;
   background-size:100% 100% ;
   height: 100vh;
}
.logo{
	margin: 40px;
}
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1; /*IE/7/6*/
    /*兼容IE6下的写法*/
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none; /**/
    font-weight: normal; /*不加粗*/
    font-size: 100%;
}

/*login 开始*/
.login{
    width: 1000px;
    height: 500px;
    /*background-color: yellowgreen;*/
    position: absolute;
    left:50%;
    top:50%;
    margin-left: -500px;
    margin-top: -250px;
}
.login>.login_title{
    height: 120px;
    text-align: center;
}
.login>.login_title>p{
   /* color:#228DFF;*/
   color:#fff;
    font-size: 50px;
    font-weight: bold;
    margin-top: -28px;
    letter-spacing:5px;
 	/*-webkit-animation: neon2 0.8s ease-in-out infinite alternate;
	-moz-animation: neon2 0.8s ease-in-out infinite alternate;
	animation: neon2 0.8s ease-in-out infinite alternate;*/
} 
@keyframes neon2 {
    from {
    text-shadow: 0 0 10px #fff,
                 0 0 20px  #fff,
                 0 0 30px  #fff,
                 0 0 40px  #228DFF,
                 0 0 70px  #228DFF,
                 0 0 80px  #228DFF,
                 0 0 100px #228DFF,
                 0 0 150px #228DFF;
  }
  to {
    text-shadow: 0 0 5px #fff,
               0 0 10px #fff,
               0 0 15px #fff,
               0 0 20px #228DFF,
               0 0 35px #228DFF,
               0 0 40px #228DFF,
               0 0 50px #228DFF,
               0 0 75px #228DFF;
  }
}
.login>.login_main{
    width: 1000px;
    height: 320px;
}
.login>.login_main>.main_left{
    height: 320px;
    width: 650px;
    float: left;
    -moz-border-top-left-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;

    -moz-border-bottom-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px; 
    background: url("../img/bg.jpg") no-repeat;
    background-size:100% 100%;
}
.login>.login_main>.main_right{
    height: 320px;
    width: 350px;
    float: right;
    background-color: #e9eef2;
    -moz-border-top-right-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;

    -moz-border-bottom-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.login>.login_main>.main_right>.right_title{
    color:#753219;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 60px;
    background: url("../img/border_img.png") repeat;
    margin-bottom: 25px;
}
.right_title .menu-left{
	width: 50%;
	height: 100%;
	float: left;
	cursor: pointer;
}
.right_title .menu-right{
	width: 50%;
	height: 100%;
	float: left;
	cursor: pointer;
	color: #999;
}
.line{
	width: 100%;
	height: 2px;
	background: #753219;
	margin-top:-2px;
}
.login>.login_main>.main_right>form>div{
    position: relative;
}
.login>.login_main>.main_right>form>div>img{
    position: absolute;
    left: 62px;
    top:7px;
}
.login>.login_main>.main_right>form input{
    height: 35px;
    width: 250px;
    border: 1px solid #d3d8dc;
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-left: 50px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color:#333;
    padding-left: 40px;
}

.login>.login_main>.main_right>form>.code>input{
    width: 150px;
}
.login>.login_main>.main_right>form>.code>.code_img{
    width: 90px;
    height: 35px;
    float: right;
    margin-right: 50px;
    cursor: pointer;
}
.login>.login_main>.main_right>form input:focus{
    border: 1px solid #999;
}
.login>.login_main>.main_right>form>.yes_login{
	margin-top: 30px; 
	width:250px;
	height:40px;
	margin:auto;
	background:#753219 ; 
	cursor: pointer;
	text-align: center;
	border-radius:5px ;
}
.login>.login_main>.main_right>form>.yes_login p{
	font-size: 21px;
	line-height: 40px;
	color: white;
	letter-spacing: 20px;
	padding-left: 15px;
}
.password input{
	margin-bottom: 5px;
}
.login>.login_main>.main_right>form>.yes_login>a{
    display: block;
    width: 250px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #0064c8;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color:#fff;
    text-decoration: none;
    margin-left: 50px;
}
.login>.login_main>.main_right>form>.yes_login>a:hover{
    background-color: #0058af;
}
.login>.login_footer{
	
    text-align: center;
    padding-top: 60px;
}
.login>.login_footer>p{
    font-size: 16px;
    color:#eee;
    line-height: 50px;
   
    letter-spacing: 3px;
}
.logins{
	 
	cursor: pointer;
	
} 
.pulse{
	 margin-top: 30px;
}
	
 #zhuce{
	text-decoration: none;
	float: right;
	margin-right: 50px;
	font-size: 12px;
	color: #753219;
}
.zaixian{
	font-size: 14px;
	float: left;
	margin-left: 30px;
	margin-top: 10px;
}
.yes_login input{
	padding-left: 0!important;
	background: #753219!important; 
	color: white!important;
	font-size: 17px!important; 
	margin-top: -15px!important;
}
.menu-left,.menu-right p{
	user-select:none;
	moz-user-select: -moz-none;
	-moz-user-select: none;
	-o-user-select:none;
	-khtml-user-select:none;
	-webkit-user-select:none;

}

