﻿@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: "微软雅黑";
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    display: block;
    border: 0;
}

.imgHover img:hover {
    transform: scale(1.2);
    transition: 0.5s;
}

.imgBox {
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.imgBox img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

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;
    background: none;
    border: none;
}

a:hover {
    color: #38b549;
}

.hidden {
    display: none;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

.clear:after {
    clear: both;
    content: '';
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

.ellipsis {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*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;
}

/*头部信息*/

header {
    height: 115px;
}

header .main {
    height: 100%;
}

.logoImg {
    margin-right: 20px;
}

.topLineBox {
    height: 40px;
    background: #efefef;
}

.topLine {
    line-height: 40px;
}

.topCotactBox {
    height: 100%;
    display: table;
    text-align: center;
}

.topCotactBox>div {
    display: table-cell;
    vertical-align: middle;
}

.topCotactBox .contactText {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

.topCotactBox .contactTel {
    font-size: 20px;
    color: red;
    font-weight: bold;
    text-align: left;
}

@media (max-width: 768px) {
    header {
        height: 55px;
    }
    .topLineBox {
        display: none;
    }
    .logoImg {
        max-width: 80%;
        max-height: 100%;
        margin-left: 10px;
    }
    .topCotactBox {
        display: none;
    }
}

nav {
    height: 100%;
    float: left;
}

nav ul.item1 {
    display: table;
    height: 100%;
}

nav ul.item1 > li {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    text-align: center;
}

nav ul.item1 > li > a {
    display: block;
    line-height: 40px;
    padding: 0px 17px;
    margin: 0px 0px;
    font-size: 16px;
    border-radius: 30px;
}

.nav ul.item1 > li.on > a {
    border: 1px solid #38b549;
    color: #38b549;
}

.nav ul.item1 > li:hover ul.item2{
    display: block;
}

nav ul.item2{
    display: none;
    position: absolute;
    min-width: 100%;
    top: 100%;
    left: 0;
    z-index: 6666;
    background-color: rgba(30,30,30,0.9);
}

nav ul.item2 li{
    display: block;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #848484;
    text-align: center;
    overflow: hidden;
}

nav ul.item2 li:hover {
    background-color: #43b952;
}

nav ul.item2 li a{
    color: #fff;
    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 ul.item1{
        display: block;
        overflow: auto;
    }
    nav ul.item1 > li {
        display: block;
        width: 100%;
        border-left: 0;
        text-align: left;
        padding: .1em 0;
        font-size: 16px;
        line-height: 2.5;
    }
    nav ul.item1 > li > a{
        padding: 0px;
     margin: 0px; 
     line-height: inherit;
    }
    nav ul.item1 > li .list2 {
        display: none !important;
    }
    nav ul.item1 > li a {
        color: #b0b0b0;
    }
    .nav {
            padding: 1em;
        background-color: #fff;
        border-top: 1px solid #e7e7e7;
        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%;
        padding-bottom: 70px;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        box-sizing: border-box;
    }

    .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;
    }
    nav ul.item2{
        display: block;
        position: initial;
        background-color: initial;
    }
    nav ul.item2 li{
        line-height: inherit;
        border-bottom: none;
        text-indent: 1em;
        text-align: left;
        font-size: 0.8em;
        height: auto;
    }
    nav ul.item2 li:hover{
        background-color: initial;
    }
}

/*头部信息*/

/*底部信息*/

.footerBox {
    background: #525252;
    overflow: hidden;
    color: #e2e2e2;
    margin-top: 40px;
}

.footerBox a {
    color: #e2e2e2;
}

.footerBox .footer {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3%;
    padding-bottom: 2%;
}

.footerBox .bottomNav {
    margin: 0 auto;
    text-align: center;
    float: right;
    padding-left: 50px;
}

.footerBox .bottomNav .item1 > li {
    display: inline-block;
    line-height: 1.8;
    vertical-align: top;
}

.footerBox .bottomNav .item1 > li:first-child a {
    padding-left: 0px;
}

.footerBox .bottomNav .item1 > li:last-child {
    border-right: none;
}

.bottomContactBox
{
    overflow: hidden;
}

.bottomContactBox .ewm{

    float: left;
    margin-right: 10px;
}
.bottomContactBox .bottomContactInfo{
    overflow: hidden;
}

.footerBox .bottomNav .item1 > li > a {
    color: #fff;
    font-size: 16px;
    padding: 0px 20px;
    font-weight: bold;
    border-right: #fff solid 1px;
}
.footerBox .bottomNav .item1 > li:last-child > a{
    border-right: 0;
}

.footerBox .bottomContactInfo p {
    line-height: 25px;
}
.footerBox .bottomContactInfo .companyName{
        padding-left: 8px;
    border-left: 1px solid #38b549;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    margin-bottom: 1em;
}
.footerBox .qrCodeText {
    line-height: 30px;
    text-align: center;
}

.footerNav {
    background: #38b549;
    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;
    }
    .bottomContactBox .ewm{

        float: none;
        margin: 0 0 10px 0;
    }
}

.footerBox .bottomLine{
    padding: .5% 0;
    line-height: 24px;
    color: #e4e4e4;
    background-color: #393939;
}
.footerBox .bottomLine a {
    color: #e4e4e4;
}
.footerBox .bottomLine .webInfo{
    float: left;
}
.footerBox .bottomLine .friendShip{
    float: right;
}
@media (max-width: 768px) {
    .footerBox .bottomLine{
        text-align: center;
    }
    .footerBox .bottomLine .webInfo{
    float: none;
    }
    .footerBox .bottomLine .friendShip{
        float: none;
    }
}