@charset "utf-8";

/**
 * Zhang Jian reset css
 * 2017-now
 */
 
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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,table, caption, tbody, tfoot, thead, tr, th, td,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;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul, li {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	display: block;
}

/* custom */
a {
	color: #666;
	text-decoration: none;
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
a:hover{
	text-decoration: none;
	color: #3c71dc;
}
a:link{
    text-decoration: none;
}
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
::-webkit-scrollbar-track-piece {
	background-color: rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
	height: 5px;
	background-color: rgba(125, 125, 125, 0.7);
	-webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
	width: 5px;
	background-color: rgba(125, 125, 125, 0.7);
	-webkit-border-radius: 6px;
}
html, body {
	width: 100%;
	font-family: PingFang SC,Lantinghei SC,Helvetica Neue,Helvetica,Arial,Microsoft YaHei,微软雅黑,STHeitiSC-Light,simsun,宋体,WenQuanYi Zen Hei,WenQuanYi Micro Hei,"sans-serif";
	color: #666;
	transition: all .3s;
}
body {
	line-height: 1.7;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-size: 12px;
}
img {
	max-width: 100%;
}

/*浮动*/

.left {
	float: left;
}

.right {
	float: right;
}

/*弹性布局*/

.flex {
	display: flex;
}
.flex_wrap {
	flex-wrap: wrap;
}

/*定位*/

.pr {
	position: relative;
}
.pa {
	position: absolute;
}

/*清除浮动*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/*页面宽度*/

.wrapper {
	margin: 0 auto;
}
.wrapper {
	width: 1200px;
}
@media screen and (min-width: 1441px) {
}

/*@media screen and (max-width: 1440px) {*/

/*    .wrapper{*/

/*        width:1200px;*/

/*    }*/

/*}*/

/*隐藏*/

.dn {
	display: none;
}


/*按钮*/

.more_style1 {
	margin-top: 50px;
	display: inline-block;
	padding: 10px 30px;
	border: 2px solid #ffb923;
	position: relative;
	font-size: 14px;
	color: #101010;
	background: #ffb923;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
}
.more_style1 div {
	transition: transform .3s, opacity .3s;
}
.more_style1 div i{
    margin-left:6px;
    font-weight: normal;
}
.more_style1 .dubbed {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translate3d(0, 20%, 0);
	pointer-events: none;
}
.more_style1:hover {
	color: #fff;
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	background: transparent;
}
.more_style1:hover .original {
	opacity: 0;
	transform: translate3d(0, -50%, 0);
}
.more_style1:hover .dubbed {
	opacity: 1;
	transform: none;
}
.more_style2 {
	color: #0053b1;
	border-color: #0053b1;
}
.more_style2:hover {
	background: #0053b1;
	color: #fff;
}
.button_wrap {
	margin-top:60px;
}
.button_wrap .button {
	padding: 13px 49px;
	color: #001e57;
	background-color: transparent;
	border-color: #001e57;
	font-size: 16px;
	border-radius: 0;
	display: inline-block;
	position: relative;
	white-space: nowrap;
	letter-spacing: .9px;
	overflow: hidden;
	text-overflow: ellipsis;
	border-style: solid;
	border-width: 2px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	vertical-align: middle;
	user-select: none;
	transition: 0.5s;
	z-index: 1;
	font-style: normal;
}
.button_wrap .button:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background-color: transparent;
}
.button_wrap .button:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 0 0;
	border-color: #102747 transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	z-index: -1;
}
.button_wrap .button:hover {
	color: #fff;
	background-color: transparent;
	border-color: #102747;
}
.button_wrap .button:hover:after {
	border-width: 400px 400px 0 0;
}
@media screen and (max-width: 992px) {
    .more_style1{
        padding: 10px 40px;
        font-size:16px;
        margin-top: 30px;
    }
	.button_wrap .button {
		padding: 6px 20px;
	}
}
/* 按钮3 */

.more_style3{
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background: #df6512;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    height:50px;
    line-height: 50px;
    margin:25px auto 0;
    text-align: center;
    padding: 0 34px;
    cursor: pointer;
}
.more_style3 i{
    vertical-align: middle;
    margin-right: 7px;
}
.more_style3:before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(0,0,0,.2);
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .4s ease-out ;
    -moz-transition: all .4s ease-out ;
    -ms-transition: all .4s ease-out ;
    -o-transition: all .4s ease-out ;
    transition: all .4s ease-out ;
}
.more_style3:hover{
    color:#fff;
}
.more_style3:hover:before{
    -webkit-transform: scale(2);
    transform: scale(2);
}



/*鼠标经过图片放大*/

.img_scale .img {
	overflow: hidden;
}
.img_scale .img img {
	transition: all .5s;
}
.img_scale:hover .img img {
	transform: scale(1.1);
}
.ptb30 {
	padding: 30px 0;
}
.mt20{
    margin-top: 20px;
}
.mtb40 {
	margin: 40px 0;
}
.mt40 {
	margin-top: 40px;
}
.pcmtp40m20{
    margin-top: 40px;
    margin-bottom: 40px;
}
.pt80mpt30 {
	padding-bottom: 80px;
	overflow: hidden;
}
.mtpc100mo40 {
	padding-top: 100px;
}
.mtpc90mo35 {
	margin-top: 90px;
}
.ptpc70m30{
    padding-bottom: 70px;
}
.ptpc50m30{
    padding-bottom: 50px;
}
.ptbpc50m20 {
	padding: 50px 0;
}

@media screen and ( max-width: 992px) {
	.mtpc100mo40 {
		margin-top: 35px;
	}
	.mtpc90mo35 {
		margin-top: 35px;
	}
	.ptbpc50m20{
	    padding: 20px 0;
	}
	.pt80mpt30 {
		padding-bottom: 30px;
	}
	.ptpc70m30{
        padding-bottom: 30px;
    }
	.mtpc100mo40 {
		padding-top: 40px;
	}
	.pcmtp40m20{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .ptpc50m30{
        padding-bottom: 30px;
    }
}