.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
/* background-color:#000000;*/
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    background-color: rgb(255,255,255);
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgb(80, 22, 19);
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.wow {
    opacity: 0;
}

.mobile-inner-nav {
    background-color: rgb(80, 22, 19);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    max-height: calc(100vh - 50px);
    z-index: 444;
    overflow: auto;
}

.mobile-inner-nav  a {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav  dl {
    display: none;
}

.mobile-inner-nav  dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav  li {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
    zoom: 1;
    overflow: hidden;
    font-size: 0;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 15px;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight:;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li  .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li  form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";

@charset "UTF-8";

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,9%,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%,0,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(.3,.3,.3);
    }

    100% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
    overflow-x: hidden;
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "HanHei SC","PingFang SC","Microsoft YaHei";
    font-weight: 300;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

input[type="button"],input[type="submit"],input[type="reset"] {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none;
    border-radius: 0
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

input::-webkit-input-placeholder {
    color: #404952;
}

input::-moz-placeholder {
/* Mozilla Firefox 19+ */
    color: #404952;
}

input:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
    color: #404952;
}

input:-ms-input-placeholder {
/* Internet Explorer 10-11 */
    color: #404952;
}

textarea::-webkit-input-placeholder {
    color: #404952;
}

textarea::-moz-placeholder {
/* Mozilla Firefox 19+ */
    color: #404952;
}

textarea:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
    color: #404952;
}

textarea:-ms-input-placeholder {
/* Internet Explorer 10-11 */
    color: #404952;
}
body{
	/* background: url(../images/bodyd.jpg) no-repeat center 0; */
	/* background-size: 100%; */
	padding-top: 150px;
}
.head{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	width: 100%;
	background: url(../images/bodyd.jpg) no-repeat center 0;
	background-size: 100%;
}
.head .logo{
	float: left;
	padding-top: 36px;
	margin-left: 7%;
}
.head .logo img{
	
}
.head .nav{
	float: left;
	width: 74%;
	margin-left: 4%;
}
.head .nav li dl a{
	display:block;
	font-size:20px;
	text-align:center;
	color:#fff;
	line-height:1.7
}
.head .nav li:hover dl{
	visibility:visible;
	opacity:1;
	top:150px;
	z-index:5;
}
.head .nav li dl{
	position:absolute;
	width:150%;
	top:150px;
	z-index:33;
	left:-25%;
	background:#4f1512;
	    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: 160px;
}
.head .nav li{
	float: left;
	width: 25%;
	position: relative;
}
.head .nav li .h2tit{
	
}
.head .nav li .h2tit a{
	display: block;
	line-height: 150px;
	font-size: 30px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #491915;
	text-align: center;
	background-position: center center !important;
}
.head .nav li:hover .h2tit a,
.head .nav li.current .h2tit a{
	background: url(../images/sm.png) no-repeat center center;
	background-size: 100%;
	color: #fff;
}
.banner img{
	width: 100%;
}
.head:after{
content:"";
display:table;
clear:both;
}
.head,.head *{
	-webkit-transition:all 0.2s;
	-o-transition:all 0.2s;
	-moz-transition:all 0.2s;
	-ms-transition:all 0.2s;
	transition:all 0.2s;
}
.banner .swiper-button-prev,
.banner .swiper-button-next{
	width: 77px;
	height: 77px;
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{
	display: none;
}
.banner .swiper-button-prev{
	background: url(../images/left.png) no-repeat center center;
	background-size: 100%;
}
.banner .swiper-button-next{
	background: url(../images/right.png) no-repeat center center;
	background-size: 100%;
}



.banner .swiper-button-prev:hover{
	background: url(../images/lefthover.png) no-repeat center center;
	background-size: 100%;
}
.banner .swiper-button-next:hover{
	background: url(../images/righthover.png) no-repeat center center;
	background-size: 100%;
}
.banner .swiper-pagination-bullet{
	width: 22px;
	height: 22px;
	
	border: 1px solid #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0px 13px;
		background:none;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active{
background: #FFFFFF;
}
.wrap:after{
	content: "";
	display: table;
	clear: both;
}
.wrap{
	max-width: 100%;
	width: 1440px;
	margin: auto;
}
.index{
	background: url(../images/index.jpg) no-repeat center 0;
	background-size: cover;
}
.index .section_1{
	padding-top: 200px;
	padding-bottom: 200px;
}
.titlemodal{
	text-align: center;
}
.titlemodal img{
	
}
.index .section_1 .content{padding: 15px;border: 5px solid #A18877;margin-top: 75px;}
.index .section_1 .border2{
position: relative;
padding-left: 52%;
}
.index .section_1 .border{
	padding: 40px 50px;
	border: 2px solid #A18877;
}
.index .section_1 .imgbox{
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 50%;
}
.index .section_1 .content{
	
}
.index .section_1 .dec{
	font-size: 26px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #000000;
	line-height: 43px;
	text-indent: 2em;
}
.wrap2{
	width: 1250px;
	margin: auto;
	max-width: 100%;
}
.index .section_2{
	
}
.index .section_2 .list:after{
	content: "";
	display: table;
	clear: both;
}
.index .section_2 .list{
	/* padding-top: 27px; */
}
.index .section_2 .list li:nth-child(3n){
	margin-right: 0;
}
.index .section_2 .list li{
	float: left;
	width: calc((100% - 246px)/3);
	margin-right: 123px;
	background: #F2F2F2;
	border: 5px solid rgba(161, 136, 119, 0.8);
	border-radius: 5px;
}
.index .section_2 .list .imgbox{
	overflow: hidden;
}
.index .section_2 .list .imgbox img{
	display: block;
	width: 100%;
}
.index .section_2 .list .content{
	padding:0px 24px;
	padding-bottom: 15px;
}
.index .section_2 .list .title{
	padding-top: 56px;
	padding-bottom: 32px;

}
.index .section_2 .list .title a{
	font-size: 19px;
	font-family: SourceHanSansCN;
	font-weight: bold;
	color: #000000;
	display: block;
}
.index .section_2 {
	padding-bottom: 200px;
}
.index .section_2 .list .dec{
	font-size: 14px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #2E2E2E;
	line-height: 28px;
	margin-bottom: 56px;
}
.index .section_2 .list .infor{
	zoom: 1;
	overflow: hidden;
}
.index .section_2 .list .time{
	float: left;
	font-size: 17px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #491915;
}
.index .section_2 .list .day{
	
}
.index .section_2 .list .year{
	font-size: 14px;
}
.index .section_2 .list .more{
	float: right;
	width: 102px;
	line-height: 28px;
	border: 2px solid #A18877;
	text-align: center;
	font-size: 14px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #A18877;
	margin-top: 6px;
}
.index .section_2 .list li:hover{
	-o-transform: translate(0%, -40px);
	-webkit-transform: translate(0%, -40px);
	-moz-transform: translate(0%, -40px);
	-ms-transform: translate(0%, -40px);
	transform:translate(0%, -40px);
}
.index .section_2 .list li{
	margin-top: 78px;
}
.index .section_2 .list li:nth-child(2n){
}
.index,
.index *{
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
	/* padding-right: 10%; */
	transition-timing-function: cubic-bezier(0.07, 0.9, 1, 1);
}
.index .section_2 .list .more:hover{
	color: #fff;
	background-color: #A18877;
}
.index .section_3{
	
} 
.index .section_3 .list{
	zoom: 1;
	padding-top: 63px;
	overflow: hidden;
} 
.index .section_3 .list li{
	float: left;
	width: 50%;
	text-align: center;
	padding-bottom: 150px;
} 
.index .section_3 .list li .imgbox{
	background: url(../images/yy.png) no-repeat center  88%;
} 
.index .section_3 .list li .imgbox img{
	height: 293px;
} 
.index .section_3 .list li .title{
	font-size: 49px;
	font-family: CTZhongYuanSJ;
	font-weight: 400;
	color: #491915;
	display: block;
} 
.footer{
	text-align: center;
	font-size: 17px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #EEEDEB;
	background: #896954;
	padding-top: 42px;
	padding-bottom: 28px;
	line-height: 34px;
}
.footer p.tel{
	display: inline-block;
	padding-left: 40px;
	padding-right: 40px;
	background:url(../images/tel.png) no-repeat left center;
}
.titlemodel2{
	text-align: center;
}
.titlemodel2 span{
	position: relative;
	font-size: 58px; 
	font-family: HYi1gj;
	font-weight: 550;
	color: #491915;
	z-index: 44;
	/* width: 100%; */
	/* display: block; */
	line-height: 1;
	padding: 0px 280px;
}
.titlemodel2 span::before,
.titlemodel2 span:after{
	width: 31%;
	height: 4px;
	background: #9E8473;
	content: "";
	left: 0px;
	position: absolute;
	top: 37px;
	position: absolute;
	top: 50%;
	-o-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.titlemodel2 span:after{
	left: auto;
	right: 0;
}
.listtype1{

}
.listtype1  .list:after{
	display: table;
	clear: both;
	content: "";
}
.listtype1  .list li:nth-child(2n){
	margin-right: 0;
}
.listtype1  .list{
		padding-top: 57px;
}
.listtype1  .list  li{
	margin-bottom: 86px;
	float: left;
box-shadow: 0px 6px 70px 0px rgba(63, 63, 63, 0.29);
	margin-right: 143px;
	width: calc((100% - 143px)/2);
	text-align: center;
}
.listtype1  .list  li .imgbox{
	position: relative;
	background-color: #fff;
	height: 500px;
}
.listtype1  .list  li .imgbox img{

}
.listtype1  .list  li .title2{
	
}
.listtype1  .list  li .title2 a{
	display: block;
	text-align: center;
background: #491915;
line-height: 108px;

font-size: 35px;
font-family: SourceHanSansCN;
font-weight: 400;
color: #FFFFFF;
}
.h200{
	height: 200px;
}
.icp a{font-size:14px; color:#fff;}
.icp a:link{font-size:14px; color:#ccc;}
.icp a:hover{font-size:14px; color:#491915;}
/*分页*/
.pager {text-align: center; margin: 20px 0;}
.pager ul {display: flex; flex-wrap: wrap; justify-content: center}
.pager ul li {display: inline-block;}
.pager ul li a {padding: 5px 15px; border: #dddddd solid 1px; margin-left: -1px; display: inline-block;}
.pager ul li a:hover {border-color: #fff; background-color: #491915; color: #FFF}
.pager ul .active a {border: #491915 solid 1px; display: inline-block; background-color: #491915; color: #fff;}
.pager ul a:not([href]):not([class]):hover {border: #dddddd solid 1px; background-color: #491915}
.pager ul .active a:hover {color: #fff; border: #491915 solid 1px !important; background-color: #491915 !important}

/*分页样式*/
.page { padding:14px 80px 30px 11px; float:right; clear:both;}
.page a, .page span {font-size:26px; float:left; display:block; /* border:1px solid #D3D1D1; */ padding:2px 15px; margin-left:4px; line-height:30px; color:#000000; }
.page a:link, .page a:visited { text-decoration:none; }
.page a:hover { background:#491915; color:#fff; }
.page .current{ background:#491915; color:#FFF; padding:2px 15px;}
.page #total{color:red}

.pagesize{
	text-align: center;
}
.pagesize a{
	
	font-size: 26px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #000000;
	display: inline-block;
	line-height: 45px;
	padding: 0px 13px;
	margin: 0px 10px;
}
.pagesize a:hover,
.pagesize a.current{
	color: #fff;
	background-color: #491915;
}
.pagesize span{
	
	font-size: 26px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	margin: 0px 10px;
	color: #000000;
}
.listtype1.type2 .list li{
	width: calc((100% - 160px)/3);
	margin-right: 80px;
}
.listtype1.type2 .list li:nth-child(3n){
	margin-right: 0px;
}
.listtype1.type2 .list li .imgbox{
	height: 406px;
}
.type2.listtype1 .list li .title2 a{
	line-height: 87px;
	font-size: 40px;
}
.h100{
	height: 100px;
}
.listtype1 .list li .imgbox img{
	max-width: 100%;
}

.index .about1{
	padding-top: 200px;
	padding-bottom: 200px;
}
.index .about1 .infors p{
	padding-bottom: 30px;
}
.index .about1 .infors{
	font-size: 25px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #000000;
	line-height: 49px;
	text-indent: 2em;
}
.index .about1 .list{
	text-align: center;
	zoom: 1;
	overflow: hidden;
	padding-bottom: 90px;
}
.index .about1 .list li{
	float: left;
	width: 33.33%;
	font-size: 17px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #000000;
	line-height: 1;
}
.index .about1 .list .val{
	font-size: 51px;
	font-family: MicrosoftYaHei;
	font-weight: bold;
	color: #000000;
	line-height: 1;
	padding-top: 67px;
	padding-bottom: 18px;
}
.index .about1 .list .title{
	
}
.index .about2{
	
}
.index .about2 .list{
	zoom: 1;
	overflow: hidden;
	text-align: center;
	background: url(../images/abbg1.jpg) no-repeat center center;
	background-size: cover;
	margin-top: 64px;
	padding-top: 230px;
	padding-left: 4%;
	padding-right: 4%;
	padding-bottom: 376px;
}
.index .about2 .list li{
	float: left;
	width: 20%;
	position: relative;
}
.index .about2 .list .icon img{
	position: absolute;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.index .about2 .list .icon{
	height: 126px;
	position: relative;
}
.index .about2 .list .title{
	
	font-size: 32px;
	font-family: MicrosoftYaHei;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1;
	padding-top: 30px;
	padding-bottom: 45px;
}
.index .about2 .list .dec{
	
	font-size: 17px;
	font-family: SourceHanSansCN;
	/* font-weight: bold; */
	color: #FFFFFF;
}
.index .about2 .list li:after{
	width: 3px;
	content: "";
	height: 82px;
	background: #FFFFFF;
	position:absolute;
	top: 130px;
	right: 0;
}

.index .about2 .list li:last-child:after{
	display: none;
}
.index .about3{
	padding-top: 200px;
}
.index .about3 .video{
	margin-top: 60px;
}
.index .about3 .video video{
	display: block;
	width: 100%;
	cursor: pointer;
}
.index .about4{
	padding-top: 200px;
	background: #fff;
}
.index .about4 .titimg{
	padding-top: 64px;
	padding-bottom: 94px;
	text-align: center;
}
.index .about4 .titimg img{
	
}
.index .about4 .honor{
	
}
.index .about4 .title{
	
	font-size: 42px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #000000;
}
.index .about4 .honorimg{
	text-align: center;
	padding-top: 74px;
	padding-bottom: 89px;
}
.index .about4 .honorimg img{
	max-width: 100%;
}
.index .about5{
	background: #fff;
}
.index .about5 .tree{
	text-align: center;
	padding-top: 70px;
	padding-bottom: 200px;
}
.index .about5 .tree img{
	max-width: 100%;
}
.position{
	padding-top: 77px;
	padding-left: 10%;
	padding-right: 10%;
	font-size: 20px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #040404;
	background-color: #fff;
}
.position a{
	
	font-size: 20px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #040404;
}
.bgwhite{
	background-color: #fff;
}
.article{
	
}
.article .title{
	text-align: center;
	
	font-size: 59px;
	font-family: SourceHanSansCN;
	font-weight: 800;
	color: #010101;
	line-height: 86px;
	padding-top: 97px;
	padding-bottom: 53px;
}
.article .arbod p{
	padding-bottom: 45px;
}
.article .arbod{
	
	font-size: 30px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #000000;
	line-height: 50px;
}
.article .tear{
	text-align: right;
	
	font-size: 28px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #040404;
	padding-top: 30px;
}
.listtype2{

}
.listtype2 .list{
	padding-top:70px
}
.listtype2 li{
	zoom: 1;
	overflow: hidden;
}
.listtype2 li .content{
	float: left;
	width: 73%;
}
.listtype2 li .title{
	font-size: 28px;
	font-family: SourceHanSansCN;
	font-weight: 800;
	color: #373737;
	display: block;
	margin-bottom: 16px;
	line-height: 1;
}
.listtype2 li .dec{
	margin-bottom: 16px;
	
	font-size: 18px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #505050;
	line-height: 26px;
}
.listtype2 li .infor{
	zoom: 1;
	overflow: hidden;
}
.listtype2 li .time{
	float: left;
	line-height: 40px;
	
	font-size: 22px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #040404;
}
.listtype2 li .more{
	float: right;
	text-align: center;
	width: 78px;
	line-height: 23px;
	border: 3px solid #491915;
	
	font-size: 14px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #491915;
}
.listtype2 li .imgbox{
	float: right;
	width: 22%;
}
.listtype2 li .imgbox img{
	width: 100%;
}
.listtype2 li {
	padding-bottom: 100px;
}
.index .section_1_1{
	
}
.index .section_1_1 .newsbox{
	zoom: 1;
	overflow: hidden;
	padding-top: 63px;
	padding-left: 30px;
	padding-right: 30px;
}
.index .section_1_1 .newsbox .left{
	float: left;
	width: 44%;
}
.index .section_1_1 .newsbox .imgbox{
	
}
.index .section_1_1 .newsbox .imgbox img{
	display: block;
	width: 100%;
}
.index .section_1_1 .newsbox .content{
	
}
.index .section_1_1 .newsbox .title{
	font-size: 26px;
	font-family: SourceHanSansCN;
	font-weight: bold;
	color: #1D1D1D;
	display: block;
	margin-top: 40px;
	margin-bottom: 38px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.index .section_1_1 .newsbox .dec{
	font-size: 17px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #505050;
	line-height: 28px;
	margin-bottom: 30px;
}
.index .section_1_1 .newsbox .more{
	display: block;
	width: 113px;
	line-height: 36px;
	background: #491915;
	text-align: center;
	border-radius: 300px;
	font-size: 17px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #FFFFFF;
}
.index .section_1_1 .newsbox .right{
	float: right;
	width: 51%;
}
.index .section_1_1 .newsbox .right li:last-child{
	padding-bottom: 0;
	border-bottom: none;
}
.index .section_1_1 .newsbox .right li{
	padding-bottom: 50px;
	border-bottom: 1px solid #A0A0A0;
	zoom: 1;
	overflow: hidden;
	padding-top: 10px;
	margin-bottom: 32px;
}
.index .section_1_1 .newsbox .time{
	float: left;
	width: 110px;
}
.index .section_1_1 .newsbox .day{
	font-size: 71px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #707070;
	line-height: 1;
}
.index .section_1_1 .newsbox .mou{
	font-size: 21px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #707070;
	line-height: 1;
	padding-top: 16px;
}
.index .section_1_1 .newsbox .ri{
	width: calc(100% - 110px);
	float: left;
}
.index .section_1_1 .newsbox .ri a{
	display: block;
}
.index .section_1_1 .newsbox .ri a *{
	display: block;
}
.index .section_1_1 .newsbox .ri .s1{
	font-size: 22px;
	font-family: SourceHanSansCN;
	font-weight: bold;
	color: #1D1D1D;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.index .section_1_1 .newsbox .ri .s2{
	font-size: 17px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #505050;
	line-height: 25px;
	margin-top: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.index .about4 .titimg img{
	max-width: 70%;
}
.index .section_1_1 {
	padding-bottom: 200px;
}
.index .section_1_2{
	
} 
.index .section_1_2 .imgbox{
	text-align: center;
	padding-top: 65px;
	padding-bottom: 200px;
} 
.index .section_1_2 .imgbox img{
	max-width: 90%;
} 
.index .section_1_3{
	
}
.index .section_1_3 .imgbox{
	position: relative;
	height: 980px;
	background: url(../images/map.jpg) no-repeat center 0;
	background-size: cover;
	margin-top: 80px;
}
.index .section_1_3 .infors{
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 0px;
	z-index: 99;
	padding-left: 5%;
	padding-bottom: 6%;
}
.index .section_1_3 .title{
	display: inline-block;
	font-size: 42px;
	font-weight: bold;
	color: #491915;
	/* border-bottom: 6px solid #491915; */
}
.index .section_1_3 .dec{
	
}
.index .section_1_3 .dec p{
	line-height: 43px;
	padding-left: 54px;
	margin-bottom: 30px;
}
.index .section_1_3 .dec p a{
	color: #bd1204;
	text-decoration: underline;
}
.index .section_1_3 .dec p:nth-child(1){
	background:url(../images/p1.png) no-repeat left center;
}
.index .section_1_3 .dec p:nth-child(2){
	background:url(../images/p2.png) no-repeat left center;
	
}
.index .section_1_3 .line{
	background-color: #491915;
	margin: 15px 0 30px;
	width: 95px;
	height: 10px;
}


.hlsec1{
	padding-top: 104px;
}
.hlsec1 .list{
	text-align: center;
	font-size: 0;
	padding-top: 80px;
}
.hlsec1 .list li{
	display: inline-block;
	width: 33.333%;
	vertical-align: top;
}
.hlsec1 .list .icon{
	
}
.hlsec1 .list .icon img{
	
}
.hlsec1 .list .title{
	
	font-size: 45px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #491915;
	padding-top: 42px;
	padding-bottom: 68px;
	line-height: 1;
}
.hlsec2{
	margin-top: 30px;
}
.hlsec2 .content{
	margin-top: 60px;
	padding: 134px 10%;
background: #1AAFF1;
position: relative;
zoom: 1;
overflow: hidden;

display: -webkit-box;
display: -moz-box;
display: -webkit-flex; 
display: -moz-flex;
display: -ms-flexbox; 
display: flex;
align-items: center;
}
.hlsec2 .content .imgbox{

	flex: 1;
}
.hlsec2 .content .imgbox img{
	display: block;
	margin: auto;
}
.hlsec2 .content .right{
		flex: 1;
		zoom: 1;
		overflow: hidden;
}
.hlsec2 .content .title{
	
	font-size: 56px;
	font-family: SourceHanSansCN;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}
.hlsec2 .content .dec{
	
	font-size: 28px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 44px;
	padding-top: 46px;
	padding-bottom: 30px;
	text-indent: 2em;
}
.hlsec2 .content .more{
	float: right;
	width: 130px;
	line-height: 36px;
	border-radius: 400px;
	
	font-size: 20px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #491915;
	background: #FFFFFF;
	text-align: center;
}





.hlsec3{
	margin-top:103px;
}
.hlsec3 .content{
	margin-top: 60px;
	padding: 134px 8%;
	background: url(../images/kt.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
	zoom: 1;
	overflow: hidden;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.hlsec3 .content .imgbox{

	flex: 1;
}
.hlsec3 .content .imgbox img{
	display: block;
	margin: auto;
}
.hlsec3 .content .right{
		flex: 1;
		zoom: 1;
		overflow: hidden;
}
.hlsec3 .content .title img{
	max-width: 100%;

}
.hlsec3 .content .dec{
	padding-left: 94px;
	font-size: 28px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 44px;
	padding-top: 10px;
}








.hlsec4{
	margin-top:103px;
}
.hlsec4 .content{
	margin-top: 60px;
	padding:  0 8%;
	position: relative;
	zoom: 1;
	overflow: hidden;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	padding-bottom: 120px;
}
.hlsec4 .content .imgbox{

	flex: 1;
}
.hlsec4 .content .imgbox img{
	display: block;
	margin: auto;
}
.hlsec4 .content .right{
		flex: 1;
		zoom: 1;
		overflow: hidden;
}
.hlsec4 .content .title img{
	max-width: 100%;

}
.hlsec4 .content .dec{
	
	font-size: 33px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #000000;
	line-height: 56px;
	text-indent: 2em;
}
.hlsec2 .content .right,
.hlsec4 .content .right{
	padding-left: 20px;
}
	
.zs *{
	max-width: 100%;
}
.zs{
	padding-top: 205px;
	text-align: center;
	padding-bottom: 1px;
}
.zs .title1{
	display: inline-block;
	margin-bottom: 52px;
	width: 887px;
	line-height: 217px;
	border: 3px solid #AAAAAA;
	font-size: 70px;
	font-family: SourceHanSansCN;
	font-weight: bold;
	color: #E38529;
}
.zs .imgbox{
	padding: 90px 0;
}
.zs .imgbox img{
	
}
.zs .title2{
	
	font-size: 70px;
	font-family: SourceHanSansCN;
	font-weight: bold;
	color: #E38529;
}
.zs .dec{
	font-size: 58px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #E38529;
	line-height: 93px;
	padding-top: 50px;
}
.clear{
	clear: both;
}
.zs .formtable{
	text-align: left;
	padding-top: 150px;
}
.zs .modal2{
	float: left;
	width: 47%;
}
.zs .modal2.flr{
	float: right;
}
.zs .modal{
	clear: both;
}
.zs  .s1{
	
	font-size: 50px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	margin-bottom: 27px;
	color: #414141;
}
.zs .modal .words{
	display: block;
	width: 100%;
	margin-bottom: 60px;
	font-size: 30px;
	padding: 0px 20px;
	height: 100px;
	border: 1px solid #DCDCDC;
}
.zs  select{
	display: block;
	width: 100%;
	margin-bottom: 60px;
	padding: 0px 20px;
	font-size: 30px;
	height: 100px;
	margin-bottom: 60px;
	border: 1px solid #DCDCDC;
}
.zs .modal textarea{
	display: block;
	width: 100%;
	margin-bottom: 60px;
	padding: 0px 20px;
	font-size: 30px;
	height: 100px;
	margin-bottom: 60px;
	border: 1px solid #DCDCDC;
	height: 460px;
	resize: none;
	padding: 20px;
}
.zs  .send{
	
	height: 88px;
	background: #FF2323;
	display: block;
	width: 100%;
	border: none;
	cursor: pointer;
	
	font-size: 50px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #FFFFFF;
	margin-bottom: 200px;
}
.zs ,
.zs  *{
	-webkit-transition:all 0.2s;
	-o-transition:all 0.2s;
	-moz-transition:all 0.2s;
	-ms-transition:all 0.2s;
	transition:all 0.2s;
}
.formtable.pt0{
	padding-top: 0;
}

.index .section_2 .list li:hover .imgbox img{
	-webkit-transform: scale(1.05,1.05);
-o-transform: scale(1.05,1.05);
-moz-transform: scale(1.05,1.05);
-ms-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
}
.index .section_1_1 .newsbox .imgbox img:hover,
.listtype2 li .imgbox img:hover{
	-webkit-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-ms-transform: scale(1.05,1.05);
	transform: scale(1.05,1.05);
}
.index .section_1_1 .newsbox .imgbox,
.listtype2 li .imgbox{
	overflow: hidden;
}
.index .section_1_1 .newsbox .title:hover,
.index .section_2 .list .title a:hover,
.listtype2 li .title:hover{
	color: #491915;
}
.index .section_1_1 .newsbox .title:hover{
	text-shadow: 3px 3px 6px rgba(29, 29, 29, .2)
}
.listtype2 li .more:hover{
	color: #fff;
	background: #491915;
}
.index .section_1_1 .newsbox .ri:hover .s1{
	color: #491915;
}
.index .section_1_1 .newsbox .ri:hover .s2{
	color: #491915;
}
a{
	cursor: pointer;
}
.hlsec1 .list li:hover .icon img,
.index .section_3 .list li:hover .imgbox img{
	-webkit-transform: scale(1.25,1.25);
	-o-transform: scale(1.25,1.25);
	-moz-transform: scale(1.25,1.25);
	-ms-transform:scale(1.25,1.25);
	transform: scale(1.25,1.25);
}
.listtype2 li .title:hover,
.index .section_3 .list li:hover .title{
	text-shadow: 3px 3px 4px rgba(73, 25, 21, .3);
	font-weight: bold;
}

.honorimg2:after,
.honorimg:after{
	display: table;
	clear: both;
	content: "";
}
.honorimg2 {
	width: 780px;
	max-width: 100%;
	margin: auto;
	    padding-top: 74px;
}
.honorimg2 .item img{
	max-width: 100%;
}
.honorimg2 .item{
	float: left;
	width: 50%;
	height: 540px;
	text-align: center;
}
.listtype1 .list li:hover .imgbox img,
.honorimg img:hover,
.honorimg2 img:hover{
	-webkit-transform: scale(1.25,1.25);
	-o-transform: scale(1.25,1.25);
	-moz-transform: scale(1.25,1.25);
	-ms-transform:scale(1.25,1.25);
	transform: scale(1.25,1.25);
}
.listtype1 .list li:hover{
	box-shadow: 0px 6px 80px 0px rgba(80, 22, 19,.6);
}
.listtype1 .list li .imgbox a{
	position: absolute;
	    bottom: 3%;
	    left: 50%;
	    -o-transform: translate(-50%, 0%);
	    -webkit-transform: translate(-50%, 0%);
	    -moz-transform: translate(-50%, 0%);
	    -ms-transform: translate(-50%, 0%);
	    transform: translate(-50%, 0%);
		width: 100%;
		text-align: center;
}
.listtype1 .list li .imgbox img{
	max-width: 100%;
}
.listtype1 .list li:hover .title2 a{
	background-color: rgba(80, 22, 19,.8);
}
.index .section_1_1 .newsbox .more:hover{
	background-color:rgba(80, 22, 19,.8);
	box-shadow: 3px 3px 5px rgba(16, 1, 0,.5);
}
.hlsec2 .content .more:hover{
	background-color: #491915;
	color: #fff;
}





@font-face {
  font-family: "SourceHanSansCN";
  src: url(../fonts/SourceHanSansCN-Normal.otf)
}


.head .logo{
	width: 10%;
	height: 150px;
	position: relative;
}
.head .logo img{
width: 100%;
position:absolute;
top: 50%;
left: 50%;
-o-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.head.current .logo{
	height: 90px;
}
.current.head .nav li .h2tit a{
line-height: 90px;
}

.current.head .nav li:hover dl{
	top: 90px;
}

