
/*
 * header css
 */
nav {
	width: 100%;
	height: 60px;
	line-height: 60px;
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-box;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-o-box-orient: horizontal;
	-ms-box-orient: horizontal;
	background-color: #323232;
	position: relative;
}
nav a {
	display: block;
	width: 0%;
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-o-box-flex: 1;
	-ms-box-flex: 1;
	color: #ff9000;
	font-size: 16px;
	text-align: center;
	position: relative;
}
nav div {
	width: 50px;
	position: relative;
}
nav .search-btn {
	background: url(../img/search.png) center center no-repeat;
	background-size: 50% auto;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
nav .active {
	background-color: #666;
	background-image: url(../img/close.png);
}
nav .search {
	display: none;
	width: 250px;
	height: 40px;
	background-color: #666;
	position: absolute;
	top: 60px;
	right: 0;
	border-bottom-left-radius: 10px;
	padding: 7px;
	box-sizing: border-box;
}
nav .search input {
	-webkit-appearance: none;
	outline: none;
	border: none;
	display: inline-block;
	width: 190px;
	height: 26px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	padding-left: 5px;
	box-sizing: border-box;
	vertical-align: top;
}
nav .search button {
	-webkit-appearance: none;
	outline: none;
	border: none;
	display: inline-block;
	width: 46px;
	height: 26px;
	background-color: #aaa;
	color: #fff;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	vertical-align: top;
}
nav .logo img {
	width: 70px;
	position: absolute;
	top: 5px;
	left: 50%;
	margin-left: -35px;
}
nav .logo:hover .code {
	height: 156px;
	filter: alpha(opacity=1);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
}
nav .logo .code {
	display: block;
	position: absolute;
	top: 140px;
	left: 50%;
	margin-left: -78px;
	width: 156px;
	height: 0;
	-webkit-transition: filter 0.5s,-moz-opacity 0.5s,-khtml-opacity 0.5s,opacity 0.5s;
	-moz-transition: filter 0.5s,-moz-opacity 0.5s,-khtml-opacity 0.5s,opacity 0.5s;
	-o-transition: filter 0.5s,-moz-opacity 0.5s,-khtml-opacity 0.5s,opacity 0.5s;
	transition: filter 0.5s,-moz-opacity 0.5s,-khtml-opacity 0.5s,opacity 0.5s;
	filter: alpha(opacity=0);
      -moz-opacity: 0;
      -khtml-opacity: 0;
      opacity: 0;
      pointer-events: none;
}
nav .logo:before {
	content: "";
	display: block;
	position: absolute;
	top: 60px;
	left: 50%;
	margin-left: -50px;
	width: 0;
	height: 0;
	border-left: 50px solid #fff;
	border-right: 50px solid #fff;
	border-top: 30px solid #323232;
}
nav .logo:after {
	content: url(../img/gzfc.png);
	display: block;
	position: absolute;
	top: 100px;
	left: 50%;
	margin-left: -60px;
}
nav .on {
	color: #fff;
}
header hr {
	width: 100%;
	max-width: 980px;
	min-width: 800px;
	background-color: #e4e9eb;
	margin: 10px auto 0;
}

/*
 * content css
 */
article {
	width: 100%;
	max-width: 980px;
	min-width: 800px;
	margin: 100px auto 0;
	padding: 0 10px;
	box-sizing: border-box;
}
article a {
	text-decoration: none;
}
article li {
	list-style: none;
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-box;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-o-box-orient: horizontal;
	-ms-box-orient: horizontal;
	margin-bottom: 30px;
}
article .left {
	display: block;
	width: 45%;
	height: 240px;
	background-size: cover;
	background-position: center;
}
article .right {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-o-box-flex: 1;
	-ms-box-flex: 1;
	height: 240px;
	padding-left: 20px;
	box-sizing: border-box;
	color: #7f8c8c;
}
article .title {
	display: block;
	height: 20px;
	font-size: 18px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #7f8c8c;
}
article .title:hover {
	color: #ff9000;
	text-decoration: underline;
}
article .abstract {
	height: 175px;
	font-size: 14px;
	line-height: 25px;
	padding: 20px 0;
	box-sizing: border-box;
}
article .time {
	display: inline-block;
	height: 45px;
	line-height: 45px;
	font-size: 18px;
	position: relative;
	margin-left: 40px;
}
article .time:before {
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	top: 7px;
	left: -40px;
	background: url(../img/link.png) center no-repeat #323232;
	background-size: 80% 80%;
	border-radius: 5px;
}
article .button {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	padding: 15px 40px;
	background-color: #e8645a;
	float: right;
	text-align: center;
	border-radius: 5px;
}
article .tip {
	display: block;
	width: 30%;
	margin: 0 auto;
}

/*
 * page css
 */
.page {
	margin: 40px 0;
}
.page div {
	text-align: center;
}

/*
 * footer css
 */
 footer {
 	width: 100%;
	background: url(../img/footer.png) top repeat-x #3c3c3c;
	background-size: 40px auto;
 }
footer .info {
	max-width: 980px;
	min-width: 800px;
	margin: 0 auto;
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-box;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-o-box-orient: horizontal;
	-ms-box-orient: horizontal;
	padding: 45px 10px 30px;
	box-sizing: border-box;
}
footer .me {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-o-box-flex: 1;
	-ms-box-flex: 1;
	line-height: 22px;
	color: #8c8c8c;
	padding-right: 10px;
	box-sizing: border-box;
}
footer .big {
	font-size: 18px;
	color: #b7b7b7;
}
footer .copyright {
	width: 100%;
	background-color: #363636;
}
footer .copyright p {
	max-width: 980px;
	min-width: 800px;
	margin: 0 auto;
	color: #8c8c8c;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	line-height: 20px;
}
footer .copyright a {
	text-decoration: none;
 	color: #8c8c8c;
}
footer img {
	width: 156px;
	vertical-align: middle;
}

#frame {
	margin-bottom: 50px;
	width: 100%;
	height: 920px;
	overflow: auto;
	border: none;
}
#frame::-webkit-scrollbar {
	width: 0;
}
#frame scrollbar[orient="vertical"] {
	width: 0;
}
#frame {
	scrollbar-face-color: #fff;
	scrollbar-shadow-color: #fff;
	scrollbar-highlight-color: #fff;
	scrollbar-3dlight-color: #fff;
	scrollbar-darkshadow-color: #fff;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
}

/*
 * loading
 */
.load{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:9999;
	background-color:rgba(255,255,255,0.5);
}
.spinner {
  width: 30px;
  height: 30px;
  position: relative;
  top:50%;
  left:50%;
  margin-top:-15px;
  margin-left:-15px;
}
.container1 > div, .container2 > div, .container3 > div {
  width: 6px;
  height: 6px;
  background-color: #dd5555;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  -moz-animation: bouncedelay 1.2s infinite ease-in-out;
  -o-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.container2 {
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.container3 {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.circle1 {
	top: 0;
	left: 0;
}
.circle2 {
	top: 0;
	right: 0;
}
.circle3 {
	right: 0;
	bottom: 0;
}
.circle4 {
	left: 0;
	bottom: 0;
}
.container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  -moz-animation-delay: -1.1s;
  -o-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.container3 .circle1 {
  -webkit-animation-delay: -1.0s;
  -moz-animation-delay: -1.0s;
  -o-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
.container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  -moz-animation-delay: -0.9s;
  -o-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  -moz-animation-delay: -0.8s;
  -o-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  -moz-animation-delay: -0.7s;
  -o-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  -moz-animation-delay: -0.6s;
  -o-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  -moz-animation-delay: -0.5s;
  -o-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  -moz-animation-delay: -0.4s;
  -o-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  -moz-animation-delay: -0.3s;
  -o-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  -moz-animation-delay: -0.2s;
  -o-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  -moz-animation-delay: -0.1s;
  -o-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
  	-webkit-transform: scale(0.0)
  }
  40% {
  	-webkit-transform: scale(1.0)
  }
}
@-moz-keyframes bouncedelay {
  0%, 80%, 100% {
  	-moz-transform: scale(0.0)
  }
  40% {
  	-moz-transform: scale(1.0)
  }
}
@-o-keyframes bouncedelay {
  0%, 80%, 100% {
  	-o-transform: scale(0.0)
  }
  40% {
  	-o-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);
  }
}