@import url(jquery.modal.css);
@import url(loading.css);

html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, 
del, dfn, em, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, 
b, u, i, center, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, 
caption, tbody, tfoot, thead, th,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, 
time, mark, audio, video { 
margin: 0; 
padding: 0; 
border: 0; 
font-size: 100%; 
font: inherit; 
vertical-align: baseline; 
} 
/* HTML5 display-role reset for older browsers */ 
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { 
display: block; 
} 
body { 
  font-size: 14px;
  font-family: Arial, 'Hiragino Sans GB', 冬青黑, 'Microsoft YaHei', 微软雅黑, SimSun, 宋体, Helvetica, Tahoma, 'Arial sans-serif';
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  background-color: #eee;
  color: #363636;
} 
ol, ul { 
list-style: none; 
} 
blockquote, q { 
quotes: none; 
} 
blockquote:before, blockquote:after, 
q:before, q:after { 
content: ''; 
content: none; 
} 
table { 
border-collapse: collapse; 
border-spacing: 0; 
} 
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
*::before, *::after {
    box-sizing: border-box;
}
/*font-style的样式初始化*/
em {
	font-style: normal;
}
/*滚动条的宽度*/
::-webkit-scrollbar {
  width: 12px;
  height: 4px;
  background-color: #FFF
}
/*滚动条的滑块*/
::-webkit-scrollbar-thumb {
  border: 4px solid transparent;
  border-radius: 7px;
  background-clip: padding-box;
  background-color: #C4C4C4
}
::-webkit-scrollbar-thumb:hover {
    background-color: #9B9B9B
}
/*下划线的样式初始化*/
a{
	text-decoration: none;
	outline: 0 none;
	color: #212121;
	transition:  0.25s ease 0s;
	-webkit-transition:  0.25s ease 0s;
	-moz-transition:  0.25s ease 0s;
	-o-transition:  0.25s ease 0s;
}
a, img {
    vertical-align: top;
}
span{
	transition:  0.25s ease 0s;
	-webkit-transition:  0.25s ease 0s;
	-moz-transition:  0.25s ease 0s;
	-o-transition:  0.25s ease 0s;
}
/*BFC的方法*/
.clear:after{
	content: "";display: block;clear: both;
}
.clear {
	zoom:1;
}
/*BFC的方法  end*/

/*按钮样式*/
.btn_ok{
    display: inline-block;
    border:1px solid #013A9B;
    zoom: 1;
    height: 28px;
    line-height: 26px;
    padding: 0 20px;
    color: #FFF;
    font-size: 12px;
    text-align: center;
    background-color: #013A9B;
    border-radius: 1px;
    cursor: pointer;
}
.btn_cancle{
    display: inline-block;
    border:1px solid #CCC;
    zoom: 1;
    height: 28px;
    line-height: 26px;
    padding: 0 20px;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    border-radius: 1px;
    cursor: pointer;
}
.btn_ok:hover{
   background-color: #0048BC;
}
.btn_cancle:hover{
   border-color: #999;
}
/*按钮样式 end*/
/*输入框样色*/
.input-4border{
	border:1px solid #C6C6C6;
	outline: none;
	height: 26px;
	padding-left:6px;
}
.input-noborder{
  border: none;
  outline:none;
  font: inherit;
}
.input-noborder:disabled{
  background-color:inherit;
  font: inherit;
}
.input-bottomborder{
  border: none;
  border-bottom:1px solid #C6C6C6;
  outline:none;
  font: inherit;
}
.input-bottomborder:disabled{
  background-color:inherit;
  font: inherit;
}
.input-warntext{
  position: absolute;
  color: red;
  font-size: 12px;
  line-height: 12px;
  padding: 2px 0;
}
/*输入框颜色  ===end*/
/*form 表单 样式*/
.sectiontitle{
   background-color:#F3F8FE;
   font-weight:bold;
   padding:24px;
}
.sectioncontent{
   padding:24px;
}
.dname,.dvalue{
  float:left;
  display: inline-block;
}
.daction{
  float: right;
  font-size: 12px;
  color: #5F89D6;
  display: inline-block;
  margin-left: 10px;
}
.daction-now{
  float:left;
  font-size: 12px;
  margin-right: 10px;
  cursor: pointer;
  color: #5F89D6;
  
}
.daction:hover,.daction-now:hover{
  color:#FF500B;
  cursor: pointer;
}
.dname{
  margin-right:10px;
}
.intro{
  position:absolute;
  font-size: 12px;
  color: #FF7300;
  margin-top:4px;
}
.sectioncontent li{
  padding:24px 0;
  border-bottom: 1px solid #E5E5E5;
  line-height:18px;
}
/*form 表单 样式--end*/
/*弹窗，对话框样式*/
.dialog-header{
   border-bottom: 1px solid #e5e5e5;
}
.container{
   position: relative;
}
.container .title{
  padding: 10px;
}
.dialog-content{
   padding: 20px 16px 20px;
   overflow-x: hidden
}
.dialog-content .msg{
   font-size: 12px;
}
.dialog-content .form{
   font-size: inherit;
}
.dialog-content .form input{
	margin-left:10px;
}
.dialog-footer{
   padding: 0 16px 20px;
}
.ui-fixed-prompt{
	position: fixed; 
	display:none;
	bottom: 50%;
	z-index: 100000;
	background-color: #4C4C4C;
	border-radius: 1px;
	border:1px solid #4C4C4C;
	max-width: 300px;
}
.ui-fixed-prompt p{
	color:#fff;
	font-size: 14px;
	padding:12px 14px;
}
/*对话框样式 ------ end*/
/*滚动到顶部*/
.scrollTop{
	position: fixed;
	right:10px;
	bottom:80px;
	z-index: 98;
	width:32px;
	height:32px;
	text-align:center;
	line-height:28px;
	color:#fff;
	font-weight:bold;
	background-color: #000;
	opacity: .2;
    border-radius: 16px;
    display: none;
    cursor: pointer;
}
.scrollTop:hover{
	opacity: .7;
}
/*滚动到顶部 end*/
/*------paging---分页样式----*/
.paging{
   padding: 10px;
}
.paging a{
   cursor: pointer;
   margin-right:5px;
   margin-bottom:5px;
   padding:5px 10px;
   border:1px solid #DCDCDC;
   border-radius: 2px !important;
}
.paging a:hover{
   border-color: #0048BC;
}
.paging a,.paging span.current {
    display: inline-block;
    min-width: 16px;
    text-decoration: none;
    text-align: center;
}
.paging span.current {
    font-weight: 600;
    margin-right:5px;
    padding:5px 10px;
    color:#0048BC;
}
 .paging a.prev, .paging a.next {
   padding-left:5px;
   padding-right:5px;
}
/*--paging....end.--*/

/*--------------------header.html,footer.html css-----------------------*/
.com-page-header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background-color: #000;
  line-height: 80px;
}
.com-page-header .page-header-bd{
    position: relative;
    margin: 0 auto;
    max-width: 1400px;
    height: 100%;
    background-color: #000;
}
.com-page-header .page-header-bd .section-left{
    position: absolute;
    top: 0;
    left: 0;
    width: 425px;
    height: 100%;
    border-right: 1px solid #4d4d4d;
    border-bottom: 1px solid #4d4d4d;
}
.com-page-header .page-header-bd .section-left .logo{
   display:inline-block;
   height:24px;
   width:160px;
   background: url(../images/logo-w.png) no-repeat;
   background-size:cover; 
   margin-top:27px;
   margin-left:60px;
}
.com-page-header .page-header-bd .section-left .text{
   display:inline-block;
   height:18px;
   vertical-align:top;
   margin-left:30px;
   margin-top:0;
   color:#FFC71F;
/*    background: url(../images/font.png) no-repeat;  */
   background-size:cover; 
}
.com-page-header .page-header-bd .section-center{
    position: relative;
    margin-right: 350px;
    margin-left: 425px;
    height: 100%;
    border-right: 1px solid #4d4d4d;
    border-bottom: 1px solid #4d4d4d;
    
}
.com-page-header .page-header-bd .section-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    border-bottom: 1px solid #4d4d4d;
}
.com-page-header .page-header-bd .section-center .cates{
    overflow: hidden;
    padding: 0 20px;
    width: 100%;
    height: 80px;
}
.com-page-header .page-header-bd .section-center .cates .cate{
    float: left;
    padding-left: 20px;
}
.com-page-header .page-header-bd .section-center .cates .cate a{
   color:gray;
}
.com-page-header .page-header-bd .section-center .cates .cate a:hover,.com-page-header .page-header-ft .cates .cate a:hover{
   color:#FFC71F;
}
.com-page-header .page-header-ft {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 3;
    width: 100%;
    background-color: #000;
}
.com-page-header .page-header-ft .cates {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 10px 20px;
    width: 1000px;
    display: none;
}
.com-page-header .page-header-ft .cates .cate {
    float: left;
    padding: 0 10px;
    width: 190px;
    line-height: 32px;
}
.com-page-header .page-header-ft .cates .cate a{
    color:#C4C4C4;
}
.com-page-header .page-header-bd .section-right .user{
   padding-right: 14px;
   width: 200px;
}
.com-page-header .page-header-bd .section-right .user a{
   display: inline-block; 
}   
.com-page-header .page-header-bd .section-right .user a.user-icon{
   width:32px;
   height:32px; 
   vertical-align:middle;
   margin-left:20px;
   background: url(../images/user.png) no-repeat 0 -32px;
   transition:  none;
	-webkit-transition:  none;
	-moz-transition:  none;
	-o-transition:  none;
	
}
.com-page-header .page-header-bd .section-right .user a.user-icon:hover{
  background: url(../images/user.png) no-repeat 0 0;
}
.com-page-header .page-header-bd .section-right .user a.avatar{ 
   width:32px;
   height:32px;
   vertical-align:middle;
   margin-left:20px;
}
.com-page-header .page-header-bd .section-right .user a.avatar  span{
    display:block;
	border:0;
	width:32px;
	height:32px;
	line-height:34px;
	color:#000;
	border-radius: 16px;
	background-color:#FFC100;
	text-align: center;
	font-size: 18px;
	font-weight: bold; 
	background-size:cover; 
}
.com-page-header .page-header-bd .section-right .user a.text{
  width:60px; 
  max-width:120px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-page-header .page-header-bd .section-right .user a.text:hover{
  color:#FFC71F;
} 
#loginLayer{
  display:none;
  width:620px;
  height: 620px;
  padding: 20px 80px;
  background-color: #fff; 
  overflow: auto;
  overflow-x:hidden;
}
#loginLayer .loginWrap .sub-title{
  position: relative;
  color: #b3b3b3;
  text-align: center;
  font-size: 16px;
}
#loginLayer .loginWrap .sub-title:before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    content: '';
}
#loginLayer .loginWrap .sub-title span{
   position: relative;
   padding: 0 10px;
   background-color: #fff;
}
#loginLayer .loginWrap .site-logo{
  width:100%;
  height: 65px;
}
#loginLayer .loginWrap .site-logo span{
   display:block;
   height:30px;
   width:200px;
   margin:0 auto;
   background: url(../images/logo-b.png) no-repeat; 
   background-size:cover; 
} 
#loginLayer .loginWrap .sns-login{
  width:100%;
  height: 118px;
}
#loginLayer p{
  padding: 10px 0;
} 
#loginLayer p input{
  outline: none;
  width:100%;
  height: 56px;
  color: #b3b3b3;
  border:1px solid #e5e5e5;
  padding-left:20px;
  font-size: 20px; 
  font-family: inherit;
}
#loginLayer .ok-btn{
  display:block;
  width:100%;
  height: 56px;
  background-color: #FFC71F;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color:#fff;
  cursor: pointer;
  outline: none;
  border:none;
}
#loginLayer .ok-btn:disabled{
    background-color: #fcd665;
}

#loginLayer .ok-btn:hover{
    background-color: #ffc000;
}

#loginLayer .w-btn{
    display:block;
    width:100%;
    height: 56px;
    background-color: #FFFFFF;
    border: 1px solid #e5e5e5;
    line-height: 48px;
    text-align: center;
    font-size: 20px;
    color:grey;
    cursor: pointer;
    outline: none;
}

#loginLayer .c-btn:hover{
    border: 1px solid #b8b8b8;
}

#loginLayer  .login-ft a{
  color: grey;
  font-size: 20px;
  cursor: pointer;
}
#loginLayer  .login-ft a:hover{
  color: black;
}
#loginLayer .registerWrap{
  padding-top:0;
}
#loginLayer .registerWrap .title{
  color: #000;
  font-size: 30px;
  text-align: center;
  margin-bottom:20px; 
} 
#loginLayer .forgotPwdWrap .title,#loginLayer .changePwd .title{
  color: #000;
  font-size: 30px;
  text-align: center;
  margin:0;
}
#loginLayer .forgotPwdWrap .step2 input,#loginLayer .forgotPwdWrap .step2 a{
  display: inline-block;
  margin-right:20px;
}
#loginLayer .modifyName .title{ 
  color: #000;
  font-size: 30px;
  text-align: center;
  margin:110px 0 20px 0; 
}

.slide-fade-enter-active {
    transition: all 0.3s ease-out;
}

.slide-fade-leave-active {
    transition: all 0s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter-from,
.slide-fade-leave-to {
    transform: translateX(20px);
    opacity: 0;
}

.page-footer{
	width:100%;
	background-color: #191919;
    text-align: center;
}
.page-footer .copyright{
    width:100%;
    margin: 0 auto;
    padding: 18px 0;
    text-align: center;
}
.page-footer .copyright span{
	color:#c1c1c1;
	font-size: 12px;
    font-weight: lighter;
}

/*自适应 */
@media(max-width:1170px){
   .com-page-header .page-header-bd .section-center{
       margin-right: 300px;
   }
   .com-page-header .page-header-bd .section-right{
        width: 300px;
   }
}
@media(max-width:1110px){
	.com-page-header .page-header-bd .section-left{
       width: 370px;
   }
	.com-page-header .page-header-bd .section-center{
       margin-right: 250px;
       margin-left:370px;
   }
   .com-page-header .page-header-bd .section-right{
       width: 250px;
   }
   .com-page-header .page-header-bd .section-left .logo{
       margin-left:40px;
   }
}
@media(max-width:1000px){
	.com-page-header .page-header-bd .section-left{
       width: 340px;
   }
	.com-page-header .page-header-bd .section-center{
       margin-right: 200px;
       margin-left:340px;
   }
   .com-page-header .page-header-bd .section-right{
       width: 200px;
   }
   .com-page-header .page-header-bd .section-left .logo{
       margin-left:20px;
   }
   .com-page-header .page-header-bd .section-left .text{
      margin-left:20px;
   }
   .com-page-header .page-header-bd .section-center .cates{
      padding: 0 10px;
   }
   .com-page-header .page-header-ft .cates{
      width:100%;
   }
}
@media(max-width:900px){
	.com-page-header .page-header-bd .section-left{
       width: 150px;
   }
	.com-page-header .page-header-bd .section-center{
       margin-right: 160px;
       margin-left:150px;
   }
   .com-page-header .page-header-bd .section-right{
       width: 160px;
   }
   .com-page-header .page-header-bd .section-left .text{
       display: none;
   }
   .com-page-header .page-header-bd .section-center .cates{
      padding: 0;
   }
   .com-page-header .page-header-ft .cates .cate{
      width:150px;
   }
    .com-page-header .page-header-bd .section-left .logo{
      margin-left:10px;
      margin-top:12px;
      height:18px;
      width:120px;
   }
}
@media(max-width:660px){
	.com-page-header .page-header-bd .section-left{
       width: 150px;
   }
	.com-page-header .page-header-bd .section-center{
       margin-right: 66px;
       margin-left:150px;
   }
   .com-page-header .page-header-bd .section-right{
       width: 66px;
   }
   .com-page-header .page-header-bd .section-right .user a.user-icon{
      display: none;
   }
}
@media(max-width:620px){
	#loginLayer{
	  width:100%;
	  padding: 4% 10%;
	  height: 100%;
	}
	#loginLayer  form p{
	  padding:6px 0;
	}
	#loginLayer  form p input{
	  height:40px;
	  font-size: 16px; 
	  padding-left:16px;
	}
	#loginLayer .loginWrap .sub-title{
	  font-size: 14px;
	}
	#loginLayer .ok-btn{
	  height: 40px;
	  line-height: 40px;
	  font-size: 16px;
	} 
	#loginLayer .c-btn{
	  height: 40px;
	  line-height: 38px;
	  font-size: 16px;
	}
	#loginLayer  .login-ft a{
	  font-size: 16px;
	}
}
@media(max-width:560px){
	.com-page-header{
	   height: 50px;
	   line-height: 50px;
	   font-size: 12px;
	}
	.com-page-header .page-header-ft{
	   top: 50px;
	}
	.com-page-header .page-header-bd .section-left{
       width: 80px;
   }
	.com-page-header .page-header-bd .section-center{
       margin-right: 60px;
       margin-left:80px;
   }
   .com-page-header .page-header-bd .section-right{
       width: 60px;
   }
   .com-page-header .page-header-bd .section-left .logo{
      margin-left:10px;
      margin-top:8px;
      height:33px;
      width:56px;
   }
   .com-page-header .page-header-bd .section-center{
     overflow-y: hidden;
   }
   .com-page-header .page-header-bd .section-center .section-center-wrap{
		height:70px;
	    overflow: auto;
	    overflow-y: hidden;
	}
	 .com-page-header .page-header-bd .section-center .section-center-wrap .cates{
	    min-width:340px;
	 }
}
/*-----------------------header.html,footer.html css------end------------------------------------*/