﻿@charset "utf-8";

.flex {
    display: flex;
}

    .flex.column {
        flex-direction: column;
    }

        .flex.column.column-center {
            align-content: center;
        }

        .flex.column.column-space-between {
            align-content: space-between;
        }

        .flex.column.column-start {
            align-content: flex-start;
        }

        .flex.column.column-end {
            align-content: flex-end;
        }

    .flex.center {
        justify-content: center;
    }

    .flex.start {
        justify-content: flex-start;
    }

    .flex.end {
        justify-content: flex-end;
    }

    .flex.space-between {
        justify-content: space-between;
    }

    .flex.space-around {
        justify-content: space-around;
    }

    .flex.middle {
        align-items: center;
    }

    .flex.stretch {
        align-items: stretch;
    }

    .flex.top {
        align-items: flex-start;
    }

    .flex.bottom {
        align-items: flex-end;
    }

    .flex.wrap {
        flex-wrap: wrap;
    }

    .flex.grow {
        flex-grow: 1;
    }

.flex-one {
    flex: 1;
}

.flex-two {
    flex: 2;
}

body {
    margin: 0;
    padding: 0;
    color: #333333;
    position: relative;
    min-height: 100vh;
    font-family: "Microsoft YaHei";
    line-height: 1.2;
    font-size: 16px;
}

    body .en {
        font-family: Arial;
    }

a {
    -webkit-text-fill-color: inherit;
    -webkit-opacity: 1;
    color: inherit;
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

.color-blue {
    color: #23a5ea;
}

.color-white {
    color: #ffffff;
}

input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    -webkit-text-fill-color: #cccccc;
    color: #cccccc;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    -webkit-text-fill-color: #cccccc;
    color: #cccccc;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    -webkit-text-fill-color: #cccccc;
    color: #cccccc;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    -webkit-text-fill-color: #cccccc;
    color: #cccccc;
}

.transition {
    transition: all 0.3s cubic-bezier(0.17, 0.84, 0.44, 1) 0s;
    -webkit-transition: all 0.3s cubic-bezier(0.17, 0.84, 0.44, 1) 0s;
}

.transition-line {
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
}

.transition-opacity-transform:nth-of-type(1) {
    transition: opacity 0.15s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.transition-opacity-transform:nth-of-type(2) {
    transition: opacity 0.15s ease-out 0.05s, transform 0.3s ease-out 0.05s, -webkit-transform 0.3s ease-out 0.05s;
}

.transition-opacity-transform:nth-of-type(3) {
    transition: opacity 0.15s ease-out 0.1s, transform 0.3s ease-out 0.1s, -webkit-transform 0.3s ease-out 0.1s;
}

.transition-opacity-transform:nth-of-type(4) {
    transition: opacity 0.15s ease-out 0.15s, transform 0.3s ease-out 0.15s, -webkit-transform 0.3s ease-out 0.15s;
}

.transition-opacity-transform:nth-of-type(5) {
    transition: opacity 0.15s ease-out 0.2s, transform 0.3s ease-out 0.2s, -webkit-transform 0.3s ease-out 0.2s;
}

.transition-opacity-transform:nth-of-type(6) {
    transition: opacity 0.15s ease-out 0.25s, transform 0.3s ease-out 0.25s, -webkit-transform 0.3s ease-out 0.25s;
}

.tab-template .tabs .tab, .section-tab-template .tabs .tab {
    cursor: pointer;
}

    .tab-template .tabs .tab.active, .section-tab-template .tabs .tab.active {
        color: #ffffff;
    }

.tab-template .tab-containers .tab-container, .section-tab-template .tab-containers .tab-container {
    display: none;
}

    .tab-template .tab-containers .tab-container.active, .section-tab-template .tab-containers .tab-container.active {
        display: block;
    }

.mobile .section-top-banner {
    width: 100%;
    background-color: #ffffff;
}

    .mobile .section-top-banner .section-top-left {
        height: 1rem;
    }

        .mobile .section-top-banner .section-top-left .logo {
            width: 0.94rem;
            height: auto;
            display: block;
            margin-left: 0.63rem;
            margin-right: 0.63rem;
        }

    .mobile .section-top-banner .section-top-right {
        height: 1rem;
    }

        .mobile .section-top-banner .section-top-right .search, .mobile .section-top-banner .section-top-right .menu {
            cursor: pointer;
        }

        .mobile .section-top-banner .section-top-right .search-group {
            height: 1rem;
            line-height: 0.33rem;
            overflow: hidden;
        }

            .mobile .section-top-banner .section-top-right .search-group .search-icon {
                height: 0.33rem;
                width: 0.35rem;
                display: block;
            }

            .mobile .section-top-banner .section-top-right .search-group .search-box {
                visibility: hidden;
                position: relative;
                display: flex;
                width: 0;
                overflow: hidden;
            }

                .mobile .section-top-banner .section-top-right .search-group .search-box .search-input {
                    height: 0.33rem;
                    line-height: 0.33rem;
                    font-size: 0.24rem;
                    width: 0;
                    border: none;
                    background: transparent;
                    padding: 0 0.25rem;
                    color: #333333;
                }

                    .mobile .section-top-banner .section-top-right .search-group .search-box .search-input:focus {
                        border: none;
                        box-shadow: none;
                        outline: none;
                    }

                .mobile .section-top-banner .section-top-right .search-group .search-box .close-icon {
                    height: 0.33rem;
                    width: 0.33rem;
                    display: none;
                }

            .mobile .section-top-banner .section-top-right .search-group.open {
                position: absolute;
                top: 0;
                left: 0;
                right: 1.03rem;
                background-color: #ffffff;
            }

                .mobile .section-top-banner .section-top-right .search-group.open > .search-icon {
                    display: none;
                }

                .mobile .section-top-banner .section-top-right .search-group.open .search-box {
                    visibility: visible;
                    width: 90%;
                }

                    .mobile .section-top-banner .section-top-right .search-group.open .search-box .search-input {
                        width: calc(100% - 0.66rem);
                    }

                    .mobile .section-top-banner .section-top-right .search-group.open .search-box .search-icon, .mobile .section-top-banner .section-top-right .search-group.open .search-box .close-icon {
                        display: block;
                    }

        .mobile .section-top-banner .section-top-right .menu-group {
            height: 1rem;
        }

            .mobile .section-top-banner .section-top-right .menu-group .open-menu-icon, .mobile .section-top-banner .section-top-right .menu-group .close-menu-icon {
                height: 0.33rem;
                width: 0.35rem;
                margin-left: 0.5rem;
                margin-right: 0.2rem;
                display: block;
            }

            .mobile .section-top-banner .section-top-right .menu-group .close-menu-icon {
                display: none;
            }

            .mobile .section-top-banner .section-top-right .menu-group .menu-list {
                position: absolute;
                top: 1rem;
                left: 0;
                right: 0;
                background-color: #ffffff;
                height: 0;
                overflow: hidden;
                z-index: -1;
            }

                .mobile .section-top-banner .section-top-right .menu-group .menu-list .menu-list-menu {
                    position: relative;
                    padding-top: 0.24rem;
                    padding-bottom: 0.24rem;
                    font-size: 0.24rem;
                    color: #000;
                    line-height: 0.24rem;
                    letter-spacing: 0.3px;
                    display: block;
                    margin: 0.12rem 0.24rem;
                    border-bottom: 1px solid #cccccc;
                    opacity: 0;
                    transform: translateY(30px);
                }

            .mobile .section-top-banner .section-top-right .menu-group.open .open-menu-icon {
                display: none;
            }

            .mobile .section-top-banner .section-top-right .menu-group.open .close-menu-icon {
                display: block;
            }

            .mobile .section-top-banner .section-top-right .menu-group.open .menu-list {
                display: block;
                height: calc(100vh - 1rem);
                z-index: 1111;
            }

                .mobile .section-top-banner .section-top-right .menu-group.open .menu-list .menu-list-menu {
                    opacity: 1;
                    transform: translateY(0px);
                }


.mobile .section-text-banner {
    position: relative;
}

    .mobile .section-text-banner .image {
        width: 100%;
    }

    .mobile .section-text-banner .section-banner-titles {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0.55rem;
        z-index: 999;
    }

        .mobile .section-text-banner .section-banner-titles .section-banner-title {
            font-size: 0.72rem;
            color: #ffffff;
            position: relative;
            padding-bottom: 0.35rem;
        }

            .mobile .section-text-banner .section-banner-titles .section-banner-title:after {
                content: "";
                width: 0.6rem;
                height: 0.07rem;
                position: absolute;
                bottom: 0.2rem;
                left: 0;
                display: block;
                z-index: 100;
                background-color: #ffffff;
            }

        .mobile .section-text-banner .section-banner-titles .section-banner-des {
            font-size: 0.38rem;
            padding-bottom: 0.1rem;
            color: #ffffff;
        }

.mobile .section-product-banner {
    position: relative;
    width: 100%;
    height: 4rem;
    overflow: hidden;
}


    .mobile .section-product-banner .section-banner-titles {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0.55rem;
        z-index: 999;
    }

        .mobile .section-product-banner .section-banner-titles .section-banner-title {
            font-size: 0.72rem;
            color: #ffffff;
            position: relative;
            padding-bottom: 0.35rem;
        }

            .mobile .section-product-banner .section-banner-titles .section-banner-title:after {
                content: "";
                width: 0.6rem;
                height: 0.07rem;
                position: absolute;
                bottom: 0.2rem;
                left: 0;
                display: block;
                z-index: 100;
                background-color: #ffffff;
            }

        .mobile .section-product-banner .section-banner-titles .section-banner-des {
            font-size: 0.38rem;
            padding-bottom: 0.1rem;
            color: #ffffff;
        }

.mobile .section-content-title .section-content-title-title {
    text-align: center;
    font-size: 0.48rem;
    padding-top: 0.45rem;
}

    .mobile .section-content-title .section-content-title-title .bull {
        padding: 0 14px;
    }

.mobile .section-content-title .section-content-title-des {
    text-transform: uppercase;
    padding-top: 0.05rem;
    font-size: 0.16rem;
    text-align: center;
}

.mobile .tab-template .tabs, .mobile .section-tab-template .tabs {
    padding-top: 0.23rem;
    padding-bottom: 0.3rem;
    position: relative;
}

    .mobile .tab-template .tabs:before, .mobile .tab-template .tabs:after, .mobile .section-tab-template .tabs:before, .mobile .section-tab-template .tabs:after {
        content: "";
        position: absolute;
        top: 50%;
        display: block;
        width: calc((100% - 16.75rem) / 2);
        height: 0.01rem;
        background-color: #e5e5e5;
    }

    .mobile .tab-template .tabs:before, .mobile .section-tab-template .tabs:before {
        left: 0;
    }

    .mobile .tab-template .tabs:after, .mobile .section-tab-template .tabs:after {
        right: 0;
    }

    .mobile .tab-template .tabs .tab, .mobile .section-tab-template .tabs .tab {
        margin: 0 0.15rem;
        width: 1.85rem;
        height: 0.6rem;
        font-weight: bold;
        font-size: 0.27rem;
        text-align: center;
        line-height: 0.6rem;
        display: block;
    }

        .mobile .tab-template .tabs .tab.active, .mobile .section-tab-template .tabs .tab.active {
            background: url(../image/icons/tab-bk.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

.mobile .tab-template .tab-container, .mobile .section-tab-template .tab-container {
    padding: 0 0.2rem;
}

.mobile .swiper-button-next, .mobile .swiper-button-prev {
    top: unset;
    bottom: 0.5rem;
    left: unset;
    right: calc(50% + 0.25rem);
    height: 0.11rem;
    width: 0.58rem;
    z-index: 100;
}

    .mobile .swiper-button-next:after, .mobile .swiper-button-prev:after {
        content: "";
        display: block;
        height: 0.11rem;
        width: 0.58rem;
        background: url(../image/icons/swiper-left.png) no-repeat 0 0;
        background-size: 100% 100%;
    }

    .mobile .swiper-button-next .swiper-button-next, .mobile .swiper-button-prev .swiper-button-next {
        left: calc(50% + 0.25rem);
        right: unset;
    }

        .mobile .swiper-button-next .swiper-button-next:after, .mobile .swiper-button-prev .swiper-button-next:after {
            background: url(../image/icons/swiper-right.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

.pc {
    /* .pagination li i {font-weight:bold;font-size:18px;padding:0 3px} */
}

    .pc .container {
        width: 1200px;
        margin: 0 auto;
    }

        .pc .container .container-layout {
            margin: 0 auto;
            padding: 0 10px;
        }

    .pc .tab-template .tabs, .pc .section-tab-template .tabs {
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
        margin: 50px auto 60px;
    }

        .pc .tab-template .tabs:before, .pc .tab-template .tabs:after, .pc .section-tab-template .tabs:before, .pc .section-tab-template .tabs:after {
            content: "";
            position: absolute;
            top: 50%;
            display: block;
            width: calc((100% - 480px) / 2);
            height: 0.01rem;
            background-color: #e5e5e5;
        }

        .pc .tab-template .tabs:before, .pc .section-tab-template .tabs:before {
            left: 0;
        }

        .pc .tab-template .tabs:after, .pc .section-tab-template .tabs:after {
            right: 0;
        }

        .pc .tab-template .tabs .tab, .pc .section-tab-template .tabs .tab {
            margin: 0 15px;
            width: 115px;
            height: 36px;
            font-weight: bold;
            font-size: 18px;
            text-align: center;
            line-height: 36px;
            display: block;
        }

            .pc .tab-template .tabs .tab.active, .pc .section-tab-template .tabs .tab.active {
                background: url(../image/icons/tab-bk.png) no-repeat 0 0;
                background-size: 100% 100%;
            }

    .pc .tab-template .tab-container, .pc .section-tab-template .tab-container {
        padding: 0 20px;
    }

    .pc .section-top-banner {
        width: 100%;
        background-color: #ffffff;
        height: 100px;
    }

        .pc .section-top-banner .section-top-left {
            height: 100px;
            background-color: #23a5ea;
            width: 280px;
        }

            .pc .section-top-banner .section-top-left .logo {
                width: 95px;
                height: auto;
                display: block;
                margin: 0;
            }

            .pc .section-top-banner .section-top-left.white {
                background-color: transparent;
            }

        .pc .section-top-banner .section-top-right {
            height: 100px;
        }

            .pc .section-top-banner .section-top-right .link {
                width: 95px;
                height: 35px;
                text-align: center;
                line-height: 35px;
                display: block;
                margin-right: 60px;
                font-size: 16px;
            }

                .pc .section-top-banner .section-top-right .link.active {
                    background: url(../image/icons/tab-bk.png) no-repeat 0 0;
                    background-size: 100% 100%;
                    color: #ffffff;
                }

                .pc .section-top-banner .section-top-right .link.white {
                    color: #ffffff;
                }

            .pc .section-top-banner .section-top-right .search, .pc .section-top-banner .section-top-right .menu {
                cursor: pointer;
            }

            .pc .section-top-banner .section-top-right .search-group {
                height: 100px;
                line-height: 23px;
                margin-right: 40px;
                overflow: hidden;
                display: flex;
                align-items: center;
                z-index: 999;
            }

                .pc .section-top-banner .section-top-right .search-group .search-icon {
                    height: 23px;
                    width: 25px;
                    display: block;
                    cursor: pointer;
                }

                .pc .section-top-banner .section-top-right .search-group .search-box {
                    visibility: hidden;
                    position: relative;
                    display: flex;
                    width: 0;
                    overflow: hidden;
                }

                    .pc .section-top-banner .section-top-right .search-group .search-box .search-input {
                        height: 23px;
                        line-height: 23px;
                        font-size: 16px;
                        width: 0;
                        border: none;
                        background: transparent;
                        padding: 0 35px;
                        color: #333333;
                        border-bottom:1px solid #d3d3c8;
                    }

                        .pc .section-top-banner .section-top-right .search-group .search-box .search-input:focus {
                            border: none;
                            box-shadow: none;
                            outline: none;
                        }

                    .pc .section-top-banner .section-top-right .search-group .search-box .close-icon {
                        height: 23px;
                        width: 23px;
                        display: none;
                        cursor: pointer;
                    }

                .pc .section-top-banner .section-top-right .search-group.open {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    background-color: #ffffff;
                }

                    .pc .section-top-banner .section-top-right .search-group.open > .search-icon {
                        display: none;
                    }

                    .pc .section-top-banner .section-top-right .search-group.open .search-box {
                        visibility: visible;
                        width: 90%;
                    }

                        .pc .section-top-banner .section-top-right .search-group.open .search-box .search-input {
                            width: calc(100% - 25px - 23px);
                        }

                        .pc .section-top-banner .section-top-right .search-group.open .search-box .search-icon, .pc .section-top-banner .section-top-right .search-group.open .search-box .close-icon {
                            display: block;
                        }

    .pc .section-text-banner {
        background: url(../image/gongsijieshao/3.png) center no-repeat;
        background-size: cover;
        height: 400px;
        position: relative;
    }


        .pc .section-text-banner .section-banner-titles {
            position: relative;
        }

            .pc .section-text-banner .section-banner-titles .section-banner-title {
                font-size: 42px;
                color: #ffffff;
                position: relative;
                padding-bottom: 30px;
            }
            .pc .section-text-banner .section-banner-titles .section-banner-title-cn {
                font-size: 22px;
                color: #ffffff;
                position: relative;
                padding-bottom: 50px;
                margin-top: 10px;
            }

                .pc .section-text-banner .section-banner-titles .section-banner-title:after {
                    content: "";
                    width: 100px;
                    height: 5px;
                    position: absolute;
                    bottom: 2px;
                    left: 0;
                    display: block;
                    z-index: 100;
                    background-color: #ffffff;
                }

            .pc .section-text-banner .section-banner-titles .section-banner-title-des {
                padding-top: 24px;
                font-size: 24px;
                color: #ffffff;
            }

        .pc .section-text-banner .nav-x {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

            .pc .section-text-banner .nav-x .container {
                background: rgba(35, 165, 234, 0.9);
            }

                .pc .section-text-banner .nav-x .container .home-btn {
                    float: left;
                    display: block;
                    width: 113px;
                    height: 80px;
                    line-height: 80px;
                    padding: 0 20px;
                }

                    .pc .section-text-banner .nav-x .container .home-btn .home-icon {
                        display: block;
                        width: 100%;
                        height: 100%;
                        background: url("../image/icons/home-icon.png") center no-repeat;
                    }

                .pc .section-text-banner .nav-x .container .dangqian-lanmu {
                    float: left;
                    border-left: 1px solid rgba(255, 255, 255, 0.3);
                    border-right: 1px solid rgba(255, 255, 255, 0.3);
                    width: 226px;
                }

                    .pc .section-text-banner .nav-x .container .dangqian-lanmu .select2-container {
                        display: block;
                        width: 226px;
                        height: 80px;
                        line-height: 80px;
                        font-size: 24px;
                        color: #ffffff;
                        padding: 0;
                        position: relative;
                        border: none;
                        width: 226px !important;
                    }

                        .pc .section-text-banner .nav-x .container .dangqian-lanmu .select2-container .select2-selection {
                            border: none;
                            background-color: transparent;
                            height: 80px;
                            line-height: 80px;
                            width: 226px;
                            background: url("../image/icons/arrow-btm.png") right center no-repeat;
                            background-position-x: calc(100% - 20px);
                        }

                            .pc .section-text-banner .nav-x .container .dangqian-lanmu .select2-container .select2-selection .select2-selection__rendered {
                                height: 80px;
                                line-height: 80px;
                                color: #ffffff;
                                width: 226px;
                                padding: 0 20px;
                            }

                            .pc .section-text-banner .nav-x .container .dangqian-lanmu .select2-container .select2-selection b {
                                border: none;
                            }

                        .pc .section-text-banner .nav-x .container .dangqian-lanmu .select2-container:focus {
                            border: none;
                        }

                        .pc .section-text-banner .nav-x .container .dangqian-lanmu .select2-container:focus-visible {
                            outline: none;
                        }

                .pc .section-text-banner .nav-x .container .erji-lanmu {
                    font-size: 0;
                    -webkit-text-size-adjust: none;
                    padding: 0;
                    margin-left: 40px;
                }

                    .pc .section-text-banner .nav-x .container .erji-lanmu .col-2 {
                        width: 10%;
                        margin-left: 40px;
                        display: inline-block;
                        height: 80px;
                        line-height: 80px;
                        padding-top: 22px;
                    }

                        .pc .section-text-banner .nav-x .container .erji-lanmu .col-2 .navigation {
                            font-size: 18px;
                            padding: 0;
                            height: 36px;
                            line-height: 36px;
                            color: #ffffff;
                            text-align: center;
                            display: block;
                        }

            .pc .section-text-banner .nav-x .erji-lanmu .col-2 .navigation:hover, .pc .section-text-banner .nav-x .erji-lanmu .col-2 .navigation.active {
                background-color: #ffffff;
                color: #23a5ea;
                border-radius: 0 14px 0 14px;
            }

    .pc .section-content-title .section-content-title-title {
        text-align: center;
        font-size: 48px;
        padding-top: 80px;
    }

        .pc .section-content-title .section-content-title-title .bull {
            padding: 0 14px;
        }

    .pc .section-content-title .section-content-title-des {
        text-transform: uppercase;
        font-size: 16px;
        text-align: center;
        padding-top: 15px;
    }

    .pc .swiper-button-next, .pc .swiper-button-prev {
        top: unset;
        bottom: 50px;
        left: unset;
        right: calc(50% + 25px);
        height: 11px;
        width: 58px;
        z-index: 100;
    }

        .pc .swiper-button-next:after, .pc .swiper-button-prev:after {
            content: "";
            display: block;
            height: 11px;
            width: 58px;
            background: url(../image/icons/swiper-left.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

        .pc .swiper-button-next.swiper-button-next, .pc .swiper-button-prev.swiper-button-next {
            left: calc(50% + 25px);
            right: unset;
        }

            .pc .swiper-button-next.swiper-button-next:after, .pc .swiper-button-prev.swiper-button-next:after {
                background: url(../image/icons/swiper-right.png) no-repeat 0 0;
                background-size: 100% 100%;
            }

        .pc .swiper-button-next.swiper-button-disabled, .pc .swiper-button-prev.swiper-button-disabled {
            opacity: 1;
        }

            .pc .swiper-button-next.swiper-button-disabled.swiper-button-prev:after, .pc .swiper-button-prev.swiper-button-disabled.swiper-button-prev:after {
                background: url(../image/icons/swiper-left-grey.png) no-repeat 0 0;
                background-size: 100% 100%;
            }

            .pc .swiper-button-next.swiper-button-disabled.swiper-button-next:after, .pc .swiper-button-prev.swiper-button-disabled.swiper-button-next:after {
                background: url(../image/icons/swiper-right-grey.png) no-repeat 0 0;
                background-size: 100% 100%;
            }

    .pc .footer {
        background-color: #ffffff;
        font-size: 16px;
    }

        .pc .footer .footer-1 {
            border-top: 1px #e6e6e6 solid;
            font-size: 12px;
            flex-wrap: nowrap;
            align-content: center;
            justify-content: space-between;
            align-items: stretch;
            padding-top: 2px;
            padding-bottom: 0px;
            background-color: #ffffff;
            margin-top: 30px;
        }

            .pc .footer .footer-1 .main-footer {
                width: 650px;
                border-right: 0px solid #ededed;
                align-items: center;
                height: 60px;
            }
            .pc .footer .footer-1 .main-footer a{
                padding-left: 10px;
                padding-right: 10px;
            }

                .pc .footer .footer-1 .main-footer img.logo {
                    height: 63px;
                    width: 94px;
                    margin-bottom: 35px;
                }

                .pc .footer .footer-1 .main-footer span.description {
                    line-height: 30px;
                    font-size: 16px;
                    padding-bottom: 18px;
                }

                    .pc .footer .footer-1 .main-footer span.description > img.icon {
                        height: auto;
                        margin-right: 15px;
                        width: 23px;
                    }

            .pc .footer .footer-1 .sub-footer h3.title {
                margin: 0;
                margin-bottom: 15px;
                height: 30px;
                line-height: 30px;
                font-size: 24px;
                font-weight: bold;
            }

            .pc .footer .footer-1 .sub-footer .f-item {
                margin-left: 100px;
            }

                .pc .footer .footer-1 .sub-footer .f-item span {
                    display: inline-flex;
                    padding: 10px 0;
                    font-size: 16px;
                }

                    .pc .footer .footer-1 .sub-footer .f-item span:hover {
                        color: #23a5ea;
                        cursor: pointer;
                    }

                .pc .footer .footer-1 .sub-footer .f-item .f-item-2 a:first-of-type {
                    margin-right: 33px;
                }

        .pc .footer .copyright {
            justify-content: space-between;
            align-items: center;
            height: 60px;
            background-color: #ffffff;
        }

            .pc .footer .copyright .copy-link {
                margin-right: 60px;
            }

            .pc .footer .copyright .icon img {
                height: 30px;
                width: 30px;
                margin-left: 12px;
                cursor: pointer;
            }

    .pc .pagination-box {
        font-size: 14px;
        text-align: center;
        margin: 10px auto 60px;
    }

        .pc .pagination-box .pagination {
            list-style: none;
            margin: 0;
            padding: 0;
            display: inline-block;
            vertical-align: bottom;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .pc .pagination-box .pagination li {
                border-radius: 4px;
                margin: 0 10px;
                font-size: 0;
                border: none;
                border-radius: 4px;
                padding: 0;
            }

                .pc .pagination-box .pagination li a {
                    font-size: 18px;
                    border-radius: 2px;
                    color: #333;
                    background: #ffffff;
                    padding: 10px 14px;
                    border: 1px solid #e6e6e6;
                }

                .pc .pagination-box .pagination li span {
                    font-size: 18px;
                    color: #333;
                }

            .pc .pagination-box .pagination a {
                color: #333333;
                padding: 8px 12px;
                line-height: 18px;
                display: block;
            }

            .pc .pagination-box .pagination .active {
                pointer-events: none;
            }


        .pc .pagination-box .pagination div a {
            font-size: 18px;
            border-radius: 2px;
            color: #333;
            background: #ffffff;
            padding: 10px 14px;
            border: 1px solid #e6e6e6;
            float: left;
            margin-right: 5px;
        }

        .pc .pagination .current {

            font-size: 18px;
            color: #fff;
            background: #23a5ea;
            padding: 8px 14px;
            border: 1px solid #e6e6e6;
            border-radius: 2px;
            float: left;
            margin-right: 5px;

        }


.pc .pagination .disabled a:link, .pc .pagination .disabled a:visited, .pc .pagination .disabled a:hover {
        cursor: not-allowed;
        pointer-events: none;
        color: #ebebeb;
    }

    .pc .pagination .active, .pc .pagination a:hover {
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
    }

    .pc .pagination-group {
        border-right: solid 1px #ebebeb;
        border-radius: 4px;
    }

        .pc .pagination-group li {
            float: left;
            border-right: 0;
            border-radius: 0;
        }

            .pc .pagination-group li:not(:first-child):not(:last-child) {
                border-radius: 0;
            }

            .pc .pagination-group li:first-child {
                border-radius: 4px 0 0 4px;
            }

            .pc .pagination-group li:last-child {
                border-radius: 0 4px 4px 0;
            }

        .pc .pagination-group .active, .pc .pagination-group a:hover {
            background: #f5f5f5;
            border-radius: 0;
        }

    .pc .pagination-big a {
        padding: 10px 16px;
        font-size: 16px;
    }

    .pc .pagination-small a {
        padding: 5px 10px;
        font-size: 12px;
    }

    .pc .pagination li.active a, .pc .pagination li a:hover {
        background: #23a5ea;
        color: #ffffff;
        border-color: #23a5ea;
    }

    .pc .select2-container {
        font-size: 16px;
    }

        .pc .select2-container .select2-results .select2-results__option {
            height: 60px;
            line-height: 60px;
            font-size: 24px;
            padding: 0 20px;
            cursor: pointer;
        }

            .pc .select2-container .select2-results .select2-results__option:hover {
                background-color: #23a5ea;
                color: #ffffff;
                -webkit-text-fill-color: #ffffff;
            }

            .pc .select2-container .select2-results .select2-results__option.select2-results__option--highlighted[aria-selected] {
                background-color: #23a5ea;
            }

@font-face {
    font-family: "adobeheitistd-regular";
    src: url("../font/adobeheitistd-regular.woff") format("woff"), url("../font/adobeheitistd-regular.ttf") format("truetype"), url("../font/adobeheitistd-regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "NotoSansHans-Regular";
    src: url("../font/NotoSansHans-Regular.woff") format("woff"), url("../font/NotoSansHans-Regular.ttf") format("truetype"), url("../font/NotoSansHans-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Arial Narrow";
    src: url("../font/Arial Narrow.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body.mobile-index {
    width: 100vw;
    overflow-x: hidden;
    color: #ffffff;
}

    /*// 新添加 开始*/
    body.mobile-index .swiper-container-main {
        width: 100%;
        height: 100vh;
        position: relative;
    }

        body.mobile-index .swiper-container-main .section-top-banner {
            position: absolute;
            top: 0;
            width: 100%;
            left: 0;
            z-index: 100;
            background-color: transparent;
        }

            body.mobile-index .swiper-container-main .section-top-banner .section-top-left {
                height: 1rem;
                background-color: transparent;
            }

                body.mobile-index .swiper-container-main .section-top-banner .section-top-left .logo {
                    margin: 0 0.2rem;
                }



            body.mobile-index .swiper-container-main .section-top-banner .section-top-right {
            }

                body.mobile-index .swiper-container-main .section-top-banner .section-top-right .search-group.open {
                    background-color: transparent;
                }

                    body.mobile-index .swiper-container-main .section-top-banner .section-top-right .search-group.open .search-box {
                        background-color: transparent;
                        width: 80%;
                    }

                        body.mobile-index .swiper-container-main .section-top-banner .section-top-right .search-group.open .search-box .search-input {
                            color: #ffffff;
                        }

        body.mobile-index .swiper-container-main .swiper-button-next-main,
        body.mobile-index .swiper-container-main .swiper-button-prev-main {
            position: absolute;
            left: 45%;
            width: 10%;
            height: var(--swiper-navigation-size);
            margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ceb888;
            -webkit-text-fill-color: #ceb888;
            outline: none;
            background: url(../image/icons/arrow.png?t=2) no-repeat 0 0;
            background-size: 100% auto;
        }

            body.mobile-index .swiper-container-main .swiper-button-next-main:after,
            body.mobile-index .swiper-container-main .swiper-button-prev-main:after {
                background: none;
            }


        body.mobile-index .swiper-container-main .swiper-button-prev-main {
            top: 10%;
            animation: move-button-prev 2s linear infinite;
            transform: rotate(180deg);
        }

body.mobile-index .swiper-container-main .swiper-button-next-main.swiper-button-disabled, body.mobile-index .swiper-container-main .swiper-button-prev-main.swiper-button-disabled {
    opacity: 0;
}

@keyframes move-button-prev {
    0% {
        top: 10%;
    }

    100% {
        top: 3%;
    }
}

@-webkit-keyframes move-button-prev {
    0% {
        top: 10%;
    }

    100% {
        top: 3%;
    }
}

body.mobile-index .swiper-container-main .swiper-button-next-main {
    top: unset;
    bottom: 7%;
    animation: move-button-next 2s linear infinite;
}

@keyframes move-button-next {
    0% {
        bottom: 7%;
    }

    100% {
        bottom: 0;
    }
}

@-webkit-keyframes move-button-next {
    0% {
        bottom: 7%;
    }

    100% {
        bottom: 0;
    }
}


/*// 新添加 结束*/

body.mobile-index .section {
    position: relative;
    height: 100vh;
    width: 100%;
}

    body.mobile-index .section .section-top-banner {
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        z-index: 100;
        background-color: transparent;
    }

        body.mobile-index .section .section-top-banner .section-top-left {
            height: 1rem;
            background-color: transparent;
        }

            body.mobile-index .section .section-top-banner .section-top-left .logo {
                margin: 0 0.2rem;
            }

        body.mobile-index .section .section-top-banner .section-top-right .search-group.open {
            background-color: transparent;
        }

            body.mobile-index .section .section-top-banner .section-top-right .search-group.open .search-box {
                background-color: transparent;
                width: 80%;
            }

                body.mobile-index .section .section-top-banner .section-top-right .search-group.open .search-box .search-input {
                    color: #ffffff;
                }

body.mobile-index .section-1 {
    background: url(../image/index/index-mobile/1.png) no-repeat 0 0;
    background-size: 100% 100%;
}

    body.mobile-index .section-1 .section-1-2 {
        padding-top: 2rem;
        text-align: center;
    }

        body.mobile-index .section-1 .section-1-2 .section-1-2-1 {
            font-size: 0.48rem;
            line-height: 1.2;
        }

        body.mobile-index .section-1 .section-1-2 .section-1-2-2 {
            font-size: 0.16rem;
            padding-top: 0.25rem;
        }

    body.mobile-index .section-1 .section-1-3 {
        /*修改 开始*/
        margin-bottom: 1.7rem;
        /*修改 结束*/
        width: 64%;
        height: 0.95rem;
        background: url(../image/index/index-mobile/btn-bk.png) no-repeat 0 0;
        background-size: 100% 100%;
        padding: 0 0.35rem 0 0.4rem;
        line-height: 0.95rem;
    }

        body.mobile-index .section-1 .section-1-3 .section-1-3-left {
            height: 0.95rem;
        }

            body.mobile-index .section-1 .section-1-3 .section-1-3-left .section-1-3-cn {
                font-size: 0.3rem;
                font-weight: bold;
                color: #23a5ea;
                line-height: 0.95rem;
            }

            body.mobile-index .section-1 .section-1-3 .section-1-3-left .section-1-3-en {
                font-family: "Microsoft YaHei";
                font-weight: lighter;
                font-size: 0.18rem;
                color: #23a5ea;
                margin-left: 0.25rem;
                line-height: 0.95rem;
            }

        body.mobile-index .section-1 .section-1-3 .goto {
            height: 0.14rem;
            width: auto;
        }

body.mobile-index .section-2 {
    background: url(../image/index/index-mobile/2.png) no-repeat 0 0;
    background-size: 100% 100%;
}



    body.mobile-index .section-2 .section-2-2 {
        position: relative;
        width: 100%;
        height: 50%;
        overflow: hidden;
    }

    body.mobile-index .section-2 .section-2-2  .swiper-pagination {

        position: absolute;
        text-align: center;
        transition: .3s opacity;
        transform: translate3d(0,0,0);
        z-index: 10;
        bottom: 0.4rem;
    }
    body.mobile-index .section-2 .section-2-2  .swiper-pagination .swiper-pagination-bullet {
        opacity: 0.33;
        background-color: #ffffff;
    }

    body.mobile-index .section-2 .section-2-2  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        opacity: 1;
    }
        body.mobile-index .section-2 .section-2-2 .video {
            width: 100%;
            height: 100%;
            opacity: 0;
        }

        body.mobile-index .section-2 .section-2-2 .play {
            position: absolute;
            width: 0.9rem;
            height: 0.9rem;
            top: 3.66rem;
            left: 50%;
            transform: translateX(-50%);
            cursor: pointer;
            z-index: 100;
        }

    body.mobile-index .section-2 .section-2-3 {
        text-align: center;
    }

        body.mobile-index .section-2 .section-2-3 .title {
            font-size: 0.48rem;
            padding-top: 0.55rem;
        }

            body.mobile-index .section-2 .section-2-3 .title .bull {
                padding: 0 14px;
            }

        body.mobile-index .section-2 .section-2-3 .des {
            padding-top: 0.35rem;
            font-size: 0.24rem;
            line-height: 1.6;
        }

        body.mobile-index .section-2 .section-2-3 .section-2-3-panels {
            width: 5.0rem;
            height: 4.0rem;
            overflow: hidden;
            border-top-left-radius: 0.7rem;
            border-bottom-right-radius: 0.7rem;
            margin: 0 auto;
            margin-top: 0.35rem;
        }

            body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel {
                padding: 0.4rem 0.33rem 0.35rem;
                width: calc(50% - 0.05rem);
                height: calc(50% - 0.05rem);
                position: relative;
                overflow: hidden;
                background-color: #ffffff;
                text-align: left;
            }

                body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel.section-2-3-panel-top {
                    margin-bottom: 0.1rem;
                }

                body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .img-white {
                    display: none;
                    height: 0.52rem;
                    width: auto;
                }

                body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .img-black {
                    display: block;
                    height: 0.52rem;
                    width: auto;
                }

                body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .section-2-3-panel-title {
                    font-size: 0.35rem;
                    color: #333333;
                    font-weight: bold;
                    padding-top: 0.1rem;
                }

                body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .section-2-3-panel-des {
                    font-size: 0.26rem;
                    font-weight: lighter;
                    color: #333333;
                    text-transform: uppercase;
                    padding-top: 0.04rem;
                }

                body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .number {
                    font-family: Arial;
                    font-size: 0.72rem;
                    opacity: 0.17;
                    position: absolute;
                    right: 0.1rem;
                    top: 0.1rem;
                    color: #ffffff;
                }

                body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] {
                    background-color: #23a5ea;
                }

                    body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] .img-white {
                        display: block;
                    }

                    body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] .img-black {
                        display: none;
                    }

                    body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] .section-2-3-panel-title,
                    body.mobile-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] .section-2-3-panel-des {
                        color: #ffffff;
                    }

body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

body.mobile-index .section-3 .swiper-container .swiper-pagination-1 {

    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    bottom: 0.4rem;
}
body.mobile-index .section-3 .swiper-container .swiper-pagination-1 .swiper-pagination-bullet {
    opacity: 0.33;
    background-color: #ffffff;
}

body.mobile-index .section-3 .swiper-container .swiper-pagination-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}


    body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide .link-item {
        padding: 0.7rem 0.6rem;
        background-color: #23a5ea;
        position: absolute;
        bottom:0;
        width: 100%;
    }

        body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide .link-item .title {
            font-size: 0.4rem;
            padding-bottom: 0.4rem;
        }

        body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide .link-item .text {
            padding-bottom: 0.75rem;
            font-size: 0.28rem;
        }

        body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide .link-item .next {
            display: none;
        }

            body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide .link-item .next .image {
                height: 0.11rem;
                width: auto;
            }

    body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-1 {
        background: url(../image/index/1-1.png) no-repeat 0 0;
        background-size: auto 100%;
        background-position-x: center;
    }

    body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-2 {
        background: url(../image/index/1-2.png) no-repeat 0 0;
        background-size: auto 100%;
        background-position-x: center;
    }

    body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-3 {
        background: url(../image/index/1-3.png) no-repeat 0 0;
        background-size: auto 100%;
        background-position-x: center;
    }

    body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-4 {
        background: url(../image/index/1-4.png) no-repeat 0 0;
        background-size: auto 100%;
        background-position-x: center;
    }

    body.mobile-index .section-3 .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .next {
        display: block;
    }

body.mobile-index .section-4 {
    background: url(../image/index/index-mobile/3.png) no-repeat 0 0;
    background-size: 100% 100%;
}

    body.mobile-index .section-4 .section-4-title {
        text-align: center;
        font-size: 0.48rem;
        padding-top: 1.25rem;
        height: 2.1rem;
    }

        body.mobile-index .section-4 .section-4-title .bull {
            padding: 0 14px;
        }

    body.mobile-index .section-4 .swiper-container .swiper-wrapper .swiper-slide .link-item {
        height: 10.7rem;
        width: 88vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

        body.mobile-index .section-4 .swiper-container .swiper-wrapper .swiper-slide .link-item .image {
            width: auto;
            height: 3.4rem;
            margin-bottom: 0.25rem;
        }

        body.mobile-index .section-4 .swiper-container .swiper-wrapper .swiper-slide .link-item .date {
            font-size: 0.24rem;
            padding-bottom: 0.22rem;
        }

        body.mobile-index .section-4 .swiper-container .swiper-wrapper .swiper-slide .link-item .text {
            font-size: 0.3rem;
            padding-bottom: 0.36rem;
        }

    body.mobile-index .section-4 .swiper-container .swiper-button-next, body.mobile-index .section-4 .swiper-container .swiper-button-prev {
        top: unset;
        bottom: 0.5rem;
        left: unset;
        /*修改 开始*/
        right: calc(50% + 1.25rem);
        /*修改 结束*/
        height: 0.11rem;
        width: 0.58rem;
        z-index: 100;
    }

        body.mobile-index .section-4 .swiper-container .swiper-button-next:after, body.mobile-index .section-4 .swiper-container .swiper-button-prev:after {
            content: "";
            display: block;
            height: 0.11rem;
            width: 0.58rem;
            background: url(../image/icons/swiper-left.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

    body.mobile-index .section-4 .swiper-container .swiper-button-next {
        /*修改 开始*/
        left: calc(50% + 1.25rem);
        /*修改 结束*/
        right: unset;
    }

        body.mobile-index .section-4 .swiper-container .swiper-button-next:after {
            background: url(../image/icons/swiper-right.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

body.mobile-index .section-5 {
    background: url(../image/index/index-mobile/4.png) no-repeat 0 0;
    background-size: 100% 100%;
}

    body.mobile-index .section-5 .section-5-title {
        text-align: center;
        font-size: 0.48rem;
        padding-top: 1.6rem;
        padding-bottom: 0.5rem;
    }

        body.mobile-index .section-5 .section-5-title .bull {
            padding: 0 14px;
        }

    body.mobile-index .section-5 .swiper-containe{
        height: 9rem;
    }
    body.mobile-index .section-5 .swiper-container .swiper-wrapper .swiper-slide {
        margin-top: 0.1rem;
        margin-bottom: 0.4rem;
    }

        body.mobile-index .section-5 .swiper-container .swiper-wrapper .swiper-slide .link-item {
            padding: 0 0.3rem 0rem 0.3rem;
        }

         body.mobile-index .section-5 .swiper-container .swiper-wrapper .swiper-slide .title {
            padding: 0.3rem 0.2rem;
             margin: 0 auto;
             font-size: 0.35rem;
        }

            body.mobile-index .section-5 .swiper-container .swiper-wrapper .swiper-slide .link-item .image {
                /*width: calc((100% - 0.24rem) / 3);
                height:0.9rem;*/
                width: 100%;
                height:100%;
                margin: 0 auto;
                margin-bottom: 0.32rem;
            }

    body.mobile-index .section-5 .swiper-container .swiper-button-next, body.mobile-index .section-5 .swiper-container .swiper-button-prev {
        top: unset;
        bottom: 0.1rem;
        left: unset;
        right: calc(50% + 0.55rem);
        height: 0.11rem;
        width: 0.28rem;
        z-index: 100;
    }

        body.mobile-index .section-5 .swiper-container .swiper-button-next:after, body.mobile-index .section-5 .swiper-container .swiper-button-prev:after {
            content: "";
            display: block;
            height: 0.11rem;
            width: 0.28rem;
            background: url(../image/icons/swiper-left.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

    body.mobile-index .section-5 .swiper-container .swiper-button-next {
        left: calc(50% + 0.55rem);
        right: unset;
    }

        body.mobile-index .section-5 .swiper-container .swiper-button-next:after {
            background: url(../image/icons/swiper-right.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

    body.mobile-index .section-5 .swiper-container .swiper-container-horizontal > .swiper-pagination-bullets,
    body.mobile-index .section-5 .swiper-container .swiper-pagination-custom, body.mobile-index .section-5 .swiper-container .swiper-pagination-fraction {
        font-size: 0.16rem;
        font-weight: lighter;
        bottom: 0rem;
    }

        body.mobile-index .section-5 .swiper-container .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-current,
        body.mobile-index .section-5 .swiper-container .swiper-pagination-custom .swiper-pagination-current, body.mobile-index .section-5 .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
            font-size: 0.3rem;
            font-weight: normal;
        }


        body.mobile-index .section-5 .swiper-container  .swiper-pagination-5 {

            position: absolute;
            text-align: center;
            transition: .3s opacity;
            transform: translate3d(0,0,0);
            z-index: 10;
            height:0.8rem;
            bottom: -10px;
        }
        body.mobile-index .section-5 .swiper-container  .swiper-pagination-5 .swiper-pagination-bullet {
            opacity: 0.33;
            background-color: #ffffff;
        }

        body.mobile-index .section-5 .swiper-container  .swiper-pagination-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
            opacity: 1;
        }

    body.mobile-index .section-5 .section-5-contact {
        padding: 2.2rem 0 0.2rem;
        margin: 0 0.2rem;
        border-bottom: 0.01rem solid #ffffff;
    }

        body.mobile-index .section-5 .section-5-contact .item {
            padding-bottom: 0.25rem;
            font-size: 0.24rem;
        }

            body.mobile-index .section-5 .section-5-contact .item .image {
                width: 0.24rem;
                height: auto;
                margin-left: 0.13rem;
                margin-right: 0.19rem;
            }

    body.mobile-index .section-5 .section-5-bottom {
        font-size: 0.24rem;
        text-align: center;
        line-height: 1.7;
        padding: 0.35rem 0 2.4rem;
        bottom: 0.3rem;
    }

        body.mobile-index .section-5 .section-5-bottom .copyright {
            padding-right: 0.3rem;
        }


body.mobile-qiyewenhua {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

    body.mobile-qiyewenhua .section-tab-template .tab-container {
        font-size: 0.24rem;
        text-align: center;
        padding: 0 0.2rem 0.47rem;
        line-height: 2;
    }

    body.mobile-qiyewenhua .section-swiper.swiper-container {
        margin: 0 0.2rem 1.25rem;
        padding-top: 0.95rem;
    }

        body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item {
            position: relative;
        }

            body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item .image {
                height: 7.6rem;
                min-width: calc(100vw - 0.4rem);
            }

            body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item .text {
                min-height: 2rem;
                width: 4.6rem;
                position: absolute;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                padding-top: 0.3rem;
                padding-bottom: 0.45rem;
                padding-left: 0.3rem;
                font-size: 0.36rem;
                line-height: 1.7;
            }

        body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-next, body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-prev {
            top: unset;
            bottom: 0.1rem;
            left: 0.3rem;
            right: unset;
            width: 0.28rem;
        }

            body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-next:after, body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-prev:after {
                width: 0.28rem;
                background: url(../image/icons/swiper-left-blue.png) no-repeat 0 0;
                background-size: 100% 100%;
            }

            body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-next.swiper-button-next, body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-prev.swiper-button-next {
                left: 1.1rem;
                right: unset;
            }

                body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-next.swiper-button-next:after, body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-prev.swiper-button-next:after {
                    width: 0.28rem;
                    background: url(../image/icons/swiper-right-blue.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

            body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-next.swiper-button-disabled, body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-prev.swiper-button-disabled {
                opacity: 1;
            }

                body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-next.swiper-button-disabled.swiper-button-prev:after, body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-prev.swiper-button-disabled.swiper-button-prev:after {
                    background: url(../image/icons/swiper-left-grey.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

                body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-next.swiper-button-disabled.swiper-button-next:after, body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-button-prev.swiper-button-disabled.swiper-button-next:after {
                    background: url(../image/icons/swiper-right-grey.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

        body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-pagination {
            bottom: unset;
            top: 0;
            height: 0.4rem;
            display: flex;
            justify-content: center;
        }

            body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet {
                border: 0.01rem solid #e5e5e5;
                width: 1.1rem;
                height: 0.4rem;
                line-height: 0.4rem;
                text-align: center;
                font-size: 0.16rem;
                border-radius: 0.2rem;
                margin: 0 0.075rem;
                background-color: transparent;
                opacity: 1;
                display: block;
            }

                body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet:nth-of-type(1):after {
                    content: "愿景";
                    line-height: 0.4rem;
                }

                body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet:nth-of-type(2):after {
                    content: "使命";
                    line-height: 0.4rem;
                }

                body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet:nth-of-type(3):after {
                    content: "价值观";
                    line-height: 0.4rem;
                }

                body.mobile-qiyewenhua .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                    background-color: #23a5ea;
                    border: 0.01rem solid #23a5ea;
                    color: #ffffff;
                }

body.mobile-womendekehu {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

 body.mobile-womendekehu .tab-template .tabs3 {
    background-color: #ffffff;
    padding: 0.4rem 0;
    margin-bottom: 0.2rem;
    margin-top: 0.1rem;
 }

body.mobile-womendekehu .tab-template .tabs3 .tabs3-1 {
    margin: 0 0.2rem;
    position: relative;
}
body.mobile-womendekehu .tab-template .tabs3 .tabs3-1 .number {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #23a5ea;
    font-weight: bold;
    font-size: 0.4rem;
    padding-bottom: 0.05rem;
    margin-bottom: 0.05rem;
}
body.mobile-womendekehu .tab-template .tabs3 .tabs3-1 .number .plus {
    font-size: 0.3rem;
    line-height: 0.3rem;
}

body.mobile-womendekehu .tab-template .tabs3 .tabs3-1 .number-line {
    position: absolute;
    display: block;
    left: 0.02rem;
    bottom: 0.25rem;
    width: 0.4rem;
    height: 1px;
    background-color: #666666;
}

body.mobile-womendekehu .tab-template .tabs3 .tabs3-1 .sub {
    font-size: 0.16rem;
    margin-top: 0.02rem;
}



body.mobile-womendekehu .tab-template .tab-container {
    padding: 0 0.2rem 0.47rem;
}

      body.mobile-womendekehu .tab-template .tab-container .tab-container-items {
            width: 100%;
        }

            body.mobile-womendekehu .tab-template .tab-container .tab-container-items .tab-container-item {
                width: calc((100% - 0.21rem * 2) / 3);
                height: 0.9rem;
                margin-bottom: 0.21rem;
                display: flex;
                justify-content: center;
                background-color: #ffffff;
                align-items: center;
                overflow: hidden;
            }
body.mobile-womendekehu .tab-template .tab-container .tab-container-items .tab-container-item img {
    display: block;
    width: 100%;
    height: auto;
}
body.mobile-gongsijianjie {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-size: 100% auto;
}
    body.mobile-gongsijianjie .section-tab-template .tab-container {
        margin-top: 0.1rem;
        margin-bottom: 0.2rem;
    }

        body.mobile-gongsijianjie .section-tab-template .tab-container .text {
            font-size: 0.24rem;
          /*  padding: 1.6rem 0.2rem 4rem;*/
            margin: 0 -0.2rem;
            background-color: #23a5ea;
            color: #ffffff;
            padding-top: 0.5rem;
            padding-bottom: 3rem;
        }

        body.mobile-gongsijianjie .section-tab-template .tab-container .image {
            width: 100%;
            height: auto;
            display: block;
            border-bottom-right-radius: 2rem;
            margin-top: -3.3rem;
        }

    body.mobile-gongsijianjie .section-list {
        padding-left: calc(50% - 1.6rem);
        text-align: left;
        margin-top: 0.56rem;
        margin-bottom: 1.4rem;
    }

        body.mobile-gongsijianjie .section-list .section-list-item {
            font-size: 0.24rem;
            padding-left: 0.2rem;
            position: relative;
            margin-bottom: 0.2rem;
            margin-top: 0.2rem;
        }

            body.mobile-gongsijianjie .section-list .section-list-item:after {
                position: absolute;
                content: "";
                width: 0.06rem;
                height: 0.06rem;
                border-radius: 50%;
                background-color: #23a5ea;
                top: 50%;
                left: 0;
                transform: translate(-50%, -50%);
            }




body.mobile-fazhanlicheng {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

    body.mobile-fazhanlicheng .section-tab-template .tab-container {
        padding-top: 0.18rem;
    }

        body.mobile-fazhanlicheng .section-tab-template .tab-container .item {
            padding-left: 0.8rem;
            padding-right: 0.12rem;
            position: relative;
            padding-bottom: 0.3rem;
        }

            body.mobile-fazhanlicheng .section-tab-template .tab-container .item:after {
                content: "";
                display: block;
                width: 0.01rem;
                height: calc(100% - 0.2rem);
                background-color: #e0e0e0;
                position: absolute;
                top: 0.3rem;
                left: 0.15rem;
            }

            body.mobile-fazhanlicheng .section-tab-template .tab-container .item:last-of-type:after {
                height: 0;
            }

            body.mobile-fazhanlicheng .section-tab-template .tab-container .item .line-1 {
                font-size: 0.36rem;
                color: #23a5ea;
                font-weight: bold;
                margin-bottom: 0.2rem;
                font-family: "adobeheitistd-regular";
                position: relative;
            }

                body.mobile-fazhanlicheng .section-tab-template .tab-container .item .line-1:after {
                    content: "";
                    position: absolute;
                    left: -0.75rem;
                    top: 50%;
                    display: block;
                    border: 0.05rem solid #23a5ea;
                    background-color: #ffffff;
                    transform: translateY(-50%);
                    width: 0.1rem;
                    height: 0.1rem;
                    border-radius: 50%;
                }

                body.mobile-fazhanlicheng .section-tab-template .tab-container .item .line-1:before {
                    content: "";
                    position: absolute;
                    display: block;
                    left: -0.45rem;
                    top: 50%;
                    transform: translateY(-50%);
                    background-color: #e0e0e0;
                    width: 0.35rem;
                    height: 0.01rem;
                }

            body.mobile-fazhanlicheng .section-tab-template .tab-container .item .card {
                border: 0.01rem solid #e0e0e0;
                position: relative;
                padding: 0.2rem 0.35rem 0.02rem;
                border-radius: 0.1rem;
            }

                body.mobile-fazhanlicheng .section-tab-template .tab-container .item .card:after {
                    content: "";
                    position: absolute;
                    border-width: 0.01rem;
                    border-color: #e0e0e0 #e0e0e0 transparent transparent;
                    border-style: solid;
                    display: block;
                    width: 0.15rem;
                    height: 0.15rem;
                    transform: rotate(-45deg);
                    top: -0.075rem;
                    left: 0.35rem;
                    background-color: #f7f7f7;
                }

                body.mobile-fazhanlicheng .section-tab-template .tab-container .item .card .card-title {
                    font-size: 0.3rem;
                    position: relative;
                    margin-bottom: 0.25rem;
                    line-height: 1.3;
                }

                    body.mobile-fazhanlicheng .section-tab-template .tab-container .item .card .card-title:after {
                        position: absolute;
                        content: "";
                        width: 0.06rem;
                        height: 0.06rem;
                        border-radius: 50%;
                        background-color: #23a5ea;
                        top: 0.2rem;
                        left: -0.2rem;
                        transform: translate(-50%, 0);
                    }

                body.mobile-fazhanlicheng .section-tab-template .tab-container .item .card .card-des {
                    font-size: 0.24rem;
                    color: #cccccc;
                    line-height: 1.6;
                    margin-bottom: 0.25rem;
                }

                body.mobile-fazhanlicheng .section-tab-template .tab-container .item .card .image {
                    width: 100%;
                    height: auto;
                    margin-bottom: 0.25rem;
                }

                body.mobile-fazhanlicheng .section-tab-template .tab-container .item .card .add {
                    width: 0.52rem;
                    height: 0.52rem;
                }

body.mobile-rongyuzhengshu {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

    body.mobile-rongyuzhengshu .section-content-title .section-content-title-title {
        padding-top: 0.55rem;
    }

    body.mobile-rongyuzhengshu .section-content-title .section-content-title-des {
        padding-top: 0.25rem;
    }

    body.mobile-rongyuzhengshu .section-tab-template .tab-container, body.mobile-rongyuzhengshu .tab-template .tab-container {
        padding: 0.6rem 0.2rem 0.47rem;
    }

        body.mobile-rongyuzhengshu .section-tab-template .tab-container .tab-container-items, body.mobile-rongyuzhengshu .tab-template .tab-container .tab-container-items {
            width: 100%;
        }

            body.mobile-rongyuzhengshu .section-tab-template .tab-container .tab-container-items .tab-container-item, body.mobile-rongyuzhengshu .tab-template .tab-container .tab-container-items .tab-container-item {
                width: calc(50% - 0.2rem);
                padding-bottom: 0.31rem;
                background-size: 100% 100%;
            }
            
            body.mobile-rongyuzhengshu .section-tab-template .tab-container .tab-container-items .tab-container-item, body.mobile-rongyuzhengshu .tab-template .tab-container .tab-container-items .tab-container-item .text{
                font-size: 0.2rem;
                padding-top: 0.2rem;
                    text-align: center;
    line-height: 0.3rem;
            }
            
            

                body.mobile-rongyuzhengshu .section-tab-template .tab-container .tab-container-items .tab-container-item .tab-container-item-image, body.mobile-rongyuzhengshu .tab-template .tab-container .tab-container-items .tab-container-item .tab-container-item-image {
                    display: block;
                    width: 90%;
                }

body.mobile-qiyexinwen {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

    body.mobile-qiyexinwen .section-content-title .section-content-title-title {
        padding-top: 0.55rem;
    }

    body.mobile-qiyexinwen .section-content-title .section-content-title-des {
        padding-top: 0.2rem;
    }

    body.mobile-qiyexinwen .section-swiper.swiper-container {
        margin: 0;
        padding-top: 0.3rem;
    }

        body.mobile-qiyexinwen .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item {
            position: relative;
            height: 5.4rem;
        }

            body.mobile-qiyexinwen .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item .image {
                height: 4.1rem;
                width: calc(100vw - 0.4rem);
                display: block;
                margin: 0 auto;
            }

            body.mobile-qiyexinwen .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item .text {
                margin-top: -2.5rem;
                height: 3.9rem;
                width: 100%;
                background-color: #23a5ea;
                padding-top: 2.85rem;
                padding-bottom: 0.35rem;
                font-size: 0.24rem;
                color: #ffffff;
                padding-left: 0.2rem;
                padding-right: 0.2rem;
            }

                body.mobile-qiyexinwen .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item .text .date {
                    opacity: 0.3;
                    padding-top: 0.1rem;
                    font-size: 0.2rem;
                }

        body.mobile-qiyexinwen .section-swiper.swiper-container .swiper-pagination {
            bottom: 0.4rem;
            top: unset;
            height: 0.08rem;
            display: flex;
            justify-content: flex-end;
            padding-right: 0.2rem;
        }

            body.mobile-qiyexinwen .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet {
                opacity: 0.33;
                background-color: #ffffff;
            }

                body.mobile-qiyexinwen .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                    opacity: 1;
                }

    body.mobile-qiyexinwen .section-list {
        margin-top: 0.35rem;
        margin-bottom: 0.35rem;
    }

        body.mobile-qiyexinwen .section-list .section-item {
            margin: 0 0.13rem 0.2rem;
            background-color: #ffffff;
        }

            body.mobile-qiyexinwen .section-list .section-item .section-item-left {
                margin: 0.25rem 0.25rem 0.2rem  0.05rem;
            }

                body.mobile-qiyexinwen .section-list .section-item .section-item-left .image {
                    width: 2.05rem;
                }

            body.mobile-qiyexinwen .section-list .section-item .section-item-right .title {
                font-size: 0.3rem;
                padding-bottom: 0.3rem;
                line-height: 1.8;
            }

            body.mobile-qiyexinwen .section-list .section-item .section-item-right .des {
                padding-bottom: 0.25rem;
                font-size: 0.24rem;
                color: #999999;
            }

            body.mobile-qiyexinwen .section-list .section-item .section-item-right .date {
                font-size: 0.24rem;
                padding-bottom: 0.1rem;
                color: #999999;
            }

body.mobile-xiangqingye {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

    body.mobile-xiangqingye .section-article {
        background-color: #ffffff;
    }

        body.mobile-xiangqingye .section-article .section-article-title {
            font-weight: bold;
            font-size: 0.36rem;
            padding-top: 0.65rem;
            padding-bottom: 0.2rem;
            text-align: center;
        }

        body.mobile-xiangqingye .section-article .section-article-date {
            padding-bottom: 0.3rem;
            font-size: 0.16rem;
            color: #cccccc;
            border-bottom: 0.01rem solid #e6e6e6;
            margin-bottom: 0.3rem;
            text-align: center;
        }

            body.mobile-xiangqingye .section-article .section-article-date .straight-line {
                padding: 0 0.3rem;
            }

        body.mobile-xiangqingye .section-article .section-image {
            width: calc(100vw - 0.4rem);
            padding: 0 0.2rem 0.35rem;
        }

        body.mobile-xiangqingye .section-article .section-text {
            padding: 0 0.2rem 0.35rem;
            font-size: 0.28rem;
            line-height: 1.7;
        }

       body.mobile-xiangqingye .section-article .section-text img{
           width: 100%;
        }

    body.mobile-xiangqingye .section-list {
        margin-top: 0.35rem;
        margin-bottom: 0.35rem;
    }

        body.mobile-xiangqingye .section-list .section-list-title {
            font-size: 0.36rem;
            font-weight: bold;
            margin-bottom: 0.3rem;
            margin-left: 0.2rem;
        }

        body.mobile-xiangqingye .section-list .section-item {
            margin: 0 0.3rem 0.2rem;
            background-color: #ffffff;
        }

            body.mobile-xiangqingye .section-list .section-item .section-item-left {
                margin: 0.25rem 0.25rem 0.2rem;
            }

                body.mobile-xiangqingye .section-list .section-item .section-item-left .image {
                    width: 2.05rem;
                    height: 2.05rem;
                }

            body.mobile-xiangqingye .section-list .section-item .section-item-right .title {
                font-size: 0.3rem;
                padding-bottom: 0.3rem;
                line-height: 1.8;
            }

            body.mobile-xiangqingye .section-list .section-item .section-item-right .des {
                padding-bottom: 0.25rem;
                font-size: 0.24rem;
                color: #999999;
            }

            body.mobile-xiangqingye .section-list .section-item .section-item-right .date {
                font-size: 0.24rem;
                padding-bottom: 0.1rem;
                color: #999999;
            }

body.mobile-shipinneirong {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

    body.mobile-shipinneirong .section-content-title .section-content-title-title {
        padding-top: 0.55rem;
    }

    body.mobile-shipinneirong .section-content-title .section-content-title-des {
        padding-top: 0.2rem;
    }

    body.mobile-shipinneirong .section-list {
        margin: 0.35rem 0.2rem;
    }

        body.mobile-shipinneirong .section-list .section-item {
            width: calc(50% - 0.12rem);
            margin-bottom: 0.2rem;
            position: relative;
            background-color: #ffffff;
        }

            body.mobile-shipinneirong .section-list .section-item .section-item-top {
                height: 2.6rem;
                position: relative;
                width: 100%;
            }

                body.mobile-shipinneirong .section-list .section-item .section-item-top:after {
                    position: relative;
                    content: "";
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background-color: rgba(35, 165, 234, 0.5);
                    z-index: 1;
                }

                body.mobile-shipinneirong .section-list .section-item .section-item-top .cover {
                    width: inherit;
                    height: inherit;
                    display: block;
                }

                body.mobile-shipinneirong .section-list .section-item .section-item-top .play {
                    position: absolute;
                    top: 1rem;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 0.35rem;
                    height: 0.35rem;
                    display: block;
                    z-index: 1;
                    cursor: pointer;
                }

                body.mobile-shipinneirong .section-list .section-item .section-item-top .duration {
                    position: absolute;
                    top: 1.45rem;
                    left: 50%;
                    transform: translateX(-50%);
                    font-size: 0.24rem;
                    color: #ffffff;
                    z-index: 2;
                }

            body.mobile-shipinneirong .section-list .section-item .video {
                width: 100%;
                height: 2.6rem;
                display: none;
            }

            body.mobile-shipinneirong .section-list .section-item .section-item-bottom {
                padding: 0.15rem 0.15rem 0.2rem;
            }

                body.mobile-shipinneirong .section-list .section-item .section-item-bottom .section-item-bottom-title {
                    font-size: 0.24rem;
                    height: 0.5rem;
                }

                body.mobile-shipinneirong .section-list .section-item .section-item-bottom .section-item-bottom-date {
                    font-size: 0.2rem;
                    color: #999999;
                    padding-top: 0.1rem;
                }

    body.mobile-shipinneirong .section-video {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 10000;
        display: none;
    }

        body.mobile-shipinneirong .section-video .close {
            width: 10%;
            margin-top: 0.5rem;
            padding: 0.2rem;
            border: 0.02rem solid #ffffff;
            border-radius: 50%;
            display: block;
            cursor: pointer;
        }

body.mobile-jiejuefangan {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

    body.mobile-jiejuefangan .section-content-title .section-content-title-title {
        padding-top: 0.55rem;
    }

    body.mobile-jiejuefangan .section-content-title .section-content-title-des {
        padding-top: 0.2rem;
    }

    body.mobile-jiejuefangan .section-list {
        margin: 0.35rem 0.2rem;
    }

        body.mobile-jiejuefangan .section-list .section-item {
            background-color: #ffffff;
            overflow: hidden;
            position: relative;
            margin-bottom: 0.5rem;
            width: 100%;
        }

            body.mobile-jiejuefangan .section-list .section-item:nth-of-type(2n+1) {
                border-top-left-radius: 0.0rem;
            }

            body.mobile-jiejuefangan .section-list .section-item:nth-of-type(2n) {
                border-top-right-radius: 0.0rem;
            }

            body.mobile-jiejuefangan .section-list .section-item .section-item-image {
                height: auto;
                width: 100%;
                display: block;
            }

            body.mobile-jiejuefangan .section-list .section-item .section-item-bottom {
                padding: 0 0.45rem;
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background-color: rgba(14,109,151, 0.6);
            }

                body.mobile-jiejuefangan .section-list .section-item .section-item-bottom .section-item-bottom-title {
                    font-size: 0.36rem;
                    font-weight: bold;
                    color: #fff;
                    margin-bottom: 0.2rem;
                    padding-top: 0.2rem;
                    padding-left: 0.0rem;
                    position: relative;
                }

                    body.mobile-jiejuefangan .section-list .section-item .section-item-bottom .section-item-bottom-title .section-item-bottom-number {
                        position: absolute;
                        height: 1.25rem;
                        width: 0.5rem;
                        font-size: 0.24rem;
                        color: #ffffff;
                        background-color: #23a5ea;
                        left: 0;
                        bottom: 0;
                        text-align: center;
                        line-height: 1.7;
                    }

                body.mobile-jiejuefangan .section-list .section-item .section-item-bottom .section-item-bottom-text {
                    margin-bottom: 0.35rem;
                    display: -webkit-box;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    font-size: 0.24rem;
                }



body.pc-hangyejieshao {
    background-color: #f7f7f7;
}

body.pc-hangyejieshao .footer {
    margin-top: 30px;
    border-top: 0px solid #e6e6e6;
}

body.pc-hangyejieshao .section-text-banner {
    position: relative;
    /*background: url("../image/chanpinzhongxin/2.jpg") center no-repeat;*/
    background-size: cover;

    padding-top:0px;
}

body.pc-hangyejieshao .section-text-banner .image {
    height: 400px;
    padding-top:0px;
    width: 100%;
}


body.pc-hangyejieshao .section-text-banner .section-banner-titles  {

}



body.pc-hangyejieshao .section-article .section-article-title {
    font-weight: bold;
    font-size: 36px;
    padding-top: 90px;
    padding-bottom: 20px;
    text-align: center;
}

body.pc-hangyejieshao .section-article .crumbs {
    position: relative;
    line-height: 35px;
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 1200px;
}
body.pc-hangyejieshao .section-article .crumbs .return{
    right: 0px;
    float: right;
}

body.pc-hangyejieshao .section-article .section-article-date {
    padding-bottom: 30px;
    font-size: 16px;
    color: #cccccc;
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
}

body.pc-hangyejieshao .section-article .section-article-date .straight-line {
    padding: 0 30px;
}

body.pc-hangyejieshao .section-article .section-article-content {
    padding-top: 90px;
    padding-bottom: 10px;
}

body.pc-hangyejieshao .section-article .section-article-content .section-image {
    width: 806px;
    margin: 0 auto 70px;
    display: block;
}

body.pc-hangyejieshao .section-article .section-article-content .section-text {
    padding-bottom: 40px;
    font-size: 18px;
    line-height: 1.7;
}

body.pc-hangyejieshao .section-article .section-article-content img {
    max-width: 1200px   ;
}

body.pc-hangyejieshao .section-list {
    margin-bottom: 0.35rem;
    background-color: #ffffff;
    padding: 0 35px;
}

body.pc-hangyejieshao .section-list .section-list-title {
    font-size: 30px;
    font-weight: bold;
    padding: 35px 0;
}

body.pc-hangyejieshao .section-list .section-items {
    width: 100%;
}

body.pc-hangyejieshao .section-list .section-items .section-item {
    width: 410px;
    background-color: #ffffff;
}

body.pc-hangyejieshao .section-list .section-items .section-item .section-item-left .image {
    width: 210px;
    max-height: 210px;
}

body.pc-hangyejieshao .section-list .section-items .section-item .section-item-right {
    padding-top: 15px;
}

body.pc-hangyejieshao .section-list .section-items .section-item .section-item-right .title {
    font-size: 14px;
    padding-bottom: 10px;
    line-height: 1.3;
    text-align: center;
}

body.pc-hangyejieshao .section-list .section-items .section-item .section-item-right .date {
    font-size: 15.23px;
    padding-bottom: 20px;
    color: #999999;
}




body.mobile-lianxiwomen {
    background-color: #f7f7f7;
}

    body.mobile-lianxiwomen .section-map {
        margin: 0.3rem 0.2rem;
        height: 7.35rem;
        width: calc(100% - 0.4rem);
        position: relative;
    }

        body.mobile-lianxiwomen .section-map .map-canvas {
            width: calc(100vw - 0.4rem);
            height: 7.35rem;
            border: 0.01rem solid #d9d9d9;
        }

        body.mobile-lianxiwomen .section-map .address {
            font-size: 0.24rem;
            text-align: center;
            width: calc(100vw - 0.6rem - 0.4rem);
            padding: 0.3rem 0;
            color: #000000;
            position: absolute;
            bottom: 0.35rem;
            left: 0.3rem;
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
            background: #ffffff;
        }

    body.mobile-lianxiwomen .section-bottom {
        margin: 0.5rem 0.2rem 0.9rem;
    }

        body.mobile-lianxiwomen .section-bottom .section-bottom-item {
            width: calc(50vw - 0.2rem);
        }

            body.mobile-lianxiwomen .section-bottom .section-bottom-item:last-of-type {
                border-left: 0.01rem solid #e6e6e6;
            }

            body.mobile-lianxiwomen .section-bottom .section-bottom-item .image.telephone {
                height: 0.9rem;
                width: auto;
                margin: 0.3rem auto;
                display: block;
            }

            body.mobile-lianxiwomen .section-bottom .section-bottom-item .image.erweima {
                height: 1.5rem;
                width: auto;
            }

            body.mobile-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts {
                margin-top: 0.1rem;
            }

                body.mobile-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts .title {
                    font-size: 0.24rem;
                    font-weight: bold;
                    padding-bottom: 0.1rem;
                    color: #000000;
                    text-align: center;
                }

                body.mobile-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts .text {
                    font-size: 0.18rem;
                    color: #000000;
                    text-align: center;
                }


body.mobile-chanpinzhongxin .section-product-banner {
    position: relative;
    width: 100%;
    height: 4rem;
    overflow: hidden;
}


body.mobile-chanpinzhongxin .section-product-banner  .section-product  .swiper-pagination {

    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    bottom: 0.4rem;
}
body.mobile-chanpinzhongxin .section-product-banner  .section-product  .swiper-pagination .swiper-pagination-bullet {
    opacity: 0.33;
    background-color: #ffffff;
}

body.mobile-chanpinzhongxin .section-product-banner  .section-product  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

body.mobile-chanpinzhongxin .section-tab-expand {
    position: relative;
    width: 100%;
}

    body.mobile-chanpinzhongxin .section-tab-expand .tabs {
        width: 1.9rem;
        background: #f5f5f5;
        height: calc(100vh - 4.7rem);
        overflow-y: auto;
        padding-bottom: 0.5rem;
        padding-top: 0;
    }

        body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item {
            padding: 0.15rem 0 0 0.01rem;
        }

            body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tabs-item-title {
                height: 0.6rem;
                line-height: 0.6rem;
                padding: 0 0.2rem;
                position: relative;
                font-size: 0.24rem;
                cursor: pointer;
            }

                body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tabs-item-title .add, body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tabs-item-title .minus {
                    position: absolute;
                    top: 50%;
                    right: 0.18rem;
                    height: 0.13rem;
                    width: auto;
                    transform: translateY(-50%);
                }

            body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tab {
                font-size: 0.24rem;
                height: 0.7rem;
                line-height: 0.7rem;
                padding: 0 0.15rem;
                width: 1.85rem;
                border-left: 0.05rem solid transparent;
                position: relative;
                overflow: hidden;
                color: #999999;
                margin: 0;
                text-align: left;
                font-weight: normal;
                cursor: pointer;
            }

                body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tab.active {
                    font-weight: bold;
                    border-left: 0.05rem solid #23a5ea;
                    color: #23a5ea;
                    background: none;
                }

            body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=false] .tabs-item-title .add {
                display: block;
            }

            body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=false] .tabs-item-title .minus {
                display: none;
            }

            body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=false] .tab {
                display: none;
            }

            body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=true] {
                background: #ffffff;
                font-weight: bold;
                background-color: #ffffff;
            }

                body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=true] .tabs-item-title .add {
                    display: none;
                }

                body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=true] .tabs-item-title .minus {
                    display: block;
                }

                body.mobile-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=true] .tab {
                    display: block;
                }

        body.mobile-chanpinzhongxin .section-tab-expand .tabs .tab-containers {
            width: calc(100% - 1.9rem);
        }

            body.mobile-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content {
                width: 100%;
                height: calc(100vh - 4.7rem);
                overflow-y: auto;
                background-color: #ffffff;
            }

                body.mobile-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content .item {
                    display: block;
                    padding: 0.2rem 0;
                    margin: 0 0.2rem;
                }

                    body.mobile-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content .item .image {
                        width: 1.25rem;
                        height: auto;
                    }

                    body.mobile-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content .item .item-right .item-right-title {
                        font-size: 0.26rem;
                        font-family: "NotoSansHans-Regular";
                    }

                    body.mobile-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content .item .item-right .item-right-text {
                        font-size: 0.2rem;
                        color: #999999;
                        font-family: "NotoSansHans-Regular";
                    }

    body.mobile-chanpinzhongxin .section-tab-expand .tab-containers {
        width: calc(100% - 1.9rem);
    }

        body.mobile-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content {
            width: 100%;
            height: calc(100vh - 4.7rem);
            overflow-y: auto;
            background-color: #ffffff;
        }

            body.mobile-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .item {
                padding: 0.2rem 0;
                margin: 0 0.2rem;
                border-bottom: 0.01rem solid #e6e6e6;
            }

                body.mobile-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .item .image {
                    width: 1.55rem;
                    height: auto;
                    display: block;
                    margin-right: 0.15rem;
                }

                body.mobile-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .item .item-right .item-right-title {
                    font-size: 0.32rem;
                    font-family: "NotoSansHans-Regular";
                    line-height: 1.7;
                }

                body.mobile-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .item .item-right .item-right-text {
                    font-size: 0.2rem;
                    color: #999999;
                    font-family: "NotoSansHans-Regular";
                    line-height: 1.7;
                    height: 0.72rem;
                    overflow: hidden;
                }

            body.mobile-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .tab-container-bottom {
                height: 0.88rem;
                width: 100%;
                font-size: 0.24rem;
                color: #cccccc;
            }

                body.mobile-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .tab-container-bottom .image {
                    width: 0.3rem;
                    height: auto;
                    margin-right: 0.1rem;
                }




body.mobile-chanpinxiangqingye {
    background-color: #f7f7f7;
}

    body.mobile-chanpinxiangqingye .swiper-container .swiper-wrapper .swiper-slide .link-item {
        height: 6rem;
        overflow: hidden;
        width: 100vw;
        background-color: #ffffff;
        border-top: 0.01rem solid #e6e6e6;
        border-bottom: 0.01rem solid #e6e6e6;
    }

        body.mobile-chanpinxiangqingye .swiper-container .swiper-wrapper .swiper-slide .link-item .image {
            height: 6rem;
            width: auto;
        }

    body.mobile-chanpinxiangqingye .swiper-container.swiper-container-horizontal > .swiper-pagination-bullets, body.mobile-chanpinxiangqingye .swiper-container .swiper-pagination-custom, body.mobile-chanpinxiangqingye .swiper-container .swiper-pagination-fraction {
        font-family: "NotoSansHans-Regular";
        font-size: 0.24rem;
        bottom: 0.6rem;
        padding-left: 0.2rem;
        right: unset;
        top: unset;
        text-align: left;
        color: #cccccc;
    }

        body.mobile-chanpinxiangqingye .swiper-container.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-current, body.mobile-chanpinxiangqingye .swiper-container .swiper-pagination-custom .swiper-pagination-current, body.mobile-chanpinxiangqingye .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
            color: #333333;
        }

    body.mobile-chanpinxiangqingye .section-2 {
        padding: 0.35rem 0 0.35rem 0.2rem;
        background-color: #ffffff;
    }

        body.mobile-chanpinxiangqingye .section-2 .section-2-left .section-2-left-title {
            font-family: "NotoSansHans-Regular";
            padding-bottom: 0.2rem;
            color: #000000;
            font-size: 0.3rem;
        }

        body.mobile-chanpinxiangqingye .section-2 .section-2-left .section-2-left-des {
            font-family: "NotoSansHans-Regular";
            color: #252525a3;
            font-size: 0.24rem;
        }

            body.mobile-chanpinxiangqingye .section-2 .section-2-left .section-2-left-des .line {
                padding: 0 0.55rem;
            }

        body.mobile-chanpinxiangqingye .section-2 .section-2-right {
            width: 1.17rem;
            border-left: 0.01rem solid #f7f7f7;
        }

            body.mobile-chanpinxiangqingye .section-2 .section-2-right .share {
                width: 0.3rem;
                height: auto;
            }

            body.mobile-chanpinxiangqingye .section-2 .section-2-right .text {
                font-family: "NotoSansHans-Regular";
                font-size: 0.24rem;
                margin-top: 0.2rem;
            }

    body.mobile-chanpinxiangqingye .section-3 {
        margin-top: 0.2rem;
        padding: 0.2rem 0.2rem;
        background-color: #ffffff;
    }

        body.mobile-chanpinxiangqingye .section-3 .section-3-title {
            font-family: "NotoSansHans-Regular";
            font-weight: bold;
            color: #252525;
            margin-bottom: 0.2rem;
            font-size: 0.3rem;
        }

        body.mobile-chanpinxiangqingye .section-3 .section-3-des {
            font-family: "NotoSansHans-Regular";
            font-size: 0.24rem;
            line-height: 2;
            color:#252525;
        }
        body.mobile-chanpinxiangqingye .section-3 .section-3-des table{
            border-spacing:0;

        }  body.mobile-chanpinxiangqingye .section-3 .section-3-des table td{

            padding: 0px;
        }
        
        body.mobile-chanpinxiangqingye .section-3 .section-3-des img{
            max-width:100%;
        }
        

    body.mobile-chanpinxiangqingye .section-4 {
        margin-bottom: 0.3rem;
    }

        body.mobile-chanpinxiangqingye .section-4 .section-4-title {
            font-family: "NotoSansHans-Regular";
            line-height: 1rem;
            color: #000000;
            font-size: 0.3rem;
            margin-left: 0.2rem;
        }

            body.mobile-chanpinxiangqingye .section-4 .section-4-title .thumb {
                width: 0.3rem;
                height: 0.3rem;
                margin-left: 0.1rem;
            }

        body.mobile-chanpinxiangqingye .section-4 .swiper-container .swiper-wrapper .swiper-slide {
            overflow: hidden;
            height: 3rem;
            background-color: #ffffff;
            margin: 0 0.1rem;
            flex-direction: column;
            padding-bottom: 0.23rem;
        }

body.mobile-chanpinxiangqingye .section-4 .swiper-container .swiper-wrapper .swiper-slide a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

            body.mobile-chanpinxiangqingye .section-4 .swiper-container .swiper-wrapper .swiper-slide .image {
                height: calc(100% - 0.3rem - 0.23rem);
                width: auto;
            }


body.mobile-chanpinxiangqingye .section-4 .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-title {
    font-size: 0.2rem;
    line-height: 0.3rem;
    text-align: center;
}

body.pc-index {
    width: 100vw;
    overflow-x: hidden;
}

    body.pc-index .dots {
        position: fixed;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 200;
    }
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    height: 15px;
    width: 15px ;
}
.swiper-pagination-bullet-active {
    background:#ffffff;
    width: 15px !important;
}

        body.pc-index .dots .dot {
            margin: 10px 0;
            width: 7px;
            height: 7px;
            position: relative;
            border-radius: 50%;
            background-color: #ffffff;
            cursor: pointer;
        }

            body.pc-index .dots .dot.active {
                background-color: #23a5ea;
            }

                body.pc-index .dots .dot.active:after {
                    position: absolute;
                    top: 3.5px;
                    left: 3.5px;
                    transform: translate(-50%, -50%);
                    content: "";
                    display: block;
                    width: 17px;
                    height: 17px;
                    border: 1px solid #23a5ea;
                    border-radius: 50%;
                }

    body.pc-index .container {
        width: 1200px;
        margin: 0 auto;
    }

    body.pc-index .section {
        position: relative;

        width: 100%;
    }

        body.pc-index .section .section-top-banner {
            position: absolute;
            top: 0;
            width: 100%;
            left: 0;
            z-index: 100;
            background-color: transparent;
        }

            body.pc-index .section .section-top-banner .section-top-left {
                height: 1rem;
                background-color: transparent;
            }

                body.pc-index .section .section-top-banner .section-top-left .logo {
                    margin: 0 0.2rem;
                }

            body.pc-index .section .section-top-banner .section-top-right .search-group.open {
                background-color: transparent;
            }

                body.pc-index .section .section-top-banner .section-top-right .search-group.open .search-box {
                    background-color: transparent;
                    width: 80%;
                }

                    body.pc-index .section .section-top-banner .section-top-right .search-group.open .search-box .search-input {
                        color: #ffffff;
                    }

    body.pc-index .section-1 {
        position: relative;
    }

        body.pc-index .section-1 .swiper-container {
            width: 100vw;
            position: unset;

        }

            body.pc-index .section-1 .swiper-container .swiper-wrapper .swiper-slide {

                margin: 0 auto;
                text-align: center;
            }

                body.pc-index .section-1 .swiper-container .swiper-wrapper .swiper-slide .image {

                    width: 100%;
                    margin: 0 auto;
                }

            body.pc-index .section-1 .swiper-container .swiper-button-next, body.pc-index .section-1 .swiper-container .swiper-button-prev {
                top: unset;
                bottom: 0;
                left: 0;
                right: unset;
                height: 140px;
                width: calc((100vw - 1440px) / 2);
                z-index: 100;
                background-color: transparent;
            }

                body.pc-index .section-1 .swiper-container .swiper-button-next:hover, body.pc-index .section-1 .swiper-container .swiper-button-prev:hover {
                    background-color: rgba(0, 0, 0, 0.1);
                }

                body.pc-index .section-1 .swiper-container .swiper-button-next:after, body.pc-index .section-1 .swiper-container .swiper-button-prev:after {
                    content: "";
                    display: block;
                    width: calc((100vw - 1440px) / 2);
                    height: 140px;
                    background: url(../image/icons/swiper-left.png) no-repeat 0 0;
                    background-size: 40px auto;
                    background-position: center;
                }

            body.pc-index .section-1 .swiper-container .swiper-button-next {
                left: unset;
                right: 0;
            }

                body.pc-index .section-1 .swiper-container .swiper-button-next:after {
                    background: url(../image/icons/swiper-right.png) no-repeat 0 0;
                    background-size: 40px auto;
                    background-position: center;
                }

        body.pc-index .section-1 .swiper-container-buttons {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 101;
            display: flex;
            justify-content: center;
            width: 1440px;
        }

            body.pc-index .section-1 .swiper-container-buttons .swiper-slide {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                background-color: #23a5ea;
                width: 480px;
                height: 140px;
                padding: 0 20px 0 25px;
                cursor: pointer;
                position: relative;
            }

                body.pc-index .section-1 .swiper-container-buttons .swiper-slide .title {
                    color: #ffffff;
                    font-size: 24px;
                    font-weight: bold;
                    margin-bottom: 3px;
                }

                body.pc-index .section-1 .swiper-container-buttons .swiper-slide .text {
                    color: #ffffff;
                    font-size: 14px;
                    font-weight: lighter;
                }

                body.pc-index .section-1 .swiper-container-buttons .swiper-slide .number {
                    position: absolute;
                    display: none;
                    font-family: Arial;
                    color: #cccccc;
                    font-size: 24px;
                    top: 30px;
                    right: 20px;
                }

                body.pc-index .section-1 .swiper-container-buttons .swiper-slide .swiper-slide-bottom {
                    margin-top: 24px;
                }

                    body.pc-index .section-1 .swiper-container-buttons .swiper-slide .swiper-slide-bottom .image {
                        width: 18px;
                        display: none;
                    }

                    body.pc-index .section-1 .swiper-container-buttons .swiper-slide .swiper-slide-bottom .swiper-slide-bottom-dots {
                        opacity: 0;
                    }

                        body.pc-index .section-1 .swiper-container-buttons .swiper-slide .swiper-slide-bottom .swiper-slide-bottom-dots .dot {
                            background-color: #ced2d4;
                            border-radius: 50%;
                            width: 10px;
                            height: 10px;
                            margin-left: 10px;
                        }

                            body.pc-index .section-1 .swiper-container-buttons .swiper-slide .swiper-slide-bottom .swiper-slide-bottom-dots .dot.active {
                                background-color: #23a5ea;
                            }

                body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active {
                    background-color: #ffffff;
                }

                    body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active .title {
                        color: #333333;
                    }

                    body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active .text {
                        color: #cccccc;
                    }

                    body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active .number {
                        display: block;
                    }

                    body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active .swiper-slide-bottom {
                        width: 100%;
                    }

                        body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active .swiper-slide-bottom .image {
                            display: block;
                        }

                        body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active .swiper-slide-bottom .swiper-slide-bottom-dots {
                            opacity: 1;
                        }

                            body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active .swiper-slide-bottom .swiper-slide-bottom-dots .dot {
                                background-color: #ced2d4;
                                border-radius: 50%;
                                width: 10px;
                                height: 10px;
                                margin-left: 10px;
                            }

                                body.pc-index .section-1 .swiper-container-buttons .swiper-slide.active .swiper-slide-bottom .swiper-slide-bottom-dots .dot.active {
                                    background-color: #23a5ea;
                                }

body.pc-index .section-1-4 {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    margin-top: 30px;
}
body.pc-index .section-1-4 .slide{
    width: 32.8%;
    height: 290px;
    background-color: #fbfbfb;
}


body.pc-index .section-1-4 .slide .text{
    font-size: 0.08rem;
    margin-top: 10px;
    padding: 10px;
    color: #908a8a;
    height: 60px;
    line-height: 22px;
}
body.pc-index .section-1-4 .slide .more{
    font-size: 0.05rem;
    margin-top: 10px;
    padding: 10px;
    text-align: right;
    color: #23a5ea;
}

body.pc-index .section-1-4 .slide .imga{
    width: 100%;
}

body.pc-index .section-1-4 .slide .imga .title{
    width: 32%;
    position: absolute;
    top: 25%;
    text-align: center;
    color: #ffffff;
    font-size: 0.17rem;
    font-weight: bold;
}


body.pc-index .section-1-4 .slide .imga .image{
    width: 100%;
    background: rgba(0,0,0,0.7);
    height: 200px;
}

body.pc-index .section-2 {
        background: url(../image/index/index-pc/2.png) no-repeat 0 0;
        background-size: 100% 100%;
    }

        body.pc-index .section-2 .section-2-2 {
            position: relative;
            width: 58.3%;
            height: 100%;
        }

            body.pc-index .section-2 .section-2-2 .video {
                width: 100%;
                height: 100%;
                opacity: 0;
            }

            body.pc-index .section-2 .section-2-2 .play {
                position: absolute;
                width: 90px;
                height: 90px;
                top: 450px;
                left: 50%;
                transform: translateX(-50%);
                cursor: pointer;
                z-index: 100;
            }

        body.pc-index .section-2 .section-2-3 {
            text-align: center;
            width: 41.7%;
            height: 100%;
            background: url(../image/index/index-pc/2-1.png) no-repeat 0 0;
            background-size: 100% 100%;
            padding-right: 87.12px;
        }

            body.pc-index .section-2 .section-2-3 .title {
                font-size: 48px;
                padding-top: 70px;
            }

                body.pc-index .section-2 .section-2-3 .title .bull {
                    padding: 0 14px;
                }

            body.pc-index .section-2 .section-2-3 .des {
                padding-top: 20px;
                font-size: 16px;
                line-height: 1.6;
            }

            body.pc-index .section-2 .section-2-3 .section-2-3-panels {
                width: 480px;
                height: 355px;
                overflow: hidden;
                border-top-left-radius: 70px;
                border-bottom-right-radius: 70px;
                margin-top: 130px;
            }

                body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel {
                    padding: 40px 33px 35px;
                    width: calc(50% - 5px);
                    height: calc(50% - 5px);
                    position: relative;
                    overflow: hidden;
                    background-color: #ffffff;
                    text-align: left;
                }

                    body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel.section-2-3-panel-top {
                        margin-bottom: 10px;
                    }

                    body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .img-white {
                        display: none;
                        height: 32px;
                        width: auto;
                    }

                    body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .img-black {
                        display: block;
                        height: 32px;
                        width: auto;
                    }

                    body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .section-2-3-panel-title {
                        font-size: 24px;
                        color: #333333;
                        font-weight: bold;
                        padding-top: 10px;
                    }

                    body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .section-2-3-panel-des {
                        font-size: 12px;
                        font-weight: lighter;
                        color: #333333;
                        text-transform: uppercase;
                        padding-top: 4px;
                    }

                    body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel .number {
                        font-family: Arial;
                        font-size: 72px;
                        opacity: 0.07;
                        position: absolute;
                        right: 10px;
                        bottom: -33px;
                        color: #333333;
                    }

                    body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true], body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel:hover {
                        background-color: #23a5ea;
                    }

                        body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] .img-white, body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel:hover .img-white {
                            display: block;
                        }

                        body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] .img-black, body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel:hover .img-black {
                            display: none;
                        }

                        body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] .section-2-3-panel-title,
                        body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel[data-active=true] .section-2-3-panel-des, body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel:hover .section-2-3-panel-title,
                        body.pc-index .section-2 .section-2-3 .section-2-3-panels .section-2-3-panel:hover .section-2-3-panel-des {
                            color: #ffffff;
                        }

    body.pc-index .section-3 .section-3-container .swiper-slide {
        height: 1080px;
        width: 25%;
    }

        body.pc-index .section-3 .section-3-container .swiper-slide .swiper-slide-cover {
            background-color: rgba(0, 0, 0, 0.5);
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

            body.pc-index .section-3 .section-3-container .swiper-slide .swiper-slide-cover .link-item {
                padding: 50px 50px 60px;
                background-color: transparent;
            }

                body.pc-index .section-3 .section-3-container .swiper-slide .swiper-slide-cover .link-item .title {
                    font-size: 36px;
                    padding-bottom: 24px;
                }

                body.pc-index .section-3 .section-3-container .swiper-slide .swiper-slide-cover .link-item .text {
                    font-size: 16px;
                    display: -webkit-box;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    opacity: 0.5;
                }

                body.pc-index .section-3 .section-3-container .swiper-slide .swiper-slide-cover .link-item .next {
                    display: none;
                    font-size: 13px;
                }

                    body.pc-index .section-3 .section-3-container .swiper-slide .swiper-slide-cover .link-item .next .image {
                        height: 13px;
                        width: auto;
                    }

        body.pc-index .section-3 .section-3-container .swiper-slide.swiper-slide-1 {
            background: url(../image/index/1-1.png) no-repeat 0 0;
            background-size: auto 100%;
            background-position-x: center;
        }

        body.pc-index .section-3 .section-3-container .swiper-slide.swiper-slide-2 {
            background: url(../image/index/1-2.png) no-repeat 0 0;
            background-size: auto 100%;
            background-position-x: center;
        }

        body.pc-index .section-3 .section-3-container .swiper-slide.swiper-slide-3 {
            background: url(../image/index/1-3.png) no-repeat 0 0;
            background-size: auto 100%;
            background-position-x: center;
        }

        body.pc-index .section-3 .section-3-container .swiper-slide.swiper-slide-4 {
            background: url(../image/index/1-4.png) no-repeat 0 0;
            background-size: auto 100%;
            background-position-x: center;
        }

        body.pc-index .section-3 .section-3-container .swiper-slide.active .swiper-slide-cover {
            background-color: transparent;
        }

        body.pc-index .section-3 .section-3-container .swiper-slide.active .link-item {
            background-color: #23a5ea;
        }

            body.pc-index .section-3 .section-3-container .swiper-slide.active .link-item .text {
                opacity: 1;
                height: 140px;
            }

            body.pc-index .section-3 .section-3-container .swiper-slide.active .link-item .next {
                display: block;
            }

    body.pc-index .section-4 {
        background: url(../image/index/index-pc/4.png) no-repeat 0 0;
        background-size: 100% 100%;
    }

        body.pc-index .section-4 .section-4-2 {
            position: relative;
            width: 100%;
            height: 100%;
            background: url(../image/index/index-pc/4.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

            body.pc-index .section-4 .section-4-2 .video {
                width: 100%;
                height: 100%;
                opacity: 0;
            }

            body.pc-index .section-4 .section-4-2 .play {
                position: absolute;
                width: 90px;
                height: 90px;
                top: 350px;
                left: 50%;
                transform: translateX(-50%);
                cursor: pointer;
                z-index: 100;
            }

        body.pc-index .section-4 .section-4-3 {
            width: 100%;
            height: 420px;
            position: absolute;
            left: 0;
            bottom: 0;
            background: url("../image/index/index-pc/About us.png") no-repeat 0 0;
            background-size: 75% 290px;
            background-position: bottom left;
            z-index: 110;
        }

            body.pc-index .section-4 .section-4-3 .title {
                font-size: 48px;
                padding-bottom: 60px;
            }

                body.pc-index .section-4 .section-4-3 .title .bull {
                    padding: 0 14px;
                }

            body.pc-index .section-4 .section-4-3 .text {
                height: 290px;
                padding-left: calc(50% - 800px);
                width: 100%;
            }

                body.pc-index .section-4 .section-4-3 .text .des {
                    font-size: 18px;
                    line-height: 1.6;
                    max-width: 60%;
                }

                body.pc-index .section-4 .section-4-3 .text .image {
                    width: 67px;
                    cursor: pointer;
                    margin-left: calc(10% - 33.5px);
                }

    body.pc-index .section-5 {
        background: url(../image/index/index-pc/5.png) no-repeat 0 0;
        background-size: 100% 100%;
    }

        body.pc-index .section-5 .container .section-5-top {
            padding-top: 200px;
            margin-bottom: 120px;
        }

            body.pc-index .section-5 .container .section-5-top .section-5-title {
                text-align: center;
                font-size: 48px;
            }

                body.pc-index .section-5 .container .section-5-top .section-5-title .bull {
                    padding: 0 14px;
                }

            body.pc-index .section-5 .container .section-5-top .image {
                width: 50px;
                height: 50px;
                cursor: pointer;
            }

        body.pc-index .section-5 .swiper-container {
            margin: 0 0;
        }

            body.pc-index .section-5 .swiper-container .swiper-wrapper .swiper-slide {
                height: 544px;
            }

                body.pc-index .section-5 .swiper-container .swiper-wrapper .swiper-slide .link-item {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                }

                    body.pc-index .section-5 .swiper-container .swiper-wrapper .swiper-slide .link-item .image {
                        width: 450px;
                        height: 225px;
                        margin-bottom: 25px;
                    }

                    body.pc-index .section-5 .swiper-container .swiper-wrapper .swiper-slide .link-item .date {
                        font-size: 14px;
                        padding-bottom: 22px;
                    }

                    body.pc-index .section-5 .swiper-container .swiper-wrapper .swiper-slide .link-item .title {
                        font-size: 24px;
                        padding-bottom: 7px;
                    }

                    body.pc-index .section-5 .swiper-container .swiper-wrapper .swiper-slide .link-item .text {
                        font-size: 16px;
                        line-height: 1.6;
                    }

            body.pc-index .section-5 .swiper-container .swiper-button-next, body.pc-index .section-5 .swiper-container .swiper-button-prev {
                top: unset;
                bottom: 0;
                left: 0;
                right: unset;
                height: 12px;
                width: 60px;
                z-index: 100;
            }

                body.pc-index .section-5 .swiper-container .swiper-button-next:after, body.pc-index .section-5 .swiper-container .swiper-button-prev:after {
                    content: "";
                    display: block;
                    height: 12px;
                    width: 60px;
                    background: url(../image/icons/swiper-left.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

            body.pc-index .section-5 .swiper-container .swiper-button-next {
                left: 105px;
            }

                body.pc-index .section-5 .swiper-container .swiper-button-next:after {
                    background: url(../image/icons/swiper-right.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }


    body.pc-index .section-6 {
        background: url(../image/index/index-pc/6.png) no-repeat 0 0;
        background-size: 100% 100%;
        position: relative;
    }

        body.pc-index .section-6 .section-6-title {
            font-size: 48px;
            padding-top: 245px;
        }

            body.pc-index .section-6 .section-6-title .bull {
                padding: 0 14px;
            }

        body.pc-index .section-6 .swiper-container {
            height: 430px;
            padding-top: 115px;
        }

            body.pc-index .section-6 .swiper-container .swiper-wrapper .swiper-slide .link-item .image {
                width: 304px;
                height: 150px;
                margin-bottom: 15px;
                display: block;
                margin-right: 20px;
            }

            body.pc-index .section-6 .swiper-container .swiper-button-next, body.pc-index .section-6 .swiper-container .swiper-button-prev {
                top: 40px;
                bottom: unset;
                left: unset;
                right: 160px;
                height: 11px;
                width: 28px;
            }

                body.pc-index .section-6 .swiper-container .swiper-button-next:after, body.pc-index .section-6 .swiper-container .swiper-button-prev:after {
                    content: "";
                    display: block;
                    height: 11px;
                    width: 28px;
                    background: url(../image/icons/swiper-left.png) no-repeat 0 0;
                    background-size: 100% 100%;
                    position: absolute;
                    top: 0;
                }

            body.pc-index .section-6 .swiper-container .swiper-button-next {
                left: unset;
                right: 20px;
            }

                body.pc-index .section-6 .swiper-container .swiper-button-next:after {
                    background: url(../image/icons/swiper-right.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

            body.pc-index .section-6 .swiper-container .swiper-container-horizontal > .swiper-pagination-bullets,
            body.pc-index .section-6 .swiper-container .swiper-pagination-custom, body.pc-index .section-6 .swiper-container .swiper-pagination-fraction {
                font-size: 16px;
                font-weight: lighter;
                bottom: unset;
                top: 0;
                left: unset;
                right: 20px;
                text-align: right;
                width: 168px;
                text-align: center;
            }

                body.pc-index .section-6 .swiper-container .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-current,
                body.pc-index .section-6 .swiper-container .swiper-pagination-custom .swiper-pagination-current, body.pc-index .section-6 .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
                    font-size: 30px;
                    font-weight: normal;
                }

        body.pc-index .section-6 .section-6-bottom-1 {
            width: 100%;
            position: absolute;
            bottom: 64px;
            left: 0;
        }

            body.pc-index .section-6 .section-6-bottom-1 .container {
                height: 50px;
                border-bottom: 0.01rem solid #ffffff;
            }

                body.pc-index .section-6 .section-6-bottom-1 .container .section-6-contact .item {
                    font-size: 16px;
                    margin-right: 70px;
                }

                    body.pc-index .section-6 .section-6-bottom-1 .container .section-6-contact .item .image {
                        width: 24px;
                        height: auto;
                        margin-left: 10px;
                        margin-right: 10px;
                    }

                body.pc-index .section-6 .section-6-bottom-1 .container .section-6-bottom-1-right .image {
                    width: 30px;
                    height: 30px;
                    margin-left: 10px;
                    cursor: pointer;
                }

    body.pc-index .section-6-bottom {
        font-size: 16px;
        text-align: center;
        line-height: 1.7;
        padding-top: 15px;
        height: 65px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
    }

        body.pc-index .section-6-bottom .copyright {
            padding-right: 10px;
        }

        body.pc-index .section-6-bottom .section-6-bottom-left {
            font-size: 16px;
        }

        body.pc-index .section-6-bottom .section-6-bottom-1-right {
            font-size: 16px;
        }

body.pc-chanpinzhongxin {
    background-color: #f7f7f7;
}

    body.pc-chanpinzhongxin .section-content-title {
        padding-bottom: 70px;
    }

    body.pc-chanpinzhongxin .footer {
        margin-top: 30px;
        border-top: 1px solid #e6e6e6;
    }

    body.pc-chanpinzhongxin .section-text-banner {
        position: relative;
        /*background: url("../image/chanpinzhongxin/2.jpg") center no-repeat;*/
        background-size: cover;

        padding-top:0px;
    }

        body.pc-chanpinzhongxin .section-text-banner .image {
            height: 400px;
            padding-top:0px;
            width: 100%;
        }

    body.pc-chanpinzhongxin .section-tab-expand {
        position: relative;
        width: 100%;
        margin-top: 23px;
    }

    body.pc-chanpinzhongxin .section-tab-expand .crumbs{
        position: relative;
        line-height: 35px;
        font-size: 18px;
        padding-left: 10px;
        margin-bottom: 20px;
    }


        body.pc-chanpinzhongxin .section-tab-expand .tabs {
            width: 290px;
            background: #f5f5f5;
            height: auto;
            overflow-y: auto;
            padding-bottom: 30px;
            padding-top: 0;
            margin: 0;
        }

            body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item {
                padding: 15px 0;
            }

                body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tabs-item-title {
                    height: 50px;
                    line-height: 50px;
                    padding: 0 20px;
                    position: relative;
                    font-size: 18px;
                    cursor: pointer;
                }

                    body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tabs-item-title .add, body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tabs-item-title .minus {
                        position: absolute;
                        top: 50%;
                        right: 18px;
                        height: 13px;
                        width: auto;
                        transform: translateY(-50%);
                    }

                body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tab {
                    font-size: 18px;
                    height: 50px;
                    line-height: 50px;
                    padding: 0 55px;
                    width: 100%;
                    border-left: 5px solid transparent;
                    margin-left: -2px;
                    position: relative;
                    overflow: hidden;
                    color: #999999;
                    margin: 0;
                    text-align: left;
                    font-weight: normal;
                    cursor: pointer;
                }

                    body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item .tab.active {
                        font-weight: bold;
                        border-left: 0.05rem solid #23a5ea;
                        color: #23a5ea;
                        background: none;
                    }

                body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=false] .tabs-item-title .add {
                    display: block;
                }

                body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=false] .tabs-item-title .minus {
                    display: none;
                }

                body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=false] .tab {
                    display: none;
                }

                body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=true] {
                    background: #ffffff;
                    font-weight: bold;
                    background-color: #ffffff;
                }

                    body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=true] .tabs-item-title .add {
                        display: none;
                    }

                    body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=true] .tabs-item-title .minus {
                        display: block;
                    }

                    body.pc-chanpinzhongxin .section-tab-expand .tabs .tabs-item[data-expand=true] .tab {
                        display: block;
                    }

            body.pc-chanpinzhongxin .section-tab-expand .tabs .tab-containers {
                width: calc(100% - 1.9rem);
            }

                body.pc-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content {
                    width: 100%;
                    height: calc(100vh - 4.7rem);
                    overflow-y: auto;
                    background-color: #ffffff;
                }

                    body.pc-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content .item {
                        display: block;
                        padding: 0.2rem 0;
                        margin: 0 0.2rem;
                    }

                        body.pc-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content .item .image {
                            width: 1.25rem;
                            height: auto;
                        }

                        body.pc-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content .item .item-right .item-right-title {
                            font-size: 0.26rem;
                            font-family: "NotoSansHans-Regular";
                        }

                        body.pc-chanpinzhongxin .section-tab-expand .tabs .tab-containers .tab-container-content .item .item-right .item-right-text {
                            font-size: 0.2rem;
                            color: #999999;
                            font-family: "NotoSansHans-Regular";
                        }

        body.pc-chanpinzhongxin .section-tab-expand .tab-containers {
            width: calc(100% - 290px);
        }

            body.pc-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content {
                width: 100%;
                overflow-y: auto;
            }

                body.pc-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .item {
                    padding-bottom: 20px;
                    border-bottom: 0.01rem solid #e6e6e6;
                    width: calc(33.33% - 30px);
                    margin-left: 30px;
                    background-color: #ffffff;
                    margin-bottom: 30px;
                }

                    body.pc-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .item .item-top .image {
                        width: 1.25rem;
                        height: auto;
                        display: block;
                        margin-right: 0rem;
                        margin-top: 0.15rem;
                    }

                    body.pc-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .item .item-right .item-right-title {
                        font-size: 18px;
                        font-weight: bold;
                        margin-bottom: 15px;
                        text-align: center;
                        width: 100%;
                        margin-top: 10px;
                    }

                    body.pc-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .item .item-right .item-right-text {
                        font-size: 16px;
                        color: #ffffff;
                        width: 96px;
                        height: 36px;
                        line-height: 36px;
                        text-align: center;
                        background: url(../image/icons/tab-bk.png) no-repeat 0 0;
                        background-size: 100% 100%;
                        margin: 0 auto;
                    }

                body.pc-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .tab-container-bottom {
                    height: 0.88rem;
                    width: 100%;
                    font-size: 0.24rem;
                    color: #cccccc;
                }

                    body.pc-chanpinzhongxin .section-tab-expand .tab-containers .tab-container-content .tab-container-bottom .image {
                        width: 0.3rem;
                        height: auto;
                        margin-right: 0.1rem;
                    }


body.pc-search {
    background-color: #f7f7f7;
}

body.pc-search .section-content-title {
    padding-bottom: 70px;
}

body.pc-search .footer {
    margin-top: 30px;
    border-top: 0px solid #e6e6e6;
}

body.pc-search .section-text-banner {
    position: relative;
    background: url("../image/chanpinzhongxin/2.jpg") center no-repeat;
    background-size: cover;
}

body.pc-search .section-text-banner .image {
    height: 3.7rem;
}

body.pc-search .section-tab-expand {
    position: relative;
    width: 100%;
    margin-top: 23px;
}

body.pc-search .section-tab-expand .crumbs{
    position: relative;
    line-height: 35px;
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 20px;
}


body.pc-search .section-tab-expand .tabs {
    width: 290px;
    background: #f5f5f5;
    height: auto;
    overflow-y: auto;
    padding-bottom: 30px;
    padding-top: 0;
    margin: 0;
}

body.pc-search .section-tab-expand .tabs .tabs-item {
    padding: 15px 0;
}

body.pc-search .section-tab-expand .tabs .tabs-item .tabs-item-title {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    position: relative;
    font-size: 18px;
    cursor: pointer;
}

body.pc-search .section-tab-expand .tabs .tabs-item .tabs-item-title .add, body.pc-search .section-tab-expand .tabs .tabs-item .tabs-item-title .minus {
    position: absolute;
    top: 50%;
    right: 18px;
    height: 13px;
    width: auto;
    transform: translateY(-50%);
}

body.pc-search .section-tab-expand .tabs .tabs-item .tab {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    padding: 0 55px;
    width: 100%;
    border-left: 5px solid transparent;
    margin-left: -2px;
    position: relative;
    overflow: hidden;
    color: #999999;
    margin: 0;
    text-align: left;
    font-weight: normal;
    cursor: pointer;
}

body.pc-search .section-tab-expand .tabs .tabs-item .tab.active {
    font-weight: bold;
    border-left: 0.05rem solid #23a5ea;
    color: #23a5ea;
    background: none;
}

body.pc-search .section-tab-expand .tabs .tabs-item[data-expand=false] .tabs-item-title .add {
    display: block;
}

body.pc-search .section-tab-expand .tabs .tabs-item[data-expand=false] .tabs-item-title .minus {
    display: none;
}

body.pc-search .section-tab-expand .tabs .tabs-item[data-expand=false] .tab {
    display: none;
}

body.pc-search .section-tab-expand .tabs .tabs-item[data-expand=true] {
    background: #ffffff;
    font-weight: bold;
    background-color: #ffffff;
}

body.pc-search .section-tab-expand .tabs .tabs-item[data-expand=true] .tabs-item-title .add {
    display: none;
}

body.pc-search .section-tab-expand .tabs .tabs-item[data-expand=true] .tabs-item-title .minus {
    display: block;
}

body.pc-search .section-tab-expand .tabs .tabs-item[data-expand=true] .tab {
    display: block;
}

body.pc-search .section-tab-expand .tabs .tab-containers {
    width: calc(100% - 1.9rem);
}

body.pc-search .section-tab-expand .tabs .tab-containers .tab-container-content {
    width: 100%;
    height: calc(100vh - 4.7rem);
    overflow-y: auto;
    background-color: #ffffff;
}

body.pc-search .section-tab-expand .tabs .tab-containers .tab-container-content .item {
    display: block;
    padding: 0.2rem 0;
    margin: 0 0.2rem;
}

body.pc-search .section-tab-expand .tabs .tab-containers .tab-container-content .item .image {
    width: 1.25rem;
    height: auto;
}

body.pc-search .section-tab-expand .tabs .tab-containers .tab-container-content .item .item-right .item-right-title {
    font-size: 0.26rem;
    font-family: "NotoSansHans-Regular";
}

body.pc-search .section-tab-expand .tabs .tab-containers .tab-container-content .item .item-right .item-right-text {
    font-size: 0.2rem;
    color: #999999;
    font-family: "NotoSansHans-Regular";
}

body.pc-search .section-tab-expand .tab-containers {
    width: 1200px;
}

body.pc-search .section-tab-expand .tab-containers .tab-container-content {
    width: 100%;
    overflow-y: auto;
}

body.pc-search .section-tab-expand .tab-containers .tab-container-content .item {
    padding-bottom: 20px;
    border-bottom: 0.01rem solid #e6e6e6;
    width: calc(33.33% - 30px);
    margin-left: 30px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

body.pc-search .section-tab-expand .tab-containers .tab-container-content .item .item-top .image {
    width: 1.25rem;
    height: auto;
    display: block;
    margin-right: 0rem;
    margin-top: 0.15rem;
}

body.pc-search .section-tab-expand .tab-containers .tab-container-content .item .item-right .item-right-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

body.pc-search .section-tab-expand .tab-containers .tab-container-content .item .item-right .item-right-text {
    font-size: 16px;
    color: #ffffff;
    width: 96px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: url(../image/icons/tab-bk.png) no-repeat 0 0;
    background-size: 100% 100%;
    margin: 0 auto;
}

body.pc-search .section-tab-expand .tab-containers .tab-container-content .tab-container-bottom {
    height: 0.88rem;
    width: 100%;
    font-size: 0.24rem;
    color: #cccccc;
}

body.pc-search .section-tab-expand .tab-containers .tab-container-content .tab-container-bottom .image {
    width: 0.3rem;
    height: auto;
    margin-right: 0.1rem;
}
body.pc-lianxiwomen {
    background-color: #fff;
}

    body.pc-lianxiwomen .section-content-title {
        padding-bottom: 0px;
    }
body.pc-lianxiwomen .section-text-banner {
    position: relative;
    /*background: url("../image/chanpinzhongxin/2.jpg") center no-repeat;*/
    background-size: cover;

    padding-top:0px;
}

body.pc-lianxiwomen .section-text-banner .image {
    height: 400px;
    padding-top:0px;
    width: 100%;
}

body.pc-lianxiwomen .section-content-title .section-content-title-title {
    padding-top: 47px;
    font-size: 48px;

    color: #0C0C0C;
}
body.pc-lianxiwomen  .section-content-title .section-content-title-title b{
    color: #23a5ea;
}

body.pc-lianxiwomen .section-content-title .section-content-title-title .bull{
    color: #23a5ea;
}

body.pc-lianxiwomen .section-content-title .section-content-title-des {
    font-size: 16px;
    padding-top: 5px;
    color:#646262 ;
}

    body.pc-lianxiwomen .footer {
        margin-top: 30px;
        border-top: 1px solid #e6e6e6;
    }

    body.pc-lianxiwomen .section-text-banner {
        background: url(../image/lianxiwomen/banner.jpg) center no-repeat;
        background-size: cover;
    }

    body.pc-lianxiwomen .section-map {
        position: relative;
        text-align: center;
    }
    body.pc-lianxiwomen .section-map img{
        width: 1000px;
        text-align: center;
    }

        body.pc-lianxiwomen .section-map .map-canvas {
            width: 100%;
            height: 575px;
            border: 1px solid #d9d9d9;

        }

        body.pc-lianxiwomen .section-map .address {
            font-size: 24px;
            text-align: left;
            width: calc(100% - 60px - 50px);
            padding: 40px 66px;
            color: #000000;
            position: absolute;
            bottom: 46px;
            left: 60px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            background: #ffffff;
        }

    body.pc-lianxiwomen .section-bottom {
        margin: 88px auto 70px;
    }

        body.pc-lianxiwomen .section-bottom .section-bottom-item {
            width: 33%;
            border-right: 0px solid #e6e6e6;
            padding-top: 40px;
            height: 265px;
        }

            body.pc-lianxiwomen .section-bottom .section-bottom-item:last-of-type {
                border-right: none;
                padding-top: 20px;
            }

            body.pc-lianxiwomen .section-bottom .section-bottom-item .image.telephone {
                height: 95px;
                width: auto;
                display: block;
                margin-bottom: 33px;
            }

            body.pc-lianxiwomen .section-bottom .section-bottom-item .image.erweima {
                height: 120px;
                width: 120px;
                margin-bottom: 15px;
                margin-top: 20px;
            }

            body.pc-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts .title {
                font-size: 24px;
                font-weight: bold;
                padding-bottom: 10px;
                color: #000000;
                text-align: center;
            }

            body.pc-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts .text {
                font-size: 18px;
                color: #000000;
                text-align: center;
            }

            body.pc-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts2 {
                bottom: 0px;
            }

            body.pc-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts2 .title {
                font-size: 22px;
                font-weight: bold;
                padding-bottom: 10px;
                color: #000000;
                text-align: left;
            }

            body.pc-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts2 .title2 {
                font-size: 16px;
                font-weight: bold;
                padding-bottom: 10px;
                color: #000000;
                text-align: left;
            }

            body.pc-lianxiwomen .section-bottom .section-bottom-item .section-bottom-item-texts2 .text {
                font-size: 14px;
                color: #000000;
                text-align: left;
                line-height: 25px;
            }

body.pc-jiejuefangan {
    width: 100vw;
    overflow-x: hidden;
    color: #333333;
    background-color: #f7f7f7;
}

    body.pc-jiejuefangan .section-content-title {
        padding-bottom: 70px;
    }

    body.pc-jiejuefangan .footer {
        margin-top: 30px;
        border-top: 1px solid #e6e6e6;
    }

    body.pc-jiejuefangan .section-text-banner {
        background: url(../image/bk-3.png) center no-repeat;
        background-size: cover;
    }

    body.pc-jiejuefangan .section-list .section-item {
        background-color: #ffffff;
        overflow: hidden;
        margin-bottom: 90px;
        width: 630px;
        position: relative;
    }

        body.pc-jiejuefangan .section-list .section-item:nth-of-type(2n+1) {
            border-top-left-radius: 110px;
        }

        body.pc-jiejuefangan .section-list .section-item:nth-of-type(2n) {
            border-top-right-radius: 110px;
        }

        body.pc-jiejuefangan .section-list .section-item .section-item-image {
            height: 465px;
            width: 630px;
            display: block;
        }

        body.pc-jiejuefangan .section-list .section-item .section-item-bottom {
            padding: 0 35px 0 45px;
            width: 630px;
        }

            body.pc-jiejuefangan .section-list .section-item .section-item-bottom .section-item-bottom-title {
                font-size: 36px;
                font-weight: bold;
                color: #000000;
                margin-bottom: 20px;
                padding-top: 20px;
                padding-left: 70px;
                position: relative;
            }

                body.pc-jiejuefangan .section-list .section-item .section-item-bottom .section-item-bottom-title .section-item-bottom-number {
                    position: absolute;
                    height: 125px;
                    width: 50px;
                    font-size: 24px;
                    color: #ffffff;
                    background-color: #23a5ea;
                    left: 0;
                    bottom: 0;
                    text-align: center;
                    line-height: 1.7;
                }

            body.pc-jiejuefangan .section-list .section-item .section-item-bottom .section-item-bottom-text {
                margin-bottom: 35px;
                display: -webkit-box;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                font-size: 24px;
            }

body.pc-xiangqingye {
    background-color: #f7f7f7;
}

    body.pc-xiangqingye .footer {
        margin-top: 30px;
        border-top: 1px solid #e6e6e6;
    }

    body.pc-xiangqingye .section-text-banner {
        background: url("../image/chanpinzhongxin/2.jpg") center no-repeat;

        background-size: cover;
    }

    body.pc-xiangqingye .section-article .section-article-title {
        font-weight: bold;
        font-size: 36px;
        padding-top: 90px;
        padding-bottom: 20px;
        text-align: center;
    }

    body.pc-xiangqingye .section-article .crumbs {
        position: relative;
        line-height: 35px;
        font-size: 18px;
        padding-left: 10px;
        margin-bottom: 20px;
        margin-top: 20px;
        width: 1200px;
    }
    body.pc-xiangqingye .section-article .crumbs .return{
        right: 0px;
        float: right;
    }

    body.pc-xiangqingye .section-article .section-article-date {
        padding-bottom: 30px;
        font-size: 16px;
        color: #cccccc;
        border-bottom: 1px solid #e6e6e6;
        text-align: center;
    }

        body.pc-xiangqingye .section-article .section-article-date .straight-line {
            padding: 0 30px;
        }

    body.pc-xiangqingye .section-article .section-article-content {
        padding-top: 30px;
        padding-bottom: 10px;
    }

        body.pc-xiangqingye .section-article .section-article-content .section-image {
            width: 806px;
            margin: 0 auto 70px;
            display: block;
        }

        body.pc-xiangqingye .section-article .section-article-content .section-text {
            padding-bottom: 40px;
            font-size: 18px;
            line-height: 1.7;
        }

        body.pc-xiangqingye .section-article .section-article-content img {
            max-width: 1200px   ;
        }

    body.pc-xiangqingye .section-list {
        margin-bottom: 0.35rem;
        background-color: #ffffff;
        padding: 0 35px;
    }

        body.pc-xiangqingye .section-list .section-list-title {
            font-size: 30px;
            font-weight: bold;
            padding: 35px 0;
        }

        body.pc-xiangqingye .section-list .section-items {
            width: 100%;
        }

            body.pc-xiangqingye .section-list .section-items .section-item {
                width: 410px;
                background-color: #ffffff;
            }

                body.pc-xiangqingye .section-list .section-items .section-item .section-item-left .image {
                    width: 210px;
                    max-height: 210px;
                }

                body.pc-xiangqingye .section-list .section-items .section-item .section-item-right {
                    padding-top: 15px;
                }

                    body.pc-xiangqingye .section-list .section-items .section-item .section-item-right .title {
                        font-size: 14px;
                        padding-bottom: 10px;
                        line-height: 1.3;
                        text-align: center;
                    }

                    body.pc-xiangqingye .section-list .section-items .section-item .section-item-right .date {
                        font-size: 15.23px;
                        padding-bottom: 20px;
                        color: #999999;
                    }

body.pc-qiyewenhua {
    background-color: #f7f7f7;
}

    body.pc-qiyewenhua .footer {
        border-top: 1px solid #e6e6e6;
    }

    body.pc-qiyewenhua .section-1 {
        margin-top: 85px;
        margin-bottom: 95px;
    }

        body.pc-qiyewenhua .section-1 .section-content-title {
            padding: 0;
        }

            body.pc-qiyewenhua .section-1 .section-content-title .section-content-title-title {
                padding: 0;
                text-align: left;
            }

            body.pc-qiyewenhua .section-1 .section-content-title .section-content-title-des {
                text-align: left;
            }

        body.pc-qiyewenhua .section-1 .tab-container {
            font-size: 16px;
            width: 570px;
            line-height: 2.3;
        }

    body.pc-qiyewenhua .section-swiper-1 {
        margin-top: -160px;
    }

        body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container {
            margin-bottom: 200px;
            padding-top: 160px;
        }

            body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item {
                position: relative;
            }

                body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item .image {
                    height: 540px;
                    width: 100%;
                }

                body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-wrapper .swiper-slide .link-item .text {
                    min-height: 200px;
                    width: 460px;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    background-color: #f7f7f7;
                    padding-top: 30px;
                    padding-bottom: 45px;
                    padding-left: 20px;
                    font-size: 36px;
                    line-height: 1.7;
                }

            body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-next, body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-prev {
                top: unset;
                bottom: 0;
                left: 25px;
                right: unset;
                width: 28px;
            }

                body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-next:after, body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-prev:after {
                    width: 28px;
                    height: 12px;
                    background: url(../image/icons/swiper-left-blue.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

                body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-next.swiper-button-next, body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-prev.swiper-button-next {
                    left: 105px;
                    right: unset;
                }

                    body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-next.swiper-button-next:after, body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-prev.swiper-button-next:after {
                        width: 28px;
                        height: 12px;
                        background: url(../image/icons/swiper-right-blue.png) no-repeat 0 0;
                        background-size: 100% 100%;
                    }

                body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-next.swiper-button-disabled, body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-prev.swiper-button-disabled {
                    opacity: 1;
                }

                    body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-next.swiper-button-disabled.swiper-button-prev:after, body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-prev.swiper-button-disabled.swiper-button-prev:after {
                        background: url(../image/icons/swiper-left-grey.png) no-repeat 0 0;
                        background-size: 100% 100%;
                    }

                    body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-next.swiper-button-disabled.swiper-button-next:after, body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-button-prev.swiper-button-disabled.swiper-button-next:after {
                        background: url(../image/icons/swiper-right-grey.png) no-repeat 0 0;
                        background-size: 100% 100%;
                    }

            body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-pagination {
                bottom: unset;
                top: 0;
                left: 0;
                height: 40px;
                display: flex;
                justify-content: space-between;
                width: 366px;
            }

                body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet {
                    border: 1px solid #e5e5e5;
                    width: 110px;
                    height: 40px;
                    line-height: 40px;
                    text-align: center;
                    font-size: 16px;
                    border-radius: 20px;
                    background-color: transparent;
                    opacity: 1;
                    display: block;
                    margin: 0;
                }

                    body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet:nth-of-type(1):after {
                        content: "愿景";
                        line-height: 40px;
                    }

                    body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet:nth-of-type(2):after {
                        content: "使命";
                        line-height: 40px;
                    }

                    body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet:nth-of-type(3):after {
                        content: "价值观";
                        line-height: 40px;
                    }

                    body.pc-qiyewenhua .section-swiper-1 .section-swiper.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                        background-color: #23a5ea;
                        border: 1px solid #23a5ea;
                        color: #ffffff;
                    }

    body.pc-qiyewenhua .section-swiper-2 {
        background: url(../image/qiyewenhua/4.png) 0 0 no-repeat;
        background-size: 100% 100%;
        width: 100%;
        height: 925px;
        position: relative;
    }

        body.pc-qiyewenhua .section-swiper-2:before {
            content: "";
            position: absolute;
            top: 140px;
            left: 0;
            display: block;
            width: calc(25% - 113px);
            height: 1px;
            background-color: #ffffff;
        }

        body.pc-qiyewenhua .section-swiper-2:after {
            content: "";
            position: absolute;
            top: 140px;
            right: 0;
            display: block;
            width: calc(25% - 113px);
            height: 1px;
            background-color: #ffffff;
        }

        body.pc-qiyewenhua .section-swiper-2 .section-content-title {
            width: 100%;
            position: absolute;
            top: 100px;
            padding-left: 25%;
            font-size: 48px;
            color: #ffffff;
        }

            body.pc-qiyewenhua .section-swiper-2 .section-content-title .section-content-title-title {
                text-align: left;
                font-size: 48px;
                padding: 0;
            }

            body.pc-qiyewenhua .section-swiper-2 .section-content-title .section-content-title-des {
                text-align: left;
                font-size: 16px;
            }

        body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide {
            padding-bottom: 138px;
            height: 925px;
        }

            body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide .link-item {
                position: relative;
                margin: 0 auto;
                height: 794px;
                max-width: 905px;
                overflow: hidden;
                width: 75%;
            }

                body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide .link-item:after {
                    position: absolute;
                    content: "";
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 2;
                    height: 400px;
                    background-color: rgba(35, 165, 234, 0.5);
                }

                body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide .link-item .year {
                    font-family: Arial;
                    text-align: right;
                    font-size: 36px;
                    color: #ffffff;
                    padding-bottom: 45px;
                    width: 100%;
                    opacity: 0.5;
                }

                body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide .link-item .image {
                    height: 345px;
                    width: 100%;
                }

                body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide .link-item .text {
                    width: 100%;
                    background-color: #ffffff;
                    text-align: center;
                    display: -webkit-box;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    -webkit-line-clamp: 1;
                    -webkit-box-orient: vertical;
                    height: 55px;
                    font-size: 17.7px;
                    line-height: 55px;
                }

            body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide.swiper-slide-active .link-item {
                width: 100%;
            }

                body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide.swiper-slide-active .link-item:after {
                    background-color: transparent;
                }

                body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide.swiper-slide-active .link-item .year {
                    font-size: 90px;
                    padding-bottom: 50px;
                    opacity: 1;
                }

                    body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide.swiper-slide-active .link-item .year .year-left {
                        opacity: 0;
                    }

                body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide.swiper-slide-active .link-item .image {
                    height: 476px;
                }

                body.pc-qiyewenhua .section-swiper-2 .swiper-wrapper .swiper-slide.swiper-slide-active .link-item .text {
                    height: 76px;
                    font-size: 24px;
                    line-height: 76px;
                }

        body.pc-qiyewenhua .section-swiper-2 .swiper-button-next, body.pc-qiyewenhua .section-swiper-2 .swiper-button-prev {
            top: unset;
            bottom: 168px;
            left: calc(25% + 50px);
            right: unset;
            width: 28px;
        }

            body.pc-qiyewenhua .section-swiper-2 .swiper-button-next:after, body.pc-qiyewenhua .section-swiper-2 .swiper-button-prev:after {
                width: 28px;
                height: 12px;
                background: url(../image/icons/swiper-left-blue.png) no-repeat 0 0;
                background-size: 100% 100%;
            }

            body.pc-qiyewenhua .section-swiper-2 .swiper-button-next.swiper-button-next, body.pc-qiyewenhua .section-swiper-2 .swiper-button-prev.swiper-button-next {
                left: unset;
                right: calc(25% + 50px);
            }

                body.pc-qiyewenhua .section-swiper-2 .swiper-button-next.swiper-button-next:after, body.pc-qiyewenhua .section-swiper-2 .swiper-button-prev.swiper-button-next:after {
                    width: 28px;
                    height: 12px;
                    background: url(../image/icons/swiper-right-blue.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

            body.pc-qiyewenhua .section-swiper-2 .swiper-button-next.swiper-button-disabled, body.pc-qiyewenhua .section-swiper-2 .swiper-button-prev.swiper-button-disabled {
                opacity: 1;
            }

                body.pc-qiyewenhua .section-swiper-2 .swiper-button-next.swiper-button-disabled.swiper-button-prev:after, body.pc-qiyewenhua .section-swiper-2 .swiper-button-prev.swiper-button-disabled.swiper-button-prev:after {
                    background: url(../image/icons/swiper-left-grey.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

                body.pc-qiyewenhua .section-swiper-2 .swiper-button-next.swiper-button-disabled.swiper-button-next:after, body.pc-qiyewenhua .section-swiper-2 .swiper-button-prev.swiper-button-disabled.swiper-button-next:after {
                    background: url(../image/icons/swiper-right-grey.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

body.pc-gongsijianjie {
    font-size: 16px;
}

body.pc-gongsijianjie .section-text-banner {
    background: url(../image/gongsijieshao/2.jpg) center no-repeat;
    background-size: cover;
}


    body.pc-gongsijianjie .company-content {
        position: relative;
        width: 100%;
        width: 1200px;
        margin: 0 auto;
    }

        body.pc-gongsijianjie .company-content .section-content-title {
            padding-bottom: 0px;
        }

            body.pc-gongsijianjie .company-content .section-content-title .section-content-title-title {
                padding-top: 47px;
                font-size: 48px;

                color: #0C0C0C;
            }
            body.pc-gongsijianjie .company-content .section-content-title .section-content-title-title b{
                color: #23a5ea;
            }

            body.pc-gongsijianjie .company-content .section-content-title .section-content-title-title .bull{
                color: #23a5ea;
            }

            body.pc-gongsijianjie .company-content .section-content-title .section-content-title-des {
                font-size: 16px;
                padding-top: 5px;
                color:#646262 ;
            }

        body.pc-gongsijianjie .company-content::before {
            content: "";
            position: absolute;
            width: calc(50% + 680px);
            height: 100%;
            z-index: -1;
            top: 0;
            left: 0;
            border-bottom-right-radius: 200px;
            overflow: hidden;
        }

        body.pc-gongsijianjie .company-content::after {
            content: "";
            position: absolute;
            left: calc(50% + 0px);
            background: url(../image/gongsijieshao/33.png) 0 0 no-repeat;
            background-size: cover;
            height: 519px;
            width: 500px;
            display: block;
            z-index: 10;
            border-bottom-right-radius: 0px;
            overflow: hidden;
            top: 190px;
        }

        body.pc-gongsijianjie .company-content .description {
            width: 678px;
            line-height: 28px;
            font-size: 16px;
            margin-left: 50px;
            color:#000000;

        }


    body.pc-gongsijianjie .bus-introduce {
        background-color: #f7f7f7;
        position: relative;
        padding-top: 115px;
        padding-bottom: 115px;
        padding-left: calc(50% - 680px);
    }

        body.pc-gongsijianjie .bus-introduce .bus-introduce-left {
            width: 452px;
        }

            body.pc-gongsijianjie .bus-introduce .bus-introduce-left .section-content-title {
                padding-bottom: 45px;
            }

                body.pc-gongsijianjie .bus-introduce .bus-introduce-left .section-content-title .section-content-title-title {
                    padding-top: 0;
                    font-size: 48px;
                    text-align: left;
                }

                body.pc-gongsijianjie .bus-introduce .bus-introduce-left .section-content-title .section-content-title-des {
                    font-size: 16px;
                    text-align: left;
                    padding-top: 5px;
                }

            body.pc-gongsijianjie .bus-introduce .bus-introduce-left ul {
                margin: 0px;
                padding: 0;
            }

                body.pc-gongsijianjie .bus-introduce .bus-introduce-left ul > li {
                    font-size: 16px;
                    list-style-position: inside;
                    margin: 22px 0;
                }

                    body.pc-gongsijianjie .bus-introduce .bus-introduce-left ul > li::marker {
                        color: #23a5ea;
                        font-size: 16px;
                    }

        body.pc-gongsijianjie .bus-introduce .pc-swiper-container {
            width: calc(50% + 0px);
            height: 820px;
        }

            body.pc-gongsijianjie .bus-introduce .pc-swiper-container .link-item {
                overflow: hidden;
                width: 100%;
                height: 720px;
            }

                body.pc-gongsijianjie .bus-introduce .pc-swiper-container .link-item .image {
                    height: 600px;
                    min-width: 100%;
                }

                body.pc-gongsijianjie .bus-introduce .pc-swiper-container .link-item .text {
                    font-size: 24px;
                    text-align: center;
                    background-color: #ffffff;
                    height: 120px;
                    line-height: 120px;
                    width: 100%;
                }

            body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-next, body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-prev {
                top: unset;
                bottom: 0;
                left: 0;
                right: unset;
            }

                body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-next:after, body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-prev:after {
                    background: url(../image/icons/swiper-left-blue.png) no-repeat 0 0;
                    background-size: 100% 100%;
                }

                body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-next.swiper-button-next, body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-prev.swiper-button-next {
                    left: 100px;
                    right: unset;
                }

                    body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-next.swiper-button-next:after, body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-prev.swiper-button-next:after {
                        background: url(../image/icons/swiper-right-blue.png) no-repeat 0 0;
                        background-size: 100% 100%;
                    }

                body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-next.swiper-button-disabled, body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-prev.swiper-button-disabled {
                    opacity: 1;
                }

                    body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-next.swiper-button-disabled.swiper-button-prev:after, body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-prev.swiper-button-disabled.swiper-button-prev:after {
                        background: url(../image/icons/swiper-left-black.png) no-repeat 0 0;
                        background-size: 100% 100%;
                    }

                    body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-next.swiper-button-disabled.swiper-button-next:after, body.pc-gongsijianjie .bus-introduce .pc-swiper-container .swiper-button-prev.swiper-button-disabled.swiper-button-next:after {
                        background: url(../image/icons/swiper-right-black.png) no-repeat 0 0;
                        background-size: 100% 100%;
                    }

    body.pc-gongsijianjie .certification {
        position: relative;
        height: 565px;
    }

        body.pc-gongsijianjie .certification .zoomImgBox {
            display: none;
        }

        body.pc-gongsijianjie .certification::before {
            content: "";
            position: absolute;
            top: 0;
            height: 100%;
            z-index: -1;
            right: 0;
            left: 0;
            background: url(../image/gongsijieshao/centification_bg.png) top no-repeat;
            background-size: cover;
        }

        body.pc-gongsijianjie .certification .section-content-title .section-content-title-title {
            padding-top: 100px;
            font-size: 48px;
            text-align: left;
        }

        body.pc-gongsijianjie .certification .section-content-title .section-content-title-des {
            font-size: 16px;
            text-align: left;
            padding-top: 5px;
        }

        body.pc-gongsijianjie .certification .pc-swiper-container {
            width: 100%;
            height: 312px;
            padding-top: 112px;
            margin-top: -40px;
        }

            body.pc-gongsijianjie .certification .pc-swiper-container .link-item {
                overflow: hidden;
                width: 290px;
                display: flex;
                justify-content: center;
                align-items: center;

                background-size: cover;
            }

                body.pc-gongsijianjie .certification .pc-swiper-container .link-item:hover {
                    border: 1px solid red;
                    position: relative;
                }

                    body.pc-gongsijianjie .certification .pc-swiper-container .link-item:hover:before {
                        content: "查看大图";
                        font-size: 16px;
                        color: #ffffff;
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        display: block;
                        height: 240px;
                        width: 235px;
                        background-color: rgba(35, 165, 234, 0.8);
                        padding-top: 165px;
                        z-index: 100;
                        transform: translate(-50%, -50%);
                        text-align: center;
                        box-sizing: border-box;
                    }

                    body.pc-gongsijianjie .certification .pc-swiper-container .link-item:hover:after {
                        content: "";
                        position: absolute;
                        top: 80px;
                        left: 50%;
                        display: block;
                        width: 25px;
                        height: 24px;
                        transform: translateX(-50%);
                        background: url(../image/icons/fangdajing.png) 0 0 no-repeat;
                        background-size: cover;
                        z-index: 101;
                    }

                body.pc-gongsijianjie .certification .pc-swiper-container .link-item .image {
                    width: 235px;
                    display: block;
                }

            body.pc-gongsijianjie .certification .pc-swiper-container .swiper-button-next, body.pc-gongsijianjie .certification .pc-swiper-container .swiper-button-prev {
                top: 11px;
                bottom: unset;
                left: unset;
                right: 110px;
            }

                body.pc-gongsijianjie .certification .pc-swiper-container .swiper-button-next:after, body.pc-gongsijianjie .certification .pc-swiper-container .swiper-button-prev:after {
                    background: url(../image/icons/swiper-left.png) no-repeat 0 0;
                    background-size: 100% 100%;
                    position: absolute;
                    top: 11px;
                    bottom: unset;
                    left: unset;
                    right: 0;
                }

                body.pc-gongsijianjie .certification .pc-swiper-container .swiper-button-next.swiper-button-next, body.pc-gongsijianjie .certification .pc-swiper-container .swiper-button-prev.swiper-button-next {
                    left: unset;
                    right: 0;
                }

                    body.pc-gongsijianjie .certification .pc-swiper-container .swiper-button-next.swiper-button-next:after, body.pc-gongsijianjie .certification .pc-swiper-container .swiper-button-prev.swiper-button-next:after {
                        background: url(../image/icons/swiper-right.png) no-repeat 0 0;
                        background-size: 100% 100%;
                    }

body.pc-gongsijianjie .section-text-banner {
    padding-top:0px;
}

body.pc-gongsijianjie .section-text-banner .image {
    height: 400px;
    padding-top:0px;
    width: 100%;
}


body.pc-fazhanlicheng {
    font-size: 16px;
}


body.pc-fazhanlicheng .section-text-banner {
    padding-top:0px;
}

body.pc-fazhanlicheng .section-text-banner .image {
    height: 400px;
    padding-top:0px;
    width: 100%;
}


body.pc-fazhanlicheng .company-content {
    position: relative;
    width: 100%;
    width: 1200px;
    margin: 0 auto;
}

body.pc-fazhanlicheng .company-content .section-content-title {
    padding-bottom: 0px;
}

body.pc-fazhanlicheng .company-content .section-content-title .section-content-title-title {
    padding-top: 47px;
    font-size: 48px;

    color: #0C0C0C;
}
body.pc-fazhanlicheng .company-content .section-content-title .section-content-title-title b{
    color: #23a5ea;
}

body.pc-fazhanlicheng .company-content .section-content-title .section-content-title-title .bull{
    color: #23a5ea;
}

body.pc-fazhanlicheng .company-content .section-content-title .section-content-title-des {
    font-size: 16px;
    padding-top: 5px;
    color:#646262 ;
}


body.pc-womendekehu {
    background-color: #fff;
}

    body.pc-womendekehu .section-content-title {
        padding-bottom: 50px;
    }

body.pc-womendekehu .section-text-banner {
    background-size: cover;
    height: 400px;
    position: relative;
}

body.pc-womendekehu .section-text-banner {
    padding-top:0px;
}

body.pc-womendekehu .section-text-banner .image {
    height: 400px;
    padding-top:0px;
    width: 100%;
}


body.pc-womendekehu .section-text-banner .section-banner-titles {
    padding-top: 130px  ;
}

    body.pc-womendekehu .img {
       width: 100%;
    }

    body.pc-womendekehu .footer {
        border-top:0px solid #e6e6e6;
    }

    body.pc-womendekehu .kehu-box {
        overflow: hidden;
        margin-right: -30px;
        margin-bottom: 40px;
    }

        body.pc-womendekehu .kehu-box .kehu-col {
            width: 25%;
            float: left;
            padding-right: 30px;
            margin-bottom: 30px;
        }

            body.pc-womendekehu .kehu-box .kehu-col .kehu-item {
                background-color: #ffffff;
                height: 110px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            body.pc-womendekehu .kehu-box .kehu-col > .kehu-item .image {
                max-width: 250px;
                max-height: 72px;
            }

body.pc-rongyuzhengshu {
    background-color: #FFF;
    /******荣誉证书******/
}

body.pc-rongyuzhengshu .section-text-banner {
    background: url(../image/rongyuzhengshu/banner.jpg) center no-repeat;
    background-size: cover;
}


    body.pc-rongyuzhengshu .section-content-title {
        padding-bottom: 70px;
    }

    body.pc-rongyuzhengshu .footer {
        margin-top: 30px;
        border-top: 0px solid #e6e6e6;
    }

    body.pc-rongyuzhengshu .rongyu-box {
        margin-right: -40px;
        overflow: hidden;
        padding-top: 76px;
    }

        body.pc-rongyuzhengshu .rongyu-box .rongyu-col {
            width: 33.3333333333%;
            float: left;
            padding-right: 40px;
            margin-bottom: 0;
            margin-top: -76px;

            height: 360px;
        }

            body.pc-rongyuzhengshu .rongyu-box .rongyu-col .rongyu-item {
                padding-bottom: 0px;
                background-size: 100% auto;
            }

                body.pc-rongyuzhengshu .rongyu-box .rongyu-col .rongyu-item .item-image {
                    width: 280px;
                    height: 210px;
                    object-fit: contain;
                    margin: 0 auto;
                    display: block;
                    border: 1px solid #f1f1f1;
                    padding: 10px;

                }
                body.pc-rongyuzhengshu .rongyu-box .rongyu-col .rongyu-item .item-title {
                    width: 280px;
                    margin: 0 auto;
                    display: block;
                    text-align: center;
                    line-height: 30px;

                }

body.pc-rongyuzhengshu .section-text-banner {
    padding-top:0px;
}

body.pc-rongyuzhengshu .section-text-banner .image {
    height: 400px;
    padding-top:0px;
    width: 100%;
}

body.pc-qiyexinwen {
    background-color: #f7f7f7;
}

    body.pc-qiyexinwen .section-content-title {
        padding-bottom: 70px;
    }

    body.pc-qiyexinwen .footer {
        margin-top: 30px;
        border-top: 1px solid #e6e6e6;
    }

    body.pc-qiyexinwen .section-text-banner {
        background: url(../image/bk-1.png) center no-repeat;
        background-size: cover;
    }

    body.pc-qiyexinwen .news-swiper-item {
        display: flex;
    }

        body.pc-qiyexinwen .news-swiper-item .image {
            flex: 1;
            overflow: hidden;
            width: 100%;
            height: 389px;
            object-fit: cover;
        }

        body.pc-qiyexinwen .news-swiper-item .bd {
            flex: 1;
            overflow: hidden;
            background-color: #23a5ea;
            height: 389px;
            box-sizing: border-box;
        }

            body.pc-qiyexinwen .news-swiper-item .bd .news-bd {
                padding: 50px;
                width: 100%;
            }

            body.pc-qiyexinwen .news-swiper-item .bd .news-title {
                font-size: 24px;
                color: #ffffff;
                position: relative;
                padding-bottom: 25px;
                margin-bottom: 30px;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

                body.pc-qiyexinwen .news-swiper-item .bd .news-title::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 32px;
                    height: 2px;
                    background-color: #ffffff;
                }

            body.pc-qiyexinwen .news-swiper-item .bd .news-des {
                font-size: 16px;
                color: #ffffff;
                line-height: 36px;
                height: 108px;
                overflow: hidden;
            }

            body.pc-qiyexinwen .news-swiper-item .bd .date {
                font-size: 16px;
                color: #ffffff;
                margin-top: 30px;
            }

    body.pc-qiyexinwen .swiper-container-horizontal > .swiper-pagination-bullets, body.pc-qiyexinwen .swiper-pagination-custom, body.pc-qiyexinwen .swiper-pagination-fraction {
        left: 70px;
    }

    body.pc-qiyexinwen .section-list {
        margin-right: -40px;
        margin-top: 40px;
        overflow: hidden;
    }

        body.pc-qiyexinwen .section-list .section-item {
            width: 50%;
            padding-right: 40px;
            margin-bottom: 40px;
            float: left;
        }

            body.pc-qiyexinwen .section-list .section-item .nav {
                background-color: #ffffff;
                display: flex;
                padding: 25px 20px;
                width: 100%;
            }

                body.pc-qiyexinwen .section-list .section-item .nav .section-item-left .image {
                    width: 190px;
                    height: 190px;
                    object-fit: cover;
                    margin-right: 24px;
                }

                body.pc-qiyexinwen .section-list .section-item .nav .section-item-right {
                    flex: 1;
                    overflow: hidden;
                }

                    body.pc-qiyexinwen .section-list .section-item .nav .section-item-right .title {
                        font-size: 24px;
                        line-height: 36px;
                    }

                    body.pc-qiyexinwen .section-list .section-item .nav .section-item-right .des {
                        font-size: 16px;
                        color: #999999;
                        margin-top: 20px;
                        overflow: hidden;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                    }

                    body.pc-qiyexinwen .section-list .section-item .nav .section-item-right .date {
                        font-size: 16px;
                        color: #999999;
                        margin-top: 30px;
                    }

                body.pc-qiyexinwen .section-list .section-item .nav:hover .section-item-right .title {
                    color: #23a5ea;
                }

body.pc-shipinneirong {
    background-color: #fff;
    /* 视频内容 */
}

    body.pc-shipinneirong .section-content-title {
        padding-bottom: 70px;
    }

    body.pc-shipinneirong .footer {
        border-top: 0px solid #e6e6e6;
    }



body.pc-shipinneirong .section-text-banner {
    padding-top:0px;
}

body.pc-shipinneirong .section-text-banner .image {
    height: 400px;
    padding-top:0px;
    width: 100%;
}


body.pc-shipinneirong .shipin-box {
        overflow: hidden;
        margin-right: -30px;
        margin-bottom: 20px;
    }

        body.pc-shipinneirong .shipin-box .shipin-col {
            width: 33.3333333333%;
            padding-right: 30px;
            float: left;
            margin-bottom: 36px;
        }

            body.pc-shipinneirong .shipin-box .shipin-col .section-item {
                background-color: #ffffff;
                display: block;
            }

                body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-top {
                    position: relative;
                    width: 100%;
                    padding-bottom: 76%;
                    font-size: 0;
                    height: 0;
                }

                    body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-top .cover {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        z-index: 0;
                    }

                    body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-top::after {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(35, 165, 234, 0.5);
                        z-index: 1;
                    }

                    body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-top .play-info {
                        position: absolute;
                        z-index: 2;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-direction: column;
                    }

                        body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-top .play-info .play {
                            width: 42px;
                            height: 42px;
                        }

                        body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-top .play-info .duration {
                            font-size: 16px;
                            color: #ffffff;
                            margin-top: 6px;
                        }

                body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-bottom {
                    padding: 20px;
                    height: 85px;
                }

                body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-bottom-title {
                    font-size: 18px;
                    font-weight: bold;
                    color: #333333;
                }

                body.pc-shipinneirong .shipin-box .shipin-col .section-item .section-item-bottom-date {
                    font-size: 16px;
                    color: #999999;
                    margin-top: 10px;
                }

    body.pc-shipinneirong .section-video {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 100;
        display: none;
    }

        body.pc-shipinneirong .section-video .video-js video {
            max-height: 70vh;
            max-width: 70vw;
            display: block;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        body.pc-shipinneirong .section-video .close {
            width: 70px;
            padding: 20px;
            border: 1px solid #ffffff;
            border-radius: 50%;
            display: block;
            cursor: pointer;
            top: 10%;
            right: 10%;
            position: absolute;
        }

/*# sourceMappingURL=css.css.map */
