.swiper1 {

    // #52da95
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #ffffff;
    }

    .swiper-pagination-bullet-active {
        background: #52da95;
        width: 40px;
        height: 10px;
        border-radius: 5px;
    }
}

.box1 {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;

    .boxin {
        display: flex;
        justify-content: space-around;

        .item {
            display: flex;
            align-items: center;


            .txt {
                padding-left: 15px;

                .h2 {
                    font-size: 16px;
                    color: #737373;
                }

                .h3 {
                    font-size: 18px;
                    font-weight: 600;
                    color: #555555;
                }
            }
        }
    }
}

.box2 {
    .boxin {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;

        >div {
            width: 250px;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            position: relative;
            margin-bottom: 60px;

            .big {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                overflow: hidden;
            }

            p {
                margin-top: 10px;
                font-size: 16px;
                text-align: center;
            }

            >div {
                position: absolute;
                top: -30px;
                left: 0;
                width: 100%;
                // height: 100%;
                background-color: #fff;
                box-shadow: 0 0 6px #eee;
                z-index: 9;
                padding: 30px 20px 20px;
                box-sizing: border-box;

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    width: 100%;
                    padding-bottom: 20px;
                    border-bottom: 1px solid #eee;

                    .small {
                        width: 80px;
                        height: 80px;
                        border-radius: 50%;
                        overflow: hidden;
                        // margin-top: -20px;
                    }
                }

                ul {
                    width: 100%;
                    margin-top: 14px;

                    li {
                        display: flex;
                        justify-content: flex-start;
                        align-items: flex-start;
                        margin-top: 8px;
                        font-size: 14px;

                        s {
                            text-decoration: none;
                            width: 4px;
                            height: 4px;
                            background-color: #ff8023;
                            margin-right: 10px;
                            margin-top: 8px;
                        }
                    }
                }
            }
        }
    }
}

.box9 {
    .box {
        padding-bottom: 0;
    }

    .team {
        width: 100%;
        display: flex;
        position: relative;

        .item {
            flex: 1/2;
            height: 490px;

            .txt {
                width: 448px;
                position: absolute;
                top: 90px;
                display: flex;
                flex-direction: column;

                .p1 {
                    font-size: 26px;

                }

                .red {
                    width: 50px;
                    height: 3px;
                    background: #134c99;
                    margin: 18px 0 28px;
                }

                .it {
                    padding-bottom: 38px;

                    .p2 {
                        font-size: 14px;
                        line-height: 22px;

                    }
                }

                .group {
                    width: 100%;
                    margin-top: 10px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    .td {
                        display: flex;
                        flex-direction: column;
                        align-items: center;

                        img {
                            width: 40px;
                        }
                    }

                    p {
                        font-size: 14px;
                        line-height: 22px;
                        padding-top: 10px;
                    }
                }
            }

            .txtl {
                text-align: left;
                left: 5%;

                div {
                    color: #ffffff;
                }

            }

            .txtr {
                text-align: right;
                right: 5%;
                align-items: flex-end;

                // .it {
                //     .p2 {
                //         color: #737373;
                //     }
                // }

                // .group {
                //     p {
                //         color: #737373;
                //     }
                // }
            }
        }

        .iteml {
            background: #333;

        }

        .itemr {
            background: #4adf92;

        }

        .center {
            width: 310px;
            height: 210px;
            background:#134c99;
            position: absolute;
            top: 55px;
            left: 50%;
            margin-left: -155px;

            .p1 {
                font-size: 28px;
                color: #ffffff;
                padding: 26px 0 18px;
                text-align: center;
            }

            .line {
                width: 100px;
                height: 4px;
                background: #ffffff;
                margin: 0 auto 20px;
            }

            .p2 {
                font-size: 14px;
                color: #ffffff;
                text-align: center;
                line-height: 24px;
                width: 80%;
                margin: 0 auto;
            }
        }
    }
}

.box10 {
    background: #f8f8f8;

    .tab {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        width: 960px;
        margin: 0 auto;

        li {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-bottom: 2px solid #f8f8f8;
            cursor: pointer;



            .photo {
                width: 50px;
                height: 50px;

            }

            p {
                font-size: 16px;
                color: #80827b;
                padding: 15px 0;
            }
        }

        .cur {
            border-bottom: 2px solid #1b2e6c;

            p {
                color: #1b2e6c;
            }
        }

        li:nth-child(1) {
            .photo {
                background: url('../img/news/index/jiaocai_active.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(1).cur {
            .photo {
                background: url('../img/news/index/jiaocai.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(2) {
            .photo {
                background: url('../img/news/index/zhenti.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(2).cur {
            .photo {
                background: url('../img/news/index/zhenti_active.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(3) {
            .photo {
                background: url('../img/news/index/zhangjie.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(3).cur {
            .photo {
                background: url('../img/news/index/zhangjie_active.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(4) {
            .photo {
                background: url('../img/news/index/moni.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(4).cur {
            .photo {
                background: url('../img/news/index/moni_active.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(5) {
            .photo {
                background: url('../img/news/index/zhishi.png') no-repeat center center;
                background-size: cover;
            }
        }

        li:nth-child(5).cur {
            .photo {
                background: url('../img/news/index/zhishi_active.png') no-repeat center center;
                background-size: cover;
            }
        }
    }

    .content {
        display: none;
        // background: #ffffff;
        padding: 20px 0;

        .bxpic {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;

            img {
                margin-bottom: 20px;
                // width: 300px;
            }
        }
    }

    .on {
        display: block;
    }
}

.box3 {
    width: 100%;
    .boxin {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;

        >div {
            width: 235px;
            padding: 40px 0;
            margin-top: 5px;
            background-color: #ffffff;
            box-shadow: 7px 3px 7px 2px rgba(213, 214, 222, 0.16);
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            position: relative;

            .img {
                width: 88px;
                height: 88px;
                background-color: #f3f6ff;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;

                img {
                    width: 50px;
                }
            }

            >p {
                font-size: 18px;
                margin-top: 30px;
            }

            .text {
                width: 100%;
                height: 100%;
                background-color: #ff9d11;
                position: absolute;
                top: 0;
                left: 0;
                padding: 30px;
                box-sizing: border-box;
                display: flex;
                justify-content: space-around;
                flex-direction: column;
                align-items: center;
                opacity: 0;
                transition: all 0.3s;

                .tit {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    p {
                        font-size: 18px;
                        color: #fff;
                    }

                    .img2 {
                        width: 57px;
                        height: 57px;
                        background-color: rgba(255, 255, 255, 0.8);
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        flex-direction: column;
                        align-items: center;

                        img {
                            width: 24px;
                            height: auto;
                        }
                    }
                }

                >p {
                    font-size: 12px;
                    line-height: 18px;
                    color: #fff;
                    opacity: 0.9;
                }
            }

            &:hover {
                .text {
                    opacity: 1;
                }
            }
        }
    }
}




.box55 {
    background-color: #1a294e;

    .boxin {
        width: 900px;
        height: 600px;

        background: url('../img/map.png') no-repeat center center;
        background-size: cover;
    }

    .title {
        padding: 0;
        margin-bottom: 40px;

        .h1 {
            padding: 0;
        }
    }


}



.box8 {
    .boxin {
        display: flex;
        justify-content: space-between;

        .newlist {
            width: 590px;

            .tit {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;

                .h1 {
                    font-size: 20px;
                    font-weight: bold;
                }

                a {
                    font-size: 12px;
                    color: #134c99;
                    ;
                }
            }

            >a {
                display: block;
                width: 100%;

                img {
                    margin-top: 10px;
                }

                .h2 {
                    font-size: 16px;
                    font-weight: bold;
                    width: 100%;
                    overflow: hidden;
                    /*超出部分隐藏*/
                    text-overflow: ellipsis;
                    /* 超出部分显示省略号 */
                    white-space: nowrap;
                    /*规定段落中的文本不进行换行 */
                    margin: 10px 0;
                }

                .h3 {
                    font-size: 14px;
                    line-height: 20px;
                    color: #666666;
                    display: -webkit-box;
                    text-overflow: ellipsis;
                    overflow-y: hidden;
                    white-space: nowrap;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 3;
                    white-space: pre-wrap;
                    word-break: break-all;
                    word-wrap: break-word
                }
            }

            ul {
                width: 100%;
                margin-top: 20px;

                li {
                    display: flex;
                    justify-content: space-between;
                    font-size: 14px;
                    margin-top: 10px;
                    background: url("../img/list-style.jpg") no-repeat left center;
                    padding-left: 15px;
                    box-sizing: border-box;

                    a {
                        width: 450px;
                        overflow: hidden;
                        /*超出部分隐藏*/
                        text-overflow: ellipsis;
                        /* 超出部分显示省略号 */
                        white-space: nowrap;
                        /*规定段落中的文本不进行换行 */
                    }

                    a:hover {
                        color: #0360cd;

                    }
                }
            }
        }
    }
}

#echarts_map {
    height: 850px;
    margin-top: -30px;
    margin-bottom: -70px;
}

.tooltip {
    line-height: 28px;

    .tooltip-title {
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        background: #f2f2f2;
        margin: 0 -15px 6px -15px;
        line-height: 36px;
        border-radius: 10px 10px 0 0;
        position: relative;

        &::before {
            position: absolute;
            content: '';
            top: -10px;
            left: calc(50% - 6px);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 12px solid #f2f2f2;
        }
    }

    em {
        background: #5581fe;
        width: 2px;
        height: 12px;
        display: inline-block;
        vertical-align: middle;
        margin: 0px 10px 0 0;

        &.gjj {
            background: #f4ac48;
        }

        &.da {
            background: #43bb97;
        }

        &.lh {
            background: #f37580;
        }
    }

    span {
        float: right;
    }
}

@keyframes bar {
    from {
        height: 0;
    }

    to {
        height: 56px
    }
}