/***********通用基本类1************/

/*格式化样式*/

* {
  margin: 0;
  padding: 0;
}

address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
  justify-content: center;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-size: 100%;
  font-weight: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

a {
  text-decoration: none;
  color: #666;
}
a:hover{
  color: #0064aa;
}

ul,
ol {
  list-style: none;
}

i,
strong,
em,
b {
  font-style: normal;
}

/*结构样式*/
.p10{
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .pc{
    display: none;
  }
  .m{
    display: block;
  }
}

@media (min-width: 768px) {
  .pc{
    display: block;
  }
  .m{
    display: none;
  }
}
/***********通用基本类2************/

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Microsoft Yahei', 'simsun', 'arial', 'tahoma';
  color: #666;
}

.wrap {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.main {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* 单行文字超出隐藏 */

.ellipsis {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 清理浮动 */

.fn-clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.fn-clear {
  zoom: 1;
  /* for IE6 IE7 */
}

.floatL {
  float: left;
}

.floatR {
  float: right;
}

.overflowH {
  overflow: hidden;
}

/* 响应式图片盒子 */

.imgBox {
  position: relative;
}

.imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.imgBox img.full {
  width: 100%;
  height: 100%;
}

.imgBox img.auto {
  max-width: 100%;
  max-height: 100%;
}


/* 图片放大 */

.hoverScale {
  overflow: hidden;
}

.hoverScale img {
  -webkit-transition: .4s;
  transition: .4s;
  backface-visibility: hidden; /*防抖动*/
}

.hoverScale:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* 居中 */

.middleBox:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.middleLi {
  display: inline-block;
  vertical-align: middle;
}

/***********其他公共样式************/

/* header头部 */

.header {
  width: 100%;
  background-color: #fff;
  padding: 14px 0 10px;
  box-sizing: border-box;
}


.header .header_main 
{
    height: 90px;
}

.header .logo {
  float: left;
  font-size: 0;
}

.header .logo {
  height: 100%;
}

.header .logo img {
  max-height: 90%;
}


.header_r
{
    float: right;
    text-align: right;
}



.header_main .header_tel {
  line-height: 1.2;
  padding-left: 20px;
}

.header_main .header_tel .phoneIco,
.header_main .header_tel .telInfo {
  display: inline-block;
vertical-align: middle;
  text-align: left;
}

.header_main .header_tel .phoneIco i {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  background: url("../Images/phoneIco.png?v=20200428") no-repeat center center / contain;
  margin-right: 10px;
}

.header_main .header_tel .telInfo .telText {
  font-size: 14px;
  color: #686868;
}

.header_main .header_tel .telInfo .telNum {
  font-size: 22px;
  color: red;
}

.header_main .header_tel .telInfo .telNum a {
  color: red;
}

.header .header_nav
{
    margin-top: 15px;
}
.header .header_nav li {
    float: left;
    margin-left: 2em;
    font-size: 14px;
}


/*
  头部导航按钮
*/

.header .icoBtn {
  float: right;
  height: 100%;
  display: none;
}

.header .navbar-toggle {
  display: inline-block;
  position: relative;
  padding: 9px 10px;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
  border: 1px solid #cecece;
  border-radius: 6px;
}

.header .navbar-toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #888;
}

.header .navbar-toggle .icon-bar+.icon-bar {
  margin-top: 4px;
}

@media (max-width: 1200px) {
  .header .header_nav {
    display: none;
  }
  .header .icoBtn {
    display: block;
    margin-right: 10px;
  }
  .header .header_tel
  {
      display: none;
  }
  .header .logo {
    margin-left: 10px;
    max-width: 60%;
  }
   .header .logo img
   {
       max-width: 100%;
   }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 22;
    padding: 0;
}
  body {
    padding-top: 90px;
  }
  .header .header_main  {
    height: 90px;
    line-height: 90px;
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 80px;
  }
 .header .header_main  {
    height: 80px;
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  .header .header_main  {
    height: 60px;
    line-height: 60px;
  }
}

/* 移动端侧导航 */

.slide-nav-mask {
  position: fixed;
  width: 80%;
  height: 100%;
  top: 0;
  left: -80%;
  background-color: rgba(0, 0, 0, .8);
  z-index: 2222;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.slide-nav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  visibility: visible;
  position: fixed;
  top: 0;
  right: -20%;
  width: 20%;
  height: 100%;
  padding: 1em;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2222;
}

.slide-nav-mask.on {
  left: 0;
}

.slide-nav.on {
  right: 0;
}

.slide-nav .btn {
  background: url("../Images/slide-close.png") no-repeat center center / cover;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: 10px;
  cursor: pointer;
}

.slide-nav li {
  width: 100%;
  border-left: 0;
  padding: .5em 0;
  line-height: 1.8;
  text-align: center;
}

.slide-nav .item1>li {
  font-size: 20px;
  color: #8B8784;
}

.slide-nav .item2 {
  display: none;
}

@media (max-width: 992px) {
  .slide-nav {
    right: -30%;
    width: 30%;
  }
  .slide-nav-mask {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .slide-nav {
    right: -50%;
    width: 50%;
  }
  .slide-nav-mask {
    width: 50%;
  }
}


/* footer脚部 */
.footer{
  margin-top: 50px;
}
.footer a{
  color: #ccc;
}
.footer_nav
{
   background-color: #0064aa;
}
.footer_nav li{
  display: table-cell;
  width: 1%;
  text-align: center;
  color: #fff;
  line-height: 3em;
  height: 3em;
}
.footer_nav li a{
  color: #fff;
}

.footer-info{
  padding: 50px;
  text-align: center;
}

.footer_logo{
  display: inline-block;
      vertical-align: middle;
  margin-right: 100px;
}
.footer_logo img{display: block;}
.footer_text{
  display: inline-block;
      vertical-align: middle;
      text-align: left;
}
.footer_line{
  border-top: 1px solid #b2b2b2;
  padding: 15px 0;
  text-align: center;
  color: #b2b2b2;
  background-color: ;
}
.footer_line a{
  color: #b2b2b2;
}
.footer_line span{
  margin-right: 1em;
}
@media (max-width: 768px) 
{
    .footer
    {
        margin-top: 20px;
        background-color: #e6e6e6;
    }
    .footer_nav
    {
        display: none;
    }
    .footer_logo,
    .footer_text
    {
        display: block;
        margin-right: 0;
    }
    .footer_text
    {
        font-size: 12px;
        margin-top: .5em;
        text-align: center;
    }
    .footer-info
    {
        padding: 15px 10px;
    }
    .footer_logo img
    {
        max-width: 70%;
        margin: 0 auto;
    }
    .footer_line
    {
        padding: 5px 0;
        background-color: #666666;
        color: #fff;
    }
    .footer_line a
    {
        color: #fff;
    }
    .footer_line span
    {
        display: block;
        font-size: 12px;
    }
}


/* lignhtBox */
#wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }

#mask {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background: #292929;
  opacity: 0.5;
  filter: alpha(opacity=50);
  display: none; }

.photo_border {
  width: 300px;
  height: 300px;
  position: fixed;
  left: 50%;
  margin-left: -150px;
  z-index: 1001;
  background: url(../Images/lightbox/loading.gif) no-repeat center center #fff;
  display: none;
  z-index: 1000;
  zoom: 1; }

.photo {
  position: relative;
  border: 5px solid #fff;
  border-radius: 3px;
  overflow: hidden; }

.photo_btn {
  display: block;
  position: absolute;
  height: 100%;
  width: 40%;
  top: 0;
  zoom: 1;
  background: url(../Images/lightbox/ie-bug.gif);
  cursor: pointer; }

.photo_pre_btn {
  left: 0; }

.photo_pre_btn_show {
  background: url(../Images/lightbox/prev.png) no-repeat;
  background-position: 10% center; }

.photo_next_btn {
  right: 0; }

.photo_next_btn_show {
  background: url(../Images/lightbox/next.png) no-repeat;
  background-position: 90% center; }

.caption {
  position: relative;
  top: -65px;
  width: auto;
  height: 60px;
  margin: 0 5px;
  display: block;
  background: rgba(126, 126, 126, 0.5); }

.photo_border .index {
  padding-left: 10px;
  color: #000;
  height: 30px;
  line-height: 30px; }

.photo_border .title {
  padding-left: 10px;
  height: 30px;
  line-height: 30px;
  color: #fff; }

.caption_close_btn {
  width: 27px;
  height: 27px;
  position: absolute;
  right: 10px;
  top: 13px;
  background: url(../Images/lightbox/close.png) no-repeat;
  cursor: pointer; }
  
  /* lignhtBox */
  
  
  
  
@media (max-width: 768px) 
{
    .swiper-button-next, .swiper-button-prev
    {
        display: none;
    }   
    .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction
    {
        bottom: 0 !important;
    } 
}