﻿/***********通用基本类1************/

/*格式化样式*/

* {
  margin: 0;
  padding: 0;
}

address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}

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;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #333;
  background: none
}

a:hover {
  color: #b80000;
}

ul,
ol {
  list-style: none;
}

i,
strong,
em,
b {
  font-style: normal;
}

/*结构样式*/

.p10 {
  padding-left: 10px;
  padding-right: 10px;
}

.marginTop {
  margin-top: 3%;
}

@media (max-width: 768px) {
  .marginTop {
    margin-top: 5%;
  }
}
.block {
    display: block;
}

/***********通用基本类2************/
.m {
    display: none;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }

    .m {
        display: block;
    }
}
body {
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Microsoft Yahei', 'simsun', 'arial', 'tahoma';
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.wrap {
    width: 1920px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.main {
    padding: 0 40px;
}

@media (max-width: 768px) {
    .main {
        padding: 0 15px;
    }
}

/* 单行文字超出隐藏 */

.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 {
  display: block;
  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%;
    height: 80px;
    line-height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 22;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

    .header.on {
        background: none;
    }


.header .header_main {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.header .logo {
    font-size: 0;
}

.header .logo {
    height: 100%;
}

    .header .logo img {
        max-height: 90%;
    }

    .header .header_tel {
        line-height: 1.2;
        display: flex;
        align-items: center;
        height: 100%;
    }
    .header .header_tel a {
        display: flex;
        align-items: center;
    }

    .header .header_tel img {
        margin-right: 10px;
    }
        .header .header_tel img.tel1 {
            display: none;
        }
        .header .header_tel img.tel2 {
            display: block;
        }
    .header.on .header_tel img.tel1 {
        display: block;
    }

    .header.on .header_tel img.tel2 {
        display: none;
    }
    .header .header_tel .tel_num i {
        color: #b50a1a;
        font-size: 21px;
        font-weight: bold;
        margin-bottom: 3px;
    }

    .header .header_tel .tel_num span {
        font-size: 20px;
        color: #000;
    }
    .header.on .header_tel .tel_num span {
        color: #fff;
    }
    .header.on .header_tel .tel_num i {
        color: #fff;
    }

.header .header_nav {
    text-align: right;
    height: 100%;
}

    .header .header_nav .item1 {
        display: inline-block;
    }

        .header .header_nav .item1 > li {
            position: relative;
            float: left;
            height: 100%;
            min-width: 4em;
            margin-left: 2em;
            text-align: center;
            font-size: 15px;
        }

            .header .header_nav .item1 > li > a {
                position: relative;
                display: block;
                color: #000;
            }
    .header.on .header_nav .item1 > li > a {
        color: #fff;
    }

                .header .header_nav .item1 > li > a:before {
                    content: "";
                    display: block;
                    height: 3px;
                    background-color: #e60019;
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    right: 50%;
                    -webkit-transition-property: left, right;
                    transition-property: left, right;
                    -webkit-transition-duration: 0.3s;
                    transition-duration: 0.3s;
                }

            .header .header_nav .item1 > li:hover > a:before,
            .header .header_nav .item1 > li.on > a:before {
                left: 0;
                right: 0;
            }

    .header .header_nav .item2 {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        z-index: 2;
        font-size: 14px;
        line-height: 3em;
        padding: 0 0.5em;
        text-align: center;
        min-width: 100%;
        background-color: #fff;
        border: 1px solid #e0e0e0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .header .header_nav .item1 > li:hover .item2 {
        display: block;
    }
/*
  头部导航按钮
*/

.header .icoBtn {
    margin-left: 15px;
    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) {
    body {
        padding-top: 80px;
    }
    .header .header_nav {
        display: none;
    }

    
    .header .icoBtn {
        display: block;
    }

}

@media (max-width: 992px) {
 
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    .header {
        height: 60px;
        line-height: 60px;
        background-color: #fff !important;
    }
        .header .header_tel .tel_num i {
            font-size: 15px;
        }
        .header .header_tel .tel_num span {
            font-size: 13px;
        }
        .header .header_tel img{
            width: 26px;
            margin-right: 5px;
        }
        .header.on .header_tel .tel_num i {
            color: #b50a1a !important;
        }
        .header.on .header_tel .tel_num span {
            color: #000 !important;
        }
        .header .header_tel img.tel1 {
            display: none !important;
        }
        .header .header_tel img.tel2 {
            display: block !important;
        }
        .header .header_tel .tel_num i {
            margin-bottom: 0;
        }
}
@media (max-width: 500px) {
    .header .logo img {
        max-height: 80%;
    }
    .header .header_tel .tel_num i {
        font-size: 13px;
    }
    .header .header_tel .tel_num span {
        font-size: 12px;
    }
}
    /* 移动端侧导航 */

    .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 {
        padding: 3% 0;
        color: #fff;
        margin-top: 4%;
        background-color: #b50a1a;
    }

        .footer a {
            color: #fff;
        }

        .footer .fl {
            float: left;
        }

        .footer .info {
            float: right;
        }

        .footer .nav {
            float: left;
        }

            .footer .nav.code .ccc {
                float: left;
                width: 110px;
                margin-right: 10px;
                text-align: center;
            }

                .footer .nav.code .ccc img {
                    width: 100%;
                    height: 100%;
                    border: 2px solid #fff;
                    box-sizing: border-box;
                }

                .footer .nav.code .ccc span {
                    width: 100%;
                    height: 100%;
                }

            .footer .nav .item1 > li {
                position: relative;
                font-size: 18px;
                float: left;
                margin-right: 45px;
            }

            .footer .nav.code .item1 > li:last-child {
                margin-right: 0 !important;
            }

            .footer .nav .item2 {
                padding-top: 30px;
            }

                .footer .nav .item2.column-count {
                    column-count: 2;
                }

                .footer .nav .item2 li {
                    margin-top: 1em;
                    font-size: 14px;
                    text-align: left;
                }

                    .footer .nav .item2 li:first-child {
                        margin-top: 0;
                    }

                    .footer .nav .item2 li a {
                        color: rgba(255, 255, 255, .5);
                    }

        .footer .info {
            text-align: right;
        }

            .footer .info .hotTel {
                font-size: 16px;
            }

            .footer .info .hotNum {
                font-size: 42px;
                margin-bottom: 0.5em;
                font-weight: bold;
            }

                .footer .info .hotNum a {
                    color: #fff;
                }

            .footer .info .icon {
                display: flex;
                justify-content: end;
            }

                .footer .info .icon .f-logo {
                    width: 200px;
                }

                .footer .info .icon a {
                    margin-left: 25px;
                    position: relative;
                    text-align: center;
                    transition: 0.6s;
                }

                    .footer .info .icon a .mi {
                        width: 24px;
                        border-radius: 50%;
                        background-color: rgba(255, 255, 255, 0.5);
                        padding: 10px;
                    }

                    .footer .info .icon a span {
                        margin-top: 15px;
                        display: block;
                    }

                    .footer .info .icon a:hover .mi {
                        background-color: #2b884c;
                    }

                        .footer .info .icon a:hover .mi.hei {
                            background-color: #000;
                        }

                    .footer .info .icon a .i {
                        position: absolute;
                        width: 100px;
                        height: 100px;
                        bottom: 100%;
                        left: 50%;
                        margin-left: -50px;
                        margin-bottom: 4px;
                        display: none;
                        transition: 0.4s;
                    }

                        .footer .info .icon a .i img {
                            width: 100%;
                            height: 100%;
                        }

                    .footer .info .icon a:hover {
                        transform: translateY(-10px);
                    }

                        .footer .info .icon a:hover .i {
                            display: block;
                        }

        .footer .companyInfo {
            margin-bottom: -3%;
            margin-top: 10px;
            color: rgba(255,255,255,0.3);
            border-top: 1px solid rgba(255,255,255,0.3);
            padding: 1.5em 0;
            background-color: #880914;
        }

            .footer .companyInfo a {
                color: rgba(255,255,255,0.3);
            }

            .footer .companyInfo span {
                margin-right: 0.5em;
            }

    @media (max-width: 1280px) {
        .footer .nav .item1 > li {
            font-size: 16px;
            margin-right: 30px;
        }

        .footer .info .hotNum {
            font-size: 30px;
        }
    }

    @media (max-width: 1060px) {
        .footer .nav .item1 > li {
            font-size: 14px;
            margin-right: 15px;
        }

        .footer .nav .item2 li {
            font-size: 12px;
        }

        .footer .info .hotNum {
            font-size: 22px;
        }

        .footer .nav.code .ccc {
            width: 70px;
        }
    }

    @media (max-width: 768px) {
        .footer .info .icon .f-logo {
            width: 150px;
        }

        .footer .fl {
            margin-top: 30px;
        }

        .footer .info {
            float: none;
        }

        .footer .companyInfo span {
            display: block;
            text-align: center;
            font-size: 12px;
            margin-right: 0;
        }

        .footer .info .il {
            float: left;
            text-align: left;
        }

        .footer .info .hotTel {
            font-size: 14px;
            margin-top: 10px;
        }

        .footer .info .hotNum {
            font-size: 20px;
        }

        .footer .info .icon {
            margin-top: 5px;
            float: right;
        }

            .footer .info .icon a {
                margin-left: 10px;
            }

                .footer .info .icon a .mi {
                    width: 18px;
                }

                .footer .info .icon a span {
                    margin-top: 4px;
                }

        .footer {
            border-top: 1px solid #fff;
            padding-top: 40px;
        }

            .footer .fl {
                float: none;
                padding: 15px;
                background-color: #9b1924;
                border-top: 1px solid rgba(255, 255, 255, 0.3);
            }

            .footer .nav {
                float: none;
            }

            .footer .companyInfo {
                margin-top: 0;
            }

            .footer .nav .item1 > li {
                margin-right: 0;
            }

            .footer .fl .nav > ul {
                display: flex;
                justify-content: space-between;
            }
    }




    .swiper-button-prev,
    .swiper-button-next {
        line-height: 40px;
        width: auto;
        color: #fff;
        font-weight: bold;
        padding: 0 10px;
        background: none;
    }

        .swiper-button-prev:before,
        .swiper-button-prev:after,
        .swiper-button-next:before,
        .swiper-button-next:after {
            content: '';
            position: absolute;
            width: 2px;
            height: 50%;
            background: #fff;
            transition: all 0.5s;
        }

        .swiper-button-prev:before,
        .swiper-button-prev:after {
            left: 0;
        }

        .swiper-button-next:before,
        .swiper-button-next:after {
            right: 0;
        }

        .swiper-button-prev:before,
        .swiper-button-next:before {
            top: 0;
        }

        .swiper-button-prev:after,
        .swiper-button-next:after {
            bottom: 0;
        }

        .swiper-button-next:hover:before {
            -webkit-transform: rotate(-45deg);
            top: 4px;
        }

        .swiper-button-next:hover:after {
            -webkit-transform: rotate(45deg);
            bottom: 4px;
        }

        .swiper-button-prev:hover:before {
            -webkit-transform: rotate(45deg);
            top: 4px;
        }

        .swiper-button-prev:hover:after {
            -webkit-transform: rotate(-45deg);
            bottom: 4px;
        }

    @media (max-width: 768px) {
        .swiper-button-prev,
        .swiper-button-next {
            display: none;
        }
    }

    .fApp {
        text-align: center;
        margin-top: 30px;
    }

        .fApp ul {
            display: flex;
            justify-content: center;
        }

        .fApp .fat {
            font-size: 15px;
            color: #fff;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .fApp li {
            width: 110px;
            margin: 0 15px;
        }

            .fApp li img {
                width: 100%;
                border: 2px solid #fff;
                box-sizing: border-box;
            }

    .friendsLinks_content {
        color: rgba(255, 255, 255, .5);
        margin-top: 4%;
    }

        .friendsLinks_content .main {
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }


        .friendsLinks_content a {
            font-size: 14px;
            color: rgba(255, 255, 255, .5);
            margin-right: 1.5em;
        }

    @media (max-width: 768px) {
        .friendsLinks_content {
            display: none;
        }

            .friendsLinks_content .main {
                padding: 15px 15px;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
            }

            .friendsLinks_content span,
            .friendsLinks_content a {
                font-size: 10px;
            }
    }


    /* lignhtBox */

    #wrap {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate3d(-50%, -50%, 0);
        -ms-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 end*/

    .goTop {
        position: fixed;
        bottom: 10%;
        right: 0;
        width: 3.6em;
        height: 3.6em;
        border-radius: 50%;
        background: #c9c9c9 url('../Images/go-top.png') no-repeat center center / 60% 60%;
        z-index: 34;
        opacity: 0.8;
    }

        .goTop img {
            width: 100%;
            height: 100%;
        }

        .goTop:hover {
            background-color: #b80000;
            opacity: 1;
        }


    .goBack {
        position: fixed;
        bottom: 10%;
        transform: translateY(-5em);
        right: 0;
        width: 3.6em;
        height: 3.6em;
        border-radius: 50%;
        background: #c9c9c9 url('../Images/back.png') no-repeat center center / 60% 60%;
        z-index: 34;
    }

        .goBack img {
            width: 100%;
            height: 100%;
        }