﻿@charset "UTF-8";
:root {
    --theme-color: #398fce;
    --hover-color: #0089d1;
}

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;
    }
body {
    color: #333;
    font-size: 14px;
    font-family: "微软雅黑"; 
}
table {
    border-collapse: collapse;
    border-spacing: 0; }

fieldset, img {
    border: 0; }

ol, ul, li {
    list-style: none; }

caption, th {
    text-align: left; }

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 100%; }

img {
    display: block;
}

input, textarea {
    outline: none;
}

i, strong, em {
    font-style: normal;
}
/* 链接颜色设置*/
a:link {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
    color: inherit;
}

a:active {
    text-decoration: none !important;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--hover-color) !important; }


.colorRed {
    color: red !important; }

  
    .hidden
    {
        display: none;
    }

.floatL{
    float: left;
}
.floatR{
    float: right;
}
.overflowH
{
    overflow: hidden;
    }

.fullW {
    width: 100%;
}

.fullH {
    height: 100%;
}

.fullWAH {
    width: 100%;
    height: 100%;
}

/* 清理浮动 */
.fn-clear:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0; }

.fn-clear {
    zoom: 1;
    /* for IE6 IE7 */ 

}
.font-ellipsis
{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.i_placeholder {
    height: 100%;
    width: 0;
    display: inline-block;
    vertical-align: middle; }

.placeholder:before {
    content: "";
    height: 100%;
    width: 0;
    display: inline-block;
    vertical-align: middle; }

/* 图片自适应（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;
}


/* 图片放大 */

.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);
    }

.bg-line {
    margin-top: 40px;
    margin-bottom: 40px;
}
    .bg-line.first {
        margin-top: 0 !important;
    }
    .wrap {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.main {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 1200px) {

    .main {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .bg-line {
        height: 8px;
        background-color: #f3f3f3;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .main {
        padding-left: 3vw;
        padding-right: 3vw;
    }
}

.m {
    display: none;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }

    .m {
        display: block;
    }
}

.error {
    color: red;
}


/* header */
.header .top-line {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    border-bottom: 1px solid #dcdcdc;
    font-size: 12px;
    color: #424242;
}

.header .logo-container {
    height: 130px;
}

.header .logo-container .logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.header .logo-container .logo a
{
    height: 100%;
    display: grid;
    place-items: center;
}

.header .logo-container .logo img {
    max-height: 100%;
    height: 33%;
}

.logo-container .logo-text {
    margin-left: 10px;
    color: #000;
    font-size: 27px;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
}

.logo-container .logo-text::before {
    content: "";
    border-left: #000 solid 1px;
    height: 24px;
    display: inline-block;
    margin-right: 6px;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
}

.logo-container .request-message {
    height: 100%;
    display: grid;
    place-items: center;
}

.logo-container .request-message form
{
    display: inline-block;
    height: 30px;
}

.logo-container .request-message form input, select
{
    height: 100%;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    display: inline-block;
}

.logo-container .request-message form select
{
    border: 1px solid #e5e5e5;
}

.logo-container .request-message form input[type=text]
{
    margin-left: -5px;
    border: 1px solid #e5e5e5;
}

.logo-container .request-message form input[type=submit]
{
    margin-left: -5px;
    padding: 0px 10px;
    margin-top: 1px;
    background-color: var(--theme-color);
    border: var(--theme-color) solid 1px;
    color: #fff;
    cursor: pointer;
}

.logo-container .request-message .request-message-tips
{
    color: #d0d0d0;
    text-align: right;
    line-height: 30px;
}

.header .nav {
    height: 47px;
    line-height: 47px;
    overflow: hidden;
    background-color: var(--theme-color);
}

.header .nav ul
{
    display: flex;
}

.header .nav ul li
{
    padding-left: 15px;
    padding-right: 15px;
}

.header .nav ul a {
    color: #fff;
    font-size: 18px;
}
        .header .nav a:hover {
            color: #77dcfc !important;
        }
        .header .nav li.action a {
            color: var(--theme-color) !important;
        }

        .header .nav ul li.action {
            background-color: #fff;
        }

@media (max-width: 768px) {
  /*  body:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 30vw;
        background: linear-gradient(to bottom, var(--theme-color), #ffffff);
        z-index: -1;
    }*/

    .header .top-line {
        display: none;
    }

    .header .logo-container .logo img {
        max-height: 100%;
        height: 30%;
    }

    .header .logo-container {
        height: auto;
        background: linear-gradient(to right, #92d0ff, var(--theme-color));
    }

    .logo-container .logo-text {
        font-size: 15px;
    }

    .logo-container .logo-text::before {
        height: 15px;
    }

    .logo-container .request-message {
        display: none;
    }

    .header .logo-container .logo {
    }

            .header .logo-container .logo > a {
                height: 100%;
            }

    .header .nav {
        background-color: transparent;
    }
    .navM-main {
        border-bottom: 1px solid #e7e5e5;
    }
    .nav-m {
        height: 50px;
        line-height: 50px;
    }
        .nav-m li {
            width: auto;
            font-size: 16px;
            color: #888;
            box-sizing: border-box;
        }
        .nav-m li.action {
            color: var(--theme-color);
            border-bottom: 1px solid var(--theme-color);
        }
}

/*当前位置*/

.innerLocation {
    margin-top: 10px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    border-bottom: 1px solid #a0a0a0;
}

.innerLocation a {
    padding: 0 0.5em;
}

@media (max-width: 768px) {
    .innerLocation {
        display: none;
    }

}


/*Footer开始*/
.footer {
    background-color: #555;
    padding-top: 20px;
    padding-bottom: 28px;
    margin-top: 30px;
    color: #fff;
}

        .footer .friend-links {
            min-height: 55px;
            border-width: 1px 0 1px 0;
            margin-top: 20px;
            padding-bottom: 50px;
            margin-bottom: 34px;
            background: url(../Images/footer-bg.png) no-repeat center bottom;
        }

            .footer .friend-links li {
                float: left;
                font-size: 14px;
                line-height: 1;
                padding-left: 20px;
                margin-right: 20px;
                margin-top: 15px;
                border-left: 1px solid #fff;
            }

                .footer .friend-links li:first-child {
                    border: none;
                    padding-left: 0px;
                }

    .footTop {
        /* overflow: hidden; */
        border-bottom: 1px solid #444444;
        padding-bottom: 30px;
    }

    .footLeft {
        float: left;
        width: 230px;
        position: relative;
    }

        .footLeft::after {
            position: absolute;
            content: '';
            right: 0;
            top: 0;
            width: 1px;
            height: 180px;
            background: #434343;
        }

        .footLeft .title {
            font-size: 16px;
            color: #fff;
            margin-bottom: 10px;
        }

            .footLeft .title i {
                font-style: normal;
                font-size: 14px;
                margin-left: 10px;
                color: #f60;
            }

        .footLeft .lxqq {
            font-size: 14px;
            color: #bababa;
            line-height: 26px;
        }

            .footLeft .lxqq p {
                margin-top: 5px;
            }

            .footLeft .lxqq img {
                display: inline-block;
            }

    .footRight {
        overflow: hidden;
        padding-left: 20px;
    }

        .footRight .title {
            font-size: 16px;
            color: #fff;
            margin-bottom: 10px;
            text-align: center;
            margin-bottom: 20px;
        }

        .footRight ul li {
            width: 16%;
            float: left;
        }

            .footRight ul li .ewm {
                width: 110px;
                height: 110px;
                padding: 6px;
                background: #fff;
                margin: 0 auto;
                border: 5px solid #58595b;
            }

                .footRight ul li .ewm img {
                    width: 100%;
                    height: 100%;
                }

    .footer .copyright {
        line-height: 32px;
        font-size: 14px;
        color: #bababa;
        text-align: center;
        padding-top: 15px;
    }

@media (max-width: 768px) {
    .footer {
        padding-top: 15px;
        padding-bottom: 15px;
        margin-top: 30px;
    }
        .footer .copyright {
            line-height: 1.4em;
            font-size: 12px;
            text-align: center;
            padding-top: 0;
        }
}

    /*加载更多样式*/
    .loading, .no-more {
        text-align: center;
        font-size: 14px;
        color: #ddd;
        margin-top: 40px;
    }


    /*内页*/
    .innerBox-l {
        float: none;
        overflow: hidden;
    }