@charset "utf-8";
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, 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;
	font-size: 16px;
	font-family:"Microsoft Yahei",宋体,Verdana,Arial,Helvetica,Sans-serif;
	font-weight:normal;
	color:#333; 
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
em, cite, i { font-style: normal; }
ol, ul {
	list-style: none;
}
input,textarea{outline:none;}
blockquote, q {
	quotes: none;
}
.fl{float:left;}
.fr{float:right;}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;	
}
/*input框自动填充背景色*/
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset;	/**通过边框阴影遮挡住背景*/
	/*-webkit-text-fill-color: #333; !**填充字体颜色*!*/
}
body{ }
a,a:link,a:visited{color:#333333; text-decoration:none;}
a.active{color: #ffb02c; text-decoration:none;}
.cl{clear:both; visibility:hidden; font-size:0px; line-height:0px; width:100%; height:0; padding:0px; margin:0px;}
.w1200{width:1280px; margin:0px auto;}
/*clear float*/
.clearfix:after {content:".";display:block;height:0;clear:both;visibility:hidden;}
/* Hides from IE-mac \*/
* html .clearfix {height:1%;}

.pagebar { padding:20px; overflow:hidden; clear:both}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 3px; line-height:100%
}

.newPicBox {
    width: 165px;
    height: 110px;float: right;
}

.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}
.pagination a.page-num-current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}
.pagination .st{ font-family:宋体}
.text-secondary{ text-align:center; padding:20px 0}

.red,a.red:link,a.red:visited{color:#ee7800;}
a.red:hover {color:#ffb02c;}

.indexPage {
    position: relative;
}

.indexPage .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: none;
    z-index: 30;
    transition: 0.5s linear;
     background-color: rgba(255, 255, 255, 0.5); 
}

.header {
    position: fixed;
    z-index: 10;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
}

.nBanner,.ylfwBanBox {
    padding-top: 193px;
}

.header .header-top {
    border-bottom: 1px #dfdfdf solid;
    position: relative;
    z-index: 1;
}

.header .box {
    margin: 0 auto;
    height: 118px;
    display: flex;
    justify-content: space-between;
    transition: 0.4s;
}

.header .box .logo {
    position: relative;
    display: flex;
    align-items: center;
}

.header .box .logo img {
    max-height: 83px;
    transition: 0.3s;
    display: block;
}

.header .box .right {
    display: flex;
    align-items: center;
}

.header .box .right .tel {
    background:  url("../images/tel_01.png") left center no-repeat;
    padding-left: 61px;
   
}
.header .box .right .tel p:nth-of-type(1){
    color: #666;
}

.header .box .right .tel p:nth-of-type(2){
    margin-top: 5px;
    font-size: 20px;
    font-weight: 700;
	color: #c71620;
}

.nav {
    position: relative;
    transition: 0.5s;
    width: 100%;
}

/* .nav.on {background: #fff;position: fixed;top: 0;box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);z-index:90;} */
.nav_pc {
    display: flex;
    justify-content: space-between;
}

.nav_pc>li {
    float: left;
    text-align: center;
	
	 position: relative;
}
.nLi:hover .navSub {
  display: block;
}
.nav_pc>li>a {
    position: relative;
    display: inline-block;
    color: #252525;
    font-size: 16px;
    line-height: 74px;
    transition: 0.3s;
}
/* 可选：添加平滑过渡效果 */
.navSub {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}
.nav_pc>li:hover .navSub {
  opacity: 1;
  transform: translateY(0);
}
.nav_pc>li>a:after {
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
    border-bottom: 4px solid #ff0000;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
}

.n_nav2 .fr a:after {
    width: 0;
    height: 2px;
    background: #ff0000;
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.n_nav2 .fr a:hover:after,.n_nav2 .fr a.on:after {
    width: 100%;
}

.nav_pc>li.on>a,.nav_pc>li:hover>a {
    color: #ff0000;
}

.nav_pc>li.on>a::after,.nav_pc>li:hover>a::after {
    opacity: 1;
}

.nav_pc>li:last-child>a {
    padding-right: 0;
}

.nav-2nd {
    display: none;
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 150px;
    padding: 8px 0;
    background-color: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.nav-2nd>li {
    padding: 0 5px;
	
}

.nav-2nd>li>a {
    position: relative;
    display: block;
    padding: 10px;
    font-size: 0.53rem;
    line-height: 26px;
    text-align: center;
    color: #333;
    transition: 0.4s;
}

.nav-2nd>li>a:hover {
    background-color: #eb7e00;
    color: #fff;
}
/* flex布局 */
.disflex {
    display: flex;
}

.righta p{line-height:30px}

.page_road{ border-top:1px dotted #ccc; padding:2% 0 0 0; margin:2% 0 0 0;overflow: hidden;} 
.page_road p{ margin:0 0 5px 0; width: 50%;float:left;}


.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*新导航*/
.navSub {
    position: absolute;
    left: -40px;
    top: 74px;
    background: #fff;
    display: none;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(55, 55, 55, 0.3);
    box-shadow: 0px 5px 5px 0px rgba(147, 147, 147, 0.2);
    overflow: hidden;
   width: 150px;
    border-top: 1px #eee solid;
    border-bottom: 1px #eee solid;
		
}


.navSub h3 {
    position: relative;
    width: 8rem;
    text-align: left;
}

.navSub h3::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
    background: #eb7e00;
}

.navSub .slogan {
    width: 13.33rem;
}

.navSub .slogan a {
    display: block;
    padding-bottom: 55%;
}

.navSub ul {
    position: relative;

   width: 100%;
   
    text-align: left;
}

.navSub ul li {
  width: 100%;
  
    float: left;
}

.navSub ul li>a {
    position: relative;
    display: block;
    line-height: 50px;
    color: #222222;
    font-size: 16px;
    border-bottom: 1px #e5e5e5 solid;
    transition: 0.3s;
	text-align: center;
}

.navSub ul li>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    transition: 0.4s;
    height: 1px;
    background: #eb7e00;
}

.navSub ul li>a img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    filter: brightness(0) invert(0.7);
    transition: 0.2s;
}

.navSub ul li>a em {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    width: 0.3rem;
    height: 0.3rem;
    display: block;
    border-top: 1px #ccc solid;
    border-right: 1px #ccc solid;
}

.navSub ul li>a:hover {
    color: #eb7e00;
}

.navSub ul li>a:hover::before {
    width: 100%;
}

.navSub ul li>a:hover img {
    /* filter: initial; */
}

.header.on .navSub {
    top: 60px
}

.header.on {
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header.on .box {
    height: 84px;
}

.header.on .box .logo img {
    max-height: 68px
}

.header.on .nav_pc>li>a {
    line-height: 60px;
}

.searchIcon {
    display: none;
    align-items: center;
    margin-left: 0.67rem;
}




.w1600 {
    width: 90%;
    margin: 0 auto;
    max-width: 1600px;
}

.w1400 {
    max-width: 1400px;
    width: 94%;
    margin: 0 auto;
}


.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner .swiper-slide a {
    display: block;
/* padding-bottom: 50%; */
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.banner .swiper-slide-active a {
}

.banner .btn {
    position: absolute;
    bottom: 1.53rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.banner .btn span {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px #fff solid;
    margin: 0 7px !important;
    opacity: 1;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.banner .btn span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    margin: 0 10px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid currentColor;
    font-size: 16px;
    color: #fff;
    opacity: 1;
}



.banner .btn span.swiper-pagination-bullet-active {
   
  background-color: #fe0000;
  
    color: #FFFFFF;
}



.banner .btn span.swiper-pagination-bullet-active::after {
    transform-origin: left;
    animation: bannerProgress 5s linear forwards;
}

/*ipartnews*/
.ipartnews {
    width: 1260px;
    margin: 40px auto 10px auto
}
.newleft{ width: 855px;float: left;}
.newbox {
    width: 855px;
    height: 340px;
    margin: 0 auto;
    position: relative;
    float: left;
}

.newbox_left {
    width: 355px;
    height: auto;
    overflow: hidden;
    float: left;
    margin-top: 80px;
}

.newbox_right {
    width: 495px;
    height: auto;
    overflow: hidden;
    float: right
}

/*picnews*/
.picnews {
    width: 345px;
    height: 230px;
    overflow: hidden;
    position: relative;
}

.picnews img{width: 100%;}

.picnews .hd {
    height: 15px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    bottom: 7px;
    z-index: 1;
}

.picnews .hd ul {
    overflow: hidden;
    zoom: 1;
    float: left;
}

.picnews .hd ul li {
    float: left;
    margin-right: 4px;
    width: 7px;
    height: 7px;
    line-height: 8px;
    font-size: 0;
    text-align: center;
    background: #cccccc;
    cursor: pointer;
    border-radius: 50px;
}

.picnews .hd ul li.on {
    background: #ff0000;
    color: #fff;
}

.picnews .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}

.picnews .bd li {
    zoom: 1;
    vertical-align: middle;
}

.picnews .bd img {
    width: 345px;
    height: 230px;
    display: block;
}

.picnews .bd span {
    position: absolute;
    bottom: 0;
    background: url(../images/title_bg.png);
    width: 100%;
    line-height: 36px;
    color: #fff;
    font-weight: bold;
}

.picnews .bd h1 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding: 0 10px
}

/*news*/
.newsandnotice {
    width: 490px;
    text-align: left;
    height: auto;
    float: right;
}

.newsandnotice .hd {
    height: 50px;
    width: 855px;
    left: -365px;
    line-height: 50px;
    padding: 0;
    position: relative;
    border-bottom: #1d90d0 1px solid;
}

.newsandnotice .hd ul {
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
}

.newsandnotice .hd ul li {
    float: left;
    padding: 0 20px;
    cursor: pointer;
    font-size: 20px;
    color: #666666;
    font-weight: bold;
}

.newsandnotice .hd ul li.on {
    height: 50px;
    color: #ffffff;
    font-weight: bold;
    background: #1d90d0;
   
}

.newsandnotice .bd {
    position: relative;
}

.newsandnotice .bd ul {
    zoom: 1;
    padding: 20px 0 0 0;
    height: auto;
    position: relative !important;
	line-height: 30px;
	color: #696969;
}

.news_more {
    position: absolute;
    top: -35px;
    right: 0
}

.headline {
    height: auto;
    overflow: hidden;
    border-bottom: #e5e5e5 1px dashed
}

.headline h2 {
    color: #cc0000;
    font-size: 18px;
    line-height: 27px;
    margin: 0;
    padding: 0;
    font-weight: bold;
    width: 100%;
    text-align: center
}

.headline p {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    color: #999999;
    padding: 5px 0
}

.newslist ul {
    height: auto;
    overflow: hidden;
}

.newslist ul {
    padding-top: 8px;
}

.newslist li {
    width: 100%;
    font-size: 14px;
    color: #a0a0a0;
    line-height: 40px;
}

.newslist li a {
    background: url("../images/ico_004.png") left center no-repeat;
    padding-left: 17px;
    color: #333333;
    font-size: 14px;
    float: left;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75%;
    text-align: left;
    transition: all 0.2s;
}

.newslist li a:hover {
    color: #cc0000;
    background: url("../images/ico_004.png") 3px center no-repeat;
    padding-left: 20px;
}

.newslist li span {
    float: right;
}

.Htit {
 
  position: relative;
  border-bottom: 1px solid #eeeeee;
  width: 100%;
}
.Htit::after {
  position: absolute;
  content: '';
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  width: 48px;
  height: 4px;
  background-color: #e46c62;
}
.Htit .cn {
  font-size: 24px;
  color: #333;
  font-weight: normal;
  
  position: relative;
  text-align: left;
  width: 100%;
  float: left;
}
.d-text2 {
    padding: 0px 0px 22px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.d-text2 .title {
    font-size: 24px;
  
    font-weight: 400;
    line-height: 1.5
}

.d-text2 .more {
    font-size: 13px;
   
    line-height: 2;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.Htit .cn span{float: left;}
.Htit .en {
 
 
  font-size: 12px;
  color: #e46c62;
  font-family: 'Gotham-M';
}
.Htit.noBorder {
  border-bottom: none;
}
.Htit.noBorder::after {
  display: none;
}

.function_btns{  overflow:hidden;zoom:1; background:url(../images/index_gn_icon.png) no-repeat 0 0;background-size: 100%;}
.function_btns_list{ overflow:hidden;zoom:1;}

.function_btns  span{width: 50%;float: left;}
.function_btns a{ float:left; height:84px;width: 100%;line-height: 84px;}
.function_btns a:hover{ text-decoration:none;opacity: 0.8; filter:alpha(opacity=80);}
.function_btns a i{ display:block; font-size:18px; color:#fff; text-decoration: none;text-align: right;padding-right: 15px;}

.tb1 .tbn1 {margin-top: 30px;}

/*notic*/

.i_notice {
    width: 365px;
    text-align: right;
    height: auto;
    float: right;
}

.i_notice .hd {
    height: 50px;
    line-height: 50px;
    padding: 0 10px 0 20px;
    position: relative;
    border-bottom: #1d90d0 2px solid;
	
	margin-top: 20px;
}

.i_notice .hd ul {
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
}

.i_notice .hd ul li {
    float: left;
    padding: 0 20px;
    cursor: pointer;
    font-size: 20px;
    color: #666666;
    font-weight: bold;
}

.i_notice .hd ul li.on {
    height: 50px;
    color: #ffffff;
    font-weight: bold;
    background: #1d90d0;
   
}

.i_notice .bd {
    position: relative;
}

.i_notice .bd ul {
    zoom: 1;
    padding: 15px 0 0 0;
    height: auto;
    position: relative !important;
}

.tzlist ul {
    height: auto;
    overflow: hidden;
}

.tzlist ul {
    padding-top: 8px;
}

.tzlist li {
    width: 100%;
    font-size: 14px;
    color: #a0a0a0;
    line-height: 40px;
}

.tzlist li a {
    color: #3b3b3b;
    font-size: 14px;
    float: left;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    text-align: left;
    transition: all 0.2s;
}

.tzlist li a:hover {
    color: #cc0000;
    padding-left: 5px;
}

.tzlist li span {
    float: left;
    margin-right: 8px;
    color: #c53300;
    font-weight: bold;
}

/*ks*/
.iparks {
    width: 1260px;
    margin: 0 auto
}

/*list_banner*/
.list_banner {
    width: 100%;
    height: 220px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative
}

/*news*/
.ks_box {
    width: 855px;
    text-align: left;
    height: auto;
    float: left;
}

.ks_box .hd {
    height: 50px;
    width: 855px;
    line-height: 50px;
    padding: 0;
    position: relative;
    border-bottom: #1d90d0 1px solid;
}

.ks_box .hd h1 {
    width: 120px;
    font-size: 20px;
    text-align: center;
    height: 50px;
    color: #ffffff;
    font-weight: bold;
    background: #1d90d0;
   
}

.ks_box .hd ul {
    float: left;
    position: absolute;
    left: 150px;
    top: 0;
    height: 50px;
}

.ks_box .hd ul li {
    float: left;
    padding: 0 24px;
    cursor: pointer;
    font-size: 16px;
    color: #666666;
    font-weight: bold;
}

.ks_box .hd ul li.on {
    height: 50px;
    color: #1d90d0;
    font-weight: bold;
}

.ks_box .bd {
    position: relative;
}

.ks_box .bd ul {
    zoom: 1;
    padding: 0 0 0 0;
    height: auto;
    position: relative !important;
}

.iks_name {
    width: 855px;
    height: auto;
    overflow: hidden;
    padding: 10px 0 0 0;
}

.iks_name ul {
    width: 870px;
    height: auto;
    overflow: hidden;
}

.iks_name li a {
    display: block;
    float: left;
    width: 200px;
    height: 45px;
    line-height: 45px;
    margin: 15px 15px 0 0;
    border: #e1eaef 1px solid;
    font-size: 15px;
    text-align: center;
    border-radius: 5px;
}

.iks_name li a:hover {
    border: #daebe7 1px solid;
    background: #1d90d0;
    color: #ffffff;
    font-weight: bold
}

/*zjphoto*/
.i_zjphoto {
    width: 865px;
    overflow: hidden;
    position: relative;
    left: -10px
}

.i_zjphoto .hds {
    overflow: hidden;
    height: 30px;
    background: #f4f4f4;
    padding: 0 10px;
    display: none
}

.i_zjphoto .hds .prev, .i_zjphoto .hds .next {
    display: block;
    width: 5px;
    height: 9px;
    float: right;
    margin-right: 5px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
    background: url("../images/arrow.png") no-repeat;
}

.i_zjphoto .hds .next {
    background-position: 0 -50px;
}

.i_zjphoto .hds .prevStop {
    background-position: -60px 0;
}

.i_zjphoto .hds .nextStop {
    background-position: -60px -50px;
}

.i_zjphoto .hds ul {
    float: right;
    overflow: hidden;
    zoom: 1;
    margin-top: 10px;
}

.i_zjphoto .hds ul li {
    float: left;
    width: 9px;
    height: 9px;
    overflow: hidden;
    margin-right: 5px;
    text-indent: -999px;
    cursor: pointer;
    background: url("../images/icoCircle.gif") 0 -9px no-repeat;
}

.i_zjphoto .hds ul li.on {
    background-position: 0 0;
}

.i_zjphoto .bds {
    padding: 10px;
}

.i_zjphoto .bds ul {
    overflow: hidden;
    zoom: 1;
}

.i_zjphoto .bds ul li {
    margin: 0 15px 0 0;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
    border: #e1eaef 1px solid;
    width: 157px;
    height: 190px;
}

.i_zjphoto .bds ul li .pic {
    text-align: center;
    width: 105px;
    height: 105px;
    overflow: hidden;
    border-radius: 50%;
    margin: 10px auto 0 auto;
}

.i_zjphoto .bds ul li .pic img {
    width: 105px;
    display: block;
    margin: 0 auto;
}

.i_zjphoto .bds ul li .pic a:hover img {
    border-color: #999;
}

.i_zjphoto .bds ul li .title {
    line-height: 36px;
    height: 36px
}

.i_zjphoto .bds ul li .title_ks a {
    background: #ededed;
    font-size: 14px;
    color: #1d90d0;
    display: block;
    width: 80%;
    height: 26px;
    line-height: 26px;
    text-align: center;
    margin: 0 auto;
    border-radius: 20px
}

.i_zjphoto .bds ul li:hover .title_ks a {
    background: #1d90d0;
    transition: all 0.6s;
    color: #ffffff
}

.i_zjphoto .bds ul li:hover {
    background: #ffffff;
    transition: all 0.6s;
    border: #5fc0f6 1px solid
}


.Hnews {
  background-color: #fbf5f5;
  padding-bottom: 60px;
}
.Hnews dl {
  overflow: hidden;
}
.Hnews dl dt {
  width: 48.89%;
  float: left;
  overflow: hidden;
}
.Hnews dl dd {
  width: 49%;
  float: right;
  margin-top: -8px;
}
.Hnews dl dd a {
  padding-left: 27px;
  position: relative;
  transition: all 0.5s;
  color: #666666;
  line-height: 38px;
  display: block;
}
.Hnews dl dd a::before,
.Hnews dl dd a::after {
  position: absolute;
  content: '';
  left: 0;
  right: auto;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.Hnews dl dd a::before {
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #b23236;
  left: 15px;
}
.Hnews dl dd a::after {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right-color: #fff;
  left: -10px;
  opacity: 0;
  transition: all 0.5s;
}
.Hnews dl dd .slick-current a,
.Hnews dl dd a:hover {
  background-color: #ffffff;
  color: #e46c62;
}
.Hnews dl dd a:hover::after {
  opacity: 1;
}
@media (max-width: 640px) {
  .Hnews dl dt,
  .Hnews dl dd {
    width: 100%;
    float: none;
  }
  .Hnews dl dt {
    margin-bottom: 5%;
  }
}
.Hnews .piclist {
  position: relative;
}
.Hnews .piclist figure {
  padding-top: 73.868%;
  transition: all 0.5s;
}
.Hnews .piclist a:hover figure {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.Hnews .piclist .slick-dots {
  position: absolute;
  left: 0;
  top: auto;
  right: 0;
  bottom: 20px;
  text-align: center;
  z-index: 110;
}
.Hnews .piclist .slick-dots li {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 6px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #fff;
}
.Hnews .piclist .slick-dots li button {
  display: none;
}
.Hnews .piclist .slick-dots li.slick-active {
  background-color: #fff;
}

.htnews {
    padding: 20px 0 50px;
	
	 background: url(../images/d-bg2.jpg);
}

.layout {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.htnews .column-item {
    box-sizing: border-box;
    width: 33.3%;
  
    padding: 20px 20px 0;
   
}
.htnews-text1 {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
	  border-bottom: 1px solid #e4e4e4;
}

.htnews-text1 .title {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    line-height:50px;
    position: relative;
    z-index: 1;
    flex-grow: 1
}



.htnews-text1 .more {
    margin-left: 20px;
    display: block;
    font-size: 14px;
    color: #999;
 
    flex-shrink: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.htnews-text1 .more img {
    margin: -2px 6px 0 0;
    display: inline-block;
    vertical-align: middle;
    max-width: 23px
}

.htnews-text1 .more:hover {
    color: #066950;
    text-decoration: underline
}
.htnews h2.tit-left {
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
	font-size: 24px;font-weight: bold;
	
}
.htnews h2.tit-left span{float: right;}
.mt10 {
    margin-top: 10px;
}
.htnews .column-item .column-list-wrap .txt-lists li {
   
    line-height: 32px;
	height: 32px;
	background: url('../images/li.jpg')left; /* 使用图片作为竖块 */
	    background-repeat: no-repeat;
	    padding-left: 20px;
}





.htnews .column-item .column-list-wrap .first-item a span {
    position: absolute;
    left: 0;
    right: 0;
    top: 240px;
    z-index: 1;
    height: 50px;
    padding: 0 10px;
    margin: auto;
    line-height: 50px;
    color: #fff;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    background-image: url(../images/black50.png);
}
.htnews .column-item .column-list-wrap .txt-lists li a {
    max-width: 250px;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.htnews .column-item .column-list-wrap .txt-lists li time {
    color: #999;
    font-size: 16px;
}
.htnews .column-item .column-list-wrap .first-item {
    width: 100%;
    height: 290px;
	position: relative;
}

.htnews .column-item .column-list-wrap .first-item  img{width: 100%;height: 290px;}

.mt15 {
    margin-top: 15px;
}
.p30 {
  padding-top: 30px;
}
.p22 {
  padding-top: 22px;
}
.Hmore {
  padding-right: 25px;
  background: url(../images/more.png) no-repeat right center;
  font-size: 14px;
  color: #bbbbbb;
}

.d-wp {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
	margin: 30px 0;
}

 /*侧栏*/
        .sidebar {
            position: fixed;
            width: 70px;
            text-align: center;
         height: 92%;
            right: 0;
            top: 3%;
            background: #1d90d0;
            z-index: 999;
        }
         
        .shop ol a li:hover{background:#2D4355;
            opacity:0.6;
        }
        .sidebar aside ol a li {    width: 70px;
    height: 55px;
  
   
    text-align: center;
    margin-bottom: 2px;
    position: relative;
}
			
			.sidebar aside ol a li img{height: 20px;padding-top: 5px;}
        .sidebar aside ol a li:hover{background-color: rgba(43, 45, 47, 0.7); /}
        .sidebar aside ol a li span{
			
			font-size: 13px;
				color: #fff;
				margin-top: 2px;
			
            }
     /*   .sidebar aside ol a li:hover span{
            color:#FFFFFF;
            width:120px;
            right: 50px;
            background: #000;
            line-height: 55px;
            opacity:0.6;
            transition: background-position 0.3s,height 0.3s;
            -webkit-transition: background-position 0.3s,width 0.5s;
        } */
		
		.img-wrap {
		                    display: none;
		                     right: 0px;
		                     width: 160px;
		                     position: absolute;
		                     top: 0;
		                     height: 140px;
		                        }
								
								
						.img-wrap  img {
								             height: 120px!important;            
								                    opacity:1;  margin-top: 10px;   }
								  .sidebar aside ol a li:hover .img-wrap {
								   color:#FFFFFF;
								   width:160px;
								   right: 50px;
								   background: #FFFFFF;
								   line-height: 140px;
								 display: block; opacity:999!important;
								   transition: background-position 0.3s,height 0.3s;
								   -webkit-transition: background-position 0.3s,width 0.5s;
								}

.index-title{ height: 56px; line-height: 56px; border-bottom: 2px solid #e5e5e5;margin-bottom: 20px;}
.index-title span{ font-size: 24px; color: #000; position: relative; display: inline-block; letter-spacing: 2px; font-weight: bold;}

.index-title a{ display: inline-block; float: right; letter-spacing: 1px; font-size: 16px; color: #FFFFFF;background-color: #1191b6;padding: 0 20px;}

.index-title a  img{padding-right: 10px;}
.index-title a:hover{ color: #01928b; text-decoration: underline;}
#news .newsli {
    width: 49%;
	margin-right: 1%;padding: 20px;
	
	    box-shadow: 0px 0px 10px rgba(188, 188, 188, 0.2);
}
#news .newsli:nth-child(2){	margin-right: 0%;}
#news .topicList{
    overflow: hidden;
}

#news .topicList li{
    float: left;
    width: 560px;
    height: 118px;
    padding: 20px;
}
#news .topicList .pic{float: left;
width: 156px;
margin-right: 20px;}
#news .topicList .pic img{
    width: 156px;
    height: 117px;
}
#news .topicList .con{overflow: hidden;}
#news .topicList li .title a{
    font-size: 16px;
    color: #555;
}
#news .topicList li .intro,#news .topicList li .date{
    font-size: 14px;
    line-height: 24px;
    color: #999;

}
#news .topicList li .date{
margin-top: 10px;
padding-left: 26px;
}

.footDiv{ padding: 75px 0 70px; overflow: hidden; background: #1288b6; position: relative;}
.footDiv .leftDiv{ width: 428px; position: relative; }
.footDiv .midDiv{ padding-top: 55px; width: 450px; position: relative;}
.footDiv .ewmList li{ float: left; padding-right: 25px; }
.footDiv .ewmList li:last-child{ padding-right: 0; }
.footDiv .ewmList li .limg img{ width: 120px; }
.footDiv .ewmList li p{ font-size: 16px; text-align: center; color: #fff; padding-top: 10px; }
.footDiv .titleDiv .cn{ padding-bottom: 12px; color: #fff; font-size: 18px; line-height: 18px; font-weight: bold;}
.footDiv .titleDiv .en{ color: #fff; position: relative; height: 46px; }
.footDiv .titleDiv .en:after{ content: ''; position: absolute; left: 0px; bottom: 0px; width: 16px; height: 2px; background: #90dbdd; display: block; }
.footDiv .msgList{ padding-top: 30px;}
.footDiv .msgList li{ font-size: 16px; color: #fff; line-height: 28px; padding-left: 48px; position: relative; }
.footDiv .msgList li b{ position: absolute; left: 0; top: 0;color: #ffffff;font-weight: bold;}
.footDiv .btnDiv{ padding-top: 40px; }

.footDiv .btnDiv  p{line-height: 40px;color: #FFFFFF;}
.footDiv .btnDiv a{ text-align: left; display: block;  height: 40px; line-height: 40px;  color: #fff; font-size: 16px; font-weight: bold; }

.footDiv .share{ padding-top: 35px; overflow: hidden; }
.footDiv .share li{ float: left; margin-right: 25px; }
.footDiv .share li a{ display: block; width: 36px; height: 36px; border: #fff solid 1px; border-radius: 50%; position: relative; }
.footDiv .share li img{ position: absolute; left: 50%; top: 50%; margin-left: -10px; margin-top: -8px; }
.footDiv .share li .img1{ opacity: 0; }
.footDiv .share li a:hover{ background: #fff; }
.footDiv .share li a:hover img{ opacity: 0; }
.footDiv .share li a:hover .img1{ opacity: 1; }
.footDiv .rightDiv{ width: 210px;}
.footNav{ padding-top: 24px; }
.footNav li{ float: left;width: 100%;}
.footNav li:nth-child(even){ float: right; }
.footNav dd{ line-height: 45px; font-size: 16px;width: 50%;float: left;}
.footNav dd a{ color: rgba(255,255,255,0.8); }
.footNav dd a:hover{ text-decoration: underline;}



.foot{ height: 106px; position: relative; background: #1288b6;border-top:1px solid #57aaca ; }

.foot .wal{ position: relative; height: 106px; }
.foot .msg{ line-height: 106px; font-size: 14px; color: #fff;}
.foot .msg a{ color: #fff; }
.foot .msg a:hover{ text-decoration: underline; }


.aboutadd{ padding:30px 20px; line-height: 25px; }

.about-top{ position: relative;  padding-bottom: 20px; width: 100%;  border-bottom: 1px solid #ccc; }

.son-nav{float: left; }
.cont .con img{max-width:100%;height:auto !important;}

.son-nav ul li{ display: inline-block; }

.son-nav ul li a{ margin:0 10px; padding:8px 16px; border:1px solid #ccc; border-radius: 5px; color:#000; }

.son-nav ul li a.cur, .son-nav ul li a:hover{ border:1px solid #1d90d0; background-color: #1d90d0; color: #fff; }

.aboutadd .con{ padding:30px 0; width: 100%; }

.aboutadd .con  p{color: #666666;line-height: 35px;}

.aboutadd .con  span{color: #666666;}



.aboutadd .con table {
    margin: 0 auto; /* 表格整体居中 */
}
.aboutadd .con table td,
.aboutadd .con table th {
    text-align: center; /* 文字水平居中 */
    vertical-align: middle; /* 文字垂直居中 */
}
.positioninfobox{ clear:both; margin:0 auto; padding:3% 0 0 0; width:100%; background:#6bcbca;  }
.posbox{  max-width:1440px; clear:both; overflow:hidden; margin:0 auto; padding:0 0 2% 0; }
.position{  line-height:40px; color:#fff; text-align:center; }
.position a,.position a:link,.position a:visited {color:#fff;}
.position a:hover,.position font.active,.position a.active,.position a.active:link,.position a.active:visited{color:#d71820;}
.positioninfo{  padding:30px 0 0 0px; line-height:40px;  font-size:30px; font-weight:bold; text-align:center;}

    @media screen and (min-width: 1250px) {
        .aboutadd {
            max-width:100%;
        }
    }
    @media screen and (max-width: 1249px) {
        .aboutadd {
            width: 100%;
        }
    }

    @media screen and (max-width: 1249px) {
		.main-box{ width:100%;}
        .about-top{ border: none; }
        .breadcrumb {
            display: none;
        }
        .son-nav{
            width: 100%;
        }
        .son-nav ul li{ clear: both; margin-bottom: 30px; }
    }

.breadcrumb{
  

    font-size: 14px;

    text-align: right;



}

.breadcrumb a {
    text-decoration: none;
    color: #666;
}


.pagebar { padding:20px; overflow:hidden; clear:both}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 3px; line-height:100%
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}
.pagination a.page-num-current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}
.pagination .st{ font-family:宋体}
.text-secondary{ text-align:center; padding:20px 0}


.wrap2 {
	clear: both;
	width: 96%;
	max-width: 1300px;
	margin: 0 auto;
	text-align: left;
	zoom: 1;
}


.product_ul {
	overflow: hidden;
	padding-bottom: 20px;
	padding-top: 8px;
}
.product_ul ul li {
	float: left;
	width: 23.5%;
	margin-left: 0.5%;
	margin-right: 1%;
	overflow: hidden;
	margin-bottom: 1.5%;
	text-align: center;
	background-color: #fff;
}
.product_ul ul li .product_b {
	border: 1px solid #e8e8e8;
	
}

.product_ul ul li img {
	display: inline-block;
	width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	vertical-align: middle;
height: 360px;
}
.product_ul ul li .imgs {
	width: 100%;
	overflow: hidden;
	height: 360px;
	display: table-cell;
	 vertical-align: middle;
	 text-align:center;
}
.product_ul ul li h2 {
	font-weight: normal;
	color: #333333;
	line-height: 36px;
	height: 36px;
	text-align: center;
	overflow: hidden;
	padding-left: 2%;
	padding-right: 2%;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: all 0.3s;
	margin-bottom: 1%;
}
.product_ul ul li p {
	line-height: 20px;
	height: 40px;
	overflow: hidden;
	color: #929292;
	font-size: 14px;
	padding-left: 2%;
	padding-right: 2%;
	max-width: 350px;
	margin: 0 auto;
}
.product_ul ul li em {
	display: block;
	color: #ee697e;
	font-size: 14px;
	margin-top: 10px;
	line-height: 20px;
	height: 20px;
	overflow: hidden;
}
.product_ul ul li label {
	display: block;
	color: #333;
	font-size: 14px;
	line-height: 20px;
	height: 20px;
	overflow: hidden;
	margin-top: 5px;
}
.product_ul ul li:hover img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.product_ul ul li:hover {
	-webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
	transition: all 0.3s;
}
.product_ul ul li:hover h2 {
	color: #00a1e9;
}
.product_ul ul li:hover .product_b {
	border: 1px solid #fff;
}

#more{ width:100%; float:left; margin-top:1.2%; text-align:center;}
#more  A{
	display:inline-block; padding-left:3%; padding-right:3%; line-height:2.8;  font-size:16px;border-radius:30px; color:#fff;transition:all 0.4s ease-in-out 0s;  border: 1px solid #FFFFFF;
}



.honor_ul {
	overflow: hidden;
	padding-bottom: 20px;
	padding-top: 8px;
}
.honor_ul ul li {
	float: left;
	width: 23.5%;
	margin-left: 0.5%;
	margin-right: 1%;
	overflow: hidden;
	margin-bottom: 1.5%;
	text-align: center;
	background-color: #fff;
}
.honor_ul ul li .product_b {
	border: 1px solid #e8e8e8;
	padding-bottom: 16px;
}

.honor_ul ul li img {
	display: inline-block;
	max-width: 80%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	vertical-align: middle;
	max-height: 260px;
}
.honor_ul ul li .imgs {
	width: 100%;
	overflow: hidden;
	height: 200px;
	
	display: table-cell;
	 vertical-align: middle;
	 text-align:center;
}
.honor_ul ul li h2 {
	font-weight: normal;
	color: #333333;
	line-height: 36px;
	height: 36px;
	text-align: center;
	overflow: hidden;
	padding-left: 2%;
	padding-right: 2%;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: all 0.3s;
	margin-bottom: 1%;
}
.honor_ul ul li p {
	line-height: 20px;
	height: 40px;
	overflow: hidden;
	color: #929292;
	font-size: 14px;
	padding-left: 2%;
	padding-right: 2%;
	max-width: 350px;
	margin: 0 auto;
}
.honor_ul ul li em {
	display: block;
	color: #ee697e;
	font-size: 14px;
	margin-top: 10px;
	line-height: 20px;
	height: 20px;
	overflow: hidden;
}
.honor_ul ul li label {
	display: block;
	color: #333;
	font-size: 14px;
	line-height: 20px;
	height: 20px;
	overflow: hidden;
	margin-top: 5px;
}
.honor_ul ul li:hover img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.honor_ul ul li:hover {
	-webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
	transition: all 0.3s;
}
.honor_ul ul li:hover h2 {
	color: #00a1e9;
}
.honor_ul ul li:hover .product_b {
	border: 1px solid #fff;
}


.nybanner {
	width: 100%;
	height: 600px;
	overflow: hidden;
	position: relative;
	
}
.nybanner img {
	width: 1920px;
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -960px;
	top:200px;
}

 .wrapper {
	     width: 100%;
	     position: relative;
	     margin: 0;
	     padding: 0;
	     zoom:1;z-index: 0
	 }
	 
	 .cont {
	     width: 1350px;
	     position: relative;
	     margin: 0 auto
	 }
	 
	 .mod {
	     padding: 0 10px
	 }
	 
	 .topCart {
	     position: absolute;
	     width: 250px;
	     border-width: 1px;
	     border-style: solid;
	     right: 10px;
	     top: 44px;
	     z-index: 2;
	     padding-top: 10px;
	     font-size: 12px;
	     border-radius: 3px;
	     display: none;
	     box-shadow: 0 0 3px 0 rgba(0,0,0,.1)
	 }




.auto {
    width: 1200px;
    margin: 0 auto;
}

/*新闻内页*/
.info_listxw{clear:both; padding:0px; margin-top:20px; display:block; overflow:hidden;}
.info_listxw dl{ clear:both; padding:1.5% 2%; border-bottom:1px dotted #cccccc; overflow:hidden;position: relative;transition: 588ms; }
.info_listxw dl:before{ content:""; background:#f8f8f8; width:100%; height:100%; position:absolute; left: 0; top: 0;  opacity: 0; visibility: hidden; transform: scaleY(0); -webkit-transform: scaleY(0); -moz-transform: scaleY(0); transition: 570ms; }
.info_listxw dl:hover:before {opacity: 1; visibility: visible; transform: scaleY(1); -webkit-transform: scaleY(1); -moz-transform: scaleY(1); }
.info_listxw dl:hover dt img {transform: scale(1.1); -webkit-transform: scale(1.1); -moz-transform: scale(1.1);}
.info_listxw dl:hover{ box-shadow:0px 5px 5px #eee; }
.right table{margin: 0 auto;}
.info_listxw dl dt{ float:right; width:16%;  }
.info_listxw dl dt img { display: block; width:98%; border:0px solid #e6e6e6; height: auto; line-height: 1; transition: 588ms; }
.info_listxw dl dd{ float:left; position:relative; padding:0px 0%;  }
.info_listxw dl dd a.title{ clear:both; display:block; font-size:18px; line-height:24px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;}
.info_listxw dl dd .jianyao{ clear:both; font-size:14px; line-height:24px; color:#999999; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; margin:20px 0; }
.info_listxw dl dd .newsdate{ clear:both; color:#999999; line-height:26px; font-size:14px; background:url(../images/time.png) no-repeat left center; padding:0 0 0 20px; }
/*内页*/
.mainpage{clear:both; width:100%; margin:0px auto 0 auto; padding:0;  }
.mainpage:after, .mainpage:before{content: '';display: block;clear: both;height: 0;}
.left{clear:both;  padding:20px 0% 0 0%; margin:0 auto; text-align:center; border-top:1px solid #fff; max-width:1440px; position:relative;  }
.right{clear:both; max-width:1340px; margin:0 auto; padding:0px 0% 0 0%; /*background:#FFF;*/ }	

.mainarea{ position:relative; clear:both; padding:10px 0 20px 0; min-height:360px; height:360px;}
[class].mainarea{height:auto;}
.mainarea div.content{font-size:14px; line-height:23px;}

.info_view{ clear:both;padding:5px 0 10px 0;}
.info_view h1.title{border-bottom:1px dotted #ccc; font-size:24px;line-height:26px; padding:3% 0 3% 0; margin:0 0 0px 0; text-align:center; font-weight:bold;}
.info_view h2.subtitle{ background:#f5f5f5; color:#999; font-size:14px;line-height:22px; padding:5px 0; margin:0 0 20px 0; text-align:center;}
.info_view div.content{padding:0px 5px; line-height:26px; }
.info_view div.content p{padding:10px 0;}

.info_view .lefta{text-align:center}

.fir_p{text-align: center;line-height:30px;font-weight:bold}
.info_view img{ max-width:800px;}
.info_view div.atta{font-size:14px;line-height:23px;padding-top:2px;color:#ee7700; font-weight:bold;}
.info_view div.comment{font-size:12px;line-height:23px;padding-top:2px;}
.info_view td:hover{ background:#eeeeee; }
/*.info_view tr{ border-top:2px solid #cccccc;  }*/

.info_view div.other{ text-align:left; padding-right:0px;}

.info_view .bigimg{ padding:0px 0px; text-align:center;}


.info_view table {border-collapse:collapse; border-spacing: 0; border:#CCCCCC 1px solid;}
.info_view td{border:#CCCCCC 1px solid; text-align:center; padding:4px;}


/*内页-在线留言 开始*/
.NyOrder_Main { height: auto; margin: 0 auto; background-color: #fff; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.NyOrder_Main .NyOrder_Left { width: 28%; height: 505px; overflow: hidden; margin: 0; padding: 120px 40px; background: #1288b6 url(../images/bg2.png) center center no-repeat; background-size: cover; float: left; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.NyOrder_Left img { display: block; width: 57px; height: 57px; margin: 0 0 40px; padding: 0; }
.NyOrder_Left p { width: 100%; height: auto; line-height: 40px; color: #fff!important; font-size: 36px; font-weight: bold; margin: 0 auto 5px; padding: 0; }
.NyOrder_Left font { display: block; width: 100%; height: auto; line-height: 30px; color: rgba(255,255,255,0.5); font-family: "RobotoRegular"; font-size: 24px; margin: 0 auto; padding: 0; }
.NyOrder_Left span { display: block; width: 100%; height: auto; line-height: 30px; color: rgba(255,255,255,0.5)!important; font-size: 16px; word-break: break-all; text-align: justify; margin: 30px auto 0; padding: 0; }
.NyOrder_Main .NyOrder_Right { width: 72%; height: auto; overflow: hidden; margin: 0; padding: 0 0 0 40px; float: right; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.NyOrder_Right #ab_msg.ab_msg { width: 100%!important; height: auto!important; margin: 0 auto!important; padding: 0!important; }
.NyOrder_Right #ab_msg.ab_msg h3 { display: none!important; }
.NyOrder_Right #ab_msg.ab_msg ul { width: 100%!important; overflow: hidden!important; margin: 0 auto!important; padding: 0!important; }
.NyOrder_Right #ab_msg.ab_msg ul li h4, .NyOrder_Right #ab_msg.ab_msg ul li h4.xh { display: none!important; }
.NyOrder_Right #ab_msg.ab_msg ul li { width: 100%!important; height: auto!important; overflow: hidden!important; line-height: inherit!important; color: inherit!important; font-size: inherit!important; margin: 0 0 25px!important; padding: 0!important; clear: inherit!important; }
.NyOrder_Right #ab_msg.ab_msg ul li:nth-child(1){ width: 48%!important; margin: 0 4% 25px 0!important; float: left!important; }
.NyOrder_Right #ab_msg.ab_msg ul li:nth-child(2){ width: 48%!important; float: right!important; }
.NyOrder_Right #ab_msg.ab_msg ul li:last-child { margin: 40px auto 0!important; }
.NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt1, .NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt12, .NyOrder_Right #ab_msg.ab_msg ul li .msg_tara { width: 100%!important; height: auto!important; margin: 0!important; padding: 0!important; }
.NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt1 input, .NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt12 input, .NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt2 input, .NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt12 .msg_option { display: block!important; width: 100%!important; height: 60px!important; line-height: 60px; color: #aaa!important; font-size: 16px!important; margin: 0!important; padding: 0 20px!important; background-color: #f2f2f2!important; border: 0!important; outline: none!important; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.NyOrder_Right #ab_msg.ab_msg ul li .c_yzm { margin: 0 10px 0 0!important; padding: 0!important; float: left!important; }
.NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt2 input { width: 240px!important; margin: 0 10px 0 0!important; float: left!important; }
.NyOrder_Right #ab_msg.ab_msg ul li a.yzm_img { display: block!important; width: 120px!important; height: 40px!important; margin: 10px 0!important; padding: 0!important; float: left!important; }
.NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt2>span { line-height: 60px!important; color: #999!important; font-size: 16px!important; }
.NyOrder_Right #ab_msg.ab_msg ul li .msg_tara textarea, .NyOrder_Right #ab_msg.ab_msg ul li .msg_ipt0 textarea { display: block!important; width: 100%!important; height: 150px!important; line-height: 30px; color: #aaa; font-size: 16px!important; margin: 0!important; padding: 15px 20px!important; background-color: #f2f2f2!important; border: 0!important; outline: none!important; resize: none!important; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.NyOrder_Right #ab_msg.ab_msg ul li .msg_btn { width: 100%!important; height: auto!important; overflow: hidden!important; margin: 0!important; padding: 0!important; float: inherit!important; }
.NyOrder_Right #ab_msg.ab_msg .msg_btn input { width: 200px!important; height: 60px!important; overflow: hidden!important; line-height: 60px!important; color: #fff!important; font-size: 16px!important; text-align: center!important; background-color: #dfaa14!important; margin: 0 20px 0 0!important; padding: 0!important; border: none!important; cursor: pointer!important; }
.NyOrder_Right #ab_msg.ab_msg .msg_btn input:hover { background-color: #b9a75d!important; }
.NyOrder_Right #ab_msg.ab_msg .msg_btn input.msg_btn1 { background-color: #1288b6!important; }
.NyOrder_Right #ab_msg.ab_msg .msg_btn input.msg_btn1:hover { background-color: #03a3a4!important; }

/* ==================== 响应式布局 v2 ==================== */
/* 保持PC端原样，只对移动端进行适配 */

/* 移动端导航按钮 */
.mobile-nav-btn {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
}

.mobile-logo {
    display: none;
}
.mobile-nav-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    margin-bottom: 6px;
    transition: all 0.3s;
}
.mobile-nav-btn span:last-child {
    margin-bottom: 0;
}
.mobile-nav-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-nav-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 平板及以下 (<=1200px) */
@media screen and (max-width: 1200px) {
    .w1200, .w1600, .w1400 {
        width: 95%;
        max-width: none;
    }

    .layout {
        width: 95%;
    }

    .cont {
        width: 95%;
    }

    .ipartnews {
        width: 95%;
    }

    .iparks {
        width: 95%;
    }

    .newleft, .newbox, .ks_box, .newsandnotice {
        width: 100%;
    }

    .newbox {
        height: auto;
    }

    .ks_box {
        float: none;
        clear: both;
        margin-top: 20px;
    }

    .newbox_left {
        width: 40%;
    }

    .newsandnotice {
        width: 60%;
    }

    .newsandnotice .hd {
        width: 100%;
        left: 0;
    }

    .ks_box .hd {
        width: 100%;
        height: auto;
        position: relative;
        border-bottom: none;
    }

    .ks_box .hd h1 {
        width: 100%;
        float: none;
        display: block;
        line-height: 50px;
    }

    .ks_box .hd ul {
        position: static !important;
        left: auto !important;
        top: auto !important;
        float: none !important;
        width: 100%;
        height: auto;
        padding: 10px 0;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-bottom: #1d90d0 1px solid;
    }

    .ks_box .hd ul li {
        float: none !important;
        display: inline-block;
        padding: 0 15px;
        font-size: 14px;
        line-height: 30px;
    }

    .i_notice {
        width: 100%;
        float: none;
        clear: both;
        margin-top: 20px;
        overflow: visible !important;
    }

    .i_notice .d-text2 {
        display: block;
        padding: 10px 0;
        justify-content: flex-start;
        text-align: left;
    }

    .i_notice .d-text2 .title {
        font-size: 18px;
    }

    .function_btns {
        overflow: hidden !important;
        height: auto !important;
        background-size: 100% auto !important;
        margin-bottom: 30px !important;
    }

    .function_btns_list {
        overflow: hidden !important;
        height: auto !important;
    }

    .function_btns_list .function_btns_list {
        overflow: hidden !important;
    }

    .function_btns span {
        width: 50% !important;
        float: left !important;
        display: block !important;
    }

    .function_btns a {
        height: 50px !important;
        line-height: 50px !important;
        width: 100% !important;
        display: block !important;
        background: #1d90d0;
    }

    .function_btns a i {
        font-size: 14px !important;
        text-align: center !important;
        padding-right: 0 !important;
        display: block !important;
        color: #fff !important;
    }

    .i_notice .hd {
        clear: both;
        margin-top: 20px;
        padding-top: 0;
    }

    .i_zjphoto {
        width: 100%;
        left: 0;
    }

    .i_zjphoto .hds {
        display: none !important;
    }

    .i_zjphoto .bds {
        padding: 10px 0;
        overflow: visible !important;
    }

    .i_zjphoto .bds .tempWrap {
        width: 100% !important;
        overflow: visible !important;
        position: static !important;
        height: auto !important;
    }

    .i_zjphoto .bds ul {
        width: 100% !important;
        height: 280px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        position: static !important;
        transform: none !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-content: flex-start !important;
    }

    .i_zjphoto .bds ul li {
        width: 50% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 5px !important;
        box-sizing: border-box !important;
        float: none !important;
        border: #e1eaef 1px solid;
        position: static !important;
    }

    .i_zjphoto .bds ul li .pic {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        margin: 5px auto 0 auto !important;
        text-align: center !important;
    }

    .i_zjphoto .bds ul li .pic img {
        width: 50px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .i_zjphoto .bds ul li .title {
        font-size: 12px !important;
        line-height: 20px !important;
        height: 20px !important;
    }

    .i_zjphoto .bds ul li .title a {
        font-size: 12px !important;
    }

    .i_zjphoto .bds ul li .title_ks a {
        font-size: 11px !important;
        height: 20px !important;
        line-height: 20px !important;
    }

    .iks_name {
        width: 100%;
        overflow: hidden;
    }

    .iks_name ul {
        width: 100%;
        overflow: hidden;
    }

    .iks_name li {
        float: left;
        width: 50%;
        box-sizing: border-box;
        padding: 5px;
    }

    .iks_name li a {
        width: 100% !important;
        margin: 0 !important;
        font-size: 13px;
        height: 40px;
        line-height: 40px;
        float: none !important;
        display: block;
    }

    .htnews .column-item {
        width: 33.3%;
    }

    .htnews .column-item .column-list-wrap .txt-lists li a {
        max-width: 200px;
    }

    #news .topicList li {
        width: 100%;
    }

    .nybanner img {
        width: 1200px;
        margin-left: -600px;
    }

    .sidebar {
        display: none;
    }
}

/* 小平板 (<=992px) */
@media screen and (max-width: 992px) {
    .indexPage .header {
        position: fixed;
        background: #fff;
    }

    .indexPage .bannerBox {
        margin-top: 60px;
    }

    .header .header-top {
        display: none;
    }

    /* 手机端隐藏医院简介图片 */
    .newbox_left,
    #picnews {
        display: none;
    }

    .nBanner, .ylfwBanBox {
        padding-top: 60px;
    }

    .header .nav {
        position: relative;
        background: #fff;
        height: 60px;
    }

    .header .nav .nav-wrap {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 60px !important;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .mobile-logo {
        display: block !important;
        flex-shrink: 0;
    }

    .mobile-logo img {
        max-height: 45px !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
    }

    .nav_pc {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        z-index: 999;
    }

    .nav_pc.show {
        display: flex;
    }

    .nav_pc > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav_pc > li > a {
        line-height: 50px;
        display: block;
        padding: 0 15px;
    }

    .navSub {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
    }

    .nav_pc > li:hover .navSub {
        display: none;
    }

    .nav_pc > li.active .navSub {
        display: block;
    }

    .mobile-nav-btn {
        display: block;
    }

    .htnews .column-item {
        width: 50%;
    }

    .newbox_left, .newsandnotice {
        width: 100%;
        float: none;
    }

    .newbox_left {
        margin-top: 20px;
    }

    .newbox {
        height: auto;
    }

    .ks_box {
        float: none;
        clear: both;
        margin-top: 20px;
    }

    .ks_box .hd {
        height: auto;
    }

    .ks_box .hd ul {
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: static !important;
        float: none !important;
    }

    .ks_box .hd ul li {
        padding: 0 12px;
        font-size: 14px;
        float: none !important;
        display: inline-block;
    }

    .i_zjphoto .bds .tempWrap {
        width: 100% !important;
        overflow: visible !important;
        position: static !important;
        height: auto !important;
    }

    .i_zjphoto .bds ul {
        width: 100% !important;
        height: 280px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        position: static !important;
        transform: none !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-content: flex-start !important;
    }

    .i_zjphoto .bds ul li {
        width: 50% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 5px !important;
        box-sizing: border-box !important;
        float: none !important;
        border: #e1eaef 1px solid;
        position: static !important;
    }

    .i_zjphoto .bds ul li .pic {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        margin: 5px auto 0 auto !important;
        text-align: center !important;
    }

    .i_zjphoto .bds ul li .pic img {
        width: 50px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .i_zjphoto .bds ul li .title {
        font-size: 12px !important;
        line-height: 20px !important;
        height: 20px !important;
    }

    .i_zjphoto .bds ul li .title a {
        font-size: 12px !important;
    }

    .i_zjphoto .bds ul li .title_ks a {
        font-size: 11px !important;
        height: 20px !important;
        line-height: 20px !important;
    }

    .iks_name li {
        float: left;
        width: 50%;
        box-sizing: border-box;
        padding: 5px;
    }

    .iks_name li a {
        width: 100% !important;
        margin: 0 !important;
        font-size: 13px;
        float: none !important;
        display: block;
    }

    .picnews {
        width: 100%;
        height: auto;
    }

    .picnews img {
        width: 100%;
        height: auto;
    }

    .function_btns {
        overflow: hidden !important;
        height: auto !important;
        background-size: 100% auto !important;
        margin-bottom: 30px !important;
    }

    .function_btns_list {
        overflow: hidden !important;
        height: auto !important;
    }

    .function_btns span {
        width: 50% !important;
        float: left !important;
        display: block !important;
    }

    .function_btns a {
        height: 45px !important;
        line-height: 45px !important;
        width: 100% !important;
        display: block !important;
        background: #1d90d0;
    }

    .function_btns a i {
        font-size: 13px !important;
        text-align: center !important;
        padding-right: 0 !important;
        display: block !important;
        color: #fff !important;
    }

    .i_notice .hd {
        margin-top: 20px;
        padding-top: 0;
    }

    .d-wp {
        flex-wrap: wrap;
    }

    #news .newsli {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footDiv .leftDiv,
    .footDiv .midDiv,
    .footDiv .rightDiv {
        width: 100%;
        float: none !important;
        margin-bottom: 30px;
        text-align: left;
    }

    .footDiv .midDiv {
        padding-top: 0;
    }

    .footDiv .ewmList {
        text-align: center;
        width: 100%;
    }

    .footDiv .ewmList ul {
        text-align: center;
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .footDiv .ewmList li {
        display: inline-block;
        float: none;
        padding: 0;
        flex-shrink: 0;
    }

    .footDiv .ewmList li .limg img {
        width: 100px;
        max-width: 100px;
    }

    .footDiv .ewmList li p {
        font-size: 14px;
        white-space: nowrap;
    }

    .footDiv .rightDiv {
        float: none !important;
        clear: both;
    }

    .footDiv .rightDiv .titleDiv {
        text-align: left;
    }

    .footDiv .rightDiv .titleDiv .cn,
    .footDiv .rightDiv .titleDiv .en {
        text-align: left;
    }

    .footNav {
        padding-top: 24px;
        text-align: left;
    }

    .footNav li {
        float: none !important;
        width: 100% !important;
    }

    .footNav dd {
        width: 50%;
        float: left;
    }

    .footDiv .midDiv {
        padding-top: 0;
    }
}

/* 手机端 (<=768px) */
@media screen and (max-width: 768px) {
    .header .nav {
        height: 55px;
    }

    .header .nav .nav-wrap {
        height: 55px;
    }

    .mobile-logo img {
        max-height: 40px;
    }

    .indexPage .bannerBox {
        margin-top: 55px;
    }

    .nBanner, .ylfwBanBox {
        padding-top: 55px;
    }

    .banner .swiper-slide a {
        height: 50vh;
    }

    .banner .btn span {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .htnews .column-item {
        width: 100%;
        float: none;
        padding: 15px 10px;
    }

    .htnews-text1 .title {
        font-size: 18px;
    }

    .htnews .column-item .column-list-wrap .first-item {
        height: 200px;
    }

    .htnews .column-item .column-list-wrap .first-item img {
        height: 200px;
    }

    .htnews .column-item .column-list-wrap .first-item a span {
        top: 150px;
        height: 40px;
        line-height: 40px;
    }

    .index-title span {
        font-size: 18px;
    }

    .index-title a {
        font-size: 14px;
        padding: 0 10px;
    }

    .ks_box .hd h1 {
        font-size: 16px;
        width: 100%;
    }

    .ks_box .hd ul li {
        padding: 0 8px;
        font-size: 12px;
    }

    .i_zjphoto .bds .tempWrap {
        width: 100% !important;
        overflow: visible !important;
        position: static !important;
        height: auto !important;
    }

    .i_zjphoto .bds ul {
        width: 100% !important;
        height: 280px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        position: static !important;
        transform: none !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-content: flex-start !important;
    }

    .i_zjphoto .bds ul li {
        width: 50% !important;
        float: none !important;
        margin: 0 !important;
        height: auto !important;
        padding: 5px !important;
        box-sizing: border-box !important;
        border: #e1eaef 1px solid;
        position: static !important;
    }

    .i_zjphoto .bds ul li .pic {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        margin: 5px auto 0 auto !important;
        text-align: center !important;
    }

    .i_zjphoto .bds ul li .pic img {
        width: 50px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .i_zjphoto .bds ul li .title {
        font-size: 12px !important;
        line-height: 20px !important;
        height: 20px !important;
    }

    .i_zjphoto .bds ul li .title_ks a {
        font-size: 11px !important;
        height: 20px !important;
        line-height: 20px !important;
    }

    .iks_name li {
        float: left;
        width: 50%;
        box-sizing: border-box;
        padding: 5px;
    }

    .iks_name li a {
        width: 100% !important;
        font-size: 12px !important;
        height: 36px !important;
        line-height: 36px !important;
        margin: 0 !important;
        float: none !important;
        display: block;
    }

    #news .topicList li {
        padding: 10px;
    }

    #news .topicList .pic {
        width: 100px;
    }

    #news .topicList .pic img {
        width: 100px;
        height: 75px;
    }

    .footDiv {
        padding: 30px 15px;
    }

    .footDiv .ewmList ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .footDiv .ewmList li {
        float: none;
        width: auto;
        padding: 0;
        text-align: center;
        flex-shrink: 0;
    }

    .footDiv .ewmList li .limg img {
        width: 90px;
    }

    .footDiv .ewmList li p {
        font-size: 14px;
        white-space: nowrap;
    }

    .footNav dd {
        width: 50%;
        float: left;
    }

    .foot {
        height: auto;
        padding: 15px 0;
    }

    .foot .msg {
        line-height: 24px;
        padding: 10px 0;
    }

    .nybanner {
        height: 300px;
    }

    .nybanner img {
        width: 768px;
        margin-left: -384px;
        top: 100px;
    }

    .product_ul ul li {
        width: 48%;
        margin: 0 1% 2% 0;
    }

    .product_ul ul li img,
    .product_ul ul li .imgs {
        height: 200px;
    }

    .honor_ul ul li {
        width: 48%;
        margin: 0 1% 2% 0;
    }

    .info_listxw dl dt {
        width: 30%;
    }

    .info_listxw dl dd a.title {
        font-size: 16px;
    }

    .aboutadd {
        padding: 15px 10px;
    }

    .son-nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    .son-nav ul li a {
        display: block;
        text-align: center;
    }

    .breadcrumb {
        display: none;
    }

    .info_view h1.title {
        font-size: 18px;
    }

    .info_view img {
        max-width: 100%;
    }
}

/* 小手机 (<=480px) */
@media screen and (max-width: 480px) {
    .header .box {
        height: 50px;
    }

    .header .box .logo img {
        max-height: 35px;
    }

    .banner .swiper-slide a {
        height: 35vh;
    }

    .banner .btn {
        bottom: 10px;
    }

    .banner .btn span {
        width: 24px;
        height: 24px;
        font-size: 10px;
        margin: 0 5px !important;
    }

    .d-text2 .title {
        font-size: 18px;
    }

    .function_btns {
        overflow: hidden !important;
        height: auto !important;
        background-size: 100% auto !important;
        margin-bottom: 30px !important;
    }

    .function_btns_list {
        overflow: hidden !important;
        height: auto !important;
    }

    .function_btns span {
        width: 50% !important;
        float: left !important;
        display: block !important;
    }

    .function_btns a {
        height: 40px !important;
        line-height: 40px !important;
        width: 100% !important;
        display: block !important;
        background: #1d90d0;
    }

    .function_btns a i {
        font-size: 12px !important;
        padding-right: 0 !important;
        text-align: center !important;
        display: block !important;
        color: #fff !important;
    }

    .i_notice .hd {
        margin-top: 20px;
        padding-top: 0;
    }

    .htnews-text1 .title {
        font-size: 16px;
    }

    .htnews-text1 .more {
        font-size: 12px;
    }

    .htnews .column-item .column-list-wrap .txt-lists li a {
        max-width: 150px;
        font-size: 14px;
    }

    .htnews .column-item .column-list-wrap .txt-lists li time {
        font-size: 12px;
    }

    .product_ul ul li {
        width: 100%;
        margin: 0 0 3% 0;
    }

    .honor_ul ul li {
        width: 100%;
        margin: 0 0 3% 0;
    }

    .footDiv .ewmList ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .footDiv .ewmList li {
        padding: 0;
        flex-shrink: 0;
    }

    .footDiv .ewmList li .limg img {
        width: 80px;
    }

    .footDiv .ewmList li p {
        font-size: 14px;
        white-space: nowrap;
    }

    .footDiv .msgList li {
        font-size: 14px;
        line-height: 24px;
    }

    .footDiv .btnDiv a {
        font-size: 14px;
    }

    .nav_pc > li > a {
        font-size: 14px;
    }

    .navSub ul li > a {
        font-size: 14px;
        line-height: 40px;
    }

    .nybanner {
        height: 200px;
    }

    .nybanner img {
        width: 480px;
        margin-left: -240px;
        top: 50px;
    }
}

/* 超小屏幕 (<=360px) */
@media screen and (max-width: 360px) {
    .banner .swiper-slide a {
        height: 30vh;
    }

    .htnews-text1 .title {
        font-size: 14px;
    }

    .function_btns {
        overflow: hidden !important;
        height: auto !important;
        background-size: 100% auto !important;
        margin-bottom: 30px !important;
    }

    .function_btns_list {
        overflow: hidden !important;
        height: auto !important;
    }

    .function_btns span {
        width: 50% !important;
        float: left !important;
        display: block !important;
    }

    .function_btns a {
        height: 38px !important;
        line-height: 38px !important;
        width: 100% !important;
        display: block !important;
        background: #1d90d0;
    }

    .function_btns a i {
        font-size: 11px !important;
        padding-right: 0 !important;
        text-align: center !important;
        display: block !important;
        color: #fff !important;
    }

    .i_notice .hd {
        margin-top: 20px;
        padding-top: 0;
    }
}