﻿@charset "utf-8";
/* 通用css */
* { margin: 0; padding: 0 }
body { font: 14px Helvetica, "PingFang SC", "Microsoft Yahei", Arial, sans-serif; color: #555; background:#f7f7f7; }
input, textarea, select, button {font-family: inherit;}
img { border: 0; display: block }
ul, li { list-style: none; }
/*默认链接颜色 */
a { text-decoration: none; color: #555 }
.clear { clear: both; }
.blank { height: 8px; overflow: hidden; width: 100%; margin: auto; clear: both }
.blank80 { height: 100px; overflow: hidden; width: 100%; margin: auto; clear: both }
.f_l { float: left }
.f_r { float: right }
.mt20 { margin-top: 20px }
header { width: 100%; background: rgba(255,255,255,1); }
article { overflow: hidden }
.tophead { width: 1200px; margin: 0 auto; overflow: hidden; }
/* nav */
.logo { float: left; overflow: hidden; font-size: 30px; margin-top: 10px; margin-left: 10px }
.logo a { color: #333 }
.logo img { float: left }
.topnav { overflow: hidden; margin: 10px 0; }
nav { color: #999; line-height: 32px; }
nav ul { text-align: right; }
nav ul li { display: inline; font-size: 16px; padding: 10px 20px; height: 46px; line-height: 46px; }
footer { width: 100%; background: #333; color: #a5a4a4; text-align: center; padding: 20px 0; }
footer a { color: #a5a4a4 }
/* 分页 */
.pagelist { text-align: center; color: #666; width: 100%; clear: both; margin: 20px 0; padding-top: 20px }
.pagelist a { color: #666; margin: 0 2px; border: 1px solid #000; padding: 5px 10px; }
.pagelist a:hover { color: #f00; text-decoration: underline }
.pagelist > b { border: 1px solid #000; padding: 5px 10px; }
/*content*/

h1.t_nav span { float: right; color: #999 }
h1.t_nav { border-bottom: #e6e6e6 1px solid; font-size: 14px; font-weight: normal; line-height: 36px; width: 100%; overflow: hidden; box-shadow: 1px 1px 3px rgba(255,255,255,.7); }
h1.t_nav a { width: 100px; display: block; text-align: center; color: #fff; float: left;}
@-webkit-keyframes t_nava {
    50%{
        background: #2196F3;
    }
}
h1.t_nav a:hover{ -webkit-animation:t_nava 8s infinite linear ; }
.n1 { background: #5EA51B; }
.n2 { background: #8BBF5D; }
.litle { font-size: 20px; margin: 20px 0 0 0; border-bottom: #d6d5d5 1px solid; padding-bottom: 5px; padding: 10px 0 10px 100px; color: #000; background: url(../img/jdbg.png) no-repeat left center; }
.litle span { float: right; font-size: 14px; color: #666; font-weight: normal }
.ab_box { padding: 20px; overflow: hidden; background: rgba(255,255,255,1); margin-top: 20px }

.text-center{text-align: center;} 
.text-muted{color: #878787;}

/* 加载中 */
.loading_div{
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.9;
    position: fixed;
    z-index: 10;
    overflow: hidden;
}
.spinner {
  margin: 300px auto 0;
  width: 150px;
  text-align: center;
}
.spinner > div {
  width: 30px;
  height: 30px;
  background-color: #67CF22;
 
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
 
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}