html {
	font-size: 625%;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: "Î¢ÈíÑÅºÚ", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #666;
	background-color: #fff;
}

.img {
	position: relative;
	width: 3rem;
	height: 2.25rem;
	background-color: #fe7253;
	border: 1px solid #000;
	cursor: pointer;
	overflow: hidden;
}

.img img {
	position: relative;
	opacity: 1;
	overflow: hidden;
	display: block;
	max-width: 100%;
	height: auto;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.img.scale-down img {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-o-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

.img .caption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	color: #fff;
	overflow: hidden;
}

.img .caption h3 {
	position: absolute;
	top: 25%;
	left: 0;
	width: 100%;
	font-size: .18rem;
	font-weight: 700;
	text-align: center;
	overflow: hidden;
	opacity: 1;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.img .caption p {
	position: absolute;
	top: 60%;
	left: 0;
	width: 100%;
	font-size: .14rem;
	text-align: center;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.img .caption a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1000;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.img.line .caption::before,
.img.line .caption::after {
	position: absolute;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
	-moz-transition: opacity 0.4s, -moz-transform 0.4s;
	-o-transition: opacity 0.4s, -o-transform 0.4s;
	transition: opacity 0.4s, transform .4s;
}

.img.line .caption::before {
	top: 8%;
	right: 10%;
	bottom: 8%;
	left: 10%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0, 1);
	-moz-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}

.img.line .caption::after {
	top: 8%;
	right: 10%;
	bottom: 8%;
	left: 10%;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1, 0);
	-moz-transform: scale(1, 0);
	-o-transform: scale(1, 0);
	-ms-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}

.img.line .cross::before {
	top: 14%;
	right: 5%;
	bottom: 14%;
	left: 5%;
}

.img.slide-bottom .caption {
	background-color: rgba(254, 114, 83, 0);
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	-webkit-transform: translate3d(0, -100%, 0);
	-moz-transform: translate3d(0, -100%, 0);
	-o-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

.img.slide-bottom .caption h3,
.img.slide-bottom .caption p {
	top: -50%;
	opacity: 0;
}

.img.slide-bottom .caption p {
	-webkit-transition: all 0.6s ease-in-out 0s;
	-moz-transition: all 0.6s ease-in-out 0s;
	-o-transition: all 0.6s ease-in-out 0s;
	-ms-transition: all 0.6s ease-in-out 0s;
	transition: all 0.6s ease-in-out 0s;
}

.img.slide-top .caption {
	background-color: rgba(254, 114, 83, 0);
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.img.slide-top .caption h3,
.img.slide-top .caption p {
	top: 150%;
	opacity: 0;
}

.img.slide-top .caption p {
	-webkit-transition: all 0.6s ease-in-out 0s;
	-moz-transition: all 0.6s ease-in-out 0s;
	-o-transition: all 0.6s ease-in-out 0s;
	-ms-transition: all 0.6s ease-in-out 0s;
	transition: all 0.6s ease-in-out 0s;
}

.img.slide-left .caption {
	background-color: rgba(254, 114, 83, 0);
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.img.slide-left .caption h3 {
	top: 25%;
	left: -100%;
	opacity: 0;
}

.img.slide-left .caption p {
	top: 50%;
	left: -100%;
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out 0s;
	-moz-transition: all 0.6s ease-in-out 0s;
	-o-transition: all 0.6s ease-in-out 0s;
	-ms-transition: all 0.6s ease-in-out 0s;
	transition: all 0.6s ease-in-out 0s;
}

.img.slide-right .caption {
	background-color: rgba(254, 114, 83, 0);
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	-webkit-transform: translate3d(100%, 0, 0);
	-moz-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.img.slide-right .caption h3 {
	top: 25%;
	left: 200%;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.img.slide-right .caption p {
	top: 50%;
	left: 200%;
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out 0s;
	-moz-transition: all 0.6s ease-in-out 0s;
	-o-transition: all 0.6s ease-in-out 0s;
	-ms-transition: all 0.6s ease-in-out 0s;
	transition: all 0.6s ease-in-out 0s;
}

.img:hover h3 {
	opacity: 0.6;
}

.img:hover p {
	top: 50%;
	opacity: 1;
}

.img.scale-up:hover img {
	opacity: 0.6;
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-o-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

.img.scale-down:hover img {
	opacity: 0.6;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.img.line:hover img {
	opacity: 0.6;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.img.line:hover .caption::before,
.img.line:hover .caption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.img.slide-bottom:hover .caption {
	background-color: rgba(254, 114, 83, 0.8);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.img.slide-bottom:hover h3 {
	top: 25%;
	opacity: 1;
}

.img.slide-bottom:hover p {
	top: 50%;
	opacity: 1;
}

.img.slide-bottom.push:hover img {
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.img.slide-top:hover .caption {
	background-color: rgba(254, 114, 83, 0.8);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.img.slide-top:hover h3 {
	top: 25%;
	opacity: 1;
}

.img.slide-top:hover p {
	top: 50%;
	opacity: 1;
}

.img.slide-top.push:hover img {
	-webkit-transform: translate3d(0, -100%, 0);
	-moz-transform: translate3d(0, -100%, 0);
	-o-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

.img.slide-left:hover .caption {
	background-color: rgba(254, 114, 83, 0.8);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.img.slide-left:hover h3 {
	left: 0;
	opacity: 1;
}

.img.slide-left:hover p {
	left: 0;
	opacity: 1;
}

.img.slide-left.push:hover img {
	-webkit-transform: translate3d(100%, 0, 0);
	-moz-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.img.slide-right:hover .caption {
	background-color: rgba(254, 114, 83, 0.8);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.img.slide-right:hover h3 {
	left: 0;
	opacity: 1;
}

.img.slide-right:hover p {
	left: 0;
	opacity: 1;
}

.img.slide-right.push:hover img {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.img-spin {
	position: relative;
	display: block;
	width: 3rem;
	height: 2.25rem;
	overflow: hidden;
	border: 0;
	box-sizing: border-box;
	-webkit-perspective: 17rem;
	-moz-perspective: 17rem;
	perspective: 17rem;
	-webkit-perspective-origin: 50% 50%;
	-moz-perspective-origin: 50% 50%;
	perspective-origin: 50% 50%;
	cursor: pointer;
}

.img-spin .rotate {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.img-spin .rotate .img {
	backface-visibility: hidden;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.img-spin .rotate .img img {
	display: block;
	position: relative;
	max-width: 100%;
}

.img-spin .rotate .caption {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	color: #fff;
	opacity: 0;
	background-color: #fe7253;
	text-align: center;
	backface-visibility: hidden;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.img-spin .rotate .caption h3 {
	position: absolute;
	top: 25%;
	left: 0;
	font-size: .18rem;
	font-weight: 700;
	text-align: center;
	width: 100%;
	color: #fff;
}

.img-spin .rotate .caption p {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	font-size: .14rem;
	text-align: center;
	color: #fff;
}

.img-spin .rotate .caption a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.img-spin .rotate.DX .caption {
	-webkit-transform: rotateX(-180deg);
	-moz-transform: rotateX(-180deg);
	-o-transform: rotateX(-180deg);
	-ms-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.img-spin .rotate.DY .caption {
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.img-spin .rotate.DX:hover .img {
	-webkit-transform: rotateX(180deg);
	-moz-transform: rotateX(180deg);
	-o-transform: rotateX(180deg);
	-ms-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.img-spin .rotate.DX:hover .caption {
	opacity: 1;
	-webkit-transform: rotateX(0);
	-moz-transform: rotateX(0);
	-o-transform: rotateX(0);
	-ms-transform: rotateX(0);
	transform: rotateX(0);
}

.img-spin .rotate.DY:hover .img {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.img-spin .rotate.DY:hover .caption {
	opacity: 1;
	-webkit-transform: rotateY(0);
	-moz-transform: rotateY(0);
	-o-transform: rotateY(0);
	-ms-transform: rotateY(0);
	transform: rotateY(0);
}

.btn1 {
	position: relative;
	display: inline-block;
	height: 0.5rem;
	width: 1.4rem;
	margin: .1rem auto;
	border: none;
	background: transparent;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.btn1 > span {
	display: block;
	position: absolute;
	overflow: hidden;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	-webkit-transition: all 1s ease-in-out 0s;
	-moz-transition: all 1s ease-in-out 0s;
	-o-transition: all 1s ease-in-out 0s;
	-ms-transition: all 1s ease-in-out 0s;
	transition: all 1s ease-in-out 0s;
}

.btn1 > span > span {
	display: block;
	width: 1.4rem;
	padding: .15rem 0;
	border-radius: .08rem;
	letter-spacing: .05rem;
	text-align: center;
	background-color: #67d6c1;
	color: #4186b2;
}

.btn1::after {
	content: attr(data-title);
	display: block;
	width: 100%;
	padding: .15rem 0;
	border-radius: .08rem;
	letter-spacing: .05rem;
	text-align: center;
	background-color: #4186b2;
	color: #67d6c1;
}

.btn1:hover {
	text-decoration: none;
}

.btn1:hover > span {
	width: 100%;
}

.btn1.btn1-V > span {
	height: 0%;
	width: 100%;
}

.btn1.btn1-V > span > span {
	background: #2f3c4b;
	color: #eb6e61;
}

.btn1.btn1-V::after {
	background: #eb6e61;
	color: #2f3c4b;
}

.btn1.btn1-V:hover > span {
	height: 100%;
}

.btn2 {
	position: relative;
	display: inline-block;
	padding: .1rem .2rem;
	background-color: #f5af02;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	color: #fff;
	border: none;
	vertical-align: middle;
	overflow: hidden;
	-webkit-transform: translateZ(0px);
	-moz-transform: translateZ(0px);
	-o-transform: translateZ(0px);
	-ms-transform: translateZ(0px);
	transform: translateZ(0px);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.btn2:hover {
	color: #fff;
}

.btn2::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background-color: #0064d2;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.btn2.btn2-a::before {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 0 0 0;
	-moz-transform-origin: 0 0 0;
	-o-transform-origin: 0 0 0;
	-ms-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
}

.btn2.btn2-a:hover::before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.btn2.btn2-b::before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 0 0;
	-moz-transform-origin: 100% 0 0;
	-o-transform-origin: 100% 0 0;
	-ms-transform-origin: 100% 0 0;
	transform-origin: 100% 0 0;
}

.btn2.btn2-b:hover::before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.btn2.btn2-c::before {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 0 100% 0;
	-moz-transform-origin: 0 100% 0;
	-o-transform-origin: 0 100% 0;
	-ms-transform-origin: 0 100% 0;
	transform-origin: 0 100% 0;
}

.btn2.btn2-c:hover::before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.btn2.btn2-d::before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 0 0;
	-moz-transform-origin: 0 0 0;
	-o-transform-origin: 0 0 0;
	-ms-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
}

.btn2.btn2-d:hover::before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.btn2.btn2-e::before {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 0 0 0;
	-moz-transform-origin: 0 0 0;
	-o-transform-origin: 0 0 0;
	-ms-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
}

.btn2.btn2-e:hover::before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn2.btn2-f::before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 0 0;
	-moz-transform-origin: 100% 0 0;
	-o-transform-origin: 100% 0 0;
	-ms-transform-origin: 100% 0 0;
	transform-origin: 100% 0 0;
}

.btn2.btn2-f:hover::before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn2.btn2-g::before {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 0 100% 0;
	-moz-transform-origin: 0 100% 0;
	-o-transform-origin: 0 100% 0;
	-ms-transform-origin: 0 100% 0;
	transform-origin: 0 100% 0;
}

.btn2.btn2-g:hover::before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn2.btn2-h::before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 0 0;
	-moz-transform-origin: 0 0 0;
	-o-transform-origin: 0 0 0;
	-ms-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
}

.btn2.btn2-h:hover::before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn2.btn2-i::before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50% 50% 0;
	-moz-transform-origin: 50% 50% 0;
	-o-transform-origin: 50% 50% 0;
	-ms-transform-origin: 50% 50% 0;
	transform-origin: 50% 50% 0;
}

.btn2.btn2-i:hover::before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.btn2.btn2-j::before {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 50% 0;
	-moz-transform-origin: 50% 50% 0;
	-o-transform-origin: 50% 50% 0;
	-ms-transform-origin: 50% 50% 0;
	transform-origin: 50% 50% 0;
}

.btn2.btn2-j:hover::before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.btn2.btn2-k::before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: 50% 50% 0;
	-moz-transform-origin: 50% 50% 0;
	-o-transform-origin: 50% 50% 0;
	-ms-transform-origin: 50% 50% 0;
	transform-origin: 50% 50% 0;
}

.btn2.btn2-k:hover::before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
}

.btn2.btn2-l::before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transform-origin: 50% 50% 0;
	-moz-transform-origin: 50% 50% 0;
	-o-transform-origin: 50% 50% 0;
	-ms-transform-origin: 50% 50% 0;
	transform-origin: 50% 50% 0;
}

.btn2.btn2-l:hover::before {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
}

.btn2.btn2-m::before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.btn2.btn2-m:hover::before {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.btn2.btn2-n::before {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.btn2.btn2-n:hover::before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.btn2.btn2-o::before {
	top: 50%;
	left: 50%;
	width: 200%;
	height: 0;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.btn2.btn2-o:hover::before {
	height: 180%;
	opacity: 1;
}

.btn2.btn2-p::before {
	top: 50%;
	left: 50%;
	width: 200%;
	height: 0;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.btn2.btn2-p:hover::before {
	height: 180%;
	opacity: 1;
}

.btn3 {
	position: relative;
	background-color: #823aa0;
	color: #fff;
	padding: .1rem .2rem;
	overflow: hidden;
	border: none;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.btn3::before {
	position: absolute;
	left: 0;
	top: -100%;
	height: 100%;
	width: 100%;
	padding: .05rem;
	font-size: 180%;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.btn3 span {
	display: inline-block;
	width: 100%;
	height: 100%;
	letter-spacing: .02rem;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.btn3.btn3-a:hover span {
	-webkit-transform: translateY(300%);
	-moz-transform: translateY(300%);
	-o-transform: translateY(300%);
	-ms-transform: translateY(300%);
	transform: translateY(300%);
}

.btn3.btn3-a:hover::before {
	top: 0;
}

.btn3.btn3-b:before {
	left: 100%;
	top: 0;
}

.btn3.btn3-b:hover span {
	-webkit-transform: translateX(-200%);
	-moz-transform: translateX(-200%);
	-o-transform: translateX(-200%);
	-ms-transform: translateX(-200%);
	transform: translateX(-200%);
}

.btn3.btn3-b:hover::before {
	left: 0;
}

.btn3.btn3-c:before {
	left: 0;
	top: 100%;
}

.btn3.btn3-c:hover span {
	-webkit-transform: translateY(-300%);
	-moz-transform: translateY(-300%);
	-o-transform: translateY(-300%);
	-ms-transform: translateY(-300%);
	transform: translateY(-300%);
}

.btn3.btn3-c:hover::before {
	top: 0;
}

.btn3.btn3-d:before {
	left: -100%;
	top: 0;
}

.btn3.btn3-d:hover span {
	-webkit-transform: translateX(200%);
	-moz-transform: translateX(200%);
	-o-transform: translateX(200%);
	-ms-transform: translateX(200%);
	transform: translateX(200%);
}

.btn3.btn3-d:hover::before {
	left: 0;
}

.perspective {
	-webkit-perspective: 8rem;
	-moz-perspective: 8rem;
	perspective: 8rem;
	display: inline-block;
}

.perspective .btn4 {
	position: relative;
	display: block;
	padding: .1rem .2rem;
	background-color: #5cbcf6;
	border: none;
	cursor: pointer;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.perspective .btn4::after,
.perspective .btn4::before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	padding: .1rem .2rem;
}

.perspective .btn4.btn4-H::after,
.perspective .btn4.btn4-H::before {
	left: 0;
}

.perspective .btn4.btn4-V::after,
.perspective .btn4.btn4-V::before {
	top: 0;
}

.perspective .btn4::after {
	content: 'OK';
	background-color: #7aca7c;
	color: #358337;
}

.perspective .btn4.btn4-H::after {
	top: -100%;
	-webkit-transform: rotateX(90deg);
	-moz-transform: rotateX(90deg);
	-o-transform: rotateX(90deg);
	-ms-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 0% 100%;
	-moz-transform-origin: 0% 100%;
	-o-transform-origin: 0% 100%;
	-ms-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
}

.perspective .btn4.btn4-V::after {
	left: -100%;
	-webkit-transform: rotateY(-90deg);
	-moz-transform: rotateY(-90deg);
	-o-transform: rotateY(-90deg);
	-ms-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}

.perspective .btn4::before {
	content: 'Error!';
	background-color: #e96a6a;
	color: #a33a3a;
}

.perspective .btn4.btn4-H::before {
	top: 100%;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	-o-transform: rotateX(-90deg);
	-ms-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 0% 0%;
	-moz-transform-origin: 0% 0%;
	-o-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
}

.perspective .btn4.btn4-V::before {
	left: 100%;
	-webkit-transform: rotateY(90deg);
	-moz-transform: rotateY(90deg);
	-o-transform: rotateY(90deg);
	-ms-transform: rotateY(90deg);
	transform: rotateY(90deg);
	-webkit-transform-origin: 0% 0%;
	-moz-transform-origin: 0% 0%;
	-o-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
}

.perspective .btn4.btn4-a:hover {
	-webkit-transform: rotateX(-90deg) translateY(100%);
	-moz-transform: rotateX(-90deg) translateY(100%);
	-o-transform: rotateX(-90deg) translateY(100%);
	-ms-transform: rotateX(-90deg) translateY(100%);
	transform: rotateX(-90deg) translateY(100%);
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

.perspective .btn4.btn4-b:hover {
	-webkit-transform: rotateY(90deg) translateX(100%);
	-moz-transform: rotateY(90deg) translateX(100%);
	-o-transform: rotateY(90deg) translateX(100%);
	-ms-transform: rotateY(90deg) translateX(100%);
	transform: rotateY(90deg) translateX(100%);
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	-o-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}

.perspective .btn4.btn4-c:hover {
	-webkit-transform: rotateX(90deg) translateY(-100%);
	-moz-transform: rotateX(90deg) translateY(-100%);
	-o-transform: rotateX(90deg) translateY(-100%);
	-ms-transform: rotateX(90deg) translateY(-100%);
	transform: rotateX(90deg) translateY(-100%);
	-webkit-transform-origin: 50% 0%;
	-moz-transform-origin: 50% 0%;
	-o-transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

.perspective .btn4.btn4-d:hover {
	-webkit-transform: rotateY(-90deg) translateX(-100%);
	-moz-transform: rotateY(-90deg) translateX(-100%);
	-o-transform: rotateY(-90deg) translateX(-100%);
	-ms-transform: rotateY(-90deg) translateX(-100%);
	transform: rotateY(-90deg) translateX(-100%);
	-webkit-transform-origin: 0% 50%;
	-moz-transform-origin: 0% 50%;
	-o-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
}

.svg-wrapper {
	position: relative;
	display: inline-block;
	width: 1.5rem;
	height: .4rem;
}

.svg-wrapper rect {
	stroke-width: .06rem;
	fill: transparent;
	stroke: #009FFD;
	stroke-dasharray: 85 400;
	stroke-dashoffset: -223;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

.svg-wrapper div {
	margin-top: -35px;
	text-align: center;
}

.svg-wrapper div a {
	color: #666;
	text-decoration: none;
	font-weight: 100;
	font-size: 1.1em;
}

.svg-wrapper:hover rect {
	stroke-dasharray: 50 0;
	stroke-width: 3px;
	stroke-dashoffset: 0;
	stroke: #06D6A0;
}

.btn-slide {
	position: relative;
	display: inline-block;
	width: 2rem;
	height: .54rem;
	line-height: .54rem;
	padding: 0;
	border-radius: .5rem;
	background: #fdfdfd;
	border: .02rem solid #0099cc;
	margin: .1rem;
	transition: .5s;
}

.btn-slide span.circle {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	height: .4rem;
	width: .4rem;
	background-color: #0099cc;
	color: #fff;
	margin: 5px;
	line-height: .4rem;
	text-align: center;
	transition: .5s;
	border-radius: 50%;
}

.btn-slide span.title,
.btn-slide span.title-hover {
	position: absolute;
	right: .9rem;
	height: .5rem;
	line-height: .5rem;
	font-size: .16rem;
	font-weight: bold;
	color: #30abd5;
	transition: .5s;
}

.btn-slide span.title-hover {
	right: .8rem;
	opacity: 0;
	color: #fff;
}

.btn-slide:hover {
	background-color: #0099cc;
}

.btn-slide:hover span.circle {
	right: 100%;
	margin-right: -45px;
	background-color: #fdfdfd;
	color: #0099cc;
}

.btn-slide:hover span.title {
	right: 40px;
	opacity: 0;
}

.btn-slide:hover span.title-hover {
	opacity: 1;
	right: 40px;
}

.shortcut {
	margin-top: 15px;
	margin-left: -5px;
	margin-right: -5px;
}

.shortcut .col-md-2 {
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
}

.shortcut .col-md-2 span {
	position: absolute;
	left: 40px;
	top: 25px;
	color: #474747;
	font-size: 18px;
	font-weight: bold;
}

.shortcut .col-md-4 {
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
}

.shortcut .col-md-4 span {
	position: absolute;
	left: 130px;
	top: 21px;
	color: #fff;
	font-size: 24px;
	text-shadow: 1px 1px 1px #999;
}

.info .login {
	position: relative;
	padding-right: 0;
}

.info .login > div {
	height: 380px;
	padding: 15px;
	background: #f8f8f8 url(../../img/dl-bg.jpg) no-repeat left bottom;
	border: 1px solid #ddd;
}

.info .login > div .nav-pills {
	margin-bottom: 15px;
}

.info .login > div .nav-pills > li {
	background-color: #f1efef;
}

.info .login > div .nav-pills > li.active > a {
	background-color: #fff;
	border-top: 2px solid #2370c1;
	color: #9e9e9e;
	border-radius: 0;
}

.info .login > div .input-group {
	margin-bottom: 15px;
}

.info .login > div .input-group .input-group-addon,
.info .login > div .input-group .form-control {
	border-radius: 0;
	background-color: #fff;
	height: 36px;
}

.info .login > div .input-group .form-control {
	border-left: 0;
	box-shadow: none;
}

.info .login > div .input-group .input-group-addon {
	color: #cecccd;
}

.info .login > div .code .form-control {
	width: 105px;
}

.info .login > div .code img {
	float: right;
	height: 36px;
}

.info .login > div .col-sm-6 {
	margin-bottom: 15px;
	padding: 0;
}

.info .login > div .checkbox {
	margin: 0;
}

.info .login > div button {
	height: 36px;
}

.info .login > div button.btn-default {
	background-color: #ff6c22;
	color: #fff;
	border-radius: 0;
	border: 0;
}

.info .login > div hr {
	border-color: #ddd;
	margin-top: 10px;
	margin-bottom: 10px;
}

.info .login > div button.btn-primary {
	background-color: #2370c1;
	color: #fff;
	border-radius: 0;
	border: 0;
	padding: 6px 32px;
	width: 245.5px;
}

.info .shortcut {
	margin-top: 10px;
}

.info .shortcut .col-md-4 span {
	position: absolute;
	left: 62px;
	top: 17px;
	color: #fff;
	font-size: 18px;
	text-shadow: 1px 1px 1px #999;
}

.info .zxdt {
	padding-left: 0;
}

.info .zxdt > div {
	border: 1px solid #ddd;
}

.info .zxdt > div h2 {
	margin: 0;
	padding: 15px 15px;
	font-size: 16px;
	background-color: #f1efef;
	color: #474747;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
}

.info .zxdt > div h2 a {
	font-size: 14px;
	color: #999999;
}

.info .zxdt > div ul {
	margin: 0;
	padding: 13px 15px;
}

.info .zxdt > div ul a {
	color: #999999;
	line-height: 25px;
	transition: all 0.5s ease 0s;
}

.info .zxdt > div ul a:hover {
	color: #f45b4d;
	text-decoration: none;
}

.zph {
	margin-top: 15px;
	border: 1px solid #ddd;
}

.zph dl.dl-horizontal {
	margin-bottom: 0;
}

.zph dl.dl-horizontal dt {
	width: 238px;
	border-right: 1px solid #ddd;
}

.zph dl.dl-horizontal dt .title {
	line-height: 45px;
	text-align: center;
	font-size: 16px;
	color: #474747;
	border-bottom: 1px solid #ddd;
}

.zph dl.dl-horizontal dt .title span {
	color: #ff8244;
	font-size: 18px;
	margin-right: 10px;
}

.zph dl.dl-horizontal dd {
	margin-left: 238px;
}

.zph dl.dl-horizontal dd .more {
	position: relative;
	margin-right: 15px;
	top: 5px;
	color: #999999;
}

.zph dl.dl-horizontal dd .more:hover {
	text-decoration: underline;
}

.zph .nav-pills {
	height: 46px;
	border-bottom: 1px solid #ddd;
}

.zph .nav-pills li {
	border-right: 1px solid #ddd;
}

.zph .nav-pills li a {
	padding: 13px 20px;
	border-radius: 0;
	color: #666;
	transition: all 0.5s ease 0s;
}

.zph .nav-pills li.active a {
	background-color: #e8e8e8;
	color: #666;
}

.zph .nav-pills li + li {
	margin-left: 0;
}

.zph .tab-content h2 {
	padding-left: 15px;
	font-size: 16px;
	color: #474747;
	font-weight: bold;
}

.zph .tab-content h2 span {
	margin-right: 15px;
}

.zph .tab-content h2 span a {
	color: #474747;
}

.zph .tab-content h2 .red {
	color: #f45b4d;
	margin-right: 0;
}

.zph .tab-content ul li a {
	display: block;
	height: 34px;
	line-height: 34px;
	color: #999999;
	transition: all 0.5s ease 0s;
}

.zph .tab-content ul li a:hover {
	color: #f45b4d;
	text-decoration: none;
}

.zxzw {
	margin-top: 15px;
	padding: 0 15px 15px;
	border: 1px solid #ddd;
}

.zxzw h2 {
	color: #474747;
	font-size: 16px;
	font-weight: bold;
}

.zxzw h2 ul {
	color: #c76d3b;
	font-size: 14px;
}

.zxzw h2 ul li > a {
	color: #c76d3b;
	transition: all 0.5s ease 0s;
}

.zxzw h2 ul li > a:hover {
	color: #f45b4d;
	text-decoration: none;
}

.zxzw h2 ul li.more > a {
	margin-left: 15px;
	color: #999999;
}

.zxzw h2 ul li.more > a:hover {
	text-decoration: underline;
}

.zxzw ul.list-unstyled li {
	line-height: 34px;
	width: 350px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

}

.list-unstyled2 {
	height: 328px;
}

.zxzw ul.list-unstyled li a {
	color: #0178c8;
	transition: all 0.5s ease 0s;

}

.hireli {
	width: 350px;
	display: block;
	float: left;
	margin-left: 20px;
}

.zxzw ul.list-unstyled li a:hover {
	color: #f45b4d;
	text-decoration: none;
}

.zxzw ul.list-unstyled li span {
	margin-left: 15px;
	color: #999999;
}

.mqx {
	margin-top: 15px;
	padding: 0 15px 15px;
	border: 1px solid #ddd;
}

.mqx h2 {
	color: #474747;
	font-size: 16px;
	font-weight: bold;
}

.mqx h2 a {
	margin-left: 15px;
	color: #999999;
}

.mqx h2 a:hover {
	text-decoration: underline;
}

.mqx .media {
	margin: 15px 0;
}

.mqx .media-body a {
	color: #999999;
	transition: all 0.5s ease 0s;
}

.mqx .media-body a:hover {
	text-decoration: none;
}

.yqlj {
	margin-top: 50px;
	padding: 25px 0;
	background-color: #f2f2f2;
}

.yqlj dl {
	margin: 0;
}

.yqlj dt {
	width: 100px;
	line-height: 32px;
	text-align: left;
	color: #0178c8;
}

.yqlj dd {
	margin-left: 100px;
}

.yqlj a {
	display: inline-block;
	padding: 6px 12px;
	color: #999999;
}

.zplist .list-group-item {
	border-radius: 0;
}

.zplist .list-group-item .th {
	margin-top: 10px;
	margin-bottom: 10px;
}

.zplist .list-group-item .th button {
	background-color: #f6f6f6;
}

.zplist .list-group-item .th button.cur {
	background-color: #2370c1;
	color: #fff;
}

.zplist .list-group-item .zw,
.zplist .list-group-item .xx,
.zplist .list-group-item .mz,
.zplist .list-group-item .num {
	font-size: 16px;
}

.zplist .list-group-item .zw {
	color: #2370c1;
}

.zplist .list-group-item .xx .fgx {
	margin: 0 3px !important;
}

.zplist .list-group-item .mz {
	color: #808080;
	font-weight: bold;
}

.zplist .list-group-item .num {
	color: #fa9b52;
}

.zplist .list-group-item .fgx {
	margin: 0 10px;
}

.zplist .list-group-item img {
	margin-right: 10px;
}

.zplist .list-group-item p {
	padding-left: 18px;
}

.zplist .list-group-item a.sc {
	display: block;
	margin-top: 10px;
	color: #666;
	text-decoration: none;
}

.zplist .list-group-item a.sc:hover {
	color: #fa9b52;
}

.zplist .list-group-item a.sc.cur {
	color: #fa9b52;
}

.zplist .list-group-item .col-md-2 .btn {
	color: #2370c1;
	border: 1px solid #2370c1;
}

.zplist .list-group-item .btn-toolbar {
	padding-left: 300px;
}

#gsjj .box {
	margin-top: 20px;
	border: 1px solid #ddd;
	padding: 20px 15px;
}

#gsjj .box .tx {
	text-align: center;
	border: 1px solid #ddd;
}

#gsjj .box .wx {
	padding-top: 10px;
	text-align: right;
}

#gsjj .box h1 {
	font-size: 20px;
}

#gsjj .box h1 span {
	color: #ff6c22;
}

#gsjj .box h2 {
	margin: 0 0 10px;
	padding: 0 0 10px;
	font-size: 16px;
	font-weight: bold;
}

#gsjj .box h2 span {
	color: #ff6c22;
}

#gsjj .box .txt span {
	margin-right: 20px;
}

#gsjj .box .info {
	margin-left: 0;
	margin-top: 10px;
}

#gsjj .box .info li {
	padding: 5px 10px;
	text-align: center;
	border-right: 1px solid #ddd;
}

#gsjj .box .info li b {
	display: block;
}

#gsjj .box .info li.end {
	border: 0;
}

#gsjj .box .label {
	display: inline-block;
	margin-right: 20px;
	padding: 6px 12px;
	font-size: 14px;
	background-color: #fff;
	color: #666;
	border: 1px solid #ddd;
}

#gsjj .box ul {
	margin: 0;
}

#gsjj .box a.more {
	color: #999999;
	font-size: 14px;
}

#gsjj .box a.more span {
	color: #999999;
}

#gsjj .box .col-md-6 {
	margin-bottom: 20px;
}

#gsjj .box .col-md-6 > div {
	padding: 10px 20px;
	background-color: #f9f9f9;
}

#gsjj .box .col-md-6 > div ul > li:first-child {
	margin-bottom: 10px;
}

#gsjj .box .col-md-6 > div ul > li:first-child .pull-right {
	color: #ff6c22;
}

#gsjj .box .col-md-6 > div span {
	margin-right: 15px;
}

#gsjj .box .col-md-6 > div span.pull-right {
	margin-right: 0;
}

#gsjj .list-group-item {
	border-radius: 0;
}

#gsjj .list-group-item p {
	margin: 5px 0 0;
}

#gsjj .list-group-item p span {
	margin-right: 15px;
}

#gsjj .list-group-item p > span:first-child {
	color: #ff6c22;
}

#gsjj .list-group-item .col-md-2 .btn {
	position: relative;
	top: 5px;
	color: #2370c1;
	border: 1px solid #2370c1;
}

#zph {
	margin-top: -15px;
}

#zph .banner {
	margin-bottom: 20px;
}

#zph .col-md-3 {
	padding-left: 5px;
}

#zph .panel {
	border-radius: 0;
}

#zph .date,
#zph .week {
	text-align: center;
	padding: 5px;
}

#zph .date {
	background-color: #2e87cf;
	color: #fff;
}

#zph .week {
	background-color: #eeeeee;
}

#zph .name,
#zph .add {
	padding: 5px;
}

#zph .add span {
	margin-right: 10px;
}

#zph .add span.color {
	color: #e85116;
}

#zph .btn {
	position: relative;
	top: 15px;
}

#zph .btn-primary {
	background-color: #2e87cf;
}

#zph .btn-danger {
	background-color: #e85116;
}

#mqx .panel-heading {
	padding: 15px;
	font-weight: bold;
	font-size: 18px;
}

#mqx .media-left {
	border-right: 1px solid #ddd;
}

#mqx .media-left img {
	width: 160px;
	height: 100px;
}

#mqx .media-body {
	padding-left: 10px;
}

#mqx .media-body .media-heading {
	margin-bottom: 15px;
}

#mqx .media-body .media-heading a {
	font-weight: bold;
	color: #1999d6;
}

#mqx button {
	position: relative;
	top: 30px;
}

#mqjs {
	margin-top: -15px;
}

#mqjs .banner {
	margin-bottom: 20px;
}

#mqjs .gsjs {
	position: relative;
	padding-left: 160px;
}

#mqjs .gsjs .logo {
	position: absolute;
	top: -60px;
	left: 20px;
	width: 120px;
	height: 120px;
	line-height: 120px;
	text-align: center;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
	background-color: #fff;
}

#mqjs .gsjs .logo img {
	width: 120px;
}

#mqjs .gsjs h1 {
	font-size: 18px;
	font-weight: bold;
}

#mqjs .gsjs span {
	margin-right: 20px;
}

#mqjs .qyjj {
	margin-top: 50px;
	padding: 20px;
	border: 1px solid #ddd;
}

#mqjs .qyjj h2 {
	margin: 10px 0 15px;
	font-size: 16px;
	font-weight: bold;
}

#mqjs .qyjj h2 span {
	margin-right: 5px;
	color: #ff6c22;
}

#mqjs .qyjj .zhanshi {
	margin-top: 30px;
}

#mqjs .qyjj .zhanshi img {
	height: 180px;
	width: 270px;
}

#czqy .banner {
	position: relative;
	margin-top: 20px;
}

#czqy .banner .shishi {
	position: absolute;
	left: 540px;
	top: 50px;
}

#czqy .banner .shishi h1 {
	margin: 0 0 15px;
	padding: 0;
	color: #000;
	font-size: 24px;
}

#czqy .banner .shishi p {
	margin-left:30px;
	color: #000;
	font-size: 18px;
}

#czqy .banner .shishi .btn {
	position: absolute;
	top: 95px;
	left: 500px;
	background-color: #fb9f00;
	color: #fff;
	border: 0;
}

#czqy .nav-cur {
	background-color: #f3f3f3;
}

#czqy .nav-cur li > a {
	border-right: 1px solid #ddd;
	color: #656464;
}

#czqy .nav-cur li > a:hover {
	color: #656464 !important;
}

#czqy .nav-cur li.active > a {
	background-color: transparent !important;
	color: #2370c1;
	border-bottom-color: transparent !important;
}

#czqy .nav-cur li.active > a:hover,
#czqy .nav-cur li.active > a:focus {
	background-color: transparent !important;
	color: #2370c1;
	border-bottom-color: transparent !important;
}

#czqy .list-zw {
	margin-top: -20px;
	padding: 10px;
	border: 1px solid #ddd;
	border-top: 0;
}

#czqy .list-zw h3 {
	margin: 0;
	padding: 15px 0;
	font-size: 16px;
}

#czqy .list-zw h3 span {
	color: #666;
	font-size: 14px;
}

#czqy .list-zw p {
	margin-bottom: 5px;
}

#czqy .list-zw p span {
	margin-right: 5px;
}

#czqy .list-zw p b {
	padding: 0 5px;
	font-size: 18px;
	color: #656464;
}

#czqy .list-zw p a {
	color: #ff6c22;
}

#czqyjj .box {
	margin-top: 20px;
	border: 1px solid #ddd;
	padding: 20px 15px;
}

#czqyjj .box h1 {
	margin-top: 0;
	font-size: 20px;
}

#czqyjj .box h1 span {
	color: #ff6c22;
}

#czqyjj .box h2 {
	margin: 0 0 10px;
	padding: 0 0 10px;
	font-size: 16px;
	font-weight: bold;
}

#czqyjj .box h2 span {
	color: #ff6c22;
}

#czqyjj .box .txt span {
	margin-right: 20px;
}

#czqyjj .list-group {
	margin-top: 20px;
}

#czqyjj .list-group-item {
	border-radius: 0;
}

#czqyjj .list-group-item h2 {
	margin: 10px 0;
	font-size: 16px;
	font-weight: bold;
}

#czqyjj .list-group-item h2 span {
	color: #ff6c22;
}

#czqyjj .list-group-item p {
	margin: 5px 0 0;
}

#czqyjj .list-group-item p span {
	margin-right: 15px;
}

#czqyjj .list-group-item p > span:first-child {
	color: #ff6c22;
}

#czqyjj .list-group-item .col-md-2 .btn {
	position: relative;
	top: 5px;
	color: #2370c1;
	border: 1px solid #2370c1;
}

.list .aside {
	position: relative;
}

.list .aside .aside-bg {
	position: absolute;
	left: -15px;
	top: 0;
}

.list .aside .aside-title {
	position: relative;
	width: 200px;
	height: 78px;
	z-index: 10;
	margin: 0 0 0 45px;
	text-align: center;
	color: #fff;
	border-bottom: 0;
	font-size: 14px;
	padding-top: 12px;
}

.list .aside .aside-title span {
	display: block;
}

.list .aside .aside-title span:first-child {
	padding-top: 17px;
	margin-bottom: 5px;
	font-size: 16px;
}

.list .aside ul {
	z-index: -1;
	width: 197px;
	min-height: 300px;
	margin-left: 42px;
	padding: 0 10px;
	background-color: #fafafa;
}

.list .aside ul li {
	position: relative;
	z-index: 10;
	padding: 15px;
	border-bottom: 1px solid #ddd;
}

.list .aside ul li a {
	display: block;
}

.list .aside ul li a:hover {
	text-decoration: none;
}

.list-content h2 {
	margin: 0;
	font-size: 14px;
	border-bottom: 1px solid #ddd;
}

.list-content h2 span {
	display: inline-block;
	padding: 12px 10px;
}

.list-content h2 span.list-content-title {
	border-bottom: 1px solid #d54f43;
	color: #f06a47;
	font-size: 16px;
}

.list-content ul {
	min-height: 450px;
}

.list-content ul li {
	padding: 15px 10px;
	border-bottom: 1px dotted #ddd;
}

.list-content ul li a {
	color: #666;
	transition: all 0.5s ease 0s;
}

.list-content ul li a:hover {
	color: #f45b4d;
	text-decoration: none;
}

.list-content .btn-toolbar button {
	background-color: #f6f6f6;
}

.list-content .btn-toolbar button.cur {
	background-color: #2370c1;
	color: #fff;
}

.list-content .dl {
	padding-top: 100px;
}

.list-content .dl input {
	height: 45px;
	border-radius: 0;
	background-color: #f4f4f4;
}

.list-content .dl div.btns {
	margin-top: 50px;
	text-align: center;
}

.list-content .dl div.btns .btn {
	width: 100px;
	height: 45px;
	background-color: #aeaeae;
	color: #fff;
	border: 0;
	border-radius: 0;
}

.list-content .dl div.btns .btn-default {
	background-color: #fd6b30;
	color: #fff;
}

.list-content .baseinfo {
	min-height: 400px;
	padding: 20px;
	border: 1px solid #ddd;
}

.list-content .baseinfo h3 {
	margin: 20px 0;
	color: #fd6b30;
	font-size: 18px;
}

.list-content .baseinfo .col-lg-6 {
	margin-bottom: 20px;
}

.list-content .baseinfo label {
	width: 100px;
	margin-right: 30px;
	text-align: right;
	color: #999999;
}

.details .breadcrumb {
	margin-top: 10px;
	background-color: #fff;
}

.details .content {
	padding: 40px;
	margin-bottom: 50px;
	min-height: 500px;
	border: 1px solid #ddd;
}

.details .content h2 {
	text-align: center;
	margin: 0 0 20px;
	font-size: 24px;
}

.details .content p {
	text-indent: 28px;
	line-height: 1.8;
}

.details .content table {
	margin: 0;
}

.zwck .box {
	padding: 20px 15px;
	border: 1px solid #ddd;
}

.zwck .box .box-body .mc {
	color: #2370c1;
	font-size: 18px;
	font-weight: bold;
}

.zwck .box .box-body .mc > span {
	color: #666;
	font-size: 14px;
	font-weight: normal;
}

.zwck .box .box-body .mc > span span {
	margin: 0 5px 0 20px;
}

.zwck .box .box-body .mc + p {
	margin: 10px 0 0 0;
	line-height: 20px;
	color: #ff8a22;
}

.zwck .box .box-body .mc + p span {
	width: 20px;
	height: 20px;
	margin-right: 5px;
	line-height: 20px;
	border-radius: 50%;
	background-color: #ff8a22;
	color: #fff;
	text-align: center;
}

.zwck .box.box-bg {
	background-color: #f7f7f7;
}

.zwck .yq {
	margin-top: 15px;
	padding: 20px 15px;
	border: 1px solid #ddd;
}

.zwck .yq .js {
	padding-bottom: 20px;
	border-bottom: 1px dotted #ddd;
}

.zwck .yq .js ul {
	margin: 0;
}

.zwck .yq .js ul li {
	width: 32%;
	line-height: 30px;
}

.zwck .yq .js ul li span {
	margin-right: 5px;
	color: #999999;
}

.zwck .yq .js p {
	margin: 0;
}

.zwck .yq .js p span {
	margin-right: 8px;
	padding-left: 5px;
	color: #999999;
}

.zwck .yq .js a.sc {
	display: block;
	margin-top: 10px;
	color: #666;
	text-decoration: none;
}

.zwck .yq .js a.sc:hover {
	color: #fa9b52;
}

.zwck .yq .js a.sc.cur {
	color: #fa9b52;
}

.zwck .yq .js .col-md-3 .btn {
	margin-top: 20px;
	color: #fff;
	background-color: #ff6c22;
	border: 0;
}

.zwck .yq .lxfs {
	padding-bottom: 20px;
	border-bottom: 1px dotted #ddd;
}

.zwck .yq .lxfs h2 {
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 3px solid #ff6c22;
	font-size: 16px;
	font-weight: bold;
}

.zwck .yq .lxfs p {
	padding-left: 20px;
	line-height: 30px;
	font-size: 16px;
}

.zwck .yq .lxfs p span {
	margin-right: 15px;
	color: #46c5fe;
}

.zwck .yq .lxfs p .btn {
	color: #46c5fe;
	border-color: #46c5fe;
}

.zwck .yq .lxfs .tip {
	position: relative;
	display: inline-block;
	margin: 10px 0 0 105px;
	padding: 10px;
	background-color: #a6a6a6;
	color: #fff;
}

.zwck .yq .lxfs .tip .sjx {
	position: absolute;
	top: -8px;
	left: 40px;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-bottom: 8px dashed #a6a6a6;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}

.zwck .yq .zwmx {
	padding-bottom: 20px;
}

.zwck .yq .zwmx h2 {
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 3px solid #ff6c22;
	font-size: 16px;
	font-weight: bold;
}

.zwck .yq .zwmx li {
	padding-left: 20px;
	line-height: 24px;
}

.zwck .yq .zwmx p {
	padding-left: 20px;
	line-height: 45px;
}

.zwck .yq .code {
	height: 100px;
	padding: 15px 0;
	margin: 0 20px;
	line-height: 70px;

}

.zwck .yq .code img {
	width: 70px;
}

.zwck .yq .code .glyphicon {
	font-size: 40px;
	top: 10px;
}

.zwck .yq .code .btn {
	margin-left: 20px;
	color: #fff;
	background-color: #ff6c22;
	border: 0;
}

.zwck .right {
	padding-left: 0;
}

.zwck .right .gsjx {
	text-align: center;
}

.zwck .right .gsjx a {
	display: inline-block;
	margin-bottom: 15px;
	border: 1px solid #ddd;
}

.zwck .right .gsjx p {
	max-width: 245px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.zwck .right .gsjx ul {
	text-align: left;
}

.zwck .right .gsjx ul li {
	margin-bottom: 10px;
}

.zwck .right .gsjx ul span {
	display: inline-block;
	padding: 2px 5px;
	margin-right: 10px;
	background-color: #f8f8f8;
}

.zwck .right .code {
	margin-top: 15px;
}

.zwck .right .code a {
	float: left;
	margin-right: 10px;
	border: 1px solid #ddd;
}

.zwck .right .code a img {
	width: 100px;
}

.zwck .right .code span {
	line-height: 1.8;
}

.zwck .right .list-group {
	margin-top: 15px;
}

.zwck .right .list-group .list-group-item {
	padding: 20px 15px;
	border-radius: 0;
}

.zwck .right .list-group .list-group-item p span,
.zwck .right .list-group .list-group-item p a {
	color: #2370c1;
}

.zwck .right .list-group .list-group-item:first-child {
	font-size: 16px;
}

.zwck .right .list-group .list-group-item:first-child a {
	font-size: 12px;
	color: #6f7474;
}

#shenqing .col-md-9 {
	padding-right: 0;
}

#shenqing .panel-heading {
	padding: 15px 0;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	background-color: #f6f6f6;
	color: #5e5e5e;
}

#shenqing .panel-body {
	padding: 30px;
}

#shenqing h4 {
	font-weight: bold;
}

#shenqing p {
	margin-bottom: 20px;
}

#shenqing .list-group {
	text-align: center;
}

#shenqing .list-group a {
	background-color: #f6f6f6;
}

#shenqing .list-group a:hover {
	background-color: #ffffff;
}

#shenqing .list-group span {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: #ff6c22;
	color: #fff;
}

#shenqing .list-group > a:first-child span {
	background-color: #2370c1;
}

#login {
	position: relative;
}

#login > .bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#login .container {
	position: relative;
	min-height: 400px;
}

#login .login {
	position: absolute;
	right: 15%;
	top: 5%;
	width: 260px;
	padding: 15px;
	background-color: #fff;
}

#login .login .login-title {
	position: relative;
	padding: 0 0 20px;
	font-size: 20px;
	text-align: center;
}

#login .login .login-title:after {
	content: " ";
	position: absolute;
	left: 30px;
	top: 14px;
	right: auto;
	bottom: auto;
	width: 45px;
	height: 1px;
	background-color: #ddd;
	z-index: 2;
}

#login .login .login-title:before {
	content: " ";
	position: absolute;
	right: 30px;
	top: 14px;
	left: auto;
	bottom: auto;
	width: 45px;
	height: 1px;
	background-color: #ddd;
	z-index: 2;
}

#login .login .input-group {
	margin-bottom: 15px;
}

#login .login .input-group .input-group-addon,
#login .login .input-group .form-control {
	border-radius: 0;
	background-color: #fff;
	height: 34px;
}

#login .login .input-group .form-control {
	box-shadow: none;
}

#login .login .input-group .input-group-addon {
	color: #cecccd;
	font-size: 18px;
}

#login .login .code .form-control {
	width: 100px;
}

#login .login .code img {
	float: right;
	height: 34px;
}

#login .login .col-sm-6 {
	margin-bottom: 15px;
	padding: 0;
}

#login .login .checkbox {
	margin: 0;
}

#login .login button {
	height: 36px;
}

#login .login button.btn-default {
	background-color: #0078d4;
	color: #fff;
	border-radius: 0;
	border: 0;
}

.btn-default2 {
	color: #fa9b52;
	background-color: #ffffff;
	border-color: #fa9b52;
}

.btn-default2:hover {
	color: #fff;
	background-color: #fa9b52;
	border-color: #fa9b52;
}

@media (min-width: 1280px) {
	#login .login {
		top: 10%;
		right: 10%;
		width: 290px;
		padding: 15px;
	}

	#login .login-title:after {
		width: 60px !important;
	}

	#login .login-title:before {
		width: 60px !important;
	}

	#login .code .form-control {
		width: 120px !important;
	}

	#login .input-group-addon,
	#login .form-control,
	#login .code img {
		height: 34px !important;
	}
}

@media (min-width: 1360px) {
	#login .login {
		top: 10%;
		right: 5%;
		width: 330px;
		padding: 20px;
	}

	#login .login-title:after {
		width: 60px !important;
	}

	#login .login-title:before {
		width: 60px !important;
	}

	#login .code .form-control {
		width: 120px !important;
	}

	#login .input-group-addon,
	#login .form-control,
	#login .code img {
		height: 34px !important;
	}
}

@media (min-width: 1440px) {
	#login .login {
		top: 10%;
		right: 0%;
		width: 330px;
		padding: 25px;
	}

	#login .login-title:after {
		width: 60px !important;
	}

	#login .login-title:before {
		width: 60px !important;
	}

	#login .code .form-control {
		width: 120px !important;
	}

	#login .input-group-addon,
	#login .form-control,
	#login .code img {
		height: 40px !important;
	}
}

@media (min-width: 1600px) {
	#login .login {
		top: 20%;
		width: 380px;
		padding: 30px;
	}

	#login .login-title:after {
		width: 80px !important;
	}

	#login .login-title:before {
		width: 80px !important;
	}

	#login .code .form-control {
		width: 150px !important;
	}

	#login .input-group-addon,
	#login .form-control,
	#login .code img {
		height: 46px !important;
	}
}

#sign {
	margin: 40px 0;
	background-color: #fff;
	background-image: url(../../img/sign-bg.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

#sign > div {
	padding: 20px;
}

#sign > .col-md-7 {
	border-right: 1px solid #ddd;
}

#sign .tab-pane {
	padding: 20px;
}

#sign .tab-pane label {
	padding-top: 12px;
	font-weight: normal;
}

#sign .tab-pane input.form-control {
	display: inline-block;
	width: 240px;
	height: 46px;
	line-height: 46px;
}

#sign .tab-pane .code {
	width: 110px !important;
}

#sign .tab-pane .code-btn {
	height: 46px;
}

#sign .tab-pane .checkbox {
	padding-top: 0;
}

#sign .btn-primary {
	width: 150px;
	height: 46px;
	background-color: #FF6701;
	border-color: transparent;
	color: #fff;
}

#sign .notice h2 {
	margin-top: 0;
	padding: 11px 0;
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
}

#sign .notice h2 span {
	color: #FF6701;
}

#sign .notice li {
	margin: 20px 0;
}

#sign .notice .btn-info {
	background-color: #2370c1;
	border-color: transparent;
}

.houtai-top {
	height: 45px;
	line-height: 45px;
	background-color: #fafafa;
}

.houtai-top span {
	margin-left: 10px;
}

.houtai-top span a {
	color: #666;
}

.houtai-header {
	margin-bottom: 20px;
	background-color: #2370c1;
}

.houtai-header .container {
	position: relative;
}

.houtai-header .container .input-group {
	position: absolute;
	top: 30px;
	right: 0;
	width: 300px;
}

.houtai-header .container .input-group .btn {
	color: #2370c1;
}

.hyzx .panel {
	border-radius: 0;
}

.hyzx .panel .panel-heading {
	padding: 15px;
}

.hyzx .panel .panel-heading span {
	margin: 0 5px;
}

.top {
	height: 45px;
	line-height: 45px;
	background-color: #f2f2f2;
}

.top span.login {
	margin-left: 10px;
}

.top span a {
	color: #666;
}

.header {
	padding: 15px 0 10px;
	background: #fff;
}

.header .input-group {
	margin-top: 25px;
	border: 2px solid #2370c1;
	background-color: #2370c1;
}

.header .input-group .input-group-addon,
.header .input-group button.btn {
	border-radius: 0;
	border: 0;
}

.header .input-group button.btn {
	background-color: #2370c1;
	color: #fff;
}

.navbar-default {
	margin-bottom: 15px;
	background-color: #2370c1;
	border-radius: 0;
	border: 0;
}

.navbar-default .navbar-nav > li > a {
	padding: 15px 21px;
	color: #fff;
	transition: all 0.5s ease 0s;
}

.navbar-default .navbar-nav > li > a:hover {
	background-color: #0d53a1;
	color: #fff;
}

.navbar-default .navbar-nav > .active > a {
	background-color: #0d53a1;
	color: #fff;
}

.footer {
	padding: 20px 0;
	background-color: #2370c1;
	color: #fff;
}

.footer ul {
	display: block;
	width: 680px;
	margin: 0 auto;
}

.footer ul a {
	color: #fff;
}

.login-header {
	padding: 30px 0;
}

.login-header span {
	position: relative;
	top: 5px;
	font-size: 24px;
	font-weight: bold;
	/* color: #822223; */
	color:black;
}

.login-header .col-md-3 {
	padding-top: 20px;
	text-align: right;
}

.login-header .col-md-3 a {
	margin-left: 20px;
	background-color: #0078d4;
	color: #fff;
	border: 0;
}

.sign-body {
	background-color: #f2f2f2;
}

.sign-header {
	padding: 30px 0;
	background-color: #fff;
}

.login-footer,
.sign-footer {

	bottom: 0;
	width: 100%;
	height: 110px;
	padding-top: 30px;
	background-color: #fff;
	color: #666 !important;
}

.nav-com {
	margin: 20px 0 0 0;
	background-color: #fafafa;
	border: 1px solid #ddd;
}

.nav-com li > a {
	padding: 12px 20px;
	color: #b3b3b3;
	border-bottom: 2px solid transparent;
	border-right: 1px solid #ddd;
	border-radius: 0;
	font-size: 16px;
	font-weight: bold;
}

.nav-com li > a:hover,
.nav-com li > a:focus {
	color: #2370c1 !important;
	background-color: transparent !important;
}

.nav-com li.active > a {
	background-color: transparent;
	color: #2370c1;
	border-bottom-color: #2370c1;
}

.nav-com > li + li {
	margin-left: 0;
}

.nav-cur {
	margin: 20px 0;
	border: 1px solid #ddd;
}

.nav-cur li > a {
	padding: 12px 20px;
	color: #b3b3b3;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	font-size: 16px;
	font-weight: bold;
}

.nav-cur li > a:hover,
.nav-cur li > a:focus {
	color: #b3b3b3 !important;
	background-color: #eee !important;
}

.nav-cur li:first-child > a {
	border-right: 1px solid #ddd;
}

.nav-cur li.active > a {
	background-color: #ff6c22;
	color: #fff;
	border-bottom-color: #ff6c22;
}

.nav-cur li.active > a:hover,
.nav-cur li.active > a:focus {
	background-color: #ff6c22 !important;
	color: #fff !important;
	border-bottom-color: #ff6c22 !important;
}

.nav-cur li.active > a span {
	color: #fff;
}

.nav-cur > li + li {
	margin-left: 0;
}

.nav-cur span {
	color: #ff6c22;
}

.nav-cur .pull-right {
	display: inline-block;
	padding: 12px 20px;
	font-weight: bold;
}

#time {
	color: #fff;
	font-size: 16px;
	padding-top: 8px;
}

#jlyl .box {
	margin-top: 20px;
	border: 1px solid #ddd;
	padding: 20px 15px;
}

#jlyl .box .tx {
	text-align: center;

}

#jlyl .box .wx {
	padding-top: 10px;
	text-align: right;
}

#jlyl .box h1 {
	font-size: 20px;
	font-weight: bold;
}

#jlyl .box h1 span {
	font-size: 14px;
	font-weight: normal;
	color: #cacaca;
}

#jlyl .box .txt i {
	color: #cacaca;
}

#jlyl .box .txt span {
	margin-right: 20px;
}

#jlyl .box .txt + p {
	margin: 5px 0;
}

#jlyl .box .label {
	display: inline-block;
	margin-right: 20px;
	padding: 6px 12px;
	font-size: 14px;
	background-color: #fff;
	color: #666;
	border: 1px solid #ddd;
}

#jlyl .box ul {
	margin: 0;
}

#jlyl .box a.more {
	color: #999999;
	font-size: 14px;
}

#jlyl .box a.more span {
	color: #999999;
}

#jlyl .box .col-md-6 {
	margin-bottom: 20px;
}

#jlyl .box .col-md-6 > div {
	padding: 10px 20px;
	background-color: #f9f9f9;
}

#jlyl .box .col-md-6 > div ul > li:first-child {
	margin-bottom: 10px;
}

#jlyl .box .col-md-6 > div ul > li:first-child .pull-right {
	color: #ff6c22;
}

#jlyl .box .col-md-6 > div span {
	margin-right: 15px;
}

#jlyl .box .col-md-6 > div span.pull-right {
	margin-right: 0;
}

#jlyl .xq {
	margin-top: 15px;
	padding: 20px 15px;
	border: 1px solid #ddd;
}

#jlyl .xq h2 {
	margin: 0 0 10px;
	padding: 0 0 10px;
	font-size: 16px;
	font-weight: bold;
}

#jlyl .xq h2 span {
	margin-right: 5px;
	color: #ff6c22;
}

#jlyl .xq .qzyx {
	padding-bottom: 10px;
	border-bottom: 1px dotted #ddd;
}

#jlyl .xq .qzyx ul li {
	margin-bottom: 10px;
	padding-left: 28px;
}

#jlyl .xq .gzjl {
	padding: 20px 0;
	border-bottom: 1px dotted #ddd;
}

#jlyl .xq .gzjl dl dt {
	position: relative;
	font-weight: normal;
	overflow: inherit;
}

#jlyl .xq .gzjl dl dt span {
	position: absolute;
	right: 0;
	bottom: -20px;
}

#jlyl .xq .gzjl dl dt:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: #ddd;
	border-radius: 50%;
	right: -45px;
	top: 6px;
}

#jlyl .xq .gzjl dl dd {
	margin-left: 200px;
	padding-left: 50px;
}

#jlyl .xq .gzjl dl dd.title {
	color: #638bbc;
	font-weight: bold;
}

#jlyl .xq .gzjl dl dd.title span {
	margin: 0 5px;
	font-weight: normal;
}

#jlyl .xq .gzjl dl dd.details {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 60px;
	border-left: 1px solid #ddd;
}

#jlyl .xq .jypxjl {
	padding: 20px 0;
}

#jlyl .xq .jypxjl dl dt {
	position: relative;
	font-weight: normal;
	overflow: inherit;
}

#jlyl .xq .jypxjl dl dt span {
	position: absolute;
	right: 0;
	bottom: -20px;
}

#jlyl .xq .jypxjl dl dt:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: #ddd;
	border-radius: 50%;
	right: -45px;
	top: 6px;
}

#jlyl .xq .jypxjl dl dd {
	margin-left: 200px;
	padding-left: 50px;
}

#jlyl .xq .jypxjl dl dd.title {
	color: #638bbc;
}

#jlyl .xq .jypxjl dl dd.title span {
	margin: 0 5px;
}

#jlyl .xq .jypxjl dl dd.details {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 60px;
	border-left: 1px solid #ddd;
}

.izl-rmenu {
	margin-right: 0;
	width: 82px;
	position: fixed;
	right: 2px;
	top: 65%;
	-webkit-box-shadow: #DDD 0px 1px 5px;
	-moz-box-shadow: #DDD 0px 1px 5px;
	box-shadow: #DDD 0px 1px 5px;
	z-index: 999;
}

.izl-rmenu .consult {
	background-image: url(../../img/consult_icon.gif);
	background-repeat: no-repeat;
	background-position: center -77px;
	display: block;
	height: 76px;
	width: 82px;
}

.izl-rmenu .consult .phone {
	background-color: rgb(247, 247, 255);
	position: absolute;
	width: 160px;
	left: -160px;
	top: 0px;
	line-height: 73px;
	color: #000;
	font-size: 18px;
	text-align: center;
	display: none;
	box-shadow: #DDD -1px 1px 4px;
}

.izl-rmenu a.consult:hover .phone {
	display: inline !important;
}

.izl-rmenu .cart {
	background-image: url(../../img/consult_icon.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
	display: block;
	height: 16px;
	font-size: 12px;
	line-height: 16px;
	color: #45BDFF;
	text-align: center;
	padding-top: 20px;
	padding-right: 18px;
	padding-bottom: 47px;
	padding-left: 48px;
}

.izl-rmenu a.cart:hover .pic {
	display: block;
}

.izl-rmenu .btn_top {
	background-image: url(../../img/float_top.gif);
	background-repeat: no-repeat;
	background-position: center top;
	display: block;
	height: 39px;
	width: 82px;
	-webkit-transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
}

.izl-rmenu .btn_top:hover {
	background-image: url(../../img/float_top.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}

.izl-rmenu .cart .pic {
	display: none;
	position: absolute;
	left: -200px;
	top: -1px;
	width: 200px;
	height: 200px;
	background: url(../../img/weixin.png);
}

#udesk-feedback-tab {
	position: fixed;
	right: 2px;
	top: 65%;
	margin-top: -76px;
	-webkit-box-shadow: #DDD 0px -1px 5px;
	-moz-box-shadow: #DDD 0px -1px 5px;
	box-shadow: #DDD 0px -1px 5px;
	z-index: 10000;
	cursor: pointer;
	background-image: url(../../img/consult_icon.gif);
	background-repeat: no-repeat;
	background-position: center top;
	display: block;
	height: 76px;
	width: 82px;
	background-color: #FFF !important;
	z-index: 999;
}

.zzsc {
	width: 900px;
	height: 313px;
	padding-top: 2px;
}

.zzsc .tab {
	float: left;
	width: 450px;
	overflow: hidden;
}

.zzsc .tab a {
	display: block;
	padding: 9px 15px;
	text-decoration: none;
	color: #999;
	font-size: 13px;
}

.zzsc .tab a:hover {
	color: #f30;
	text-decoration: none;
}

.zzsc .tab a.on {
	color: #f30;
	text-decoration: none;
}

.zzsc .content {
	overflow: hidden;
	width: 450px;
	height: 313px;
	position: relative;
}

.zzsc .content ul {
	position: absolute;
	left: 0;
	top: 0;
	height: 100px;
}

.zzsc .content li {
	position: relative;
	width: 450px;
	height: 313px;
	float: left;
	list-style: none;
}

.zzsc .content li a {
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	width: 100px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.zzsc .content li a.more {
	position: absolute !important;
	height: 40px !important;
	top: auto !important;
	right: 0;
	bottom: 0;
}

.none {
	text-align: center;
	margin-top: 20px;
	font-size: 20px;
}

/*# sourceMappingURL=project.css.map */