/* 滚动条 */
:root{
    --color01: #0984D4;
    --color02: #3FE12B;
}
body {
    overflow-x: hidden;
    width: 100%;
    overflow-y: auto;
}

body::-webkit-scrollbar {
    width: 8px;
    background-color: #ffffff;
}

body::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #515769;
    border: 2px solid #eff1f5
}

body.hides,
html.on {
    overflow: hidden;
}

.header .hide,
html.on {
    overflow: hidden;
}

img {
    max-width: 100%;
}


/* header */
.header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .2);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header:hover {
    background: #ffffff;
}

.header:hover .headTab .Tabwidth .flextab .naver>ul>li {
    color: #333333;
}

.header:hover .headTab .Tabwidth .flextab .tool a {
    color: #333333;
}

.header:hover .headTab .Tabwidth .flextab .tool {
    border-left: 1px solid #333333;
}

.header .headTab {
    width: 100%;
    line-height: 100px;
}


.header .headTab .icon {
    width: 22px;
    height: 22px;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.header .headTab img {
    max-width: 100%;
    vertical-align: middle;
}

.header .headTab .Tabwidth {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

.header .headTab .Tabwidth .flextab {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .headTab .Tabwidth .flextab .logoimg {
    width: 290px;
    transition: all ease .3s;
}

#mMain {
    overflow: visible !important;
}


/* 动画 */
.alltime,
.alltime * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 996px) {
    .logo-left h1 {
        font-size: 18px;
        color: #fff;
        margin-top: 0px;
        display: inline-block;
    }
}

.logo-left>.logo {
    /* float: left; */
    vertical-align: middle;
    margin-right: 15px;
    position: relative;
    width: 100%;
    height: 86px;
    transition: height 0.3s ease-in-out;
    display: block;
}

.logo-left>.logo img {
    position: absolute;
    top: 50%;
    left: 0;
    width: auto;
    height: 100%;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.3s ease-in-out;
}

.logo-left>.logo img:nth-child(1) {
    opacity: 0;
}

.logo-left>.logo img:nth-child(2) {
    opacity: 1;
}

.fixed .logo-left>.logo {
    height: 50px;
}

.header:hover .logo-left>.logo img:nth-child(1),
.fixed .logo-left>.logo img:nth-child(1),
.page .logo-left>.logo img:nth-child(1) {
    opacity: 1;
}

.header:hover .logo-left>.logo img:nth-child(2),
.fixed .logo-left>.logo img:nth-child(2),
.page .logo-left>.logo img:nth-child(2) {
    opacity: 0;
}

.header .headTab .Tabwidth .flextab .naver {
    margin-left: auto;
    padding: 0;
    height: 100%;
    /* flex: 1; */
    display: inline-flex;
    justify-content: right;
}

.header .headTab .Tabwidth .flextab .naver>ul {
    display: flex;
    flex-wrap: wrap;
    /* width: 100%; */
    justify-content: flex-end;
}

.header .headTab .Tabwidth .flextab .naver>ul>li {
    list-style: none;
    /* width: 11%; */
    padding: 0;
    color: #fff;
    height: 100%;
    position: relative;
    text-align: center;
}

.header .headTab .Tabwidth .flextab .naver>ul>li.active>a {
    color: #0984d4;
}

.header .headTab .Tabwidth .flextab .naver>ul>li>a {
    font-size: 18px;
    padding: 0 20px;
    text-decoration: none;
    color: inherit;
    position: relative;
    display: inline-block;
    transition: all ease .3s;
}

.header .headTab .Tabwidth .flextab .naver>ul>li>a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0984d4;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.header .headTab .Tabwidth .flextab .naver>ul>li.active>a::before,
.header .headTab .Tabwidth .flextab .naver>ul>li:hover>a::before {
    width: 100%;
    height: 2px;
    background-color: #0984d4;
    opacity: 1;
}

.header .headTab .Tabwidth .flextab .naver>ul>li:hover>a {
    color: #0984d4;
}

.header .headTab .Tabwidth .flextab .naver .menu {
    z-index: 10;
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.12);
    background: rgba(238, 238, 238, 0.85);
    padding-top: 1px;
    border-bottom: none;
    margin-top: 30px;
    max-height: none;
    overflow: visible;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.header .headTab .Tabwidth .flextab .naver .menu ul {
    min-height: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

.header .headTab .Tabwidth .flextab .naver .menu li {
    list-style: none;
    position: relative;
}

.header .headTab .Tabwidth .flextab .naver .menu li a {
    position: relative;
    display: block;
    line-height: 40px;
    padding: 0px 15px;
    color: #000;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    text-decoration: none;
}

.header .headTab .Tabwidth .flextab .naver .menu li a:hover {
    color: #0984d4;
}

.header .headTab .Tabwidth .flextab .naver>ul>li:hover .menu {
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
}

.header .headTab .Tabwidth .flextab .naver .menu>ul>li:hover .Menu_box {
    display: block;
}

.header .headTab .Tabwidth .flextab .naver .menu li .Menu_box {
    display: none;
    position: absolute;
    left: 100%;
    z-index: 10;
    top: 0;
}

.header .headTab .Tabwidth .flextab .tool {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding-left: 15px;
    border-left: 1px solid #ffffff;
}

.header .headTab .Tabwidth .flextab .tool a {
    padding: 0 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.header .headTab .Tabwidth .flextab .tool .tool_inquiry_btn {
    margin-left: 17px;
    display: none;
}

.header .headTab .Tabwidth .flextab .tool .tool_inquiry_btn button {
    background-color: #fcbc03;
    border: 1px solid #00000000;
    padding: 9px 32px;
    border-radius: 25px;
    color: #000000;
    font-size: 14px;
    cursor: pointer;
}

.header .headTab .Tabwidth .flextab .tool .tool_inquiry_btn button:hover {
    background-color: #dc331c;
    border: 1px solid #00000000;
    color: #fff;
}

.header .headTab .Tabwidth .flextab .tool .tool-phone {
    display: none;
}

.header .headTab .Tabwidth .flextab .tool .tool-phone a {
    padding-left: 40px;
    padding-right: 0;
    margin-left: 15px;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    background: url(image/phone.png) no-repeat left center;
}

/* 搜索弹出层 */
.header .default_search_box {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    left: 0;
    top: 0;
    z-index: 99;
}

.header .default_search_box .form {
    width: 50%;
    max-width: 500px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.header .default_search_box .form .text {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 0;
    border-bottom: 1px solid #fff;
    padding-right: 35px;
    color: #fff;
    background: none;
    outline: none;
    text-indent: 10px;
    box-sizing: border-box;
}

.header .default_search_box .button {
    width: 35px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    cursor: pointer;
    border: 0;
    outline: none;
}

.header .default_search_box .button>svg {
    fill: #fff;
}

.header .default_search_box .form>svg {
    width: 30px;
    height: 30px;
    position: absolute;
    right: -60px;
    top: -60px;
    fill: #ffffff;
    cursor: pointer;
}

/* 语言弹出框 */
.header .div_mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgb(0, 0, 0);
    opacity: 0.6;
    z-index: 90;
    display: none;
}

.header .default_language_box {
    display: none;
    width: 95%;
    max-width: 960px;
    background: #fff;
    position: fixed;
    top: 50%;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 99;
    border-radius: 8px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    transform: translate(0, -50%);
}

.header .default_language_box .language_box h4 {
    height: 55px;
    line-height: 55px;
    text-align: left;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
}

.header .default_language_box .language_box h4>svg {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 12px;
    fill: #555;
    cursor: pointer;
}

.header .default_language_box .language_box .language_list {
    padding: 30px 30px 45px 30px;
    box-sizing: border-box;
}

.header .default_language_box .language_box h4 span {
    font-size: 18px;
    color: #555;
    text-align: left;
    padding-left: 30px;
}

.header .language_box .language_list .flex-land {
    display: flex;
    flex-wrap: wrap;
}

.header .language_box .language_list .flex-land a {
    display: block;
    width: 24%;
    height: 50px;
    line-height: 50px;
    margin-right: 1%;
    color: #333;
    margin-bottom: 15px;
    padding: 0 15px;
    background: #f5f5f5;
    font-size: 14px;
    text-align: left;
    box-sizing: border-box;
    border-radius: 3px;
    float: left;
    overflow: hidden;
    text-decoration: none;
}

.header .language_box .language_list .language_war {
    max-height: 200px;
    overflow: auto;
}

.header .language_box .language_list .flex-land a.current {
    background: #dedede;
}

.header .language_box .language_list .flex-land a:hover {
    background: #dedede;
}

/* 留言弹出层 */
.header .global_inquiry_alert {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, .6);
    z-index: 99;
    display: none;
}

.header .alert_box {
    max-width: 675px;
    max-height: 80vh;
    background-color: #f4f4f8;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    z-index: 10001;
    opacity: 1;
    transition: all 0.3s;
}

.header .alert_box .close {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    transform: rotate(45deg);
}

.header .alert_box .close::before {
    content: '';
    width: 26px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #343434;
}

.header .alert_box .close::after {
    content: '';
    width: 2px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #343434;
}

.header .inquiry_container {
    height: 100%;
    overflow: auto;
}

.header .inquiry_container .top {
    background-color: #fff;
    padding: 50px 40px 40px 40px;
    text-align: center;
}

.header .inquiry_container .top .title {
    font-size: 36px;
    color: #000;
}

.header .inquiry_container .top .brief {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-top: 10px;
}

.header .inquiry_container .bottom {
    padding: 30px 40px 40px 40px;
}

.header .global_inquiry_form .inquiry_rows {
    margin-top: 25px;
}

.header .global_inquiry_form .inquiry_rows>label {
    padding-left: 3px;
    font-size: 14px;
    color: #1a1d22;
    margin-bottom: 6px;
    display: block;
}

.header .global_inquiry_form .input_txt {
    width: 100%;
    background-color: #fff;
    border: 0;
    box-sizing: border-box;
    height: 66px;
    line-height: 66px;
    outline: none;
    border-radius: 8px;
    padding: 0 20px;
}

.header .global_inquiry_form .textarea_txt {
    width: 100%;
    background-color: #fff;
    border: 0;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 20px;
    resize: none;
    height: 180px;
    outline: none;
}

.header .global_inquiry_alert .bottom .inquiry_submit {
    width: 100%;
    background-color: #1a1d22;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 22px 20px;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
}

.header .global_inquiry_alert .inquiry_container::-webkit-scrollbar {
    width: 5px;
    background: #fff;
    border-radius: 5px;
}

.header .global_inquiry_alert .inquiry_container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.header .tool_menu {
    display: none;
}




/* 移动端弹出栏目 */
.header .nav_side_menu {
    width: 75%;
    max-width: 400px;
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 10020;
    -webkit-transform: -webkit-translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .4s;
    transition: all .4s;
    visibility: hidden;
}

.header .nav_side_menu.active {
    -webkit-transform: -webkit-translateX(0);
    transform: translateX(0);
    visibility: visible;
}

.header .nav_side_menu .menu_list {
    padding: 10px;
}

.header .nav_side_menu .menu_list .item_hr {
    border-color: #ddd;
    height: 38px;
    line-height: 38px;
    overflow: hidden;
}

.header .nav_side_menu .menu_list .item_hr a {
    display: block;
    overflow: hidden;
    margin-left: 0.3125rem;
    font-size: 14px;
    color: #5f5f5f;
    text-decoration: none;
}

.header .nav_side_menu .menu_list .item_hr .item_icon {
    display: none;
}

.header .nav_side_menu .menu_list .item_hr.son>.item_icon {
    display: block;
}

.header .nav_side_menu .menu_list .item_hr.son {
    position: relative;
}

.header .nav_side_menu .menu_list .item_hr.son>a {
    display: inline-block;
    width: 83%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header .nav_side_menu .menu_list .item_hr.son .item_icon {
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    color: #666;
    cursor: pointer;
}

.header .menu_divide {
    height: 8px;
    background-color: #eee
}

.header .menu_lange {
    padding: 0 10px;
}

.header .clearboth {
    width: 100%;
    display: none;
}

.header .category_side {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 10020;
    -webkit-transform: -webkit-translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .4s;
    transition: all .4s;
    visibility: hidden;
}

.header .category_side.active {
    -webkit-transform: -webkit-translateX(0);
    transform: translateX(0);
    visibility: visible;
}

.header .category_side .return_pop a {
    background-color: #f0f0f0;
    height: 55px;
    line-height: 55px;
    margin: 0 !important;
    padding: 0 10px;
    display: flex !important;
    align-items: center;
}

.header .category_side .return_pop a span {
    display: inline-block;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header .m_inquiry {
    display: none;
}

.header .tool_inquiry_btn.m_inquiry {
    width: 65px;
    height: 55px;
    color: #fff;
    background: #fcbc03;
    text-align: center;
    line-height: 50px;
    position: fixed;
    bottom: 70px;
    right: 15px;
    border-radius: 6px;
    z-index: 10;
    cursor: pointer;
}

.header .tool_inquiry_btn.m_inquiry .icon {
    vertical-align: middle;
}

.header .tool_inquiry_btn .m_inquiry_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.header .tool_inquiry_btn .m_inquiry_flex p {
    display: block;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
}

.header .nav_side_menu>.menu_list:nth-of-type(1) {
    overflow: auto;
    max-height: calc(100vh - 70px);
}

.header .category_side .pop_up_con>.menu_list {
    overflow: auto;
    max-height: calc(100vh - 70px);
}

@media (max-width:1330px) {
    .header .headTab .Tabwidth .flextab .naver {
        padding-right: 10px;
    }

    .header .headTab .Tabwidth .flextab .naver>ul>li {
        width: auto;
    }

}

@media (max-width:1200px) {
    .header .headTab .Tabwidth .flextab .naver>ul>li>a {
        font-size: 16px;
        padding: 0 10px;
    }


}

@media (max-width:1050px) {
    .header .headTab .Tabwidth .flextab .naver>ul>li>a {
        padding: 0 12px;
    }
}

@media (max-width:995px) {
    .header {
        background-color: #fff;
        box-shadow: 0px 1px 10px #bab9b9;
    }

    .header .headTab .Tabwidth .flextab .tool {
        border: none !important;
    }

    .header {
        height: 60px;
    }

    .header .headTab {
        line-height: normal;
    }

    .header .headTab .Tabwidth .flextab .tool {
        flex-direction: row;
    }

    .header .headTab .Tabwidth .flextab .tool .tool_inquiry_btn {
        display: none;
    }

    .header .headTab .Tabwidth .flextab .naver {
        display: none;
    }

    .header .headTab .Tabwidth {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .header .clearboth {
        display: block;
        height: 60px;
    }

    .header .default_search_box .form {
        width: 70%;
    }

    .header .default_search_box .form>svg {
        right: -34px;
        top: -34px;
    }

    .header .tool-language {
        display: none;
    }

    .header .headTab .icon {
        vertical-align: middle;
    }

    .header .tool_menu {
        display: block;
        margin-left: 15px;
    }

    .header .headTab .Tabwidth .flextab {
        height: 60px;
    }

    .header .headTab .Tabwidth .flextab .tool a {
        padding: 0;
        color: #333
    }

    .header .headTab .Tabwidth .flextab .logoimg {
        width: 150px;
        padding: 0;
    }

    .logo-left>.logo {
        height: 50px;
    }

    .logo-left>.logo img:nth-child(1) {
        opacity: 1;
    }

    .logo-left>.logo img:nth-child(2) {
        opacity: 0;
    }

    /**/
    .header .alert_box {
        max-width: none;
        width: 95%;
    }

    .header .inquiry_container .top {
        padding: 20px 15px;
    }

    .header .inquiry_container .top .title {
        font-size: 25px;
    }

    .header .inquiry_container .bottom {
        padding: 10px 20px 30px 20px;
    }

    .header .global_inquiry_form .input_txt {
        height: 45px;
        line-height: 45px;
        border-radius: 5px;
        padding: 0 10px;
    }

    .header .alert_box .close {
        width: 40px;
        height: 40px;
    }

    .header .alert_box .close::before {
        width: 20px;
    }

    .header .alert_box .close::after {
        height: 20px;
    }

    .header .global_inquiry_form .textarea_txt {
        height: 100px;
        padding: 10px;
        border-radius: 5px;
    }

    .header .inquiry_container {
        height: 100%;
    }

    .header .global_inquiry_alert .bottom .inquiry_submit {
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 5px;
    }
}


.fixed .header {
    height: 60px;
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
}

.page .header {
    background-color: #fff;
}

.fixed .headTab {
    line-height: 60px;
}

.fixed .headTab .Tabwidth .flextab .naver>ul>li,
.page .headTab .Tabwidth .flextab .naver>ul>li {
    color: #333333;
}

.fixed .headTab .Tabwidth .flextab .tool a,
.page .headTab .Tabwidth .flextab .tool a {
    color: #333333;
}

.fixed .headTab .Tabwidth .flextab .tool,
.page .headTab .Tabwidth .flextab .tool {
    border-left: 1px solid #333333;
}

@media(max-width:995px) {
    .fixed .headTab .Tabwidth .flextab .tool {
        border-left: none;
    }
}

/*页眉*/
.topageimg img:last-of-type {
    display: none;
}

.topageimg {
    position: relative;
    margin-top: 100px;
}

.topageimg.on {
    margin-top: 60px;
}

.topageimg,
.topageimg * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.topageimg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ban_title {
    width: 100%;
    position: absolute;
    top: 34%;
    z-index: 15;
}

.ban_title .ibox {
    max-width: 1600px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    box-sizing: border-box;
}

.ban_title .line {
    width: 33px;
    height: 4px;
    background-color: #0984d4;
}

.ban_title .ch {
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    margin: 30px 0 15px 0;
    position: relative;
}

.ban_title .en {
    color: #fff;
    font-size: 20px;
}

.topageimg::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 10%);
    z-index: 11;
}

@media (max-width: 1030px) {
    .ban_title {
        width: 100%;
        position: absolute;
        top: 32%;
    }

    .ban_title .ch {
        font-size: 34px;
    }

    .ban_title .en {
        font-size: 16px;
    }
}

@media(max-width:960px) {
    .topageimg {
        margin-top: 60px;
    }
}

@media(max-width:768px) {
    .ban_title .ch {
        font-size: 28px;
    }

    .ban_title .en {
        font-size: 14px;
    }

    .topageimg img:first-of-type {
        display: none;
    }

    .topageimg img:last-of-type {
        display: block;
    }
}

/* banner */
.banner .carousel-inner>.item>a>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .pc-slide {
    position: relative;
    z-index: 2;
    padding: 0;
}
.banner .pc-slide .swiper-slide img{
    width: 100%;
}
.banner .carousel-indicators li {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    padding: 5px;
    position: relative;
    background: #ffffff;
    border: none;
}

.banner .carousel-indicators .active {
    background: #0984d4;
}

.banner .carousel-control .btn-left {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(../image/prev.png) no-repeat center;
    background-size: 10px;
}

.banner .carousel-control .btn-right {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(../image/next.png) no-repeat center;
    background-size: 10px;
}

.banner .carousel-control {
    width: 45px;
    height: 45px;
    border-radius: 30px;
    top: 47%;
    margin: 0 20px;
    background: #0984d4;
    -webkit-transition: width 0.3s, background-color 0.3s;
    transition: width 0.3s, background-color 0.3s;
    text-shadow: none;
    opacity: 1;
    z-index: 2;
}


.banner .carousel-control.right {
    background-image: none;
    text-align: right;
}

.banner .carousel-control.left {
    background-image: none;
    text-align: left;
}

.banner .carousel-control h3 {
    position: absolute;
    top: 0;
    margin: 0;
    color: #000;
    font-weight: normal;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 16px;
    line-height: 62px;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    color: #2ad204;
}

.banner .carousel-control.left h3 {
    right: 20px;
}

.banner .carousel-control.right h3 {
    left: 20px;
}

.banner .carousel:hover .carousel-control {
    display: block;
}

.banner .carousel-inner>.item {
    z-index: -1;
}

@media(max-width:960px) {
    .banner {
        margin-top: 60px;
    }
}

@media (max-width:765px) {
    .banner .m-control {
        width: 36px !important;
        height: 36px !important;
        display: none !important;
    }

    .banner .m-control h3 {
        display: none;
    }

    .banner .m-control span {
        position: absolute;
        top: 0;
        left: 0;
    }
}

.Hbanner .carousel-indicators,
.Hmbanner .carousel-indicators{
    margin: 0;
}

/* 首页关于我们 */
.about {
    width: 100%;
    background: url(../image/index_7.png) center no-repeat;
    background-size: cover;
    position: relative;
}

.about .ibox {
    max-width: 1600px;
    width: 85%;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    box-sizing: border-box;
}

.about .ibox {
    padding: 100px 0 120px 0;
}

.about .ibox .about_text {
    width: 54%;
}

.about .ibox .about_text .title {
    font-size: 56px;
}

.about .ibox .text {
    width: 100%;
    margin: 83px 0 110px 0;
}

.about .ibox .text .d_text {
    color: #0984d4;
    line-height: 1.5;
    font-size: 36px;
}

.about .ibox .text .c_text {
    color: #333;
    line-height: 2;
    margin-top: 15px;
    padding-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    font-size: 16px;
}

.about .ibox .three_text {
    display: flex;
    margin-bottom: 145px;
}

.about .ibox .three_text .three:nth-child(2) {
    width: 30%;
}

.about .ibox .three_text .three {
    margin-right: 125px;
}

.about .ibox .three_text .three:last-child {
    margin-right: 0;
}

.about .ibox .three_text .three .up {
    display: flex;
    align-items: flex-end;
}

.about .ibox .three_text .three .up .num {
    color: #0984d4;
    font-size: 60px;
    font-family: Impact;
}

.about .ibox .three_text .three .up .jia {
    color: #333;
    transform: translateY(-4px);
    margin-left: 15px;
    font-weight: bold;
}

.about .ibox .three_text .three:first-child .up .jia {
    transform: translateY(-6px);
    font-weight: normal;
}

.about .ibox .three_text .three .down {
    color: #333;
    margin-top: 15px;
    font-size: 16px;
}

.about .right_img {
    width: 45%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.about .right_img img {
    height: 100%;
    object-fit: cover;
}

.about .right_img_fp {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
}

.about .right_img_fp:hover {
    transform: translate(-50%, -50%) scale(0.8);
}

.about .more2 {
    display: block;
    width: 74px;
    height: 74px;
}

.about .more2 .s_img {
    width: 100%;
    height: 100%;
    position: relative;
}

.about .more2 .s_img img {
    position: absolute;
    top: 0;
    left: 0;
}

.about .more2 .s_img img:last-child {
    opacity: 0;
}

.about .more2:hover .s_img img:first-child {
    opacity: 0;
}

.about .more2:hover .s_img img:last-child {
    opacity: 1;
}

.about,
.about * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width:1250px) {
    .about .ibox {
        padding: 80px 0 80px 0;
    }

    .about .ibox .three_text .three {
        margin-right: 75px;
    }

    .about .ibox .three_text {
        margin-bottom: 80px;
    }
}

@media (max-width:995px) {
    .about .ibox {
        padding: 60px 0;
    }

    .about .ibox .about_text .title {
        font-size: 36px;
    }

    .about .ibox .text {
        margin: 30px 0 45px 0;
    }

    .about .ibox .text .d_text {
        font-size: 28px;
    }

    .about .ibox .text .c_text {
        font-size: 14px;
    }

    .about .ibox .three_text {
        margin-bottom: 40px;
    }

    .about .ibox .three_text .three .up .num {
        font-size: 38px;
    }
}

@media (max-width:768px) {
    .about .ibox {
        padding: 30px 15px;
        margin: 0;
        width: 100%;
    }

    .about .right_img {
        display: none;
    }

    .about .right_img_fp {
        display: none;
    }

    .about .ibox .about_text {
        width: 100%;
    }

    .about .ibox .about_text .title {
        font-size: 30px;
    }

    .about .ibox .text .d_text {
        font-size: 20px;
    }

    .about .ibox .text {
        margin: 20px 0 25px 0;
    }

    .about .ibox .three_text {
        margin-bottom: 5px;
        display: flex;
        flex-wrap: wrap;
    }

    .about .ibox .three_text .three:nth-child(2) {
        width: 50%;
    }

    .about .ibox .three_text .three {
        margin-right: 0px;
        width: 50%;
        margin-bottom: 15px;
    }

    .about .ibox .three_text .three .up .num {
        font-size: 30px;
    }

    .about .more2 {
        width: 36px;
        height: 36px;
    }

    .about .ibox .text .c_text {
        height: auto;
        padding: 0;
    }
}

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 1000;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}

.z_tanchuang .tbox .modal {
    background: white;
    padding: 50px;
    display: block;
    border-radius: 5px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    margin: 0 auto;
    overflow: visible;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.z_tanchuang .tbox .modal .out {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff url(image/out.png) center no-repeat;
    background-size: 30px;
    color: #000;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    top: 0;
    right: -50px;
    cursor: pointer;
}

/* 弹窗选中 */
.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */
@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

/* 产品 */
.ldcp {
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.ldcp,
.ldcp * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ldcp .six_img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.ldcp .swiper13 {
    display: none;
}

.ldcp .six_img .six {
    width: 15%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.ldcp .six_img .six .bg_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.ldcp .six_img .six .bg_img img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ldcp .six_img .six .six_box {
    width: 101%;
    height: 100%;
    background-color: #f8f8f8;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    transform: translateX(-1px);
    padding: 206px 0 85px 0;
}

.ldcp .six_img .six:nth-child(2n) .six_box {
    background-color: #e5e5eb;
}

.ldcp .six_img .six .six_box .cp_img {
    max-width: 100%;
    width: 35%;
    height: 5vw;
}

.ldcp .six_img .six .six_box .cp_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ldcp .six_img .six .six_box .down {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.ldcp .six_img .six .six_box .down .two_img {
    width: 54px;
    height: 54px;
    position: relative;
    margin-bottom: 50px;
}

.ldcp .six_img .six .six_box .down .two_img img {
    position: absolute;
    top: 0;
    left: 0;
}

.ldcp .swiper13 .s13_box .down .d_text {
    font-size: 18px;
}

.ldcp .six_img .six .six_box .down .two_img img:last-child {
    opacity: 0;
}

.ldcp .six_img .six.act .six_box .down .two_img img:last-child {
    opacity: 1;
}

.ldcp .six_img .six.act .six_box .down .two_img img:first-child {
    opacity: 0;
}

.ldcp .six_img .six.act .six_box .down .d_text {
    color: rgba(51, 51, 51, .7);
}

.ldcp .six_box .down .d_text {
    font-size: 24px;
}

.ldcp .six_img .six.act {
    width: 25%;
    text-decoration: none;
}

.ldcp .six_img .six.act .six_box {
    background-color: transparent;
}

.ldcp .six_img .six.act .six_box .cp_img {
    opacity: 0;
}

.ldcp .six_img .six.act .six_box .down .d_text {
    color: rgba(255, 255, 255, 0.7);
}

.ldcp .swiper-pagination-bullet-active {
    background: #0984d4;
}

.ldcp .swiper-pagination {
    bottom: 0;
}

@media (max-width: 1680px) {
    .ldcp .six_img .six .six_box {
        padding: 170px 0 70px 0;
    }
}

@media (max-width: 1440px) {
    .ldcp .six_img .six .six_box {
        padding: 120px 0 85px 0;
    }
}

@media (max-width: 1366px) {
    .ldcp {
        height: 730px;
    }
}

@media (max-width: 1280px) {
    .ldcp {
        height: 700px;
    }
}

@media (max-width: 1030px) {
    .ldcp {
        height: 630px;
    }

    .ldcp .six_img .six .six_box {
        padding: 101px 0 75px 0;
    }
}

@media (max-width: 960px) {
    .ldcp {
        height: auto;
        padding: 10px 0;
    }

    .ldcp .six_img {
        display: none;
    }

    .ldcp .swiper13 {
        display: block;
        padding-bottom: 30px;
    }

    .ldcp .swiper13 .s13_box {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .ldcp .swiper13 .s13_box .down {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }

    .ldcp .swiper13 .s13_box .down .two_img {
        width: 30px;
        height: 30px;
        position: relative;
        margin: 0px 15px 0 0;
    }

    .ldcp .swiper13 .s13_box .down .two_img img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .ldcp .swiper13 .s13_box .down .two_img img:last-child {
        opacity: 0;
    }

    .ldcp .swiper13 .s13_box:hover .down .two_img img:last-child {
        opacity: 1;
    }

    .ldcp .swiper13 .s13_box:hover .down .two_img img:first-child {
        opacity: 0;
    }
}

/* 服务支持 */
.fwzc {
    width: 100%;
    background: url(image/index_18.png) center no-repeat;
    background-size: cover;
}

.fwzc .ibox {
    padding: 100px 0;
    max-width: 1600px;
    min-width: 1200px;
    width: 85%;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    box-sizing: border-box;
}

.fwzc .ibox .up {
    margin-bottom: 33px;
}

.fwzc .ibox .up .title {
    text-align: center;
    font-size: 56px;
    color: #333333;
}

.fwzc .ibox .down {
    width: 100%;
    padding: 0 40px 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fwzc .ibox .down .more2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.fwzc .ibox .down .left {
    width: 57.35%;
    position: relative;
}

.fwzc .ibox .down .left .img {
    width: 100%;
}

.fwzc .ibox .down .left .img img {
    width: 100%;
}

@keyframes scale {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@-webkit-keyframes scale {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes scale2 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

@-webkit-keyframes scale2 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

@keyframes scale3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(6);
        opacity: 0;
    }
}

@-webkit-keyframes scale3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(6);
        opacity: 0;
    }
}

.fwzc .ibox .down .left .dh {
    width: 100%;
    position: absolute;
    top: 67%;
    left: 81%;
    transform: translate(-50%, -50%);
}

.fwzc .ibox .down .left .wq,
.fwzc .ibox .down .left .nq,
.fwzc .ibox .down .left .lq,
.fwzc .ibox .down .left .s_imd {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(9, 132, 212, .05);
    border-radius: 50%;
}

.fwzc .ibox .down .left .s_imd {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(9, 132, 212, .05);
    border-radius: 50%;
}

.fwzc .ibox .down .left .wq {
    width: 150px;
    height: 150px;
    animation: scale3 3s infinite;
}

.fwzc .ibox .down .left .nq {
    width: 150px;
    height: 150px;
    animation: scale2 3s infinite;
}

.fwzc .ibox .down .left .lq {
    width: 150px;
    height: 150px;
    animation: scale 3s infinite;
}

.fwzc .ibox .down .right {
    width: 28%;
}

.fwzc .ibox .down .right .five {
    width: 100%;
    padding: 29px 0;
    border-bottom: 1px solid #e3e3e3;
}

.fwzc .ibox .down .right .five .sh {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fwzc .ibox .down .right .five .sh .up_left {
    display: flex;
    align-items: flex-end;
}

.fwzc .ibox .down .right .five .sh .up_right .jia {
    display: none;
}

.fwzc .ibox .down .right .five .sh .up_left .num {
    color: #0984d4;
    font-family: Impact;
    font-size: 54px;
}

.fwzc .ibox .down .right .five .sh .up_left .jia {
    font-weight: bold;
    color: #0984d4;
    font-size: 50px;
}

.fwzc .ibox .down .right .five .xi {
    color: #666;
    margin-top: 15px;
    font-size: 16px;
}

.more2 {
    display: block;
    width: 74px;
    height: 74px;
}

.more2 .s_img {
    width: 100%;
    height: 100%;
    position: relative;
}

.more2 .s_img img {
    position: absolute;
    top: 0;
    left: 0;
}

.more2 .s_img img:last-child {
    opacity: 0;
}

.more2:hover .s_img img:first-child {
    opacity: 0;
}

.more2:hover .s_img img:last-child {
    opacity: 1;
}

.fwzc,
.fwzc * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1366px) {
    .fwzc .ibox .down .right .five {
        padding: 25px 0;
    }

    .fwzc .ibox .down .right .five {
        padding: 10px 0;
    }

    .fwzc .ibox {
        padding: 60px 0;
    }
}

@media (max-width: 1030px) {
    .fwzc .ibox {
        max-width: 1030px;
        min-width: 100px;
        width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 960px) {
    .fwzc .ibox {
        padding: 30px 0;
    }

    .fwzc .ibox .up .title {
        font-size: 30px;
    }

    .fwzc .ibox .down {
        width: 100%;
        padding: 0 0px 50px 0px;
        display: block;
    }

    .fwzc .ibox .down .left {
        width: 100%;
    }

    .fwzc .ibox .down .right {
        width: 100%;
    }

    .fwzc .ibox .down .left .wq {
        width: 50px;
        height: 50px;
    }

    .fwzc .ibox .down .left .nq {
        width: 50px;
        height: 50px;
    }

    .fwzc .ibox .down .left .lq {
        width: 50px;
        height: 50px;
    }

    .fwzc .ibox .down .right .five .sh .up_left .num {
        font-size: 30px;
    }

    .fwzc .ibox .down .right .five .sh .up_left .jia {
        font-size: 28px;
    }

    .fwzc .ibox .down .right .five .xi {
        font-size: 14px;
    }

    .more2 {
        width: 36px;
        height: 36px;
    }
}

/* 合作客户 */
._partner {
    background-color: rgb(255, 255, 255);
    background-image: url(../image/partner-bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    overflow: hidden;
    position: relative;
}

.up_title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 56px;
    margin-top: 50px;
    padding: 0 15px;
}

.up_title .c_text {
    text-align: center;
    line-height: 1.8;
    font-size: 18px;
    margin: 25px 0 30px 0;
}

@media(max-width:1030px) {
    .up_title .title {
        font-size: 30px;
    }

    .up_title .c_text {
        margin: 20px 0 20px 0;
        font-size: 16px;
    }
}

.partner-box {
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 0 15px;
    padding-bottom: 165px;
}

.partner-box .m-partner .partner-container .item {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.partner-box .m-partner .partner-container .item a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.partner-box .m-partner .partner-container .item img {
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.partner-box .m-partner .partner-container .item .title {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f5b834;
    color: #fff;
    top: 0;
    left: 0;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    display: none;
}

.partner-box .m-partner .partner-container .partner-pagination {
    margin: 25px 0;
    text-align: center;
}

.partner-box .m-partner .partner-container .partner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #c6c6c6;
    opacity: 1;
}

.partner-box .m-partner .partner-container .partner-pagination .swiper-pagination-bullet-active {
    background-color: #0984d4;
}

@media (max-width: 1440px) {
    .partner-box {
        padding: 100px 0 180px 0;
    }
}

@media (max-width: 1366px) {
    .partner-box {
        padding: 100px 0 150px 0;
    }
}

@media (max-width: 1030px) {
    .partner-box {
        padding: 60px 0 150px 0;
    }
}

@media (max-width: 960px) {
    .partner-box {
        padding: 30px 0 30px 0;
        margin-top: 25px;
        padding-top: 0;
    }

}

/* 旋转地球 */
.dqysz {
    position: absolute;
    bottom: -75.5%;
    left: 50%;
    animation: zhuan 30s linear infinite;
}

@keyframes zhuan {
    0% {
        transform: translateX(-50%) rotate(0);
        -webkit-transform: translateX(-50%) rotate(0);
        -moz-transform: translateX(-50%) rotate(0);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
        -webkit-transform: translateX(-50%) rotate(360deg);
        -moz-transform: translateX(-50%) rotate(360deg);
    }
}

@-webkit-keyframes zhuan {
    0% {
        transform: translateX(-50%) rotate(0);
        -webkit-transform: translateX(-50%) rotate(0);
        -moz-transform: translateX(-50%) rotate(0);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
        -webkit-transform: translateX(-50%) rotate(360deg);
        -moz-transform: translateX(-50%) rotate(360deg);
    }
}

@media (max-width: 1030px) {
    .dqysz {
        bottom: -56.5%;
    }
}

@media (max-width: 960px) {
    .dqysz {
        display: none;
    }
}

/* 新闻 */
._news {
    background-color: rgb(255, 255, 255);
}

.news_title {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 15px 0;
}

.news_title .title {
    font-size: 50px;
    color: #333333;
}

@media(max-width:960px) {
    .news_title .title {
        font-size: 30px;
    }
}

.news-box .latest-post {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 0 45px 0;
}

.news-box .latest-post .title-section p {
    color: #000000;
    font-size: 38px;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    margin: 0;
}

.news-box .latest-post .title-section {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 36px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 50px;
    display: none;
}

.news-box .latest-post .owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.news-box .latest-post .owl-carousel {
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

.news-box .latest-post .owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.news-box .latest-post .owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.news-box .latest-post .owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.news-box .latest-post .owl-carousel .owl-item {
    float: left;
}

.news-box .latest-post .owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.news-box .latest-post .owl-buttons {
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.news-box .latest-post .owl-carousel .owl-wrapper,
.latest-post .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.news-box .latest-post .owl-theme .owl-controls .owl-buttons div {
    color: #fff;
    display: inline-block;
    position: relative;
    zoom: 1;
    margin: 5px;
    font-size: 32px;
    border-radius: 6px;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: #e2e2e2;
    opacity: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
}

.news-box .latest-post .owl-theme .owl-controls .owl-buttons div.owl-prev {
    margin-left: -50px;
}

.news-box .latest-post .owl-theme .owl-controls .owl-buttons div.owl-next {
    margin-right: -50px;
}

.news-box .latest-post .owl-theme .owl-controls {
    width: 100%;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 0;
}

.news-box .latest-post .owl-theme .owl-controls .owl-buttons div:hover {
    border: 1px solid #0984d4;
    background: #0984d4;
}

.news-box .latest-post .owl-theme .owl-controls .owl-buttons div:before {
    font-family: "FontAwesome";
    position: absolute;
    font-size: 25px;
    color: #ffffff;
    width: 100%;
    height: 100%;
    left: 0;
    text-align: center;
    line-height: 40px;
}

.news-box .latest-post .owl-theme .owl-controls .owl-buttons div:hover:before {
    color: #fff;
}

.news-box .latest-post .owl-theme .owl-controls .owl-buttons div.owl-prev:before {
    content: "\f104";
}

.news-box .latest-post .owl-theme .owl-controls .owl-buttons div.owl-next:before {
    content: "\f105";
}

.news-box .latest-post .owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.news-box .latest-post .owl-carousel .owl-item {
    float: left;
}

.news-box .latest-post .owl-carousel .owl-item:hover .inner-item img {
    transform: scale(1.1);
}

.news-box .latest-post .news-item {
    margin: 15px;
    margin-bottom: 40px;
    -o-border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.news-box .latest-post .news-item .inner-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
    height: 150px;
}

.news-box .latest-post .news-item .inner-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
    transition: all .5s;
}

.news-box .latest-post .news-item h5 {
    margin-bottom: 5px;
    line-height: 22px;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-box .latest-post .news-item p {
    line-height: 22px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #666;
}

.news-box .latest-post .news-item a.read-more {
    display: inline-block;
    float: left;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border: 1px solid #0984d4;
    color: #0984d4;
    padding: 8px 12px;
    background: #fff;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
    text-transform: lowercase;
    text-decoration: none;
}

.news-box .latest-post .news-item a.read-more i {
    color: #0984d4;
    font-size: 12px;
    margin-left: 7px;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
}

.news-box .latest-post .news-item a.read-more:hover i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    color: #fff;
}

.news-box .latest-post .news-item .hover-item .date {
    float: right;
    line-height: 35px;
    color: #666;
    font-size: 14px;
}

.news-box .latest-post .news-item .read-more:hover {
    color: #fff;
    background: #0984d4;
}

.news-box .latest-post .owl-pagination {
    display: none;
}


@media(max-width:995px) {
    .latest-post .owl-theme .owl-controls {
        display: none !important;
    }
}

/* 次页 */

/* 头部大图 */
.page-banner {
    position: relative;
}

/* 面包屑导航 */
.mob_crumbs,
.mob_crumbs * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob_crumbs .m-site {
    display: none;
    padding: 15px 0;
    margin-bottom: 50px;
    border-bottom: 1px solid #efefef;
}

.mob_crumbs .m-site .pos label {
    font-weight: 400;
}

.mob_crumbs .m-site .pos label,
.m-site .pos a,
.m-site .pos span {
    font-size: 14px;
    color: #999;
}

.mob_crumbs .m-site .pos span {
    margin: 0 8px;
}

.mob_crumbs .m-site .pos a:hover {
    color: #0984D4;
}

.mob_crumbs>.container {
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 1600px;
    height: 80px;
    width: 100%;
    transform: translate(-50%, 0);
    z-index: 15;
}

@media (min-width: 768px) {
    .mob_crumbs .m-classify {
        margin-bottom: 0;
        height: 100%;
    }

    .mob_crumbs .m-classify ul {
        text-align: center;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mob_crumbs .m-classify ul li {
        width: 100%;
        height: 100%;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .mob_crumbs .m-classify ul li a {
        display: block;
        background-color: transparent;
        color: rgba(255, 255, 255, .6);
        line-height: 40px;
        -webkit-transition: all ease 0.3s;
        transition: all ease .3s;
    }

    .mob_crumbs .m-classify ul li a:hover {
        color: #fff;
    }

    .mob_crumbs .m-classify ul li.active a {
        background-color: transparent;
        color: rgba(255, 255, 255);
    }

    .mob_crumbs .m-classify ul li a.active {
        background-color: transparent;
        color: rgba(255, 255, 255);
    }


    .mob_crumbs .m-classify ul::after,
    .mob_crumbs .m-classify ul::before {
        dispaly: none;
    }

    .mob_crumbs .m-classify ul li::before {
        content: "";
        display: block;
        width: 1px;
        height: 10px;
        background: rgba(255, 255, 255, .6);
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .mob_crumbs .m-classify ul li:last-of-type::before {
        display: none;
    }
}

@media (max-width: 1030px) {
    .mob_crumbs>.container {
        height: 50px;
    }

    .mob_crumbs .m-classify ul li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .mob_crumbs>.container {
        position: relative;
        bottom: auto;
        top: 0;
        left: 0;
        max-width: none;
        height: auto;
        width: 100%;
        transform: none;
        z-index: auto;
    }

    .mob_crumbs .m-site {
        display: block;
        padding: 15px 0;
        margin-bottom: 30px;
        border-bottom: 1px solid #efefef;
    }

    .mob_crumbs .m-site .pos {
        float: left;
        width: 75%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #999;
    }

    .mob_crumbs .m-site .more {
        float: right;
        color: #666;
    }
}

@media (max-width: 768px) {
    .mob_crumbs .m-classify .mask {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.15);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all ease .3s;
        transition: all ease .3s;
    }

    .mob_crumbs .m-classify ul {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 70%;
        background-color: #fff;
        z-index: 1002;
        -webkit-transition: all ease .3s;
        transition: all ease .3s;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .mob_crumbs .m-classify ul h3 {
        font-size: 20px;
        padding: 15px;
        border-bottom: 1px solid #efefef;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mob_crumbs .m-classify ul li a {
        display: block;
        color: #666;
        font-size: 14px;
        line-height: 40px;
        padding: 0 15px;
        -webkit-transition: all ease .3s;
        transition: all ease .3s;
        border-bottom: 1px solid #efefef;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mob_crumbs .m-classify ul li a:hover {
        background-color: #0984D4;
        color: #fff;
        border-bottom: 1px solid #fff;
    }

    .mob_crumbs .m-classify ul li.active a {
        background-color: #0984D4;
        color: #fff;
        border-bottom: 1px solid #fff;
    }

    .mob_crumbs .m-classify.show .mask {
        opacity: 1;
        visibility: visible;
    }

    .mob_crumbs .m-classify.show ul {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.gsjj,
.gsjj * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 关于我们 */
/* 内页标题 */
.ny_title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ny_title .ch {
    color: #333333;
    font-size: 46px;
}

.ny_title .en {
    color: #ccc;
    margin-top: 14px;
    text-transform: uppercase;
    font-size: 24px;
}

.gsjj {
    width: 100%;
    background: url(../image/a_2.png) center no-repeat;
    background-size: cover;
}

.gsjj .ibox {
    padding: 100px 15px 134px 15px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    box-sizing: border-box;
}

.gsjj .ibox .up {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 85px 0 35px 0;
}

.gsjj .ibox .up .left {
    width: 43.9%;
}

.gsjj .ibox .up .left .d_text {
    width: 100%;
    color: #0984D4;
    font-size: 32px;
}

.gsjj .ibox .up .left .c_text {
    width: 100%;
    height: 350px;
    line-height: 2;
    font-size: 16px;
    color: #666;
    overflow: auto;
    padding-right: 20px;
    margin-top: 48px;
}

.gsjj .ibox .up .left .c_text::-webkit-scrollbar {
    width: 3px;
    height: 1px;
}

.gsjj .ibox .up .left .c_text::-webkit-scrollbar-thumb {
    background: #0984D4;
}

.gsjj .ibox .up .left .c_text::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.gsjj .ibox .up .right {
    width: 53%;
}

.gsjj .ibox .up .right .right_box {
    width: 100%;
    position: relative;
    cursor: pointer;
}

.gsjj .ibox .up .right .right_box .img1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.gsjj .ibox .up .right .right_box .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gsjj .ibox .up .right .right_box .img2 {
    position: relative;
    z-index: 1;
    bottom: -20px;
    left: -20px;
}

.gsjj .ibox .up .right .right_box .img3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.gsjj .ibox .up .right:hover .right_box .img3 {
    transform: translate(-50%, -50%) scale(0.8);
}

.gsjj .ibox .down {
    width: 100%;
}

.gsjj .ibox .three_text {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.gsjj .ibox .three_text .three {}

.gsjj .ibox .three_text .three .shang {
    display: flex;
    align-items: flex-end;
}

.gsjj .ibox .three_text .three .shang .num {
    color: #0984D4;
    font-weight: bold;
    font-size: 88px;
}

.gsjj .ibox .three_text .three .shang .year {
    color: #333;
    font-weight: bold;
    transform: translateY(-7px);
    font-size: 14px;
    margin-left: 10px;
}

.gsjj .ibox .three_text .three:not(:first-child) .shang .year {
    font-size: 18px;
}

.gsjj .ibox .three_text .three .xia {
    color: #333;
    padding-left: 5px;
    font-size: 16px;
    margin-top: 10px;
}

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 1000;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}

.z_tanchuang .tbox .modal {
    background: white;
    padding: 50px;
    display: block;
    border-radius: 5px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    margin: 0 auto;
    overflow: visible;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.z_tanchuang .tbox .modal .out {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff url(image/out.png) center no-repeat;
    background-size: 30px;
    color: #000;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    top: 0;
    right: -50px;
    cursor: pointer;
}

/* 弹窗选中 */
.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */
@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@media (max-width: 1440px) {
    .gsjj .ibox .up .left .c_text {
        height: 290px;
        margin-top: 30px;
    }
}

@media (max-width: 1030px) {
    .ny_title .ch {
        font-size: 34px;
    }

    .ny_title .en {
        margin-top: 10px;
        font-size: 20px;
    }

    .gsjj .ibox .up .left .d_text {
        font-size: 24px;
    }

    .gsjj .ibox .up .left .c_text {
        font-size: 14px;
    }

    .gsjj .ibox {
        padding: 60px 15px;
    }

    .gsjj .ibox .up .left .c_text {
        height: 195px;
        margin-top: 20px;
    }

    .gsjj .ibox .up .right .right_box .img2 {
        bottom: -10px;
        left: -10px;
    }

    .gsjj .ibox .up {
        margin: 40px 0 30px 0;
    }

    .gsjj .ibox .three_text .three .shang .num {
        font-size: 38px;
    }
}

@media (max-width: 960px) {
    .gsjj .ibox {
        padding: 30px 15px;
    }

    .gsjj .ibox .up {
        margin: 25px 0 20px 0;
        display: block;
    }

    .gsjj .ibox .up .left {
        width: 100%;
    }

    .gsjj .ibox .up .right {
        width: 100%;
    }

    .gsjj .ibox .up .left .c_text {
        height: auto;
        padding-right: 0px;
        margin: 20px 0;
    }

    .gsjj .ibox .three_text {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .gsjj .ibox .three_text .three {
        width: 50%;
        margin-bottom: 15px;
    }

    .z_tanchuang .tbox .modal {
        padding: 10px;
    }

    .z_tanchuang .tbox .modal .out {
        top: -50px;
        right: 0px;
    }
}

/* page partner */
.pagePartner {
    background-color: rgb(248, 248, 248);
}

.pagePartner .in-image {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 15px 0;
}

.pagePartner .in-image .image-list .item {
    margin-bottom: 30px;
    overflow: hidden;
}

.pagePartner .in-image .image-list .item .wrap {
    position: relative;
    overflow: hidden;
}

.pagePartner .in-image .image-list .item a {
    display: block;
}

.pagePartner .in-image .image-list .item .img {
    overflow: hidden;
}

.pagePartner .in-image .image-list .item .img img {
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.pagePartner .in-image .image-list .item .title {
    width: 100%;
    height: 50px;
    background-color: #fff;
    color: #666666;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    text-align: center;

}

.pagePartner .in-image .image-list .item:hover .img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pagePartner .m-page {
    text-align: center;
}

.pagePartner .pagination>li {
    display: inline-block;
    margin: 0 5px;
}

.pagePartner .m-page .pagination>li>a,
.pagePartner .m-page .pagination>li>span {
    color: #777;
}

.pagePartner .m-page .pagination>.active>a,
.pagePartner .m-page .pagination>.active>span,
.pagePartner .m-page .pagination>.active>a:hover,
.pagePartner .m-page .pagination>.active>span:hover,
.pagePartner .m-page .pagination>.active>a:focus,
.pagePartner .m-page .pagination>.active>span:focus {
    background-color: #0984D4;
    border-color: #0984D4;
    color: #fff;
}

.pagePartner .m-page .pagination>li>a:hover,
.pagePartner .m-page .pagination>li>span:hover,
.pagePartner .m-page .pagination>li>a:focus,
.pagePartner .m-page .pagination>li>span:focus {
    background-color: #0984D4;
    border-color: #0984D4;
    color: #fff;
}

@media (max-width: 768px) {
    .pagePartner {
        margin-top: 20px;
    }

    .pagePartner .m-page {
        margin: 0;
    }

    .pagePartner .in-image .image-list .item {
        width: 100%;
    }
}

/* page 企业文化 */
/* 内页标题 */
.ny_title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ny_title .ch {
    color: #333333;
    font-size: 46px;
}

.ny_title .en {
    color: #ccc;
    margin-top: 14px;
    text-transform: uppercase;
    font-size: 24px;
}

/* 企业文化 */
.qywh,
.qywh * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.qywh {
    width: 100%;
    background: #eeeeee;
}

.qywh .ibox {
    padding: 106px 15px 99px 15px;
    max-width: 1600px;
    margin: 0 auto;
}

.qywh .ibox .down {
    margin-top: 90px;
    width: 100%;
}

.qywh .ibox .down .swiper4 {
    padding-top: 50px;
}

.qywh .ibox .down .swiper4 .s4_box {
    width: 100%;
    padding: 75px 0 61px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
}

.qywh .ibox .down .swiper4 .s4_box:hover {
    background-color: #fff;
}

.qywh .ibox .down .swiper4 .s4_box .d_text {
    color: #333;
    font-size: 28px;
}

.qywh .ibox .down .swiper4 .s4_box .eng {
    color: #999;
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0 15px 0;
}

.qywh .ibox .down .swiper4 .s4_box .c_text {
    color: #666666;
    padding: 0 10px
}

.qywh .ibox .down .swiper4 .s4_box .line {
    width: 0;
    height: 10px;
    background-color: #0984D4;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.qywh .ibox .down .swiper4 .s4_box:hover .line {
    width: 100%;
    opacity: 1;
}

.qywh .ibox .down .swiper4 .s4_box .s_img {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.qywh .ibox .down .swiper4 .s4_box:hover .s_img {
    background-color: #fff;
}

.qywh .ibox .down .swiper4 .s4_box .s_img img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1030px) {
    .ny_title .ch {
        font-size: 34px;
    }

    .ny_title .en {
        margin-top: 10px;
        font-size: 20px;
    }

    .qywh .ibox .down .swiper4 .s4_box .d_text {
        font-size: 22px;
    }

    .qywh .ibox .down .swiper4 .s4_box .eng {
        margin: 20px 0 35px 0;
        font-size: 16px;
    }

    .qywh .ibox {
        padding: 60px 15px;
    }

    .qywh .ibox .down {
        margin-top: 40px;
    }

    .qywh .ibox .down .swiper4 .s4_box .eng {
        margin: 20px 0 35px 0;
    }

    .qywh .ibox .down .swiper4 .s4_box .line {
        height: 5px;
    }
}

@media (max-width: 960px) {
    .ny_title .ch {
        font-size: 28px;
    }

    .ny_title .en {
        font-size: 18px;
    }

    .qywh .ibox {
        padding: 30px 15px;
    }

    .qywh .ibox .down {
        margin-top: 25px;
    }

    .qywh .ibox .down .swiper4 {
        padding-bottom: 20px;
    }
}

/* 次页发展历程 */
/* 发展历程 */
.fzlc {
    width: 100%;
    background: url(../image/a_11.png) center no-repeat;
    background-size: cover;
}

.fzlc .ibox {
    padding: 100px 15px 185px;
    max-width: 1600px;
    margin: 0 auto;
}

.fzlc .ibox .swiper5 {
    padding: 5px 0;
    margin-top: 90px;
}

.fzlc .ibox .swiper5 .swiper-slide {
    width: 118px;
    height: 255px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fzlc .ibox .swiper5 .swiper-slide-active {
    width: 255px !important;
    height: 255px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fzlc .ibox .swiper5 .swiper-slide .s5_box {
    width: 118px;
    height: 118px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.fzlc .ibox .swiper5 .swiper-slide .s5_box .num {
    color: #333;
    font-size: 30px;
    font-weight: bold;
}

.fzlc .ibox .swiper5 .swiper-slide-active .s5_box {
    width: 200px;
    height: 200px;
    padding: 18px;
    background-color: #0984D4;
}

.fzlc .ibox .swiper5 .swiper-slide-active .s5_box .num {
    color: #fff;
    font-size: 48px;
}

.fzlc .ibox .swiper6_box .pagination6 span.swiper-pagination-bullet-active {
    background: #0984D4;
}

.fzlc .ibox .swiper5 .swiper-slide .img {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-51%, -48.5%);
}

@keyframes zhuan1 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
        -webkit-transform: translate(-50%, -50%) rotate(0);
        -moz-transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -moz-transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes zhuan1 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
        -webkit-transform: translate(-50%, -50%) rotate(0);
        -moz-transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -moz-transform: translate(-50%, -50%) rotate(360deg);
    }
}

.fzlc .ibox .swiper5 .swiper-slide-active .img {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    /* animation: zhuan1 3s infinite linear; */
}

.fzlc .ibox .swiper6_box {
    width: 48%;
    margin: 105px auto 0;
    position: relative;
    text-align: center;
}

.fzlc .ibox .swiper6_box .swiper6 {}

.fzlc .ibox .swiper6_box .swiper6 .s6_box {
    width: 100%;
    padding: 0 10px;
}

.fzlc .ibox .swiper6_box .swiper6 .s6_box .num {
    color: #333;
    line-height: 1.5;
}

.fzlc .ibox .swiper6_box .pagination6 {
    position: absolute;
    left: 50%;
    top: 38px;
    transform: translateX(-50%);
}

.fzlc .ibox .swiper6_box .pagination6 span {
    margin-right: 10px;
}

.fzlc .ibox .swiper6_box .pagination6 span:last-child {
    margin-right: 0px;
}

.fzlc .ibox .swiper6_box .btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.fzlc .ibox .swiper6_box .btn .s6btnall {
    width: 64px;
    height: 64px;
    position: relative;
    cursor: pointer;
}

.fzlc .ibox .swiper6_box .btn .prev6 {
    transform: translateX(-173px);
}

.fzlc .ibox .swiper6_box .btn .next6 {
    transform: translateX(173px);
}

.fzlc .ibox .swiper6_box .btn .s6btnall img {
    position: absolute;
    top: 0;
    left: 0;
}

.fzlc .ibox .swiper6_box .btn .s6btnall img:last-child {
    opacity: 0;
}

.fzlc .ibox .swiper6_box .btn .s6btnall:hover img:last-child {
    opacity: 1;
}

.fzlc .ibox .swiper6_box .btn .s6btnall:hover img:first-child {
    opacity: 0;
}

@media (max-width: 1030px) {

    .fzlc .ibox {
        padding: 60px 15px;
    }

    .fzlc .ibox .swiper6_box .pagination6 {
        margin-top: 25px;
    }

    .fzlc .ibox .swiper6_box {
        width: 75%;
        margin: 35px auto 0;
    }

    .fzlc .ibox .swiper6_box .btn .next6 {
        transform: translateX(100px);
    }

    .fzlc .ibox .swiper6_box .btn .prev6 {
        transform: translateX(-100px);
    }

    .fzlc .ibox .swiper5 {
        margin-top: 40px;
    }
}

@media (max-width: 960px) {

    .fzlc .ibox {
        padding: 30px 15px 40px 15px;
    }

    .fzlc .ibox .swiper5 {
        margin-top: 20px;
    }

    .fzlc .ibox .swiper5 .swiper-slide-active .img {
        text-align: center;
    }

    .fzlc .ibox .swiper5 .swiper-slide-active {
        margin: 0 auto;
        width: 100% !important;
    }

    .fzlc .ibox .swiper6_box .btn {
        display: none;
    }

    .fzlc .ibox .swiper6_box {
        width: 100%;
        margin: 25px auto 0;
    }

    .fzlc .ibox .swiper6_box .pagination6 {
        margin-top: 7px;
    }
}

/* 次页荣誉资质 */
.pageHonor {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 40px;
}

.pageHonor .in-image .image-list .item {
    margin-bottom: 30px;
    overflow: hidden;
    transition: .3s;
}

.pageHonor .in-image .image-list .item:hover {
    box-shadow: 0 0 10px #ddd;
}

.pageHonor .in-image .image-list .item .wrap {
    position: relative;
    overflow: hidden;
}

.pageHonor .in-image .image-list .item a {
    display: block;
}

.pageHonor .in-image .image-list .item .img {
    overflow: hidden;
    height: 250px;
}

.pageHonor .in-image .image-list .item .img img {
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageHonor .in-image .image-list .item .title {
    width: 100%;
    height: 50px;
    background-color: #fff;
    color: #666666;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    text-align: center;

}

.pageHonor .in-image .image-list .item:hover .img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pageHonor .m-page {
    text-align: center;
}

.pageHonor .pagination>li {
    display: inline-block;
    margin: 0 5px;
}

.pageHonor .m-page .pagination>li>a,
.pageHonor .m-page .pagination>li>span {
    color: #777;
}

.pageHonor .m-page .pagination>.active>a,
.pageHonor .m-page .pagination>.active>span,
.pageHonor .m-page .pagination>.active>a:hover,
.pageHonor .m-page .pagination>.active>span:hover,
.pageHonor .m-page .pagination>.active>a:focus,
.pageHonor .m-page .pagination>.active>span:focus {
    background-color: #0984D4;
    border-color: #0984D4;
    color: #fff;
}

.pageHonor .m-page .pagination>li>a:hover,
.pageHonor .m-page .pagination>li>span:hover,
.pageHonor .m-page .pagination>li>a:focus,
.pageHonor .m-page .pagination>li>span:focus {
    background-color: #0984D4;
    border-color: #0984D4;
    color: #fff;
}

@media (max-width: 768px) {
    .pageHonor {
        margin-top: 20px;
    }

    .pageHonor .m-page {
        margin: 0;
    }

    .pageHonor .in-image .image-list .item {
        width: 100%;
    }
}


/* 产品中心 */
.pageProduct,
.pageProduct * {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pageProduct .product-warp {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 40px;
}

.pageProduct .product-warp .product-info ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -2%;
    clear: both;
    zoom: 1;
    text-align: center;
}

.pageProduct .product-warp .product-info ul li {
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding-left: 2%;
    margin-bottom: 2%;
    position: relative;
    font-size: inherit;
    list-style: none;
}

.pageProduct .product-warp .product-info ul li .item-bor {
    background: #ffffff;
}

.pageProduct .product-warp .product-info ul li .item-bor .img-box img {
    max-width: 100%;
    width: 100%;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -ms-transition: transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
}

.pageProduct .product-warp .product-info ul li .item-bor a {
    text-decoration: none;
}

.pageProduct .product-warp .product-info ul li .item-bor .img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid #eeeeee;
}

.pageProduct .product-warp .product-info ul li .item-bor .item-text {
    display: block;
    font-size: 18px;
    color: #0984D4;
    font-weight: bold;
    padding: 15px;
    text-align: left;
    transition: all ease .5s;
    text-decoration: none;
    line-height: 35px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pageProduct .product-warp .product-info ul li .item-bor:hover {
    -moz-box-shadow: 0px 1px 15px #CDCDCD;
    -webkit-box-shadow: 0px 1px 15px #CDCDCD;
    box-shadow: 0px 1px 15px #CDCDCD;
}

.pageProduct .product-warp .product-info ul li .inquire {
    display: none;
    margin-top: 10px;
    position: relative;
    height: 40px;
}

.pageProduct .product-warp .product-info ul li .inquire .icon {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    fill: #646464;
    overflow: hidden;
}

.pageProduct .product-warp .product-info ul li .inquire .inquire-btn {
    display: inline-block;
    width: 100%;
    margin-right: 5px;
    font-size: 14px;
    padding: 0;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d8dde6;
    background: #eaedef;
    color: #333;
    text-indent: -40px;
    cursor: pointer;
    outline: none;
}

.pageProduct .product-warp .product-info ul li .inquire .inquire-btn .togetherClass {
    position: absolute;
    width: 40px;
    text-indent: 0;
    text-align: center;
    height: 40px;
    line-height: 40px;
    bottom: 0;
    left: 0;
    transform: translateX(0);
}

.pageProduct .product-warp .product-info ul li .inquire .togetherClass {
    display: inline-block;
}

.pageProduct .product-warp .product-info ul li .inquire .pro-detail {
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    display: block;
    bottom: 0;
    right: -1px;
    margin: 0;
    overflow: hidden;
    border-left: 1px solid #d8dde6;
    text-align: center;
    background: #eaedef;
    border-radius: 0 3px 3px 0;
}

.pageProduct .product-warp .product-info ul li .herf-top:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.pageProduct .product-warp .product-info ul li .inquire .pro-detail .hide-text {
    display: none;
    color: #333;
}

.pageProduct .product-warp .product-info ul li .inquire .inquire-btn:hover {
    background: #b8b9b9;
}

.pageProduct .product-warp .product-info ul li .inquire .pro-detail:hover {
    text-decoration: none;
    cursor: pointer;
    background: #b8b9b9;
    color: #333;
}

.pageProduct .product-warp .more-btn {
    width: 100%;
    text-align: center;
}

.pageProduct .product-warp .more-btn a {
    display: inline-block;
    background-color: transparent;
    color: #333;
    border-radius: 3px;
    border-color: #333;
    border-style: solid;
    border-width: 1px;
    height: 40px;
    line-height: 40px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.pageProduct .product-warp .more-btn a i {
    color: #333;
    font-size: 14px;
}

.pageProduct .product-warp .more-btn a:after {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #333;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.pageProduct .product-warp .more-btn a:hover:after {
    width: 100%;
}

.pageProduct .product-warp .more-btn a:hover {
    background-color: transparent;
    color: #fff;
    border-radius: 3px;
    border-color: #333;
    border-style: solid;
    border-width: 1px;
}

.pageProduct .m-page {
    text-align: center;
}

@media (max-width:992px) {
    .pageProduct .product-warp .product-info ul li {
        width: 33.333%;
    }
}


@media (max-width:765px) {
    .pageProduct .product-warp .product-info ul li {
        width: 50%;
    }

    .pageProduct .product-warp {
        margin-top: 20px;
    }
}

@media (max-width:440px) {
    .pageProduct .product-warp .product-info ul li .inquire .inquire-btn span {
        display: none;
    }

}

/* 分页显示 */

.pageProduct .m-page .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pageProduct .m-page .pagination>li {
    display: inline-block;
    margin: 0 3px;
}

.pageProduct .m-page .pagination>li.disabled>a {
    color: #777;
    cursor: not-allowed;
}

.pageProduct .m-page .pagination>li>a {
    margin-left: 0;
    position: relative;
    background-color: #fff;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    border: none;
    color: #777;
}

.pageProduct .m-page .pagination>.active>a,
.pageProduct .m-page .pagination>.active>a:focus,
.pageProduct .m-page .pagination>.active>a:hover,
.pageProduct .m-page .pagination>.active>span,
.pageProduct .m-page .pagination>.active>span:focus,
.pageProduct .m-page .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #0984D4;
    border-color: #0984D4
}

.pageProduct .m-page .pagination>li>a:focus,
.pageProduct .m-page .pagination>li>a:hover,
.pageProduct .m-page .pagination>li>span:focus,
.pageProduct .m-page .pagination>li>span:hover {
    z-index: 2;
    color: #fff;
    background-color: #0984D4;
    border-color: #0984D4;
}

@media(max-width:465px) {
    .pageProduct .product-warp .product-info ul li {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* 产品中心 - 详情 */
.pageProductDetail .xypg-right-content {
    overflow: hidden;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 15px;
}

.pageProductDetail .page-product-detail-effect {
    float: left;
    width: 36%;
}

.pageProductDetail .page-product-detail-effect .big-img {
    border: 1px solid #e5e5e5;
    position: relative;
    width: 100%;
    display: inline-block;
}

.pageProductDetail .page-product-detail-effect .big-img a {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 0;
}

.pageProductDetail .page-product-detail-effect .big-img a img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
    cursor: crosshair;
}

.pageProductDetail .detail-well {
    border-bottom: 1px solid #f2f2f2;
    padding: 10px 0;
}

.pageProductDetail .page-wrap-right .page-product-detail-box::after,
.pageProductDetail .page-wrap-right .page-product-detail-box::before {
    content: '';
    display: block;
    clear: both;
}

.pageProductDetail .page-product-detail-right {
    width: 55%;
    float: left;
    margin-left: 35px;
}

.pageProductDetail .page-product-detail-right>h3 {
    font-size: 22px;
    color: #0984D4;
    margin-bottom: 20px;
    font-weight: bold;
}

.pageProductDetail .product-detail-item li {
    font-size: 14px;
    line-height: 30px;
    color: #777272;
    list-style: none;
}

.pageProductDetail .product-detail-item li .proclass {
    color: initial;
    text-decoration: none;
}

.pageProductDetail .product-detail-item .icon-qrcode {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.pageProductDetail .product-detail-item .icon-qrcode:after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(/mfile/5063/images/icon_spirit.png);
    background-repeat: no-repeat;
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    background-position: 0 -21px;
    background-size: 200%;
}

.pageProductDetail .product-detail-item .qr-code {
    position: absolute;
    background: #fff;
    top: 50%;
    z-index: 9;
    left: 100px;
    padding: 10px;
    border: 1px solid;
    display: none;
    height: 122px;
    overflow: hidden;
    margin-top: -61px;
}

.pageProductDetail .product-detail-slick {
    position: relative;
    margin-top: 20px;
    width: 50%;
}

.pageProductDetail .product-detail-slick .swiper-slide-thumb-active a.slick-item {
    border: 3px solid #0984D4;
    overflow: hidden;
}

.pageProductDetail .product-detail-slick .swiper-slide {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.pageProductDetail .product-detail-slick a.slick-item {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 0;
    border: 3px solid transparent;
    position: relative;
}

.pageProductDetail .product-detail-slick a.slick-item img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.pageProductDetail .product-detail-slick a.slick-item:after {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.pageProductDetail .page-product-inquiry {
    margin-top: 20px;
}

.pageProductDetail .page-product-inquiry a {
    font-size: 16px;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(to top right, #0984D4, #3FE12B);
    padding: 0.8em 0.8em;
    border-radius: 0;
}

.pageProductDetail .easyzoom--overlay .easyzoom-flyout {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pageProductDetail .easyzoom-flyout {
    position: absolute;
    z-index: 100;
    overflow: hidden;
    background: #FFF;
}

.pageProductDetail .easyzoom--overlay .easyzoom-flyout img {
    width: 200%;
    height: 200%;
}

.pageProductDetail .product-detail-tab {
    margin-top: 50px;
}

.pageProductDetail .product-detail-tab .product-detail-tabli {
    border: 1px solid #e5e5e5;
    height: 40px;
    line-height: 38px;
}

.pageProductDetail .product-detail-tab .product-detail-tabli li {
    float: left;
    width: 20%;
    text-align: center;
    list-style: none;
    font-size: 14px;
    color: #2f2f2f;
    cursor: pointer;
    border-right: 1px solid #e5e5e5;
}

.pageProductDetail .product-detail-tab .product-detail-tabli li.on,
.pageProductDetail .product-detail-tab .product-detail-tabli li:visited,
.pageProductDetail .product-detail-tab .product-detail-tabli li:active {
    color: #0984D4;
    position: relative;
}

.pageProductDetail .product-detail-tab .product-detail-tabli li.on:before,
.pageProductDetail .product-detail-tab .product-detail-tabli li:visited:before,
.pageProductDetail .product-detail-tab .product-detail-tabli li:active:before {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    top: -1px;
    border: 1px solid #0984D4;
}

.pageProductDetail .product-detail-tabbox .product-detail-tabcon {
    display: none;
    padding: 15px 0;
}

.pageProductDetail .prevpage {
    line-height: 22px;
    padding: 10px;
    position: relative;
    border: 1px solid #e5e5e5;
}

.pageProductDetail .nextpage {
    line-height: 22px;
    padding: 10px;
    position: relative;
    border: 1px solid #e5e5e5;
    margin-top: 17px;
}

.pageProductDetail .pager a {
    color: #333;
    text-decoration: none;
}

.pageProductDetail .backpage span {
    display: inline-block;
}

.pageProductDetail .backpage a {
    width: 120px;
    text-align: center;
    display: inline-block;
    line-height: 22px;
    padding: 10px;
    position: relative;
    border: 1px solid #e5e5e5;
    margin-top: 17px;
}

.pageProductDetail .pager {
    text-align: left;
}

.pageProductDetail .easyzoom--overlay .easyzoom-flyout img {
    max-width: none;
}

@media (max-width:992px) {
    .pageProductDetail .xypg-right-content {
        padding: 0 10px;
        margin: 15px auto;
    }
}

@media (max-width:765px) {
    .pageProductDetail .page-product-detail-effect {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .pageProductDetail .page-product-detail-right {
        width: 100%;
        float: none;
        margin: 0;
    }

    .pageProductDetail .product-detail-slick {
        width: 100%;
    }

    .pageProductDetail .product-detail-tab .product-detail-tabli {
        height: 30px;
    }

    .pageProductDetail .product-detail-tab .product-detail-tabli li {
        font-size: 12px;
        line-height: 28px;
    }

    .pageProductDetail .page-product-inquiry {
        display: flex;
        justify-content: space-between;
    }

    .pageProductDetail .page-product-inquiry a.tel {
        display: inline-block;
    }
}


.detailtext {
    margin-top: 20px;
}

.detailtext h4 {
    line-height: 30px;
    font-size: 16px;
}

.detailtext p {
    line-height: 30px;
    fontsize: 16px
}

.detailtext ol {
    padding-left: 25px;
    line-height: 26px;
    font-size: 14px;
}

.detailtext ol li {
    list-style: circle;
    line-height: 28px;
}


/* 服务支持 - 服务网点 */
.fwqq {
    width: 100%;
    background: #fff url(/ufile/122046/newdir1/sb_2.png) center no-repeat;
    background-size: cover;
}

.fwqq .ibox {
    position: relative;
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}

.fwqq .ibox .two_big_img {
    width: 100%;
    height: 917px;
    position: relative;
}

.fwqq .ibox .two_big_img .two_img {
    position: absolute;
    height: 100%;
    opacity: 0;
}

.fwqq .ibox .two_big_img .two_img .img {
    height: 100%;
}

.fwqq .ibox .two_big_img .two_img .img img {
    height: 100%;
}

.fwqq .ibox .two_big_img .two_img.act {
    opacity: 1;
}

.fwqq .ibox .two_big_img .two_img.qq .fp {
    position: absolute;
    top: 57%;
    left: 77%;
}

.fwqq .ibox .two_big_img .two_img.ch {
    display: flex;
    align-items: center;
}

.fwqq .ibox .two_big_img .two_img.ch .line {
    width: 2px;
    height: 690px;
    background-color: #f2f2f2;
    transform: translateY(-30px);
}

.fwqq .ibox .two_big_img .two_img.ch .fp {
    position: absolute;
    top: 71.5%;
    left: 64.3%;
}

.fwqq .ibox .two_big_img .two_img .fp .map_icon {
    width: 18px;
    height: 23px;
    position: relative;
}

@keyframes warn {
    0% {
        transform: translate(-50%, -50%) scale(0);
        -webkit-transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        -webkit-transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes warn1 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        -webkit-transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        -webkit-transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.fwqq .ibox .two_big_img .two_img .fp .map_icon .ks {
    width: 10px;
    height: 10px;
    background-color: #0984D4;
    position: absolute;
    top: 72%;
    left: 50%;
    transform: rotateX(258deg) translate(-50%, -50%);
}

.fwqq .ibox .two_big_img .two_img .fp .map_icon .ks1 {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ccc;
    -webkit-animation: warn 2s ease-out;
    -moz-animation: warn 2s ease-out;
    animation: warn 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 50%;
}

.fwqq .ibox .two_big_img .two_img .fp .map_icon .ks2 {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ccc;
    -webkit-animation: warn 2s ease-out;
    -moz-animation: warn 2s ease-out;
    animation: warn 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 50%;
}

.fwqq .ibox .two_big_img .two_img .fp .map_icon .ks3 {
    content: "";
    display: block;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ccc;
    -webkit-animation: warn 2s ease-out;
    -moz-animation: warn 2s ease-out;
    animation: warn 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 50%;
}

.fwqq .ibox .two_big_img .two_img .fp .text {
    width: 80px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 26px;
    background-color: #fff;
    -moz-box-shadow: 0px 4px 8px #fbe7e7;
    -webkit-box-shadow: 0px 4px 8px #fbe7e7;
    box-shadow: 0px 4px 8px #fbe7e7;
    z-index: 3;
}

.fwqq .ibox .two_big_img .two_img .fp .text .d_text {
    color: #333;
}

.fwqq .ibox .two_big_img .two_img .fp .text .s_img {
    position: absolute;
    left: -6px;
    top: 0;
}

.fwqq .ibox .hzzb {
    position: absolute;
    top: 50%;
    right: 6.125%;
    transform: translateY(-50%);
    padding: 25px;
    background-color: #fff;
    -moz-box-shadow: 0px 3px 8px #E5E5E5;
    -webkit-box-shadow: 0px 3px 8px #E5E5E5;
    box-shadow: 0px 3px 8px #E5E5E5;
}

.fwqq .ibox .hzzb.hzzb2 {
    top: 72%;
}

.fwqq .ibox .hzzb .d_text {
    color: #333;
    font-weight: bold;
    margin-bottom: 14px;
    letter-spacing: 6px;
}

.fwqq .ibox .hzzb .c_text {
    display: block;
    color: #333;
    line-height: 2;
}

.fwqq .ibox .hzzb a.c_text:hover {
    color: #0984D4;
}

.fwqq .ibox .quanguo {
    width: 326px;
    height: 50px;
    position: absolute;
    bottom: 80px;
    left: 25.625%;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
}

.fwqq .ibox .quanguo .zq {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
    color: #333;
    cursor: pointer;
}

.fwqq .ibox .quanguo .zq:hover {
    color: #fff;
    background-color: #0984D4;
}

.fwqq .ibox .quanguo .zq.act {
    color: #fff;
    background-color: #0984D4;
}

@media (max-width: 1820px) {
    .fwqq .ibox .two_big_img {
        width: 100%;
        height: 867px;
        position: relative;
    }
}

@media (max-width: 1720px) {
    .fwqq .ibox .two_big_img {
        width: 100%;
        height: 847px;
        position: relative;
    }
}

@media (max-width: 1680px) {
    .fwqq .ibox .hzzb {
        right: -3.875%;
    }

    .fwqq .ibox .two_big_img {
        width: 100%;
        height: 757px;
        position: relative;
    }
}

@media (max-width: 1440px) {
    .fwqq .ibox .hzzb {
        top: 42%;
        right: -3.875%;
        padding: 20px;
    }

    .fwqq .ibox .hzzb.hzzb2 {
        top: 67%;
    }

    .fwqq .ibox .two_big_img {
        width: 100%;
        height: 717px;
        position: relative;
    }

    .fwqq .ibox .two_big_img .two_img.ch .line {
        display: none;
    }
}

@media (max-width: 1030px) {
    .fwqq .ibox .two_big_img {
        height: 578px;
    }

    .fwqq .ibox .hzzb {
        padding: 15px 20px;
    }

    .fwqq .ibox .quanguo {
        width: 280px;
        height: 40px;
        bottom: 20px;
    }

    .fwqq .ibox .two_big_img .two_img.qq .fp {
        top: 55.5%;
        left: 75%;
    }

    .fwqq .ibox .two_big_img .two_img.ch .fp {
        top: 62%;
        left: 70%;
    }
}

@media (max-width: 960px) {
    .fwqq .ibox .two_big_img {
        height: 217px;
    }

    .fwqq .ibox .hzzb {
        position: relative;
        top: auto;
        left: auto;
        right: 0;
        transform: translate(0, 0);
        margin: 0 auto;
    }

    .fwqq .ibox .hzzb.hzzb2 {
        top: 0;
        margin-top: 20px;
    }

    .fwqq .ibox .two_big_img .two_img.qq .fp {
        top: 48.5%;
        left: 72%;
    }

    .fwqq .ibox .two_big_img .two_img.ch .fp {
        top: 56%;
        left: 67%;
    }

    .fwqq .ibox .quanguo {
        position: relative;
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
        transform: translate(0, 0);
        margin: 20px auto 0;
    }

    .fwqq {
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .pageService img {
        max-width: 100%;
    }
}


/* 服务支持 - 资料下载 */
.pageDownload .icon {
    width: 1em;
    height: 1em;
    font-size: 22px;
    vertical-align: -0.15em;
    fill: #c8c8c8;
    overflow: hidden;
    transition: all ease .3s;
}

.pageDownload {
    max-width: 1200px;
    margin: 25px auto;
}

.pageDownload .download_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pageDownload .download_flex .load_item {
    width: 48%;
    padding: 0 4px 28px 12px;
    border-bottom: 1px dashed #cecece;
    margin-bottom: 20px;
}

.pageDownload .load_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pageDownload .load_flex .ti_fl {
    width: 60%;
    display: flex;
}

.pageDownload .load_flex .ti_fl .icon {
    font-size: 30px;
}

.pageDownload .load_flex .ti_fl .content {
    padding-left: 30px;
    width: 66%;
    box-sizing: border-box;
}

.pageDownload .load_flex .ti_fl .content h4 {
    color: #333333;
    font-weight: normal;
    line-height: 1.5;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pageDownload .load_flex .load_fr {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pageDownload .load_flex .ti_fl .content p {
    color: #333;
    margin-top: 12px;
    font-size: 16px;
}

.pageDownload .load_flex .load_fr a {
    font-size: 14px;
    box-sizing: border-box;
    width: 145px;
    height: 42px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border: 1px solid #e2e2e2;
    color: #333333;
    margin: 4px 0;
    text-decoration: none;
    transition: all ease .3s;
}

.pageDownload .load_flex .load_fr a:hover {
    background-color: #0984D4;
    color: #ffffff;
}

.pageDownload .load_flex .load_fr a:hover .icon {
    fill: #ffffff;
}

.pageDownload .icon {
    flex-shrink: 0;
}


@media(max-width:992px) {
    .pageDownload .download_flex .load_flex {
        flex-direction: column;
    }

    .pageDownload .load_flex .load_fr {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }
}

@media(max-width:765px) {
    .pageDownload .download_flex .load_item {
        width: 100%;
        padding: 0 5px 15px 5px;
    }

    .pageDownload .load_flex .ti_fl {
        width: 100%;
        flex-direction: column;
    }

    .pageDownload .load_flex .ti_fl .content {
        padding-left: 0;
        margin: 15px 0 15px 0;
    }

    .pageDownload .load_flex .ti_fl .content h4 {
        font-size: 14px;
    }

    .pageDownload .load_flex .ti_fl .content p {
        font-size: 13px;
    }

    .pageDownload .load_flex .load_fr {
        margin-top: 0;
    }

    .pageDownload .load_flex .load_fr a {
        font-size: 14px;
        padding: 0px 20px;
        height: 35px;
    }
}


/* 新闻资讯 */
.pageNews .inner_5050 .page-wrap {
    padding: 0 10px;
}

.pageNews .inner_5050 .page-wrap .news-wrap .container {
    width: 100%;
    max-width: 1600px;
    margin: 40px auto 0;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
}

.pageNews .inner_5050 .page-wrap .news-wrap li {
    width: 31.25%;
    background: #fff;
    padding: 0;
    margin-right: 3.125%;
    margin-bottom: 3.125%;
    list-style: none;
    transition: all ease .35s;
}

.pageNews .inner_5050 .page-wrap .news-wrap li:hover .news-con h3 a {
    color: #0984D4;
}

.pageNews .inner_5050 .page-wrap .news-wrap li:hover .news-img img {
    transform: scale(1.1);
}

.pageNews .inner_5050 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-img {
    width: 100%;
    overflow: hidden;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-img a{
    display: block;
    width: 100%;
    height: 250px;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    transition: all ease .5s;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con {
    width: 100%;
    margin-top: 15px;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con h3 {
    border-bottom: 1px solid #e8e8e8;
    padding: 15px 10px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con h3 a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    text-decoration: none;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: #999999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 10px 0;
    padding: 0 10px;
}

.pageNews .news-more {
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con span:nth-of-type(1) {
    padding-left: 25px;
    background: url(/ufile/121452/newdir1/news_icon4.png) no-repeat 5px center;
    display: none;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con span:nth-of-type(2) {
    padding: 10px;
    background: #0984D4;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con span {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    display: inline-block;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-more a {
    display: block;
    width: 120px;
    height: 30px;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    text-align: center;
    color: #999;
    font-size: 0;
    line-height: 30px;
    transition: all ease .5s;
    text-decoration: none;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-more a::before {
    content: '查看详情';
    font-size: 14px;
    line-height: 30px;
}

.pageNews .pagination>li {
    display: inline-block;
    margin: 0 5px;
}

.pageNews .inner_5050 .page-wrap .news-wrap li:nth-child(3n) {
    margin-right: 0;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-more a:hover {
    background: #0984D4;
    color: #fff;
    border: 1px solid #0984D4;
}

@media (max-width: 992px) {
    .pageNews .inner_5050 .page-wrap .news-wrap .container {
        justify-content: space-between;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li {
        padding: 15px;
        width: 100%;
        float: left;
        margin-right: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li:nth-child(2n) {
        margin-right: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-con p {
        margin: 5px 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-more a {
        margin-top: 10px;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-con h3 a {
        display: block;
        padding: 5px 0;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-size: 15px;
        padding: 0;
    }
}

@media (max-width:765px) {
    .pageNews .inner_5050 .page-wrap .news-wrap .container {
        margin: 0;
    }

    .pageNews .inner_5050 .page-wrap {
        padding: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li:nth-child(2n) {
        margin-right: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-con h3 a {
        font-size: 15px;
        margin-top: 10px;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-img {
        width: 100%;
        text-align: center;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-con {
        width: 100%;
        padding: 0;
    }
}

@media (max-width:440px) {
    .pageNews .inner_5050 .page-wrap .news-wrap li {
        width: 100%;
        margin-right: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li:nth-child(2n) {
        margin-right: 0;
    }
}

.pageNews .inner_5050 .m-page {
    text-align: center;
    margin: 10px 0;
}

.pageNews .inner_5050 .m-page .pagination>li>a,
.pageNews .inner_5050 .m-page .pagination>li>span {
    color: #777;
    border: none;
}

.pageNews .inner_5050 .m-page .pagination>.active>a,
.pageNews .inner_5050 .m-page .pagination>.active>span,
.pageNews .inner_5050 .m-page .pagination>.active>a:hover,
.pageNews .inner_5050 .m-page .pagination>.active>span:hover,
.pageNews .inner_5050 .m-page .pagination>.active>a:focus,
.m-page .pagination>.active>span:focus {
    background-color: #0984D4;
    border-color: #0984D4;
    color: #fff;
}

.pageNews .inner_5050 .m-page .pagination>li>a:hover,
.pageNews .inner_5050 .m-page .pagination>li>span:hover,
.pageNews .inner_5050 .m-page .pagination>li>a:focus,
.pageNews .inner_5050 .m-page .pagination>li>span:focus {
    background-color: #0984D4;
    border-color: #0984D4;
    color: #fff;
}

@media (max-width: 768px) {
    .pageNews .inner_5050 .m-page {
        margin: 10px 0;
    }
}

@media (max-width: 600px) {
    .pageNews .news-more {
        position: relative;
    }

}


.pageNews .inner_5050 .page-wrap {
    padding: 0 10px;
}

.pageNews .inner_5050 .page-wrap .news-wrap .container {
    width: 100%;
    max-width: 1600px;
    margin: 40px auto 0;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
}

.pageNews .inner_5050 .page-wrap .news-wrap li {
    width: 31.25%;
    background: #fff;
    padding: 0;
    margin-right: 3.125%;
    margin-bottom: 3.125%;
    list-style: none;
    transition: all ease .35s;
}

.pageNews .inner_5050 .page-wrap .news-wrap li:hover .news-con h3 a {
    color: #0984D4;
}

.pageNews .inner_5050 .page-wrap .news-wrap li:hover .news-img img {
    transform: scale(1.1);
}

.pageNews .inner_5050 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-img {
    width: 100%;
    overflow: hidden;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-img img {
    max-width: 100%;
    transition: all ease .5s;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con {
    width: 100%;
    margin-top: 15px;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con h3 {
    border-bottom: 1px solid #e8e8e8;
    padding: 15px 10px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con h3 a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    text-decoration: none;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: #999999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 10px 0;
    padding: 0 10px;
}

.pageNews .news-more {
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con span:nth-of-type(1) {
    padding-left: 25px;
    background: url(static/image/news_icon4.png) no-repeat 5px center;
    display: none;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con span:nth-of-type(2) {
    padding: 10px;
    background: #0984D4;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-con span {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    display: inline-block;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-more a {
    display: block;
    width: 120px;
    height: 30px;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    text-align: center;
    color: #999;
    font-size: 0;
    line-height: 30px;
    transition: all ease .5s;
    text-decoration: none;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-more a::before {
    content: '查看详情';
    font-size: 14px;
    line-height: 30px;
}

.pageNews .pagination>li {
    display: inline-block;
    margin: 0 5px;
}

.pageNews .inner_5050 .page-wrap .news-wrap li:nth-child(3n) {
    margin-right: 0;
}

.pageNews .inner_5050 .page-wrap .news-wrap li .news-more a:hover {
    background: #0984D4;
    color: #fff;
    border: 1px solid #0984D4;
}

@media (max-width: 992px) {
    .pageNews .inner_5050 .page-wrap .news-wrap .container {
        justify-content: space-between;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li {
        padding: 15px;
        width: 100%;
        float: left;
        margin-right: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li:nth-child(2n) {
        margin-right: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-con p {
        margin: 5px 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-more a {
        margin-top: 10px;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-con h3 a {
        display: block;
        padding: 5px 0;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-size: 15px;
        padding: 0;
    }
}

@media (max-width:765px) {
    .pageNews .inner_5050 .page-wrap .news-wrap .container {
        margin: 0;
    }

    .pageNews .inner_5050 .page-wrap {
        padding: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li:nth-child(2n) {
        margin-right: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-con h3 a {
        font-size: 15px;
        margin-top: 10px;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-img {
        width: 100%;
        text-align: center;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li .news-con {
        width: 100%;
        padding: 0;
    }
}

@media (max-width:440px) {
    .pageNews .inner_5050 .page-wrap .news-wrap li {
        width: 100%;
        margin-right: 0;
    }

    .pageNews .inner_5050 .page-wrap .news-wrap li:nth-child(2n) {
        margin-right: 0;
    }
}


/* 新闻资讯 - 新闻详情 */
.pageNewsDetail .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.pageNewsDetail .content-wrapper .news-content .header-info {
    text-align: center;
    border-bottom: 1px solid #efefef;
    margin-bottom: 30px;
    overflow: visible;
}

.pageNewsDetail .content-wrapper .news-content .header-info h3 {
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 150%;
}

.pageNewsDetail .content-wrapper .news-content .header-info .o-info {
    margin-bottom: 30px;
}

.pageNewsDetail .content-wrapper .news-content .header-info .o-info>div {
    display: inline-block;
    font-size: 14px;
    margin: 0 10px;
    color: #666;
}

.pageNewsDetail .content-wrapper .news-content .header-info .o-info>div span {
    color: #0984D4;
}
.pageNewsDetail .content-wrapper .news-content .description{
    font-size: 16px;
    line-height: 2;
}
.pageNewsDetail .content-wrapper .news-content .description img{
    max-width: 100%;
    height: auto!important;
}
.pageNewsDetail .m-flip {
    margin: 50px 0;
}

.pageNewsDetail .m-flip .flip li a:hover {
    color: #0984D4;
}

.pageNewsDetail .m-flip .flip {
    list-style: none;
    padding-left: 0;
    overflow: hidden;
}

.pageNewsDetail .m-flip .flip li {
    line-height: 22px;
    padding: 10px;
    margin-top: 15px;
    position: relative;
    border: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
    .pageNewsDetail img {
        max-width: 100%;
    }

    .pageNewsDetail .content-wrapper .news-content .header-info h3 {
        font-size: 16px;
    }
}


/* 联系我们 - 联系我们 */
.sdbk {
    width: 100%;
}

.sdbk .ibox {
    max-width: 1600px;
    padding: 80px 15px;
    margin: 46px auto 0;
}

.sdbk .ibox .three_img {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sdbk .ibox .three_img .three {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sdbk .ibox .three_img .three .big_img {
    width: 138px;
    height: 138px;
    border: 2px solid #0984D4;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sdbk .ibox .three_img .three .big_img .icon {
    font-size: 100px;
    width: 1em;
    height: 1em;
    fill: #0984D4;
}

.sdbk .ibox .three_img .three.borc .big_img {
    border: 5px solid #0984D4;
}

.sdbk .ibox .three_img .three .d_text {
    color: #333;
    font-size: 22px;
    margin: 25px 0 30px 0;
}

.sdbk .ibox .three_img .three .c_text {
    color: #666;
    font-size: 26px;
}

.sdbk .ibox .three_img .three a.c_text:hover {
    color: #0984D4;
}

.sdbk .ibox .three_img .line {
    width: 2px;
    height: 60px;
    background-color: rgba(179, 33, 35, .3);
}

.sdbk .map {
    margin: 25px 0;
}

@media (max-width: 1030px) {
    .sdbk .ibox .three_img .three .d_text {
        font-size: 16px;
    }

    .sdbk .ibox .three_img .three .c_text {
        font-size: 22px;
    }

    .sdbk .ibox {
        padding: 60px 15px;
    }

    .sdbk {
        height: auto;
    }
}

@media (max-width: 960px) {
    .sdbk .ibox {
        padding: 30px 15px;
    }

    .sdbk .ibox .three_img {
        display: block;
    }

    .sdbk .ibox .three_img .line {
        width: 60px;
        height: 2px;
        background-color: rgba(179, 33, 35, .3);
        margin: 20px auto;
    }

    .sdbk .ibox .three_img .three .d_text {
        color: #333;
        margin: 20px 0 15px 0;
    }
}

/* 联系我们 - 在线留言 */
.pageMessage .inquiry {
    width: 100%;
    max-width: 1400px;
    padding: 0;
}

.pageMessage .title-in h4 {
    font-family: Arial, 'Helvetica Neue', Helvetica;
    font-size: 48px;
    line-height: 1;
    display: block;
    text-transform: capitalize;
}

.pageMessage .inquiry .message form {
    margin-top: 20px;
    margin-bottom: 30px;
}

.pageMessage .inquiry .message .read {
    font-weight: bold;
}

.pageMessage .inquiry .message input,
.inquiry .message textarea {
    font-size: 14px;
    line-height: 25px;
    width: 100%;
    min-height: 45px;
    margin-top: 18px;
    padding: 10px 20px;
    border: 1px solid #e6e6e6;
    outline: none;
}

.pageMessage .inquiry .message textarea {
    resize: none;
}

.pageMessage .inquiry .message .submit {
    font-size: 16px;
    line-height: 50px;
    display: block;
    width: 100%;
    height: 50px;
    margin-top: 20px;
    padding: 0 40px;
    -webkit-transition: all .4s;
    transition: all .4s;
    color: #fff;
    border-radius: 0;
    outline: none;
    background: linear-gradient(to top right, #0984D4, #3FE12B);
}

.pageMessage .title-in {
    display: none;
}

.pageMessage .inquiry .message input,
.inquiry .message textarea {
    line-height: 36px;
    min-height: 45px;
    margin-top: 18px;
    border: 1px solid #e6e6e6;
    width: 100%;
    height: 62px;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    margin-bottom: 10px;
    background: none;
}

.pageMessage .inquiry .message textarea {
    line-height: 20px !important;
    padding-top: 12px !important;
}

.pageMessage .inquiry .message .submit {
    width: 100%;
    height: 62px;
    background: linear-gradient(to top right, #0984D4, #3FE12B);
    color: #fff;
    font-size: 14px;
    border: none;
    outline: none;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-appearance: button;
    cursor: pointer;
}

.pageMessage .input-item {
    position: relative;
    width: 50%;
}

.pageMessage .input-item:nth-child(4) {
    width: 100%;
}

.pageMessage .inquiry .message textarea {
    height: 160px;
}

.pageMessage .input-item:nth-child(5) {
    width: 25%;
}

.pageMessage .input-item #checkcode {
    float: left;
    width: 68%;
    margin-bottom: 10px;
    border-right: none;
}

.pageMessage .input-item .checkCodeImg {
    position: absolute;
    top: 18px;
    right: 15px;
    display: block;
    text-align: center;
    width: 30%;
    height: 62px;
    font-size: 0;
    padding: 5px 10px;
    border: 1px solid #e6e6e6;
    border-left: none;
}

.pageMessage .input-item .checkCodeImg img {
    cursor: pointer;
}

.pageMessage .input-item .checkCodeImg img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
}


@media(max-width:765px) {

    .pageMessage .inquiry .message form {
        margin-top: 0;
    }

    .pageMessage .input-item {
        width: 100%;
    }

    .pageMessage .inquiry .message input,
    .inquiry .message textarea {
        margin-top: 0px;
    }

    .pageMessage .input-item #checkcode {
        margin-top: 0px;
    }

    .pageMessage .input-item .checkCodeImg {
        top: 0;
    }

    .pageMessage .input-item:nth-child(5) {

        width: 100%;
    }

    .pageMessage .inquiry .message form>div {
        width: 100%;
    }

    .pageMessage .inquiry .message .submit {
        margin-top: 0px;
    }
}

/* 招贤纳士 */
.pageHire .join_list{
	text-align: left;
	position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 30px 0;
}
.join_list li{
	width: 100%;
	color: #000;
	font-size: 12px;
}
.join_list li .li_con{
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	position: relative;
	padding: 30px 2%;
	cursor: pointer;
}
.join_list li:first-child .li_con{
	border-top: 1px solid #e5e5e5;
}
.join_list li:nth-child(2n+2) .li_con{
	background-color: #fcfcfc;
}
.join_list li .li_con:after{
	content: '';
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 8px solid #000;
	border-bottom: none;
	position: absolute;
	right: 4%;
	top: 36px;
	/*transition: all .3s;*/
}
.join_list li:hover .li_con:after{
	border-top: 8px solid #0984D4;
}
.join_list li.on .li_con:after{
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 8px solid #0984D4;
	border-top: none;
}
.join_list li .li_con b{
	font-size: 16px;
}
.join_list li .li_con span{
	float: right;
	opacity: .6;
	margin-right: 60px;
}

.join_list li .li_detail{
	width: 100%;
	color: #000;
	font-size: 14px;
	border-bottom: 1px solid #e5e5e5;
	padding: 0 4% 80px;
	display: none;
}
.join_list li .li_detail p{
	line-height: 30px;
}
.join_list li .li_detail b{
	font-weight: bold;
}

.li_detail_jy{
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	padding: 35px 0;
}
.li_detail_jy p{
	display: inline-block;
	width: 36%;
}
.li_detail_jy p:nth-child(2),.li_detail_jy p:nth-child(5){
	width: 42%;
}
.li_detail_jy p:nth-child(3),.li_detail_jy p:nth-child(6){
	width: 20%;
}
.li_detail_jy p b{
	margin-right: 10px;
}


/* 底部 */
.footer {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    padding-top: 40px;
}

.footer .ibox {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer .ibox .up {
    margin-bottom: 61px;
}

.footer .flogo {
    height: 90px;
}

.footer .flogo img {
    height: 100%;
}

.footer a {
    text-decoration: none;
    color: inherit;
    transition: all ease .3s;
}

.footer .ibox .up .two {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 35px 0 30px 0;
}

.footer .ibox .up .two_left {
    width: 100%;
    display: flex;
}

.footer .ibox .up .two_left .six {
    width: 16%;
}

.footer .ibox .up .two_left .six a {
    display: block;
    margin-bottom: 23px;
    color: rgba(51, 51, 51, .65);
}

.footer .ibox .up .two_left .six a:hover {
    display: block;
    margin-bottom: 23px;
    color: #333;
    transform: translateX(5px);
}

.footer .ibox .up .two_left .six a:first-child {
    margin-bottom: 30px;
    color: #222;
}

.footer .ibox .up .two_left .six a:last-child {
    margin-bottom: 0px;
}

.footer .ibox .up .two_right {
    width: 220px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer .ibox .up .two_right .ewm_text {
    color: #222;
    margin-top: 19px;
}

.footer .ibox .up .three {
    width: 100%;
    display: flex;
}

.footer .ibox .up .three .two_text {
    margin-right: 117px;
}

.footer .ibox .up .three .two_text:last-child {
    margin-right: 0;
}

.footer .ibox .up .three .two_text .d_text {
    color: #888;
    font-size: 14px;
}

.footer .ibox .up .three .two_text .c_text {
    display: block;
    color: #333;
    margin-top: 10px;
    font-weight: bold;
    font-size: 24px;
}

.footer .down {
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid #e3e3e8;
}

.footer .down .ibox {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .down .bq_left {
    color: #999999;
}

.footer .down .bq_left a {
    color: #999999;
    margin: 0 0px 0 6px;
}

.footer .down .bq_right {
    color: #999999;
}

.footer .down .bq_right a {
    color: #999999;
}

@media (max-width: 1440px) {
    .footer .ibox .up .right {
        padding-left: 0;
    }

    .footer .ibox .up .two_left .six {
        width: 15%;
    }

    .footer .ibox .up .two_left .six:nth-child(3) {
        width: 20%;
    }
}

@media (max-width: 1366px) {
    .footer .down {
        border-top: 0;
    }
}

@media (max-width: 960px) {
    .footer {
        padding-top: 0;
    }

    .footer .ibox .up {
        display: none;
    }

    .footer .down .right {
        display: none;
    }

    .footer .down .left {
        display: block;
        text-align: center;
    }

    .footer .down .left .bq_left {
        line-height: 1.5;
        margin-bottom: 3px;
    }

    .footer .down .left .bq_right {
        margin-bottom: 3px;
    }

    .footer .down .ibox {
        height: auto;
        padding: 15px 0;
    }

    .footer .down {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 20px 0;
    }

    .footer .down .bq_left {
        text-align: center;
        line-height: 1.5;
    }

    .footer .down .bq_right {
        text-align: center;
        line-height: 1.5;
    }
}


.pages{
	margin-top: 40px;
	margin-bottom: 20px;
	text-align: center;
}
.pages b, .page-this{
	display: inline-block;
	background: var(--color01);
	padding: 0 15px;
	font-size: 14px;
	color: #fff;
	line-height: 40px;
	font-weight: 400;
	margin: 0 5px;
}
.pages a, .page-end, .page-start{
	margin-bottom: 10px;
	display: inline-block;
	background: #efefef;
	padding: 0 15px;
	font-size: 12px;
	color: #666;
	height: 40px;
	line-height: 40px;
}
.pages a:hover, .pages b{
	background: var(--color01);
    color: #fff;
}
.pages a, .pages b, .page-end, .page-start, .page-this{line-height:40px}
/*page next*/
.page-next{margin-top: 20px;border-top: dashed 1px #ddd;padding-top: 15px;}
.page-next p{font-size: 14px;line-height: 30px;color: #999}
.page-next p a{color: #999}
.page-next p:hover,.page-next p:hover a{color: var(--color01);font-weight: bold}


.pageOrganization .header-info{
    padding: 40px 0;
    border-bottom: none;
}