@charset "utf-8";
/*全局样式*/
body{padding: 0;margin: 0;font-family: Source Han Sans CN,Microsoft YaHei;font-size: 14px;color: #333;}
div,img,ul,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,form,p{padding: 0;margin: 0;border: 0;}
ul{list-style: none;}
a{text-decoration: none;color: #333;}
i,em{font-style: normal;}
img{display: block;max-width: 100%;height: auto;}
/*去掉 input 默认边框*/
input{padding: 0;border: 0;font-family: Microsoft YaHei;font-size: 14px;}
input[type="submit"]{background-color: transparent;cursor: pointer;}
/*去掉 textarea 默认边框*/
textarea{padding: 0;border: 0;font-family: Microsoft YaHei;font-size: 14px;}
/*去掉 button 默认边框*/
button{border: 0;padding: 0;background-color: transparent;font-family: Microsoft YaHei;font-size: 14px;cursor: pointer;}
/*清除浮动*/
.clearfix:after{content: '';display: table;clear: both;}
.clearfix{*zoom: 1;}
/*解决chrome浏览器 input,textarea 获得焦点时会有一个边框的问题*/
input,textarea{outline: none;}
/*清除ios端 input,textarea 默认内阴影 默认圆角*/
input[type="text"],input[type="password"],input[type="submit"],textarea{appearance: none;-webkit-appearance: none;border-radius: 0;}
/*常用盒模型*/
*{box-sizing: border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;}
/*常用宽度*/
.w1400{position: relative;width: 94%;margin: 0 auto;height: 100%;max-width: 1400px;}
.w1300{position: relative;width: 94%;margin: 0 auto;height: 100%;max-width: 1300px;}
.w1280{position: relative;width: 94%;margin: 0 auto;height: 100%;max-width: 1280px;}
.w1200{position: relative;width: 94%;margin: 0 auto;height: 100%;max-width: 1200px;}
.w1100{position: relative;width: 94%;margin: 0 auto;height: 100%;max-width: 1100px;}
.w1000{position: relative;width: 94%;margin: 0 auto;height: 100%;max-width: 1000px;}
/*常用过渡*/
.tran200{-webkit-transition: 0.2s;-moz-transition: 0.2s;-ms-transition: 0.2s;transition: 0.2s;}
.tran300{-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;transition: 0.3s;}
.tran400{-webkit-transition: 0.4s;-moz-transition: 0.4s;-ms-transition: 0.4s;transition: 0.4s;}
.tran500{-webkit-transition: 0.5s;-moz-transition: 0.5s;-ms-transition: 0.5s;transition: 0.5s;}
/*常用缩放*/
.scale105:hover{-webkit-transform: scale(1.05);-moz-transform: scale(1.05);-ms-transform: scale(1.05);transform: scale(1.05);}
.scale110:hover{-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);}
/*常用浮动*/
.fl{float: left;}
.fr{float: right;}
/*底部按钮通用样式*/
.btns-area{font-size: 0;text-align: center;}
.btns-area .btn{display: inline-block;padding: 0 2em;margin: 0 10px;background-color: #fff;border: 1px solid #ddd;border-radius: 4px;font-size: 16px;line-height: 34px;color: #000;cursor: pointer;}
.btns-area .btn img{display: inline-block;vertical-align: middle;margin: -3px 6px 0 0;}
.btns-area .btn:hover{opacity: .9;}
/*按钮hover动效1*/
.hover-btn{z-index: 1;position: relative;display: inline-block;padding: 0 2em;background-color: transparent;border: 1px solid #ccc;border-radius: 0;font-size: 16px;line-height: 34px;color: #000;cursor: pointer;}
.hover-btn:after{content: "";z-index: -1;position: absolute;left: 0;top: 0;width: 100%;height: 100%;background-color: #3da7ea;transform: scaleX(0);transition: 0.3s;}
.hover-btn:hover{color: #fff;}
.hover-btn:hover:after{transform: scaleX(1);}
/*滚动条*/
body *::-webkit-scrollbar{width: 2px;height: 2px;background: #eee;border-radius: 2px;}
body *::-webkit-scrollbar-thumb{background: #ccc;border-radius: 2px;}
/*自定义单选框input[type="radio"]样式*/
.custom-input label{display: inline-block;cursor: pointer;}
.custom-input input[type="radio"]{width: 1px;height: 1px;margin: 0;opacity: 0;}
.custom-input input[type="radio"]+em{position: relative;display: inline-block;width: 16px;height: 16px;background-color: #fff;border: 1px solid #ccc;border-radius: 50%;vertical-align: top;cursor: pointer;}
.custom-input input[type="radio"]+em:before{content: '';position: absolute;left: 50%;top: 50%;width: 8px;height: 8px;border-radius: 50%;transform: translate(-50%,-50%);}
.custom-input input[type="radio"]:checked+em{border-color: #00abdd;}
.custom-input input[type="radio"]:checked+em:before{background-color: #00abdd;}
.custom-input input[type="radio"]+em:hover{border-color: #00abdd;}
/*自定义多选框input[type="checkbox"]样式*/
.custom-input input[type="checkbox"]{width: 1px;height: 1px;margin: 0;opacity: 0;}
.custom-input input[type="checkbox"]+em{position: relative;display: inline-block;width: 16px;height: 16px;background-color: #fff;border: 1px solid #ccc;vertical-align: top;cursor: pointer;}
.custom-input input[type="checkbox"]+em:before{content: '';position: absolute;left: 50%;top: 50%;width: 8px;height: 8px;transform: translate(-50%,-50%);}
.custom-input input[type="checkbox"]:checked+em{border-color: #00abdd;}
.custom-input input[type="checkbox"]:checked+em:before{background-color: #00abdd;}
.custom-input input[type="checkbox"]+em:hover{border-color: #00abdd;}
/*自定义表单通用样式*/
.info-form{font-size: 0;}
.info-form .title{margin-bottom: 30px;font-size: 18px;line-height: 20px;}
.info-form .title span{display: inline-block;padding-left: 10px;border-left: 3px solid #ca0000;color: #ca0000;}
.info-form .row{display: inline-block;width: 100%;margin-bottom: 20px;font-size: 14px;}
.info-form .row.w50{width: 50%;}
.info-form .row.w33{width: 33%;}
.info-form .row .name{float: left;width: 5em;padding: 10px 1em 10px 0;line-height: 16px;text-align: right;}
.info-form .row .info-content{margin-left: 5em;}
.info-form input[type="text"]{width: 100%;height: 36px;padding-left: 10px;border: 1px solid #ddd;border-radius: 4px;}
.info-form input[type="text"]:focus{border-color: #0b736d;}
.info-form textarea{width: 100%;height: 200px;border: 1px solid #ddd;padding: 10px;border-radius: 4px;resize: none;}
.info-form textarea:focus{border-color: #0b736d;}
.info-form select{width: 100%;height: 36px;padding-left: 5px;border: 1px solid #ddd;outline: none;}
.info-form select:focus{border-color: #0b736d;}
.info-form .upload-avatar{position: relative;display: block;width: 80px;height: 80px;border-radius: 50%;cursor: pointer;overflow: hidden;}
.info-form .upload-avatar input[type="file"]{display: none;}
.info-form .upload-avatar .avatar{height: 100%;}
.info-form .upload-avatar .avatar img{width: 100%;height: 100%;}
.info-form .upload-avatar .tips{position: absolute;left: 50%;top: 50%;width: 4em;height: 20px;background-color: rgba(0,0,0,.3);text-align: center;line-height: 20px;color: #fff;transform: translate(-50%,-50%);}
.info-form .choice-area{padding: 10px 0;line-height: 16px;}
.info-form .choice-area label{display: inline-block;margin: 0 10px 5px 0;cursor: pointer;}
.info-form .choice-area label span{margin-left: 3px;}
.info-form .yzm-area{position: relative;width: 300px;}
.info-form .yzm-area input[type="text"]{width: 200px;}
.info-form .yzm-area .btn{position: absolute;right: 0;top: 0;width: 100px;height: 100%;}
.info-form .yzm-area .btn img{width: 100%;height: 100%;}
.info-form *::-webkit-input-placeholder{color: #ccc;}

/*header*/
.header{height: 108px;background-color: #fff;}
.header .logo{position: absolute;left: 0;top: 50%;transform: translateY(-50%);}
.header .logo img{max-height: 72px;}
.header .links{position: absolute;right: 0;top: 30px;}
.header .links a{display: inline-block;margin-left: 15px;color: #999;}
.header .links a:hover{color: #00753c;}
/*搜索栏*/
.search-wrap{position: absolute;right: 0;bottom: 20px;width: 220px;height: 24px;border: 1px solid #dcdcdc;border-radius: 4px;overflow: hidden;}
.search-wrap .input-text{width: 100%;height: 100%;padding: 0 30px 0 10px;font-size: 12px;}
.search-wrap .sub-btn{position: absolute;right: 0;top: 0;width: 22px;height: 22px;background: #00753c url(../images/icon_search.png) center no-repeat;}
/*移动端导航按钮*/
.header .menu-btn{display: none;}
/*导航*/
.nav-box{background-color: #00753c;}
.nav-box .nav{}
.nav-box .nav > li{position: relative;float: left;line-height: 60px;}
.nav-box .nav > li .more-btn{display: none;}
.nav-box .nav > li > a{position: relative;display: block;padding: 0 24px;font-size: 18px;color: #fff;}
.nav-box .nav > li > a:before{content: "";position: absolute;left: 0;top: 50%;width: 1px;height: 16px;margin-top: -8px;background-color: #ccc;}
.nav-box .nav > li:first-child > a:before{display: none;}
.nav-box .nav > li.on > a,.nav-box .nav > li:hover > a{font-weight: bold;}
.nav-box .nav-2nd{display: none;z-index: 2;position: absolute;left: 50%;top: 60px;width: 100%;min-width: 140px;padding: 8px 0;background-color: #0b9250;background-color: rgba(0,117,60,.7);transform: translateX(-50%);}
.nav-box .nav-2nd > li{}
.nav-box .nav-2nd > li > a{position: relative;display: block;padding: 10px;line-height: 16px;text-align: center;color: #fff;}
.nav-box .nav-2nd > li > a:before{content: "";position: absolute;left: 0;top: 50%;width: 3px;height: 0;background-color: #fff;transition: 0.3s;}
.nav-box .nav-2nd > li > a:hover{background-color: #00753c;}
.nav-box .nav-2nd > li > a:hover:before{top: 0;height: 100%;}

/*banner*/
.banner{position: relative;width: 100%;margin: 4px 0;overflow: hidden;}
.banner .swiper-slide{position: relative;display: block;padding-top: 34%;background-position: center;background-size: cover;background-repeat: no-repeat;}
.banner .swiper-slide .tit{position: absolute;left: 0;bottom: 0;width: 80%;padding: 0.8em 1em;background-image: linear-gradient(180deg,transparent,rgba(0,0,0,.2));font-size: 18px;line-height: 24px;color: #fff;}
.banner .swiper-pagination{left: auto;right: 15px;bottom: 16px;width: auto;font-size: 0;}
.banner .swiper-pagination-bullet{width: 10px;height: 10px;background-color: #fff;border-radius: 5px;box-shadow: 0 0 5px rgba(0,0,0,.5);opacity: .5;transition: 0.3s;}
.banner .swiper-pagination-bullet-active{width: 26px;opacity: 1;}
.banner .btn{z-index: 1;position: absolute;top: 50%;transform: translateY(-50%);width: 42px;height: 80px;background-color: rgba(0,0,0,.2);cursor: pointer;}
.banner .btn span{position: absolute;left: 50%;top: 50%;width: 22px;height: 42px;margin: -21px 0 0 -11px;background: url(../images/icons_arrow.png) no-repeat;opacity: .8;}
.banner .prev-btn{left: 0;}
.banner .prev-btn span{background-position: 0 0;}
.banner .next-btn{right: 0;}
.banner .next-btn span{background-position: -22px 0;}
.banner .btn:hover{background-color: rgba(0,0,0,.5);}

/*footer*/
.footer{padding: 30px 0 20px;background: #00753c;color: #ddd;font-size: 12px;}
.footer .address{float: left;padding-right: 50px;line-height: 26px;}
.footer .other-info{float: left;padding: 0 25px;}
.footer .other-info .item{display: inline-block;margin: 0 25px;}
.footer .other-info .item .tit{font-size: 14px;line-height: 32px;}
.footer .other-info .item .txt{line-height: 24px;}
.footer .friend-links{float: right;width: 200px;}
.footer .friend-links select{width: 100%;height: 28px;padding-left: 20px;margin-bottom: 14px;background-color: transparent;border: 1px solid #339163;border-radius: 4px;color: #ddd;cursor: pointer;appearance: none;-webkit-appearance: none;background: url(../images/select_arrow.jpg) right center no-repeat;}
.footer .friend-links select option{color: #000;}
.cr{height: 36px;background: #005e30;font-size: 12px;text-align: center;line-height: 36px;color: #ddd;}


/******首页******/
.index-content{padding-bottom: 50px;}
/*标题*/
.index-title{position: relative;height: 50px;border-bottom: 2px solid #e5e5e5;line-height: 48px;}
.index-title .tit{position: relative;float: left;height: 50px;padding-left: 35px;border-bottom: 3px solid #00753c;line-height: 48px;}
.index-title .tit .icon{position: absolute;left: 0;top: 50%;width: 24px;height: 24px;margin-top: -11px;background: url(../images/icons_index_title.png) no-repeat;}
.index-title .tit .cn{display: inline-block;font-size: 20px;}
.index-title .tit .en{position: relative;display: inline-block;margin-left: .5em;font-size: 12px;text-transform: uppercase;color: #999;}
.index-title .more{position: absolute;right: 0;top: 0;}
.index-title .more:hover{color: #00753c;}
.index-title1 .tit .icon{background-position: 0 0;}
.index-title2 .tit .icon{background-position: -24px 0;}
.index-title3 .tit .icon{background-position: -48px 0;}
.index-title4 .tit .icon{background-position: -72px 0;}
.index-title5 .tit .icon{background-position: -96px 0;}
/*布局*/
.index-content .part{margin-top: 12px;}
.index-content .part > .con-l{float: left;width: 67%;}
.index-content .part > .con-r{float: right;width: 32%;}
.index-content .part .item-box{padding: 5px 20px 0;border: 1px solid #e5e5e5;}
/*part1*/
.index-content .part1 > .con-l .index-title{margin-bottom: 20px;}
/*part2*/
.index-content .part2 > .con-l .index-title{margin-bottom: 5px;}
.index-content .part2 > .con-r .index-title{margin-bottom: 14px;}
/*快速导航*/
.fast-links{font-size: 0;}
.fast-links .item{display: inline-block;vertical-align: top;width: 24.6%;height: 60px;margin: 0 0.2%;font-size: 22px;line-height: 60px;text-align: center;color: #fff;}
.fast-links .item .icon{display: inline-block;width: 32px;height: 32px;vertical-align: middle;margin: -6px 10px 0 0;background: url(../images/icons_fast_link.png) no-repeat;}
.fast-links .item .name{display: inline-block;}
.fast-links .item:nth-child(1){background-color: #ff8b2d;}
.fast-links .item:nth-child(2){background-color: #ecb101;}
.fast-links .item:nth-child(3){background-color: #7cc065;}
.fast-links .item:nth-child(4){background-color: #2eadc4;}
.fast-links .item:nth-child(1) .icon{background-position: 0 0;}
.fast-links .item:nth-child(2) .icon{background-position: -32px 0;}
.fast-links .item:nth-child(3) .icon{background-position: -64px 0;}
.fast-links .item:nth-child(4) .icon{background-position: -96px 0;}
.fast-links .item:hover .icon{animation: shake 0.5s linear;-webkit-animation: shake 0.5s linear;}
@keyframes shake{
	25%{transform: rotate(-30deg);}
	75%{transform: rotate(30deg);}
}

/*新闻区*/
.news-box{overflow: hidden;}
.news-box > .con-l{float: left;width: 50%;}
.news-box > .con-r{float: right;width: 48%;}
/*新闻图片轮播*/
.news-banner{position: relative;overflow: hidden;}
.news-banner .swiper-slide{display: block;}
.news-banner .swiper-slide .pic{padding-top: 72%;background-position: center;background-size: cover;background-repeat: no-repeat;}
.news-banner .swiper-slide .tit{padding-right: 60px;font-size: 16px;line-height: 50px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.news-banner .swiper-slide:hover .tit{color: #ca0000;}
.news-banner .btn{z-index: 1;position: absolute;bottom: 15px;width: 18px;height: 20px;background-color: #ccc;line-height: 20px;text-align: center;color: #fff;cursor: pointer;transition: 0.3s;}
.news-banner .prev-btn{right: 24px;}
.news-banner .next-btn{right: 0;}
.news-banner .btn:hover{background-color: #999;}
/*新闻信息*/
.news-infos{margin-top: -10px;}
.news-infos .item{position: relative;padding: 10px 0 10px 25px;border-top: 1px solid #eee;}
.news-infos .item:first-child{border-top: 0;}
.news-infos .item .tit{display: block;padding-right: 80px;line-height: 20px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;cursor: pointer;}
.news-infos .item .tit span{color: #ca0000;}
.news-infos .item .txt{position: relative;height: 0;font-size: 12px;line-height: 24px;overflow: hidden;color: #888;text-align: justify;overflow: hidden;transition: 0.3s;}
.news-infos .item .txt a{position: absolute;right: 0;bottom: 0;background-color: #fff;font-weight: bold;color: #ca0000;}
.news-infos .item .txt a:hover{text-decoration: underline;}
.news-infos .item .date{position: absolute;right: 0;top: 10px;font-size: 12px;line-height: 20px;color: #666;}
.news-infos .item .unfold-btn{position: absolute;left: 0;top: 12px;width: 16px;height: 16px;background-color: #bbb;cursor: pointer;}
.news-infos .item .unfold-btn:before{content: "";position: absolute;left: 50%;top: 50%;width: 8px;height: 2px;margin: -1px 0 0 -4px;background-color: #fff;}
.news-infos .item .unfold-btn:after{content: "";position: absolute;left: 50%;top: 50%;width: 2px;height: 8px;margin: -4px 0 0 -1px;background-color: #fff;}
.news-infos .item.show .tit{color: #ca0000;}
.news-infos .item.show .txt{height: 48px;}
.news-infos .item.show .unfold-btn{background-color: #005752;}
.news-infos .item.show .unfold-btn:after{display: none;}

/*通知列表*/
.notice-list{}
.notice-list li{padding: 14px 0;border-top: 1px solid #eee;}
.notice-list li:first-child{border-top: 0;}
.notice-list li a{display: block;}
.notice-list li .date{float: left;width: 61px;border-right: 1px solid #c9c9c9;text-align: center;}
.notice-list li .date .big{font-size: 20px;line-height: 24px;font-weight: bold;color: #666;}
.notice-list li .date .small{font-size: 12px;line-height: 16px;color: #999;}
.notice-list li .info{height: 40px;margin-left: 78px;line-height: 20px;text-align: justify;overflow: hidden;transition: 0.3s;}
.notice-list li a:hover .date .big{color: #ca0000;}
.notice-list li a:hover .date .small{color: #ca0000;}
.notice-list li a:hover .info{color: #ca0000;transform: translateX(.2em);}

/*新闻列表*/
.news-list{}
.news-list li{position: relative;height: 40px;padding-left: 20px;border-top: 1px solid #ddd;line-height: 40px;}
.news-list li:first-child{border-top: 0;}
.news-list li:before{content: "";position: absolute;left: 0;top: 50%;width: 6px;height: 6px;margin-top: -4px;background-color: #fff;border: 1px solid #999;border-radius: 50%;}
.news-list li a{position: relative;float: left;max-width: calc(100% - 90px);white-space: nowrap;overflow: hidden;text-overflow: ellipsis;transition: 0.2s;}
.news-list li em{float: right;font-size: 12px;color: #666;}
.news-list li:hover:before{background-color: #ca0000;border-color: #ca0000;}
.news-list li:hover a{text-indent: 0.2em;color: #ca0000;}

/*简报轮播*/
.newspaper{position: relative;overflow: hidden;}
.newspaper .swiper-slide{display: block;}
.newspaper .swiper-slide .pic{padding-top: 67%;background-color: #f3f2f2;background-position: center;background-size: contain;background-repeat: no-repeat;}
.newspaper .swiper-slide .tit{padding-right: 60px;font-size: 16px;line-height: 44px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.newspaper .swiper-slide:hover .tit{color: #ca0000;}
.newspaper .btn{z-index: 1;position: absolute;bottom: 10px;width: 18px;height: 20px;background-color: #ccc;line-height: 20px;text-align: center;color: #fff;cursor: pointer;transition: 0.3s;}
.newspaper .prev-btn{right: 24px;}
.newspaper .next-btn{right: 0;}
.newspaper .btn:hover{background-color: #999;}


/******内页******/
.inpage-content{position: relative;min-height: 600px;padding: 40px 0 20px;background-color: #fff;}
.inpage-content > .con-l{position: relative;float: left;width: 280px;}
.inpage-content > .con-r{min-height: 500px;padding: 15px 40px;margin-left: 300px;border: 1px solid #ededed;}
/*面包屑*/
.bread{color: #999;}
.bread a{margin-right: 5px;color: #999;}
.bread a.on,.bread a:hover{color: #00753c;}
/*分页*/
.page{padding: 35px 0;font-size: 0;text-align: center;}
.page > *{display: inline-block;padding: 0 10px;margin: 0 5px;height: 30px;background-color: #fff;border: 1px solid #ddd;font-size: 14px;line-height: 28px;color: #888;}
.page > *.on,.page > *:hover{background-color: #00753c;border-color: #00753c;color: #fff;}
/*内页头部标题区*/
.inpage-top-title{overflow: hidden;border-bottom: 8px solid #ededed;line-height: 50px;}
.inpage-top-title .name{position: relative;float: left;font-size: 18px;}
.inpage-top-title .bread{float: right;}
/*内页导航-垂直*/
.nav-vertical-box{}
.nav-vertical-box .title{padding: 20px 20px 15px 40px;background-color: #00753c;line-height: 20px;color: #fff;}
.nav-vertical-box .title .cn{display: block;font-size: 22px;font-weight: bold;}
.nav-vertical-box .title .en{display: block;margin-top: 10px;color: #ddd;text-transform: uppercase;word-break: break-all;}
.nav-vertical-box .nav-1st{border: 1px solid #ededed;}
.nav-vertical-box .nav-1st > li{position: relative;}
.nav-vertical-box .nav-1st > li > a{position: relative;display: block;padding: 20px 50px 20px 40px;font-size: 18px;line-height: 24px;transition: 0.3s;}
.nav-vertical-box .nav-1st > li > a:before{content: "";position: absolute;left: 16px;top: 0;width: calc(100% - 32px);height: 1px;background-color: #ddd;}
.nav-vertical-box .nav-1st > li > a:after{content: "";position: absolute;right: 35px;top: 50%;width: 10px;height: 16px;margin-top: -8px;background: url(../images/nav_arrowR_white.png) no-repeat;background-size: 100% 100%;}
.nav-vertical-box .nav-1st > li:first-child > a:before{display: none;}
.nav-vertical-box .nav-1st > li:hover > a{background-color: #ccc;}
.nav-vertical-box .nav-1st > li.on > a{background-color: #289c63;color: #fff;}
.nav-vertical-box .nav-1st > li.on > a:before{display: none;}
.nav-vertical-box .nav-2nd{margin: 1px 0;}
.nav-vertical-box .nav-2nd > li > a{display: block;padding: 15px 50px;line-height: 20px;}
.nav-vertical-box .nav-2nd > li:hover > a{background-color: #ccc;}
.nav-vertical-box .nav-2nd > li.on > a{background-color: #53a97f;color: #fff;}
/*内页导航-横向*/
.nav-horizontal-box{position: relative;background-color: #f1f1f1;font-size: 0;}
.nav-horizontal-box:after{content: "";position: absolute;left: 0;bottom: 0;width: 100%;height: 3px;background-color: rgba(0,0,0,.05);}
.nav-horizontal-box a{display: inline-block;padding: 0 20px;font-size: 14px;line-height: 50px;color: #666;}
.nav-horizontal-box a.on{background-color: #00753c;color: #fff;}

/*新闻详情*/
.news-details{position: relative;padding: 40px 0 20px;}
.news-details .title{padding-bottom: 15px;border-bottom: 1px solid #ddd;font-size: 22px;line-height: 32px;text-align: center;}
.news-details .record{margin-top: 15px;text-align: center;line-height: 20px;color: #999;}
.news-details .record span{display: inline-block;margin: 0 10px;}
.news-details .content{margin-top: 20px;font-size: 16px;line-height: 32px;text-align: justify;}
.news-details .content img{display: inline-block;}
.news-details .other-links{padding: 20px 0 10px;margin-top: 40px;border-top: 1px solid #ddd;}
.news-details .other-links .item{margin-bottom: 5px;font-size: 16px;line-height: 30px;}
.news-details .other-links .item span{float: left;}
.news-details .other-links .item a{display: block;padding-left: 4em;}
.news-details .other-links .item a:hover{text-decoration: underline;color: #ca0000;}

/*新闻列表2*/
.news-list2{}
.news-list2 li{padding: 30px 0;border-bottom: 1px solid #ededed;}
.news-list2 li a{display: block}
.news-list2 li .date{float: left;}
.news-list2 li .date .big{padding-bottom: 10px;border-bottom: 3px solid #ddd;font-size: 30px;line-height: 30px;color: #777;}
.news-list2 li .date .small{margin-top: 10px;font-size: 18px;line-height: 20px;text-align: center;color: #aaa;}
.news-list2 li .info{margin-left: 120px;}
.news-list2 li .info .tit{font-size: 16px;font-weight: bold;color: #555;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.news-list2 li .info .txt{height: 48px;margin-top: 10px;line-height: 24px;color: #999;overflow: hidden;}
.news-list2 li a:hover .date .big{color: #ca0000;}
.news-list2 li a:hover .info .tit{color: #ca0000;}

/*下载列表*/
.download-list{margin-top: 10px;}
.download-list li{position: relative;border-bottom: 1px solid #ddd;line-height: 64px;}
.download-list li:before{content: "";position: absolute;left: 0;top: 50%;width: 6px;height: 6px;margin-top: -3px;background-color: #ccc;border-radius: 50%;}
.download-list li .date{position: absolute;left: 20px;top: 0;color: #999;}
.download-list li .tit{padding: 0 140px;color: #666;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;transition: 0.3s;}
.download-list li .btn{position: absolute;right: 0;top: 0;padding-left: 35px;color: #999;}
.download-list li .btn i{position: absolute;left: 0;top: 50%;width: 24px;height: 24px;margin-top: -12px;background: url(../images/icon_download.png) no-repeat;filter: grayscale(1);opacity: .5;}
.download-list li:hover:before{background-color: #ca0000;}
.download-list li:hover .date{color: #ca0000;}
.download-list li:hover .tit{text-indent: 0.3em;color: #ca0000;}
.download-list li .btn:hover{color: #ca0000;}
.download-list li .btn:hover i{filter: grayscale(0);opacity: 1;}

/*图文列表*/
.pic-info-list{}
.pic-info-list li{padding: 30px 0;border-bottom: 1px solid #ededed;}
.pic-info-list li a{display: block;}
.pic-info-list li .pic{float: left;width: 180px;overflow: hidden;}
.pic-info-list li .pic em{display: block;padding-top: 63%;background-position: center;background-size: cover;background-repeat: no-repeat;transition: 0.3s;}
.pic-info-list li .info{margin-left: 210px;}
.pic-info-list li .info .tit{font-size: 16px;line-height: 24px;font-weight: bold;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.pic-info-list li .info .txt{height: 48px;margin-top: 10px;line-height: 24px;color: #999;overflow: hidden;}
.pic-info-list li .info .date{margin-top: 10px;line-height: 24px;}
.pic-info-list li a:hover .pic em{transform: scale(1.05);}
.pic-info-list li a:hover .tit{color: #ca0000;}

/*图片列表*/
.pic-list{overflow: hidden;margin-top: 30px;border-bottom: 1px solid #ededed;}
.pic-list li{float: left;width: 31%;margin-left: 3.5%;margin-bottom: 30px;}
.pic-list li:nth-child(3n+1){margin-left: 0;}
.pic-list li a{display: block;}
.pic-list li .pic{overflow: hidden;}
.pic-list li .pic em{display: block;padding-top: 68%;background-position: center;background-size: cover;background-repeat: no-repeat;transition: 0.3s;}
.pic-list li .tit{padding: 0 1em;font-size: 16px;line-height: 60px;text-align: center;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.pic-list li:hover .pic em{transform: scale(1.05);}
.pic-list li:hover .tit{color: #ca0000;}

/*人物列表*/
.person-list{margin-top: 30px;}
.person-list li{overflow: hidden;margin-bottom: 20px;border: 1px solid #eee;transition: 0.3s;}
.person-list li a{display: block;}
.person-list li .pic{float: left;width: 165px;overflow: hidden;}
.person-list li .pic em{display: block;padding-top: 140%;background-position: center;background-size: cover;background-repeat: no-repeat;transition: 0.3s;}
.person-list li .info{padding: 10px 30px;margin-left: 165px;background-color: #fff;}
.person-list li .info .name{font-size: 20px;line-height: 40px;font-weight: bold;}
.person-list li .info .name span{display: inline-block;border-bottom: 1px solid;}
.person-list li .info .name em{margin-left: .5em;font-size: 14px;font-weight: normal;color: #555;}
.person-list li .info .txt{padding: 6px 0;margin-bottom: 20px;line-height: 24px;color: #555;}
.person-list li .info .tit{margin-bottom: 5px;font-size: 16px;font-weight: bold;}
.person-list li .info .intro{max-height: 60px;font-size: 12px;line-height: 20px;text-align: justify;color: #777;overflow-y: auto;}
.person-list li:hover{box-shadow: 0 0 20px #ccc;}
.person-list li:hover .pic em{transform: scale(1.05);}


/*国际咨询委员会 */
.wyhmar ul{ width: 100%;margin-top: 30px;}
.wyhmar ul li{ width:100%; overflow: hidden; margin-bottom: 40px;}
.wyhmar ul li a{ display: block;background: url(../images/zxbg3.png) no-repeat right top;background-size: 100% 100%;overflow: hidden; padding-bottom:6px;}
.wyhmar ul li .yjtd_ntp{ width:22%; float: left;}
.wyhmar ul li .yjtd_ntp span{ width:100%; display:block;overflow:hidden;}
.wyhmar ul li .yjtd_ntp span img{width:100%; height:224px; transition:all 0.4s;-webkit-transition: all 0.4s ease;-moz-transition: all 0.4s ease;-ms-transition: all 0.4s ease;-o-transition: all 0.4s ease;transition: all 0.4s ease;}
.wyhmar ul li:hover .yjtd_ntp span img{transform: scale(1.1); opacity:0.8;}
.wyhmar ul li .yjtd_nwz{width:77%; overflow: hidden;padding:0 30px;}
.wyhmar ul li .yjtd_nwz h2{width:100%; float: left; margin-top:27px;font-size:16px; color:#333; line-height:42px; height:42px; font-weight:normal;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.wyhmar ul li .yjtd_nwz h2 b{ font-size: 20px; color: #00753c;}
.wyhmar ul li .yjtd_nwz h2 em {margin-left: .5em;font-size: 14px;font-weight: normal;color: #555;}
.wyhmar ul li .yjtd_nwz p{width: 100%; float: left; margin:10px 0px 30px;font-size: 14px; color: #808080;line-height: 30px; height: 60px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;}
.wyhmar ul li .yjtd_nwz i{width:100%; float: left; height: 20px; font-size: 14px;color: #289c63;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;}
.wyhmar ul li:hover a{background: url(../images/zxbg1.png) no-repeat right top;background-size:100% 100%;}



/*简报详情*/
.newspaper-slider{position: relative;width: 100%;overflow: hidden;margin: 30px 0;}
.newspaper-slider .swiper-slide{position: relative;padding-top: 60%;background-position: center;background-size: contain;background-repeat: no-repeat;}
.newspaper-slider .swiper-pagination{left: auto;right: 20px;bottom: 20px;width: auto;color: #000;text-shadow: 0 0 10px #fff;}
.newspaper-slider .swiper-pagination-current{font-size: 30px;}
.newspaper-slider .swiper-pagination-bullet{width: 10px;height: 10px;background-color: #fff;border-radius: 5px;box-shadow: 0 0 5px rgba(0,0,0,.5);opacity: .5;transition: 0.3s;}
.newspaper-slider .swiper-pagination-bullet-active{width: 26px;opacity: 1;}
.newspaper-slider .btn{z-index: 1;position: absolute;top: 50%;transform: translateY(-50%);width: 80px;height: 80px;background-color: rgba(0,0,0,.2);border-radius: 50%;cursor: pointer;}
.newspaper-slider .btn span{position: absolute;left: 50%;top: 50%;width: 22px;height: 42px;margin: -21px 0 0 -11px;background: url(../images/icons_arrow.png) no-repeat;opacity: .8;}
.newspaper-slider .prev-btn{left: 10px;}
.newspaper-slider .prev-btn span{background-position: 0 0;}
.newspaper-slider .next-btn{right: 10px;}
.newspaper-slider .next-btn span{background-position: -22px 0;}
.newspaper-slider .btn:hover{background-color: rgba(0,117,60,.6);}

/* 可以修改的样式 */  
/* 窗体样式 */
.pagepic_tablestyle_0
{
    width:1100px;
    text-align:center;
    display:block;
    margin:0 auto;
}
/* 组图标题样式 */
.pagepic_newtitle_0
{
    font-size:22px;
    line-height: 150%; 
    font-weight: bold;
    text-align:center;  
}    
/* 组图简介样式 */
.pagepic_newdesc_0
{
    font-size:13px;
    line-height: 150%; 
}  
/* 当前页总页数样式 */
.pagepic_currenttotalsize_0
{
    font-size:14px; 
    /*float:left;*/
    padding-top:8px;
    width:70px;
    text-align:center;  
    font-weight: bold;
}  
/* 图片行样式 */
.pagepic_imgcontentstyle_0
{
    height:300px;
   
}
.pagepic_imgcontentstyle_0 img
{
    border:0!important;
    width:1100px;
    height:720px;
}
/* 单个图片标题样式 */
.pagepic_titlecontent_0
{
    font-size:9pt;
    text-align:left;
    font-weight: bold  
}  
/* 单个图片内容样式 */
.pagepic_desccontent_0
{
    font-size:9pt;
    line-height:28px 
    text-align:left;  
    overflow:auto;
    height:500px;
    width:260px;
}  

/* 无需修改的样式 */  
.pagepic_tdstyle_0
{
    width:400px
    height:400px;
}
.pagepic_borstyle_0
{
    border:0; 
    padding:5px
}



/*大屏PC:>1200px*/
@media screen and (min-width: 1200px){
	/*常用宽度*/
	.w1200{width: 1200px;}
}

/*小屏PC:>=1025px && <=1200px*/
@media screen and (max-width: 1200px){
	/*header*/
	.header .logo img{max-height: 60px;}
	/*导航*/
	.nav-box .nav > li > a{padding: 0 15px;font-size: 16px;}

	/*footer*/
	.footer .friend-links{float: left;margin-top: 10px;}

	/******首页******/
	/*标题*/
	.index-title .tit{padding-left: 25px;}
	.index-title .tit .icon{transform: scale(.8);}
	.index-title .tit .cn{font-size: 18px;}
	.index-title .tit .en{margin-left: 0;}
	.index-title .more{font-size: 12px;}
	/*布局*/
	.index-content .part .item-box{padding: 0 10px;}
}

/*pad:>=768px && <=1024px*/
@media screen and (max-width: 1024px){
	/*header*/
	.header{height: 60px;}
	.header .logo img{max-width: 350px;max-height: 40px;}
	.header .links{right: 165px;top: 50%;transform: translateY(-50%);}
	.header .links a{margin-left: 5px;font-size: 12px;}
	/*搜索栏*/
	.search-wrap{right: 35px;bottom: 50%;width: 120px;transform: translateY(50%);}
	.search-wrap .input-text{padding: 0 20px 0 10px;}
	/*移动端导航按钮*/
	.header .menu-btn{display: block;z-index: 20;position: absolute;right: 3%;top: 18px;width: 24px;height: 24px;font-size: 0;cursor: pointer;}
	.header .menu-btn span{display: inline-block;width: 100%;height: 3px;background-color: #005752;transition: 0.5s ease-out;}
	.header .menu-btn span:nth-child(2){margin: 7px 0;}
	.header .menu-btn.close{position: fixed;}
	.header .menu-btn.close span{background-color: #000;}
	.header .menu-btn.close span:nth-child(1){transform: rotate(45deg) translate3d(7px,7px,0);}
	.header .menu-btn.close span:nth-child(2){transform: scale3d(0,1,1);}
	.header .menu-btn.close span:nth-child(3){transform: rotate(-45deg) translate3d(7px,-7px,0);}
	/*导航*/
	.nav-box{display: none;z-index: 19;position: fixed;left: 0;top: 0;float: none;width: 100%;height: 100%;background-color: #fff;}
	.nav-box .nav{width: 80%;height: 80vh;margin: 60px auto 0;overflow-y: auto;overflow-x: hidden;-webkit-overflow-scrolling: touch;}
	.nav-box .nav > li{float: none;padding: 0;margin: 0;border: 0;border-bottom: 1px solid #eee;line-height: 50px;}
	.nav-box .nav > li:before{display: none;}
	.nav-box .nav > li .more-btn{display: block;position: absolute;right: 0;top: 0;width: 50px;height: 50px;font-size: 20px;text-align: center;line-height: 50px;color: #999;cursor: pointer;transition: all 0.3s ease;-webkit-transition: all 0.3s ease;}
	.nav-box .nav > li > a{display: block;width: 80%;padding: 0 10px;font-size: 16px;color: #333;}
	.nav-box .nav > li > a:before{display: none;}
	.nav-box .nav > li > a:after{display: none;}
	.nav-box .nav > li:first-child > a{padding-left: 10px;}
	.nav-box .nav > li.on,.nav-box .nav > li:hover{background-color: transparent;}
	.nav-box .nav > li.on > a,.nav-box .nav > li:hover > a{font-weight: normal;color: #333;}
	.nav-box .nav > li.on .more-btn{transform: rotate(45deg);}
	.nav-box .nav-2nd{position: initial;width: 100%;padding: 0;margin-bottom: 15px;background-color: transparent;transform: translateX(0);}
	.nav-box .nav-2nd > li > a{padding: 10px 10px 10px 20px;text-align: left;color: #999;}
	.nav-box .nav-2nd > li > a:hover{background-color: transparent;}

	/*快速导航*/
	.fast-links .item{font-size: 14px;}
	.fast-links .item .icon{margin-right: 0;transform: scale(.8);}

       /*国际咨询委员会*/
        .wyhmar ul li {width: 100%;margin-bottom: 30px;}
        .wyhmar ul li .yjtd_ntp {width: 30%;height:auto;}
        .wyhmar ul li a {padding-bottom: 4px;}
        .wyhmar ul li .yjtd_nwz {width:68%;padding: 0 5%;}
        .wyhmar ul li .yjtd_ntp span img {height:auto;}
        .wyhmar ul li .yjtd_nwz h2 {margin-top: 5px;font-size: 14px;line-height:30px;height: 30px;}
        .wyhmar ul li .yjtd_nwz h2 b {font-size: 18px;}
        .wyhmar ul li .yjtd_nwz p {line-height: 25px;height: 50px;margin:0 0 10px 0;-webkit-line-clamp: 2;}
        .wyhmar ul li .yjtd_nwz i {width: 100%;}


}

/*phone:<=767px*/
@media screen and (max-width: 767px){
	/*header*/
	.header{height: 100px;}
	.header .logo{top: 15px;transform: translate(0,0);}
	.header .logo img{max-width: 300px;max-height: 30px;}
	.header .links{right: auto;left: 0;top: 55px;}
	/*搜索栏*/
	.search-wrap{right: auto;left: 0;top: 70px;width: 150px;transform: translate(0,0);}

	/*banner*/
	.banner .swiper-slide{padding-top: 50%;}
	.banner .swiper-slide .tit{padding: 0.5em;font-size: 16px;}
	.banner .swiper-pagination{right: 5px;bottom: 10px;}
	.banner .swiper-pagination-bullet{width: 8px;height: 8px;border-radius: 4px;}
	.banner .swiper-pagination-bullet-active{width: 20px;}
	.banner .btn{width: 20px;height: 40px;background-color: rgba(0,0,0,.5);}
	.banner .btn span{transform: scale(.5);}

	/*footer*/
	.footer{display: none;}

	/******首页******/
	.index-content{padding-bottom: 20px;}
	/*标题*/
	.index-title .tit{padding-left: 25px;}
	.index-title .tit .icon{transform: scale(.8);}
	.index-title .tit .cn{font-size: 18px;}
	.index-title .tit .en{margin-left: 0;}
	.index-title .more{font-size: 12px;}
	/*布局*/
	.index-content .part{margin-top: 10px;}
	.index-content .part > .con-l{float: none;width: 100%;margin-bottom: 10px;}
	.index-content .part > .con-r{float: none;width: 100%;}
	.index-content .part .item-box{padding: 0 10px;}
	/*part1*/
	.index-content .part1 > .con-l .index-title{margin-bottom: 10px;}
	/*part2*/
	.index-content .part2 > .con-l .item-box{float: none;width: 100%;}
	.index-content .part2 > .con-l .item-box:first-child{margin-right: 0;margin-bottom: 10px;}
	.index-content .part2 > .con-l .index-title{margin-bottom: 5px;}
	.index-content .part2 > .con-r .index-title{margin-bottom: 15px;}

	/*快速导航*/
	.fast-links .item{width: 49%;margin: 2px 0.5%;}

	/*新闻区*/
	.news-box > .con-l{float: none;width: 100%;margin-bottom: 10px;}
	.news-box > .con-r{float: none;width: 100%;}

	/******内页******/
	.inpage-content{min-height: 500px;padding: 0;margin: 10px auto 20px;}
	.inpage-content > .con-l{display: none;}
	.inpage-content > .con-r{padding: 10px;margin-left: 0;}
	/*面包屑*/
	.bread{display: none;}
	/*分页*/
	.page{padding: 20px 0;}
	.page > *{height: 26px;padding: 0 7px;margin: 0 2px;line-height: 24px;}
	/*内页头部标题区*/
	.inpage-top-title{border-bottom-width: 4px;line-height: 40px;}
	.inpage-top-title .name{font-size: 18px;}

	/*新闻详情*/
	.news-details{padding: 20px 0 0;}
	.news-details .title{font-size: 18px;line-height: 24px;}
	.news-details .record{margin-top: 5px;font-size: 12px;}
	.news-details .other-links{padding: 10px 0;margin-top: 20px;}
	.news-details .other-links .item{font-size: 14px;line-height: 24px;}

	/*新闻列表2*/
	.news-list2 li{padding: 15px 0;}
	.news-list2 li .date .big{padding-bottom: 0;font-size: 20px;}
	.news-list2 li .date .small{margin-top: 5px;font-size: 14px;}
	.news-list2 li .info{margin-left: 70px;}
	.news-list2 li .info .tit{font-size: 14px;}
	.news-list2 li .info .txt{height: 40px;margin-top: 5px;font-size: 12px;line-height: 20px;}

	/*下载列表*/
	.download-list li{line-height: 50px;}
	.download-list li:before{display: none;}
	.download-list li .date{left: 0;font-size: 12px;}
	.download-list li .tit{padding: 0 65px 0 95px;}
	.download-list li .btn{padding-left: 0;}
	.download-list li .btn i{display: none;}

	/*图文列表*/
	.pic-info-list li{padding: 20px 0;}
	.pic-info-list li .pic{float: none;width: 100%;}
	.pic-info-list li .info{margin-left: 0;margin-top: 10px;}
	.pic-info-list li .info .txt{margin-top: 5px;}
	.pic-info-list li .info .date{margin-top: 5px;}

	/*图片列表*/
	.pic-list{margin-top: 20px;}
	.pic-list li{float: none;width: 100%;margin-left: 0;margin-bottom: 20px;}
	.pic-list li .tit{line-height: 50px;}

	/*人物列表*/
	.person-list li .pic{width: 100px;margin-top: 10px;}
	.person-list li .info{padding: 0 5px 10px 10px;margin-left: 100px;}
	.person-list li .info .txt{margin-bottom: 0;}
	.person-list li .info .intro{max-height: 100px;}

       /*国际咨询委员会*/
        .wyhmar ul li {width: 100%;margin-bottom: 30px;}
        .wyhmar ul li a {padding-bottom: 4px;}
        .wyhmar ul li .yjtd_ntp {width:40%;height:auto;}
        .wyhmar ul li .yjtd_ntp span img {height:auto;}
        .wyhmar ul li .yjtd_nwz {width:58%;padding: 0 5%;}
        .wyhmar ul li .yjtd_nwz h2 {margin-top: 5px;font-size: 14px;line-height:30px;height: 30px;}
        .wyhmar ul li .yjtd_nwz h2 b {font-size: 18px;}
        .wyhmar ul li .yjtd_nwz p {line-height: 25px;height: 50px;margin:0 0 10px 0;-webkit-line-clamp: 2;}
        .wyhmar ul li .yjtd_nwz i {width: 100%;}



	/*简报详情*/
	.newspaper-slider{}
	.newspaper-slider .swiper-pagination{right: 10px;bottom: 5px;}
	.newspaper-slider .swiper-pagination-current{font-size: 18px;}
	.newspaper-slider .btn{width: 40px;height: 40px;}
	.newspaper-slider .btn span{transform: scale(.5);}
	.newspaper-slider .prev-btn{left: 0;}
	.newspaper-slider .next-btn{right: 0;}
	.newspaper-slider .btn:hover{background-color: rgba(0,0,0,.2);}
        #imgcontentu6{width:330px;height:300px;margin-left:-750px;}
        #imgcontentu6 img{width:330px;height:300px;}
        .pagepic_imgcontentstyle_0{height:300px;}
        .pagepic_tdstyle_0 td{display:inline-block!important;margin:0!important;}
       
}