/*初始化样式*/\
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    border: 0;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: #fff;
    color: #666;
    position: relative;
    font: 12px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
    vertical-align: baseline;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    outline: none;
}

a:link {
    color: #666;
}

a:visited {
    color: #666;
}

a:hover,
a:active,
a:focus {
    color: #009b4c;
    text-decoration: none;
    outline: none;
}

p {
    margin: 0;
}

input {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
    background: none;
    vertical-align: middle;
}

ul,
ol,
li {
    list-style-type: none;
}

select,
input,
img,
select {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

table,
th,
td {
    vertical-align: middle
}

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

.clearfix {
    zoom: 1
}

.clearboth {
    height: 0px;
    line-height: 0px;
    overflow: hidden;
    clear: both;
    font-size: 0px;
}

h1,
h2,
h3,
h4 {
    font-size: 12px;
    font-weight: bold;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    height: 0;
}

dt {
    font-weight: normal;
}



/*----- Common css ------*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flexd {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flexed {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  display: -webkit-flex;
}

.visible-xs,.visible-sm {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-xs {display: block !important;}
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {display: block !important;}
}
@media (max-width: 767px) {
    .hidden-xs {display: none !important;}
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {display: none !important;}
}

.container{
    max-width: 1280px;
    padding: 0 15px;
    margin: 0 auto;
    overflow: hidden;
}


.icon-font {
    position: relative;
}

.icon-font:after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../images/icon.png);
    background-repeat: no-repeat;
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
}



/*头部样式*/
.pctop {
    height: 90px;
    position: relative;
    z-index: 999;
}

.pctop .container{
  overflow: inherit;
}

.logo {
    line-height: 90px;
    max-width:480px;
}
.logo img{
    width:100%;
    max-width:330px;
}

.bf-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bf-menu>li {
    position: relative;
}

.bf-menu>li>a {
    display: block;
    font-size: 15px;
    color: #041d38;
    white-space: nowrap;
    line-height: 90px;
    height: 90px;
    text-align: center;
    padding: 0 1.5rem;
}

.bf-menu>li>a:hover {
    color: #041d38;
}

.bf-menu>li.active>a {}

.bf-menu>li:after {
    content: '';
    position: absolute;
    z-index: 100;
    width: 100%;
    left: 0;
    /*height: 40px;*/
    opacity: 0;
    top: 100%;
}

.bf-menu>li:hover .bf-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
}

.bf-sub-menu {
    position: absolute;
    z-index: 99;
    width: 160px;
    left: 0%;
    top: 90px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.bf-sub-menu>li {
    /* padding: 0 0.9rem; */
}

.bf-sub-menu>li>a {
    display: block;
    text-align: center;
    line-height: 52px;
    font-size: 15px;
    color: #041d38;
}

.bf-sub-menu>li>a:hover {
    background: #154290;
    color: #fff;

}

.bf-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
    display: none;
}




.bf-sub-menu>li {
    position: relative;
}

.bf-sub-menu>li .pro-third-menu {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.bf-sub-menu>li .pro-third-menu a {
    display: block;
    line-height: 52px;
    font-size: 15px;
    color: #041d38;
    font-size: 15px;
    font-weight: normal;
    color: #041d38;
    /* padding: 0 2%; */
    box-sizing: content-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease .3s;
    padding: 0 0.7rem;

}

.bf-sub-menu>li .pro-third-menu a:hover {
    background-color: #154290;
    color: #fff;
}

.bf-sub-menu>li:hover .pro-third-menu {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}




.k2 {
    position: relative;
}

.k2 .k2-btn {
    width: 60px;
    height: 60px;
    background: #154290 url(../images/search.png) no-repeat center center;
    cursor: pointer;
}

.k2 #formsearch {
    position: absolute;
    width: 239px;
    height: 50px;
    background-color: #ffffff;
    top: 75px;
    right: 0;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.k2 #formsearch input {
    outline: none;
    background: none;
    border: none;
}

.k2 #formsearch input[name='wd'] {
    font-size: 12px;
    font-weight: normal;
    color: rgba(0, 0, 0, .5);
    padding-left: 16px;
    width: 192px;
    height: 50px;
    line-height: 50px;
}

.k2 #formsearch input[type="submit"] {
    width: 16px;
    height: 16px;
    background: url(../images/search2.png) no-repeat center center;
    height: 50px;
    line-height: 50px;
}



/*手机端头部*/
.bfmob-head {
    position: fixed;
    top: 0;
    z-index: 999999;
    left: 0px;
    right: 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bfmob-head-box {
    position: relative;
    height: 60px;
}

.bfmob-head-box .bfmob-logo {
    position: absolute;
    left: 10px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 70%;
    height: 30px;
    text-align: left;
}

.bfmob-head-box .bfmob-logo h2, .bfmob-head-box .bfmob-logo a {
    display: inline;
    font-size: 0;
}

.bfmob-head-box .bfmob-logo img {
    height: 25px;
}

.bfmob-navbtn {
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 10px auto 0px;
    width: 30px;
    height: 20px;
}

.bfmob-navbtn span, .bfmob-navbtn:after, .bfmob-navbtn:before {
    display: block;
    height: 2px;
    width: 100%;
    background: #154290;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.bfmob-navbtn span {
    margin: 7px 0;
}

.bfmob-navbtn:after, .bfmob-navbtn:before {
    content: '';
    -webkit-transform-origin: 7.5%;
    transform-origin: 7.5%;
}

.bfmob-navbtn.clicked span {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
}

.bfmob-navbtn.clicked:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.bfmob-navbtn.clicked:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bfmob-search-btn {
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    bottom: 0;
    width: 14%;
    text-align: center;
    line-height: 60px;
}

.bfmob-search-btn .icon-font {
    display: block;
    width: 100%;
    height: 100%;
}

.bfmob-search-btn .icon-font:after {
    background-position: -30px -210px;
}

.bfmob-menu {
    display: none;
    position: absolute;
    z-index: 9999;
    left: 0;
    right: 0;
    height: 100vh;
    background: #154290;
    padding: 0 10%;
}

.bfmob-menu .bfmob-menu-box {
    height: 100vh;
    overflow: auto;
    padding-bottom: 80px;
}

.bfmob-nav > li {
    border-bottom: 1px dotted #fff;
    position: relative;
}

.bfmob-nav > li > a {
    display: block;
    line-height: 50px;
    font-size: 16px;
    color: #ffffff;
}

.bfmob-nav .bfmob-menu-jt {
    position: absolute;
    width: 20%;
    height: 50px;
    line-height: 50px;
    right: 0;
    top: 0;
    text-align: center;
    z-index: 9;
}

.bfmob-nav .bfmob-menu-jt .icon-font {
    display: block;
    width: 100%;
    height: 100%;
}

.bfmob-nav .bfmob-menu-jt .icon-font:after {
    background-position: -30px -240px;
}

.bfmob-nav .bfmob-menu-jt.clicked .icon-font:after {
    background-position: -30px -270px;
}

.bfmob-nav .bfmob-sub-menu {
    background: #004ea2;
    display: none;
}

.bfmob-nav .bfmob-sub-menu > li {
    border-top: 1px dashed #fff;
    position: relative;
}

.bfmob-nav .bfmob-sub-menu > li > a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 40px;
    text-indent: 2em;
}

.bfmob-nav .bfmob-sub-menu > li > ul >li>a{
  text-indent: 4em;
} 
.bfmob-dlbtn {
    margin-top: 40px;
}

.bfmob-dlbtn a {
    text-align: center;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #53B4B3;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
}

.bfmob-dlbtn a i {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.bfmob-dlbtn a .icon-dl:after {
    background-position: -30px -540px;
}

.bfmob-dlbtn a .icon-pn:after {
    background-position: -30px -600px;
}

.bfmob-dlbtn a .icon-tc:after {
    background-position: -30px -570px;
}

.bfmob-dlbtn .zx-btn {
    margin-top: 10px;
    background: none;
    border: 1px solid #fff;
}

.bfmob-search {
    position: fixed;
    z-index: 99999;
    left: 100%;
    bottom: 0;
    top: 0;
    width: 100%;
    background: #151515;
    padding: 15px 15% 0 15%;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.bfmob-search .bfmob-search-close-btn {
    position: absolute;
    top: 27px;
    left: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

@media (max-width: 420px) {
    .bfmob-search .bfmob-search-close-btn {
        left: 15px;
    }
}

.bfmob-search .bfmob-search-close-btn i {
    width: 100%;
    height: 100%;
    display: block;
}

.bfmob-search .bfmob-search-close-btn i:after {
    background-position: -30px -300px;
}

.bfmob-search .bfmob-search-box {
    height: 50px;
    border-bottom: 2px solid #2d2d2d;
}

.bfmob-search .bfmob-search-box input[type="text"] {
    width: 80%;
    float: left;
    background: none;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Microsoft YaHei";
    font-size: 16px;
    height: 50px;
}

.bfmob-search .bfmob-search-box #s_btn {
    width: 20%;
    height: 50px;
    outline: none;
    cursor: pointer;
    font-size: 0;
    background: none;
    border: none;
}

.bfmob-search .bfmob-search-box #s_btn .icon-font {
    display: block;
    width: 100%;
    height: 100%;
}

.bfmob-search .bfmob-search-box #s_btn .icon-font:after {
    background-position: -30px -210px;
}

.bfmob-search .bfmob-seaerch-wz span, .bfmob-search .bfmob-seaerch-wz a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 45px;
    border-bottom: 1px solid #2b2b2b;
}

.bfmob-search.clicked {
    left: 0;
}







/* foot */
.pubtitle h3 {
    margin-top:24px;
    font-size: 0.8rem;
    font-weight: normal;
    color: #4f5154;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom:12px;

}

.pubtitle h3::before {
    content: "";
    width: 1.5rem;
    height: 2px;
    background-color: #154290;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pubtitle h4{
    font-size: 32px;
    line-height: 1.3;
    color: #154290;
}
.foot-bg{
    background: url(../images/footbg.png) no-repeat top center;
    background-size: 100% 100%;
    align-items: center;
}

.footl{
    width: 49.375%;
}

.flyt{
  text-align: center;
  color: #666666;
  font-size: 16px;
  margin-top:0px;
  padding: 10px 0;
}

.liuyan{
  
}

.liuyan .m11{
  margin-bottom: 22px;
}

.liuyan .m11 span{
  float: left;
  width: 70px;
  color: #666666;
  font-size: 14px;
  line-height: 40px;
}

.liuyan .m11 .ww{
  width: calc(100% - 70px);
  float: right;
}

.form-control1{
  width: 100%;
  background: #fff;
  line-height: 40px;
  padding: 0 5px;
  border:0px;
}

.liuyan .m22 span{
  float: left;
  width: 70px;
  color: #666666;
  font-size: 14px;
  line-height: 40px;
}

.liuyan .m22 .ww{
  width: calc(100% - 70px);
  float: right;
}

.liuyan .m22 .ww textarea{
  height: 120px;
  background: #fff;
  width: 100%;
  padding: 0 5px;
  line-height: 40px;
  border:0px;
}

.liuyan .m33{
  align-items: center;
  margin-top: 10px;
}

.liuyan .m33 .ww2{
  width: 60%;
}

.liuyan .m33 .ww2{
  align-items: center;
}

.liuyan .m33 .ww2 span{
  width: 70px;
    color: #666666;
    font-size: 14px;
    line-height: 40px;
}

.liuyan .m33 .ww2 .ww2img{
  width: calc(100% - 70px);
}

.liuyan .m33 .ww2 .checkcode{
  background: #fff;
  line-height: 50px;
  height: 50px;
  width: 70%;
}

.ww2imga{
  width: 30%;
}

.ww2imga img{
  width: 100%;
  height: 50px;
}

.liuyan .m33 .tijiao{
   width: 155px;
  height: 50px;
  background: #fff;
  text-align: center;
  color: #154290;
  margin:0 auto;
}

.liuyan .m33 .tijiao input{
  padding: 0;
  text-align: center;
  line-height: 50px;
  width: 100%;
  border:0px;
  background: #fff;
  color:#154290;
}



.foot-index{
  max-width: 555px;
  max-width: 58.54%;
  width: 100%;
  margin-left: 13.02083333333333vw;
}

.footr{
  width: 50.625%;
}

.flx{
  background: #154290;
  padding: 3.125vw 2.6vw;
}

.flx p{
  color: #fff;
  font-size: 14px;
  margin-bottom: 0.6vw;
}

.flx p:last-child{
  margin-bottom: 0;
}

.fmap img{
  width: 100%;
  height: 278px;
}

.cop-bg{
  background: #222222;
  padding: 20px 0;
}


.cop-index{
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.2);
}

.cop-index a{
  color: rgba(255,255,255,.9);
}
.copyright,.power{color: rgba(255,255,255,.9);}

@media(max-width: 1600px){
  .foot-index{
    margin-left: 6.020833vw;
  }
}

@media(max-width: 1440px){
  .foot-index{
    margin-left: 15px;
    max-width: 80%;
  }
}

@media(max-width: 1280px){
 
}

@media(max-width: 1200px){

}

@media(max-width: 1100px){

}

@media(max-width: 1024px){

}

@media(max-width: 995px){

  .liuyan .m22 .ww textarea{
    height: 65px;
  }
  .foot-bg{
  }
  .foot-index{
    max-width: 90%;
  }
  .fmap img{

  }
}
@media(max-width: 767px){
  .foot-bg{
    flex-wrap: wrap;
    background: #f1f3f2;
    padding: 40px 0 0px;
  }
  .footl{
    width: 100%;
  }
  .footl .pubtitle h3{
    margin-top:0px;
  }
  .foot-index{
    max-width: 100%;
    margin-left: 0;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .form-control1{
    box-sizing: border-box;
  }
  .footr{
    width: 100%;
    margin-top: 20px;
  }
  .fmap img{
    height: auto;
  }
}

@media(max-width: 640px){

  .flx{
    padding: 15px;
  }
  .flx p{
    font-size: 13px;
    margin-bottom: 5px;
  }
  .cop-index{
    font-size: 12px;
  }
  .cop-index a{
    font-size: 12px;
  }
}



.footer{
    background: #154290;
    padding:72px 0px 36px;
    color:#f2f2f2;
}
.footer a{color:#f2f2f2;}
.flogo{margin-bottom:24px;}
.footerewm{margin-left:0px; letter-spacing:2px; width:295px; text-align: center; color:rgba(255, 255, 255, 0.9); font-size: 16px;}
.footerewm img{max-width: 160px;}
.copyright{
    border-top:1px solid rgba(255, 255, 255, 0.05);
    background: #154290;
    padding-top:24px;
    padding-bottom:24px;
    text-align: center;
    font-size:16px;
    color:#f2f2f2;
    line-height:32px;
}
.footer2{display: flex;}
.footer-ewm{width:380px; 
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) 1 100%;
}
.footer-contact{
    margin-left:80px;
    padding-right:80px;
    width:300px;
    margin-right:100px;
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) 1 100%;
}
.footer-nav{
    width:calc(100% - 940px);
    display: flex;
}
.footer-nav dl{
    width:50%;
}

.footer-contact .tit{
    font-size: 18px;
    font-weight: bold;
    color:#f2f2f2;
    line-height:54px;
    height:54px;
}
.footer-contact .wz{
    font-size: 16px;
}
.footer-contact .wz dd{margin:12px 0px 16px;}
.footer-contact .wz dd span{
  display:block; width:100%; font-size:14px;color:rgba(255, 255, 255, 0.8);}
.footer-nav dl:nth-child(2){
    margin-left:80px;
}
.footer-nav dl dt{
    font-size: 18px;
    font-weight: bold;
    color:#f2f2f2;
    line-height:54px;
    height:54px;
}
.footer-nav dl dd{
    line-height:48px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

@media(max-width:1440px){
    .footer-ewm{width:340px; 
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) 1 100%;
}
.footer-contact{
    margin-left:40px;
    padding-right:40px;
    width:300px;
    margin-right:60px;
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) 1 100%;
}
.footer-nav{
    width:calc(100% - 800px);
    display: flex;
}
}
@media(max-width:1024px){
    .footer{padding:42px 0px 24px;}
    .footer2{display: block;}
    .footer-ewm{width:100%; border:0px; text-align: center;}
    .footerewm{margin:0 auto;}
    .footer-contact{width:100%; margin:0px; padding:0px;}
    .footer-contact .wz dd{margin:6px 0px;}
    .footer-nav{width:100%;}
    .footer-nav dl dd{line-height:32px;}
    .copyright span{display: block;}
    .copyright{margin-bottom:50px;}
}

/*.footer{
  background: #2e2e2e;
  padding:60px 0px 12px;
}

.footerline{
  border-bottom: 1px solid #535353;
  padding-bottom: 24px;
  max-width: 1580px;
  margin:0 auto;
}

.footer2{
  display:flex;
  flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 54px;
}
.footer2 .footer-contact{
  padding-left: 8px;
}

.footer-contacttop{
  display:flex;
  flex-wrap: wrap;
    justify-content: flex-start;
}

.footerewm{
  border-radius:8px;
}
.footerewm img{
  border-radius:8px;
  display: block;
}
.footer-worktime{
  color:#f00;
  padding-left:33px;
  padding-top: 12px;
}
.footer-worktime span{
  font-size:21px;
  height:24px;
  line-height:24px;
  padding-bottom: 8px;
  display: block;
  color:#959494;
}
.footer-worktime p{
  font-size:32px;
  height: 32px;
    line-height: 32px;
    color:#f2f2f2;
}
.footer-worktime p.mb{
  margin-bottom: 30px;
}
.footer-contact_add{
  color:#f2f2f2;
  font-size: 21px;
  padding-left:5px;
  letter-spacing: 1px;
  margin-top:35px
}
.footer-nav{
  color:#fff;
  display:flex;
  flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-nav dl{
  padding-left:100px;
  padding-right: 10px;
}
.footer-nav dl:nth-child(2){
  padding-left:50px;
}
.footer-nav dt{
  font-size: 24px;
  color:#f2f2f2;
  height:24px;
  line-height: 24px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.footer-nav dd{
  font-size: 22px;
  color:#959494;
  line-height:40px;
}

.footer-nav dd a{
  font-size: 22px;
  color:#959494;
  font-weight:300;
}

.copyright{
  background: #252525;
  font-size:22px;
  height:60px;
  line-height: 60px;
  color:#7f7e7e;
  text-align: center;
}

@media(max-width:1440px){
  .footer-contact_add{
    font-size: 18px;
  }
  .footer-nav{
    padding-left:0px;
  }

  .footer-nav dl{
    padding-left:60px;
  }
  .footer-nav dt{
    margin-bottom:20px;
  }
  .footer-nav dd a{
    font-size: 18px;
  }
}

.visible-xs{display:none}

@media(max-width:1200px){
  .copyright{
    padding-bottom:50px;
  }
  .flogo{
    text-align: center;
  }
  .footer2 .footer-contact{
    width:100%;
    padding-left: 0px;
  }
  .footer-contacttop {
    width:100%;
    max-width: 512px;
    margin:0 auto;
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
  }
  .footer-contact_add{
    text-align: center;
    padding-bottom:20px;
  }
  .footer-nav{display:none}

  .flogo img{
    max-width:100%;
  }
  .footer{
    padding:32px 0px 12px;
  }
  .footer2{margin-top:24px;}
  .footer-worktime{padding-left: 12px;}
  .footer-worktime span{font-size:15px;}
  .footer-worktime p.mb{font-size: 20px;}
  .footer-worktime p{font-size:20px;}
  .copyright{font-size:16px;}
}
*/





.visible-xs{display:none}

@media(max-width:768px){
.visible-xs{display:block;}
}

  /* 手机页脚 */
.footer3 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #154290;
}

.footer3 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        justify-content: space-evenly;
}

.footer3 ul li {
    /*-webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;*/
    text-align: center;
    color: #ffffff;
    line-height: 50px;
    font-size: 0;
}

.footer3 ul li a {
    display: block;
    color: #ffffff;
}

.footer3 ul li .iconfont {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.footer3 ul li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #ffffff;
}
.footer3 ul li .iconfont {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 16px;
    height: 14px;
}
.footer3 ul li:nth-child(1) .iconfont {
    background: url("../images/icon-fhome.png") no-repeat 50%;
}

.footer3 ul li:nth-child(2) .iconfont {
    background: url("../images/icon-ftel.png") no-repeat 50%;
}

.footer3 ul li:nth-child(3) .iconfont {
    background: url("../images/icon-f3.png") no-repeat 50%;
}

.footer3 ul li:nth-child(4) .iconfont {
    background: url("../images/icon-f4.png") no-repeat 50%;
}
