﻿@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, hr 
{
  padding: 0;
  margin: 0; 
  box-sizing: border-box;
}

body 
{
  color: #000;
  /*设置字体颜色*/
  font-size: 14px;
  font-family: "微软雅黑"; 
}

.emptyPage
{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}


table 
{
  border-collapse: collapse;
  border-spacing: 0; 
}

img 
{
  display: block;
}
.imgHover img {
    transition: 0.5s;
}
.imgHover:hover img
{
    transform: scale(1.2);
}

ol, ul, li 
{
  list-style: none; 
}

caption, th 
{
  text-align: left; 
}

h1, h2, h3, h4, h5, h6 
{
  font-weight: normal;
  font-size: 100%; 
}

/* 链接颜色设置*/
a {
  color: #000;
  text-decoration: none; 
}
a:hover 
{
    color: #ec0000;
}

.hidden
{
    display: none;
}

.floatLeft
{
    float: left;
}

.floatRight
{
    float: right;
}

.clear:after
{ 
    clear:both;
    content:'';
    display:block;
    width:0;
    height:0;
    visibility:hidden;
}

/* 图片自适应（imgBox需要设置独立宽高） */
.imgBox
{
    position: relative; 
    overflow: hidden;
}
.imgBox img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/*html5*/
article, aside, dialog, footer, header, section, footer, nav, figure
{
  display: block; 
}

/* 链接颜色设置*/
.main 
{
    width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) 
{
    .main 
    {
        width: 100%;
    }
}

.wrap 
{
    width: 100%;
    margin: 0 auto;
}

/*头部信息*/
body {
    padding-top: 100px;
}
header {
    height: 100px;
        background: #ffffff;
    background: #ffffff;
    -webkit-box-shadow: 0 0 1px 1px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px 1px rgb(0 0 0 / 20%);
    position: fixed;
    width: 100%;
    z-index: 39;
    top: 0;
    left: 0;
    right: 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .6s;
    -moz-animation-duration: .6s;
    -o-animation-duration: .6s;
    animation-duration: .6s;
}
.headerMain {
    height: 100%;
    padding: 0 2%;
}
header .logoImg,
header nav
 {
    height: 100%;
}
header .logoImg {
    margin-left: 100px;
    box-sizing: border-box;
    padding: 15px 0;
}
    header .logoImg img {
        height: 100%;
    }
.topLineBox
{
    height: 40px;
    background: #efefef;
}

.topLine
{
    line-height: 40px;
}

.topCotactBox
{
    height: 100%;
    display: table;
    text-align: center;
    margin-right: 100px;
    border-left: 1px solid #eaeaea;
    padding-left: 25px;
}

.topCotactBox > div
{
    display: table-cell;
    vertical-align: middle;
}

.topCotactBox .contactText
{
    font-size: 16px;
    text-align: left;
    float: left;
}

.topCotactBox .contactTel
{
    font-size: 16px;
    color: #ec0000;
    text-align: left;
    float: left;
    font-weight: bold;
}
    .topCotactBox .contactTel span {
        display: block;
    }

@media (max-width: 768px) 
{
    body {
        padding-top: 55px;
        padding-bottom: 70px;
    }
    header {
        height: 55px;
    }
        header .logoImg {
            margin-left: 0;
        }
    .topLineBox
    {
        display: none;
    }
    
    .logoImg
    {
        width: 80%;
    }
    
    .topCotactBox
    {
        display: none;
    }
}



nav
{
    overflow: hidden;
    padding: 0 6%;
}

.nav a
{
    display: block;
    line-height: 100px;
    font-size: 16px;
}

.nav ul.item1> li
{
    display: table-cell;
    width: 1%;
    text-align: center;
    position: relative;
}

    .nav ul.item1 > li > a {
    position: relative;
    }
    .nav ul.item1 > li > a:after {
        content: "";
        height: 3px;
        position: absolute;
        bottom: 0;
        left: 51%;
        right: 51%;
        z-index: -1;
        background-color: #d82019;
        -o-transition-property: left, right;
        -moz-transition-property: left, right;
        transition-property: left, right;
        -webkit-transition-property: left, right;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        -moz-transition-timing-function: ease-out;
        -o-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        -webkit-transition-timing-function: ease-out;
    }
    .nav ul.item1 > li:hover > a, .nav ul.item1 > li.on a {
        color: #d82019;
    }
     .nav ul.item1 > li:hover > a:after, .nav ul.item1 > li.on a:after {
        left: 0;
        right: 0;
        z-index: 1;
    }

nav ul.item2 {
    display: none;
    position: absolute;
    min-width: 100%;
    top: 100%;
    left: 0;
    z-index: 6666;
    background-color: #f5f5f5;
}

nav ul.item2 li {
    display: block;
    border-bottom: 1px solid #eee;
    text-align: center;
    white-space: nowrap;
}

nav ul.item2 li a {
    color: #5f5d5d;
    display: block;
}

nav ul.item2 li:hover a{
    color: #014c85;
}


nav ul.item1>li:hover ul.item2 {
    display: block;
}


.navbar-toggle
{
    display: none;
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 9px;
    margin-right: 9px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
}

.navbar-toggle .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #888;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

.nav .navMask
{
    display: none;
}

@media (max-width: 768px) 
{    
    .navbar-toggle
    { 
        display: block;
    }
    
    .nav{ padding: 1em; background-color: #fff; border-top: 1px solid #e7e7e7; }
    .nav ul.item1> li{ display: block; width: 100%; border-left: 0;text-align: left; padding: .1em 0;font-size: 20px;text-indent: 1em;}
    .nav .item2{display: none !important;}
    .nav a{ color: #b0b0b0;line-height: 2;}
    .nav
    {
        visibility: visible;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        width: 50%;
        height: 100%;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    .nav.on
    {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .navMask 
    {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,.5);
        z-index: 90;
    }
}

/*头部信息*/

/* 轮播图 */
.slideBox {
  overflow: hidden;
  position: relative;
}

.slideBox li {
  width: 100%;
}

.slideBox li img {
  width: 100%;
}

.slideBox .pcBanner{
    display: block;
}
    
.slideBox .mobileBanner{
    display: none;
}

@media (max-width: 768px) 
{
    .slideBox .pcBanner{
        display: none;
    }
    
    .slideBox .mobileBanner{
        display: block;
    }
}
/* 轮播图 */

/*底部信息*/
.footerBox
{
    border-top: 1px solid #d82019;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footerBox a
{
    color: #e2e2e2;
}

.footerBox .footer
{
    padding-left: 10px;
    padding-right: 10px;
}

.footerBox .bottomNav
{
    margin: 0 auto;
    text-align: center;
}

.footerBox .bottomNav li
{
    display: inline-block;
    border-right: #85868f solid 1px;
    line-height: 1;
}

.footerBox .bottomNav li:first-child a
{
    padding-left: 0px;
}

.footerBox .bottomNav li:last-child
{
    border-right: none;
}

.footerBox .bottomNav li a
{
    color: #85868f;
    font-size: 16px;
    padding: 0px 20px;
    font-weight: bold;
}

.footerBox .bottomContactInfo
{
    margin-top: 20px;
    text-align: center;
}

.footerBox .bottomContactInfo div
{
    line-height: 25px;
        color: #abacb7;
}

.footerBox .qrCodeText
{
    line-height: 30px;
    text-align: center;
}

.footerNav
{
    background: #ec0000;
    display: flex;
    width: 100%;
    max-width: 750px;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.footerNav a
{
    display: block;
    color: #fff;
    font-size: 16px;
}

.footerNav li
{
    box-sizing: border-box;
    width: 25%;
    text-align: center;
    border-right: #fff solid 1px;
    padding-top: 5px;
    padding-bottom: 2px;
}

.footerNav li:last-child
{
    border: none;
}

.footerNav li img
{
    margin: 0 auto 2px auto;
    height: 40px;
}

@media (max-width: 768px) 
{
    .bottomNav
    {
        display: none;
    }
    
    .footerBox .bottomContactInfo
    {
        margin-top: 0px;
    }
    
    .footerBox .bottomContactBox
    {
        /*justify-content: space-around;*/
    }
    
    .footerNav
    {
        display: flex;
    }
}

.sharedCode {
    width: 208px;
    overflow: hidden;
    margin: 0 auto;
}