锘?* animated */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        -ms-transform: translateX(50px);
        transform: translateX(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes map {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: .6;
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: .2;
    }
}

@keyframes map {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: .6;
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: .2;
    }
}

@-webkit-keyframes myfirst {
    0% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(0px, -10px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes myfirst {
    0% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(0px, -10px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes h_schedule {
    0% {
        width: 0;
    }

    100% {
        width: 30px;
    }
}

@keyframes h_schedule {
    0% {
        width: 0;
    }

    100% {
        width: 30px;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite
    }

    .animated.flip {
        -webkit-backface-visibility: visible;
        -ms-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: flip;
        animation-name: flip
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s
    }

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.map {
    -webkit-animation-name: map;
    animation-name: map
}

.myfirst {
    -webkit-animation-name: myfirst;
    animation-name: myfirst
}

.h_schedule {
    -webkit-animation-name: h_schedule;
    animation-name: h_schedule
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}
/* header */
#header {
    width: 100%;
    min-width: 1200px;
    max-width: 1920px;
    margin: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    transition: all .4s;
    -webkit-transition: all .4s;
}

    #header.on {
        background-color: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, .12);
    }

    #header .logo {
        float: left;
        width: 215px;
        height: 34px;
        background: url(../images/logo.png) no-repeat center;
        margin: 21px 0 0 60px;
        /* -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s; */
    }

    #header.on .logo {
        background: url(../images/logo_on.png) no-repeat center;
    }

    #header .nav {
        float: right;
        position: relative;
    }

        #header .nav > ul {
            float: left;
        }

            #header .nav > ul li {
                float: left;
                text-align: center;
                position: relative;
            }

                #header .nav > ul li a {
                    padding: 0 10px;
                    margin: 0 8px;
                    line-height: 83px;
                    color: #fff;
                    color: rgba(255,255,255,.7);
                    display: inline-block;
                    font-size: 14px;
                    position: relative;
                    -webkit-transition: all .3s;
                    transition: all .3s;
                }

    #header.on .nav > ul li a {
        color: #535353;
        color: rgba(83,83,83,.7);
    }

    #header .nav > ul .nav_er {
        width: 100%;
        min-width: 1200px;
        max-width: 1920px;
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
    }

        #header .nav > ul .nav_er .div_dl {
            background: rgba(0,0,0,0.5);
            overflow: hidden;
        }

            #header .nav > ul .nav_er .div_dl a {
                float: left;
                color: #fff;
            }

    #header .search {
        float: left;
        position: relative;
        padding-left: 22px;
        margin-left: 22px;
    }

    #header .ri_img {
        float: left;
        width: 16px;
        height: 83px;
        background: url(../images/head_ri.png) no-repeat center 34px;
        margin-right: 44px;
    }

    #header.on .ri_img {
        background: url(../images/head_rion.png) no-repeat center 34px;
    }

    #header .search .search_btn {
        width: 60px;
        height: 50px;
        line-height: 50px;
        background-color: #08d0bd;
        position: absolute;
        right: -5px;
        top: -5px;
        color: #ffffff;
        text-align: center;
        cursor: pointer;
    }

    #header .search:hover .posCont {
        display: block;
    }

    #header .search .posCont {
        display: none;
        width: 230px;
        height: 50px;
        background-color: #FFF;
        border: 5px solid #08d0bd;
        position: absolute;
        right: 20px;
        top: 64px;
    }

        #header .search .posCont input {
            width: 190px;
            line-height: 40px;
            padding: 0 70px 0 10px;
        }

    #header .head_con {
        float: left;
        margin: 20px 0 0 50px;
    }

        #header .head_con p {
            font-size: 12px;
            color: #fff;
            line-height: 18px;
        }

            #header .head_con p em {
                font-family: 'en';
                font-size: 18px;
                color: #fff;
                color: rgba(255,255,255,.3);
            }

        #header .head_con h3 {
            font-family: 'en';
            font-size: 20px;
            padding-right: 22px;
            display: inline-block;
            position: relative;
        }

            #header .head_con h3.red {
                color: #f73e00;
            }

            #header .head_con h3:before {
                content: '';
                width: 12px;
                height: 9px;
                position: absolute;
                right: 0;
            }

            #header .head_con h3.red:before {
                background: url(../images/up.png) no-repeat center;
                top: 3px;
            }

            #header .head_con h3.green {
                color: #2db359;
            }

                #header .head_con h3.green:before {
                    background: url(../images/up.png) no-repeat center;
                    bottom: 6px;
                    transform: rotateX(180deg);
                    -webkit-transform: rotateX(180deg);
                }

    #header.on .head_con p {
        color: #535353;
    }

        #header.on .head_con p em {
            color: #535353;
            color: rgba(83,83,83,.3);
        }

    #header.on .head_con h3.red:before {
        background: url(../images/up_on.png) no-repeat center;
    }

    #header.on .head_con h3.green:before {
        background: url(../images/up_on02.png) no-repeat center;
    }

    #header .version {
        float: left;
        color: #fff;
        color: rgba(255,255,255,.7);
        line-height: 83px;
        margin: 0 0 0 20px;
    }

    #header.on .version {
        color: #535353;
        color: rgba(83,83,83,.7);
    }

    #header .inner_bor {
        height: 4px;
        background-color: #08d0bd;
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
    }
/* footer */
footer {
    background-color: #2f3841;
    padding-bottom: 50px;
    position: relative;
}

    footer .mytop {
        height: 45px;
        background-color: #fff;
        margin-bottom: 72px;
        cursor: pointer;
    }

        footer .mytop:before {
            content: '';
            width: 15px;
            height: 9px;
            background: url(../images/mytop.png) no-repeat center;
            position: absolute;
            left: 50%;
            margin-left: -7.5px;
            top: 22px;
            animation: myfirst 2s infinite;
            -webkit-animation: myfirst 2s infinite;
        }

    footer .boom {
        width: 100%;
        display: inline-block;
    }

    footer .foot_nav {
        float: right;
    }

        footer .foot_nav .dl {
            /* width: 135px; */
            float: left;
            margin-left: 45px;
        }

            footer .foot_nav .dl .dt {
                color: #ffffff;
                font-size: 16px;
                margin-bottom: 30px;
            }

            footer .foot_nav .dl .dd {
                font-size: 13px;
                color: #fff;
                color: rgba(255,255,255,.7);
                line-height: 22px;
            }
                /* footer .detailed .text p a:hover,
footer .detailed .ico .li.weChat:hover .text, */
                /* footer .foot_nav .dl .dt:hover, */
                footer .foot_nav .dl .dd:hover {
                    color: #08d0bd;
                }

    footer .detailed {
        float: left;
    }

        footer .detailed .ico {
            display: inline-block;
            font-size: 0;
            margin-bottom: 14px;
        }

            footer .detailed .ico .li {
                float: left;
                margin-left: 5px;
                position: relative;
            }

                footer .detailed .ico .li .bg {
                    width: 33px;
                    height: 33px;
                    display: block;
                    float: left;
                    margin-right: 10px;
                }

                footer .detailed .ico .li.weChat .bg {
                    background: url(../images/weChat.png) no-repeat center;
                }

                footer .detailed .ico .li.weChat .text {
                    /* width: 100%; */
                    /* height: 50px; */
                    color: #fff;
                    /* position: absolute; */
                    /* left: 0; */
                    /* top: 0; */
                    display: inline-block;
                    color: #fff;
                    color: rgba(255,255,255,.7);
                    line-height: 22px;
                    font-size: 14px;
                    line-height: 33px;
                }

                footer .detailed .ico .li.weChat .weChat_img {
                    position: absolute;
                    top: -150px;
                    left: 0;
                    width: 130px;
                    height: 130px;
                    z-index: 99;
                    opacity: 0;
                    background-color: #fff;
                    filter: Alpha(opacity=0);
                    -webkit-transform: scale(0,1);
                    transform: scale(0,1);
                    -webkit-transform-origin: top center;
                    transform-origin: top center;
                    will-change: opacity;
                    -webkit-transition: transform .4s,opacity .4s,-webkit-transform .4s;
                    transition: transform .4s,opacity .4s,-webkit-transform .4s;
                }

                    footer .detailed .ico .li.weChat .weChat_img:before {
                        content: '';
                        width: 0;
                        height: 0;
                        border: 10px solid #fff;
                        border-top-color: #fff;
                        border-bottom: none;
                        border-left-color: transparent;
                        border-right-color: transparent;
                        position: absolute;
                        bottom: -9px;
                        left: 7px;
                    }

                footer .detailed .ico .li.weChat:hover .weChat_img {
                    opacity: 1;
                    filter: Alpha(opacity=100);
                    -webkit-transform: scale(1,1);
                    transform: scale(1,1);
                }

        footer .detailed .text p {
            color: #fff;
            color: rgba(255,255,255,.7);
            line-height: 22px;
        }

            footer .detailed .text p a {
                display: inline-block;
            }

            footer .detailed .text p img {
                margin-right: 5px;
                position: relative;
                top: -2px;
            }
/* banner */
.banner {
    width: 100%;
    height: 844px;
    position: fixed;
    top: 0;
    left: 0;
}

    .banner .bd li .ban_t.ban_t2 .text2 hr {
        height: 2px;
        width: 320px;
        margin: 10px 0;
    }

    .banner .bd li .ban_t.ban_t2 .text2 label {
        display: inline-block;
        border: 1px solid white;
        border-radius: 6px;
        width: auto;
        padding: 3px;
        margin: 10px 0;
    }

    .banner .bd {
        width: 100%;
        overflow: hidden;
    }

        .banner .bd ul {
            width: 100% !important;
        }

        .banner .bd li {
            width: 100% !important;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
        }

            .banner .bd li .img {
                height: 100%;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
            }

            .banner .bd li .content {
                width: 1200px;
                height: 100%;
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                margin: auto;
            }

            .banner .bd li .ban_t {
                width: 100%;
                position: absolute;
                left: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                color: #fff;
            }

                .banner .bd li .ban_t .text1 {
                    font-size: 44px;
                    line-height: 46px;
                    -webkit-animation-duration: 2s;
                    animation-duration: 2s;
                    -webkit-animation-delay: .2s;
                    animation-delay: .2s;
                }

                    .banner .bd li .ban_t .text1 em {
                        display: block;
                        font-size: 24px;
                    }

                .banner .bd li .ban_t .text2 {
                    font-family: 'en_light';
                    font-size: 12px;
                    letter-spacing: 1.3px;
                    text-transform: uppercase;
                    margin: 10px 0 20px;
                    -webkit-animation-duration: 2s;
                    animation-duration: 2s;
                    -webkit-animation-delay: .4s;
                    animation-delay: .4s;
                }

                .banner .bd li .ban_t .text3 {
                    -webkit-animation-duration: 2s;
                    animation-duration: 2s;
                    -webkit-animation-delay: .6s;
                    animation-delay: .6s;
                }

                .banner .bd li .ban_t.ban_t1 {
                    text-align: center;
                }

				.banner .bd li .ban_t2 {
					margin-left: 20%;
				}

                .banner .bd li .ban_t.ban_t2 .text1 {
                    font-size: 28px;
                    line-height: 36px;
                }

                .banner .bd li .ban_t.ban_t2 .text2 {
                    font-family: 'en';
                    font-size: 16px;
                    line-height: 18px;
                    margin: 12px 0;
                }

                .banner .bd li .ban_t.ban_t2 .more {
                    margin: 0;
                }

                .banner .bd li .ban_t.ban_t3 .text1 {
                    font-size: 28px;
                    line-height: 36px;
                }

                .banner .bd li .ban_t.ban_t3 .text2 {
                    font-family: 'en';
                    font-size: 16px;
                    line-height: 18px;
                    margin: 12px 0;
                }

                .banner .bd li .ban_t.ban_t3 .more {
                    margin: 0;
                }

            .banner .bd li .ban_t4 {
                top: 33%;
                text-align: center;
            }

            .banner .bd li .ban_t.ban_t4 .text1 {
                letter-spacing: 10px;
                color: silver;
            }

            .banner .bd li .ban_t.ban_t4 .text2 {
                font-family: 'en';
                font-size: 20px;
                color: rgba(255,255,255,.3);
                letter-spacing: 3px;
                margin: 17px 0 30px;
                color: silver;
            }

            .banner .bd li .ban_t.ban_t4 .more {
                float: center;
                color: silver;
                margin-top: -30px;
            }

            .banner .bd li .ban_t5 {
                text-align: right;
                top: 40%;
            }

            .banner .bd li .ban_t.ban_t5 .text1 {
                color: white;
                letter-spacing: 10px;
            }

            .banner .bd li .ban_t.ban_t5 .text2 {
                font-family: 'en';
                font-size: 20px;
                color: rgba(100,100,100,.3);
                letter-spacing: 3px;
                margin: 17px 0 10px;
            }

            .banner .bd li .ban_t.ban_t5 .more {
                color: white;
                float: right;
            }

    .banner .hd {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 47px;
        z-index: 99;
        text-align: center;
    }

        .banner .hd ul li.on {
            background: #08d0bd;
        }

        .banner .hd ul li {
            display: inline-block;
            width: 30px;
            height: 4px;
            color: transparent;
            background-color: #fff;
            margin: 0 5px;
            transition: all .4s;
            -webkit-transition: all .4s;
            cursor: pointer;
            position: relative;
        }

    .banner video {
        object-fit: cover;
        position: absolute;
        bottom: 0;
        left: 50%;
        right: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        margin: 0 auto;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
    }
/* .banner .hd ul li.on:before {
    content: '';
    width: 30px;
    height: 4px;
    background: #20c562;
    position: absolute;
    left: 0;
    bottom: 0;
    animation: h_schedule 4s ease-out;
    -webkit-animation: h_schedule 4s ease-out;
} */

.more {
    width: 160px;
    line-height: 60px;
    background: url(../images/more.png) no-repeat center;
    text-align: center;
    margin: auto;
    position: relative;
    overflow: hidden;
}

    .more .ion {
        width: 19px;
        height: 13px;
        background: url(../images/ico1.png) no-repeat center;
        display: inline-block;
        -webkit-transform: translateY(-120%);
        -ms-transform: translateY(-120%);
        transform: translateY(-120%);
        opacity: 0;
        -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
        -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
        transition: all cubic-bezier(.4,0,.2,1) .4s;
    }

    .more .text {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
        -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
        transition: all cubic-bezier(.4,0,.2,1) .4s;
    }

    .more:hover .ion {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }

    .more:hover .text {
        -webkit-transform: translate(-50%,120%);
        -ms-transform: translate(-50%,120%);
        transform: translate(-50%,120%);
        opacity: 0;
    }

.title .cn {
    font-size: 24px;
    color: #535353;
    line-height: 1;
}

.title .en {
    font-family: 'en';
    font-size: 24px;
    color: #000000;
    color: rgba(0,0,0,.3);
    line-height: 1;
    text-transform: uppercase;
    margin-top: 12px;
}

/* index */
.index {
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

    .index .con01 {
        padding: 50px 0 70px;
        overflow: hidden;
    }

        .index .con01 .title {
            float: left;
        }

        .index .con01 .list {
            width: 953px;
            float: right;
            position: relative;
            margin-top: -35px;
        }

            .index .con01 .list .li {
                overflow: hidden;
                padding: 33px 0 20px;
                border-bottom: 1px dashed rgba(83,83,83,.3);
                position: relative;
            }

                .index .con01 .list .li:before {
                    content: '';
                    width: 9px;
                    height: 100%;
                    background: url(../images/index/ico1.png) no-repeat center;
                    position: absolute;
                    right: 10px;
                    top: 0;
                    margin-top: 5px;
                    -webkit-transition: all .4s;
                    transition: all .4s;
                }

                .index .con01 .list .li .date {
                    font-family: 'en';
                    font-size: 24px;
                    color: #08d0bd;
                    float: left;
                    width: 290px;
                }

                .index .con01 .list .li .name {
                    color: #535353;
                    float: left;
                    width: 662px;
                    max-width: 62%;
                    white-space: nowrap;
                    text-decoration: none;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    -webkit-transition: all .4s;
                    transition: all .4s;
                }

                .index .con01 .list .li:hover:before {
                    -webkit-transform: translate(10px, 0);
                    transform: translate(10px, 0);
                }

                .index .con01 .list .li:hover .name {
                    color: #08d0bd;
                }

    .index .con02 .list {
        display: inline-block;
        margin-right: -10px;
        padding-bottom: 66px;
    }

        .index .con02 .list .li {
            float: left;
            padding: 147px 0 0 40px;
            margin-right: 10px;
            position: relative;
            box-shadow: 0px 15px 40px rgba(30, 45, 78, .2);
        }

            .index .con02 .list .li .text {
                -webkit-transition: transform .4s ease-out;
                transition: transform .4s ease-out;
            }

            .index .con02 .list .li .en {
                font-family: 'en';
                font-size: 24px;
                color: #f3f6f9;
                color: rgba(243,246,249,.3);
                text-transform: uppercase;
                line-height: 1;
            }

            .index .con02 .list .li .name {
                font-size: 20px;
                color: #f3f6f9;
                line-height: 24px;
            }

                .index .con02 .list .li .name em {
                    font-size: 14px;
                    color: #fff;
                    display: block;
                }

            .index .con02 .list .li.li01 {
                width: 544px;
                height: 274px;
                background: url(../images/index/ico4.jpg) no-repeat center;
                background-size: cover;
                padding: 104px 0 0 40px;
            }

                .index .con02 .list .li.li01 .en {
                    color: #fff;
                    background: url(../images/index/ico6.jpg) no-repeat right bottom;
                    background-size: cover;
                    display: inline-block;
                    -webkit-text-fill-color: transparent;
                    -webkit-background-clip: text;
                    font-size: 89px;
                    font-family: 'en';
                    text-transform: none;
                    position: relative;
                    margin-top: -90px;
                    margin-left: 0;
                }

                .index .con02 .list .li.li01 .name em {
                    color: #fff;
                    letter-spacing: 10px;
                    display: block;
                    font-size: 16px;
                }

                    .index .con02 .list .li.li01 .name em + em {
                        font-size: 14px;
                        letter-spacing: 0;
                        display: inline-block;
                        margin-right: 10px;
                    }

            .index .con02 .list .li.li02 {
                width: 275px;
                height: 274px;
                background: url(../images/index/ico5.png) no-repeat center #2578e8;
            }

            .index .con02 .list .li.li03 {
                width: 361px;
                height: 274px;
                background: #0b1b6a;
            }

            .index .con02 .list .li.li02 .ion {
                width: 55px;
                height: 55px;
                position: absolute;
                background: url(../images/index/ico2.png) no-repeat center;
                top: 49px;
                right: 41px;
            }

            .index .con02 .list .li.li03 .ion {
                width: 56px;
                height: 50px;
                position: absolute;
                background: url(../images/index/ico3.png) no-repeat center;
                top: 45px;
                right: 40px;
            }

            .index .con02 .list .li:hover .text {
                transform: translate(-10px,0px);
                -webkit-transform: translate(-10px,0px);
            }
/* 鍐呴〉 */
.page_ban {
    height: 626px;
    background-color: #0462cc;
    /* position: relative; */
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.pageWrapper .page_ban {
    height: 375px;
}

.pageWrapper .page_box .bg {
    padding: 0 50px 15px 70px;
}

.page_ban #mydiv {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.page_ban .content {
    position: relative;
    height: 100%;
}

.page_ban .detailed {
    padding-top: 178px;
    position: relative;
    z-index: 2;
}

    .page_ban .detailed .en {
        font-family: 'en_light';
        font-size: 88px;
        color: #fff;
        font-weight: lighter;
        line-height: 1;
        text-transform: uppercase;
        /* background: url(../images/en_bg.png) no-repeat left top; */
        /* background-size: cover; */
        /* -webkit-text-fill-color: transparent; */
        /* -webkit-background-clip: text; */
        background: linear-gradient(to top, #98a0b5, #fff);
        -webkit-background-clip: text;
        color: transparent;
    }

        .page_ban .detailed .en em {
            font-family: 'en';
        }

.page_box {
    position: absolute;
    top: 300px;
    right: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

    .page_box:after {
        content: '';
        width: 360px;
        height: 60px;
        background-color: #eef5f8;
        position: absolute;
        right: 0;
        top: 0;
    }

    .page_box:before {
        content: '';
        width: 360px;
        height: 100%;
        background-color: #fff;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .page_box .bg {
        padding: 0 65px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
    }

    .page_box .float {
        width: 725px;
        height: 577px;
        background: url(../images/white_bg.png) no-repeat center;
        position: absolute;
        left: 0;
        bottom: 0;
    }

.page_nav {
    padding: 0 65px;
    margin: 0 -65px;
    background-color: #eef5f8;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

    .page_nav a {
        float: left;
        line-height: 60px;
        position: relative;
    }

.page_white {
    position: relative;
    padding: 80px 0 66px;
}

    .page_white .line {
        width: 1px;
        height: 107px;
        background-color: #0f56e5;
        position: absolute;
        left: 0;
        top: 80px;
    }

.page_nav .list {
    position: relative;
    float: left;
    overflow: hidden;
}

    .page_nav .list a {
        color: #5c606d;
        margin-right: 34px;
    }

.page_nav .inner_bor {
    height: 4px;
    background-color: #08d0bd;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
}

.page_nav .name {
    float: right;
}

    .page_nav .name a {
        font-size: 15px;
        color: #535353;
        padding-left: 24px;
        background: url(../images/ico2.png) no-repeat left center;
    }

        .page_nav .name a + a {
            padding-left: 15px;
            margin-left: 15px;
            background: url(../images/ico3.png) no-repeat left center;
        }

.page_title .cn {
    font-size: 22px;
    color: #535353;
}

    .page_title .cn em {
        font-size: 20px;
        color: #08d0bd;
        display: block;
        margin-top: 8px;
    }

.page_title .en {
    font-family: 'en';
    font-size: 40px;
    color: #08d0bd;
    line-height: 1;
    margin-top: 6px;
    text-transform: uppercase;
}

    .page_title .en em {
        font-family: 'en_light';
        color: #0462cc;
    }
/* about */
.about .page_box .detailed {
    padding-left: 390px;
    /* padding-left: 457px; */
}

    .about .page_box .detailed .text {
        margin: 10px 0 15px;
        height: 296px;
        overflow-y: auto;
        padding-right: 20px;
    }

        .about .page_box .detailed .text p {
            color: #6b6b6b;
        }

            .about .page_box .detailed .text p a {
                border-bottom: 2px solid #08d0bd;
                display: inline-block;
            }

.about .con01 {
    min-height: 740px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico2.jpg) no-repeat center top; */
    /* background-size: cover; */
    overflow: hidden;
    position: relative;
}
    /* .about .con01:before {
    content: '';
    width: 100%;
    height: 93px;
    background: url(../images/about/ico2_bg.png) no-repeat center;
    position: absolute;
    left: 0;
    bottom: 0;
} */
    .about .con01 .content {
        position: relative;
        height: 100%;
        padding: 385px 440px 0 0;
    }

    .about .con01 .float {
        width: 480px;
        height: 270px;
        background: url(../images/about/ico3.jpg) no-repeat center;
        position: absolute;
        top: 200px;
        right: -47px;
        padding: 0;
        z-index: 3;
    }

        .about .con01 .float .icon {
            color: #fff;
            background: url(../images/about/ico4.jpg) no-repeat right bottom;
            background-size: cover;
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
            font-size: 89px;
            font-family: 'en';
            line-height: 1;
            letter-spacing: 5px;
        }

        .about .con01 .float .text02 {
            margin-bottom: 15px;
        }

            .about .con01 .float .text02 h3 {
                font-size: 20px;
                color: #fff;
                line-height: 24px;
                letter-spacing: 10px;
                margin-bottom: 6px;
            }

            .about .con01 .float .text02 p {
                color: #fff;
                color: rgba(255,255,255,.7);
            }

.about .head_con p {
    font-size: 12px;
    color: #fff;
    line-height: 22px;
}

    .about .head_con p em {
        font-family: 'en';
        font-size: 18px;
        color: #fff;
        color: rgba(255,255,255,.3);
    }

.about .head_con h3 {
    font-family: 'en';
    font-size: 20px;
    padding-right: 22px;
    display: inline-block;
    position: relative;
}

    .about .head_con h3.red {
        color: #f73e00;
    }

    .about .head_con h3:before {
        content: '';
        width: 12px;
        height: 9px;
        position: absolute;
        right: 0;
    }

    .about .head_con h3.red:before {
        background: url(../images/up.png) no-repeat center;
        top: 3px;
    }

    .about .head_con h3.green {
        color: #2db359;
    }

        .about .head_con h3.green:before {
            background: url(../images/up.png) no-repeat center;
            bottom: 6px;
            transform: rotateX(180deg);
            -webkit-transform: rotateX(180deg);
        }

.about .con01 .Map {
    width: 535px;
    height: 261px;
    background: url(../images/about/ico5.png) no-repeat center;
    position: relative;
    margin-left: -73px;
    float: left;
}

    .about .con01 .Map .num {
        width: 40px;
        height: 40px;
        background-color: #0462cc;
        border-radius: 50%;
        opacity: .6;
        filter: Alpha(opacity=60);
        position: absolute;
        left: 0;
        top: 0;
        animation: map 2s linear alternate infinite;
        -webkit-animation: map 2s linear alternate infinite;
    }

        .about .con01 .Map .num.num01 {
            top: 104px;
            left: 77px;
            animation-delay: .2s;
            -webkit-animation-delay: .2s;
        }

        .about .con01 .Map .num.num02 {
            top: 72px;
            left: 251px;
            animation-delay: 2s;
            -webkit-animation-delay: 2s;
        }

        .about .con01 .Map .num.num03 {
            top: 99px;
            left: 396px;
            animation-delay: 1s;
            -webkit-animation-delay: 1s;
        }

        .about .con01 .Map .num.num04 {
            top: 99px;
            left: 439px;
            animation-delay: .4s;
            -webkit-animation-delay: .4s;
        }

.about .con01 .text {
    float: left;
    margin: 16px 0 0 25px;
}

    .about .con01 .text li {
        margin-bottom: 20px;
    }

        .about .con01 .text li h3 {
            line-height: 1;
            font-size: 44px;
            color: #0462cc;
            font-family: 'en_light';
            font-weight: bold;
            position: relative;
            margin-bottom: -6px;
        }

        .about .con01 .text li em {
            display: inline-block;
        }

        .about .con01 .text li p {
            letter-spacing: 2px;
        }

.about .con02 {
    min-height: 752px;
    background: url(../images/about/ico6.png) no-repeat center/cover #fff;
    /* background: url(../images/about/ico6.jpg) no-repeat center top; */
    /* background-size: cover; */
    overflow: hidden;
    position: relative;
    border-top: 20px solid #fff;
}

    .about .con02 .float {
        width: 115px;
        height: 166px;
        background: url(../images/about/ico7.png) no-repeat center;
        position: absolute;
        right: 65px;
        bottom: 215px;
    }

    .about .con02 .item {
        overflow: hidden;
        height: 368px;
        background-color: #fff;
        margin: 70px 0;
    }

        .about .con02 .item .img {
            float: left;
            width: 50%;
            height: 368px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }

        .about .con02 .item .text {
            float: left;
            width: 50%;
            height: 368px;
            padding: 76px 70px 0px 47px;
        }

            .about .con02 .item .text h3 {
                font-size: 18px;
                color: #3b4358;
                line-height: 32px;
                position: relative;
                padding-bottom: 44px;
                margin-top: 15px;
            }

                .about .con02 .item .text h3:before {
                    content: '';
                    width: 50px;
                    height: 4px;
                    background-color: #08d0bd;
                    position: absolute;
                    left: 0;
                    bottom: 0;
                }

    .about .con02 .list {
        overflow: hidden;
    }

        .about .con02 .list .li {
            width: 25%;
            height: 140px;
            background-color: #e3edf0;
            background-repeat: no-repeat;
            background-position: center;
            padding: 32px 20px 0 30px;
            float: left;
        }

            .about .con02 .list .li:nth-of-type(even) {
                background-color: #c9dadf;
            }

            .about .con02 .list .li h3 {
                font-size: 18px;
                color: #1332cf;
            }

            .about .con02 .list .li .icon {
                width: 35px;
                height: 5px;
                background: url(../images/about/ico13.png) no-repeat center;
                display: block;
                margin: 12px 0;
            }

.about .con03 {
    background-color: #fff;
    padding: 0px 0 98px;
}

    .about .con03 .page_title {
        text-align: center;
        margin-bottom: 46px;
    }

        .about .con03 .page_title .cn {
            font-size: 30px;
            color: #535353;
            line-height: 34px;
        }

        .about .con03 .page_title .en {
            color: #535353;
            color: rgba(83,83,83,.3);
            font-size: 20px;
        }
/* about2 */
.about2 .page_box .detailed {
    padding-left: 457px;
}

    .about2 .page_box .detailed .img {
        margin-top: 28px;
        width: 808px;
        height: 276px;
        position: relative;
        overflow: hidden;
    }

.about2 .con01 {
    min-height: 740px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico2.jpg) no-repeat center top; */
    /* background-size: cover; */
    overflow: hidden;
    position: relative;
    padding-top: 305px;
}

    .about2 .con01 .list {
        margin: 0 -95px 0 -65px;
    }

        .about2 .con01 .list .li {
            width: 433px;
            /* height: 370px; */
            background-color: #fff;
            float: left;
            margin-right: 15px;
        }

            .about2 .con01 .list .li .img {
                width: 100%;
                height: 239px;
                overflow: hidden;
                position: relative;
            }

                .about2 .con01 .list .li .img:before {
                    content: '';
                    width: 100%;
                    height: 100%;
                    background: url(../images/about/ico51.png) no-repeat center/cover;
                    position: absolute;
                    left: 0;
                    top: 0;
                }

            .about2 .con01 .list .li .text {
                min-height: 130px;
                padding: 20px 70px 0;
                background: url(../images/about/ico19.png) no-repeat 82% center;
            }

            .about2 .con01 .list .li + .li .text {
                background: url(../images/about/ico20.png) no-repeat 82% center;
            }

            .about2 .con01 .list .li + .li + .li .text {
                background: url(../images/about/ico21.png) no-repeat 82% center;
            }

            .about2 .con01 .list .li .text .cn {
                font-size: 20px;
                color: #0462cc;
                line-height: 30px;
            }

            .about2 .con01 .list .li .text .en {
                font-family: 'en';
                font-size: 20px;
                color: #535353;
                opacity: .2;
                filter: Alpha(opacity=20);
                line-height: 1;
            }

            .about2 .con01 .list .li .text p {
                color: #535353;
                line-height: 30px;
            }

.about2 .con02 {
    background-color: #fff;
    padding: 100px 0 50px;
}

    .about2 .con02 .content {
        position: relative;
        height: 100%;
    }

    .about2 .con02 .item {
        position: absolute;
        top: -55px;
        left: 0;
    }

        .about2 .con02 .item .en {
            color: transparent;
            -webkit-text-stroke: 1px #63dccf;
            -ms-text-stroke: 1px #63dccf;
            text-stroke: 1px #63dccf;
            font-size: 128px;
            line-height: 106px;
            font-family: 'en';
        }

        .about2 .con02 .item .cn {
            font-size: 20px;
            color: #0462cc;
            line-height: 30px;
        }

        .about2 .con02 .item p {
            color: #4c4c4c;
            color: rgba(76, 76, 76, .8);
        }

    .about2 .con02 .detailed {
        width: 872px;
        height: 388px;
        overflow: hidden;
        margin-left: 383px;
        margin-right: -70px;
        position: relative;
    }

        .about2 .con02 .detailed .bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

            .about2 .con02 .detailed .bg:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(../images/about/ico55.png) no-repeat center/cover;
            }

        .about2 .con02 .detailed .text {
            width: 635px;
            height: 100%;
            background-color: rgba(86,137,130,.8);
            padding: 44px 44px 55px;
            position: relative;
        }

            .about2 .con02 .detailed .text:before {
                content: '';
                width: 50px;
                height: 4px;
                background-color: #fff;
                position: absolute;
                left: 44px;
                top: 80px;
                display: none; /*fixed by ayeah 2021-05-06*/
            }

            .about2 .con02 .detailed .text p {
                color: #fff;
            }

                .about2 .con02 .detailed .text p em {
                    font-size: 12px;
                    color: rgba(255,255,255,.6);
                    line-height: 16px;
                    display: block;
                }

.about2 .con03 {
    background: url(../images/about/ico66.jpg) no-repeat center;
	background-size: 100% 100%;
    text-align: center;
    height: 760px;
    padding-top: 88px;
}

    .about2 .con03 .li {
        float: left;
        min-height: 290px;
        text-align: center;
        background-color: #f6faff;
        padding: 52px 30px 0;
        margin-bottom: 26px;
        border-radius: 5px;
        position: relative;
    }

        .about2 .con03 .li .img {
            width: 103px;
            height: 103px;
            background-color: #fff;
            border-radius: 50%;
            margin: auto;
            box-shadow: 0px 31px 18px rgba(159, 159, 159, .16);
        }

    .about2 .con03 .list {
        margin-right: -27px;
    }

        .about2 .con03 .list .li {
            float: left;
            width: 382px;
            margin-right: 27px;
        }

    .about2 .con03 .li .text h3 {
        font-size: 20px;
        color: #2c2c2c;
        margin: 15px 0 13px;
    }

    .about2 .con03 .li .text p {
        text-align: center;
        color: #2c2c2c;
        color: rgba(44,44,44,.8);
        line-height: 20px;
    }
/* about3 */
.page_box .icon_texture {
    width: 503px;
    height: 300px;
    background: url(../images/about/ico33.png) no-repeat center;
    position: absolute;
    left: 72px;
    bottom: 0;
}

.about3 .page_box .detailed {
    padding-left: 457px;
}

    .about3 .page_box .detailed .img {
        margin-top: 28px;
        width: 808px;
        height: 276px;
        position: relative;
        overflow: hidden;
    }

    .about3 .page_box .detailed .name {
        position: absolute;
        left: 73px;
        top: 30px;
    }

        .about3 .page_box .detailed .name:before {
            content: '';
            width: 2px;
            height: 57px;
            background: url(../images/about/ico32.png) no-repeat left top;
            position: absolute;
            left: -9px;
            top: 3px;
        }

        .about3 .page_box .detailed .name .cn {
            font-size: 20px;
            color: #549cba;
        }

        .about3 .page_box .detailed .name .en {
            font-family: 'en_light';
            font-size: 20px;
            color: #549cba;
            line-height: 18px;
            opacity: .3;
            text-transform: uppercase;
            margin-top: 5px;
        }

.about3 .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 55px;
}

    .about3 .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .about3 .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about3 .con01 .fl h3 {
        font-size: 20px;
        color: #495f79;
        line-height: 24px;
        margin: 18px 0 3px;
        letter-spacing: 8px;
    }

    .about3 .con01 .fl p {
        color: #495f79;
        /* opacity: .7; */
    }

    .about3 .con01 .fr {
        width: 740px;
    }

    .about3 .con01 .list {
        overflow: hidden;
        position: relative;
        padding: 46px 0 66px 41px;
    }

        .about3 .con01 .list:after {
            content: '';
            width: 40px;
            height: 40px;
            background: url(../images/about/ico35.png) no-repeat center;
            position: absolute;
            left: 0;
            top: 0;
        }

        .about3 .con01 .list:before {
            content: '';
            width: 2px;
            height: 100%;
            background-color: #c2c2c2;
            position: absolute;
            left: 19px;
            top: 0;
        }

        .about3 .con01 .list .li {
            padding: 24px 0 22px;
            background: url(../images/about/ico37.png) repeat-x left bottom;
        }

            .about3 .con01 .list .li .num {
                font-family: 'en';
                font-size: 36px;
                color: #0462cc;
                line-height: 1;
                position: relative;
            }

                .about3 .con01 .list .li .num:before {
                    content: '';
                    width: 4px;
                    height: 26px;
                    background-color: #08d0bd;
                    position: absolute;
                    left: -23px;
                    top: 2px;
                }

            .about3 .con01 .list .li p {
                line-height: 20px;
                color: #626262;
                opacity: .8;
            }

    .about3 .con01 .about3_more {
        width: 30px;
        height: 30px;
        background: url(../images/about/ico36.png) no-repeat center;
        cursor: pointer;
        margin-left: 5px;
    }
/* about4 */
.about4 .page_box .detailed {
    padding-left: 457px;
}

    .about4 .page_box .detailed .img {
        margin-top: 28px;
        width: 808px;
        height: 276px;
        position: relative;
        overflow: hidden;
    }

    .about4 .page_box .detailed .name {
        position: absolute;
        left: 34px;
        top: 54px;
    }

        .about4 .page_box .detailed .name .cn {
            font-size: 26px;
            color: #fff;
        }

        .about4 .page_box .detailed .name .en {
            font-family: 'en_light';
            font-size: 26px;
            color: #fff;
            opacity: .3;
            text-transform: uppercase;
            margin-top: 10px;
        }

.about4 .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 55px;
}

    .about4 .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .about4 .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

.about4 .recommend {
    width: 100%;
    display: inline-block;
    padding-bottom: 58px;
    margin-bottom: 65px;
    border-bottom: 1px solid rgba(76,86,98,.3);
}

    .about4 .recommend .fl {
        margin-top: 37px;
    }

        .about4 .recommend .fl img {
            width: 429px;
            height: 611px;
        }

    .about4 .recommend .fr img {
        width: 211px !important;
        height: 300px !important;
    }

    .about4 .recommend .fr {
        width: 765px;
        margin-right: -27px;
    }

        .about4 .recommend .fr .li {
            width: 228px;
            height: 350px;
            float: left;
            margin-right: 27px;
            text-align: center;
        }

    .about4 .recommend .text {
        padding: 10px 15px 0 !important;
        text-align: center;
    }

    .about4 .recommend .fl .text .name {
        font-size: 24px;
        line-height: 34px;
    }

    .about4 .recommend .fr .li .text .name {
        font-size: 15px;
    }

.prt_hd {
    width: 1200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: scroll;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-bottom: 20px;
    text-align: center;
}

    .prt_hd::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        background-color: #d1e8f0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 0;
    }

    .prt_hd::-webkit-scrollbar-thumb {
        background-color: #08d0bd;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

.about4 .con01 .list {
    font-size: 0;
    /* margin-right: -24px; */
}

    .about4 .con01 .list .li {
        display: inline-block;
        width: 288px;
        margin-right: 16px;
    }

.about4 .con01 .li .img {
    width: 100%;
    height: 402px;
    background: url(../images/about/ico46.jpg) no-repeat center;
    box-shadow: 0px 14px 8px rgba(11, 11, 11, .04);
    position: relative;
}

    .about4 .con01 .li .img img {
        padding: 10px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
    }

.about4 .con01 .text {
    padding: 26px 22px 0 29px;
    position: relative;
}

    .about4 .con01 .text .name {
        font-size: 14px;
        color: #4c5662;
    }

.page_more {
    width: 160px;
    height: 61px;
    border: 3px solid #c3ced3;
    padding-top: 12px;
    clear: both;
    margin: auto;
    text-align: center;
}

    .page_more em {
        width: 6px;
        height: 6px;
        margin: 0 1px;
        background-color: #08d0bd;
        display: inline-block;
        -webkit-animation: point 1.4s ease-in-out 0s infinite both;
        animation: point 1.4s ease-in-out 0s infinite both;
    }

        .page_more em.num01 {
            -webkit-animation-delay: -0.32s;
            animation-delay: -0.32s;
        }

        .page_more em.num02 {
            -webkit-animation-delay: -0.16s;
            animation-delay: -0.16s;
        }

@-webkit-keyframes point {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes point {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* about5 */
.about5 .page_box .detailed {
    padding-left: 457px;
}

.about5 .page_box .recommend {
    overflow: hidden;
    padding-bottom: 40px;
    margin-bottom: 22px;
    border-bottom: 2px solid #ececec;
}

    .about5 .page_box .recommend .img {
        width: 340px;
        height: 220px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        float: left;
        margin-right: 20px;
    }

    .about5 .page_box .recommend .date {
        font-family: 'en';
        font-size: 24px;
        color: #08d0bd;
    }

    .about5 .page_box .recommend .name {
        font-size: 20px;
        color: #535353;
        line-height: 28px;
        margin: 18px 0 22px;
    }

    .about5 .page_box .recommend .introduction {
        color: #697493;
    }

.attention {
    overflow: hidden;
}

    .attention .img {
        width: 80px;
        height: 80px;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #f0f0f0;
        float: left;
        margin-right: 22px;
    }

    .attention .text h3 {
        margin-bottom: 5px;
    }

    .attention .text p {
        color: #898989;
        line-height: 18px;
    }

.about5 .page_box .detailed .img {
    margin-top: 28px;
    width: 808px;
    height: 276px;
    position: relative;
    overflow: hidden;
}

.about5 .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 55px;
}

    .about5 .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .about5 .con01 .bg {
        min-height: 520px;
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about5 .con01 .fl {
        width: 330px;
    }

.inputBox {
    position: relative;
    float: left;
    width: 100%;
    background-color: #ececec;
    margin-bottom: 30px;
}

    .inputBox input {
        padding: 0 80px 0 40px;
        width: 100%;
        height: 60px;
    }

    .inputBox button {
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: #0462cc url(../images/searchBtn.png) no-repeat center;
        transition-duration: .5s;
        -webkit-transition-duration: .5s;
    }

    .inputBox:hover button {
        background-color: #08d0bd;
    }

.about5 .con01 .fr {
    width: 740px;
    position: relative;
    margin-top: -32px;
}

.about5 .con01 .list .li {
    padding: 27px 0 27px 134px;
    border-bottom: 2px solid #ececec;
    position: relative;
}

    .about5 .con01 .list .li .date {
        font-family: 'en';
        font-size: 24px;
        color: #08d0bd;
        position: absolute;
        left: 0;
        top: 32px;
    }

    .about5 .con01 .list .li .name {
        font-size: 20px;
        color: #535353;
        line-height: 28px;
        margin-bottom: 10px;
        max-width: 95%;
        white-space: nowrap;
        text-decoration: none;
        text-overflow: ellipsis;
        overflow: hidden;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

    .about5 .con01 .list .li .introduction {
        color: #697493;
    }

    .about5 .con01 .list .li:hover .name {
        color: #08d0bd;
    }

.about5 .page_more {
    margin-top: 30px;
    float: right;
}
/* about5_d */
.about5_d .con01 {
    /* min-height: 800px; */
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    background-color: #f3f3f3;
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .about5_d .con01 .content {
        position: relative;
        height: 100%;
    }

        .about5_d .con01 .content:before {
            content: '';
            width: 360px;
            height: 100%;
            background-color: #fff;
            position: absolute;
            right: -360px;
            top: 0;
        }

    .about5_d .con01 .bg {
        padding: 64px 50px 90px 70px;
        margin: 0 -50px 0 -70px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about5_d .con01 .fl > .text {
        /* border-bottom: 2px solid #ececec; */
        padding-bottom: 20px;
        margin-bottom: 33px;
    }

        .about5_d .con01 .fl > .text h3 {
            font-size: 20px;
            color: #495f79;
            line-height: 24px;
            margin: 18px 0 3px;
            letter-spacing: 8px;
        }

        .about5_d .con01 .fl > .text p {
            color: #495f79;
            /* opacity: .7; */
        }

    .about5_d .con01 .fr {
        width: 810px;
    }

        .about5_d .con01 .fr .name {
            font-size: 26px;
            color: #535353;
            line-height: 28px;
        }

        .about5_d .con01 .fr .bit {
            overflow: hidden;
            line-height: 33px;
            padding: 14px 0 10px;
            border-bottom: 2px solid #ececec;
        }

        .about5_d .con01 .fr .date {
            font-family: 'en_light';
            font-size: 18px;
            color: #08d0bd;
            float: left;
        }

        .about5_d .con01 .fr .publish {
            float: left;
            font-size: 14px;
            color: #a7a7a7;
            color: rgba(167,167,167,.8);
            margin: 0 49px;
        }

            .about5_d .con01 .fr .publish em {
                color: #585858;
                color: rgba(88,88,88,.8);
            }

        .about5_d .con01 .fr .bshare-custom {
            float: left;
            line-height: 33px !important;
            color: #585858;
            color: rgba(88,88,88,.8);
        }

            .about5_d .con01 .fr .bshare-custom a {
                padding: 0;
                width: 23px;
                height: 33px;
                background: url(../images/about/ico43.png);
                display: inline-block;
            }

            .about5_d .con01 .fr .bshare-custom .bshare-weixin {
                background-position: -3px center;
            }

            .about5_d .con01 .fr .bshare-custom .bshare-sinaminiblog {
                background-position: -34px center;
            }

            .about5_d .con01 .fr .bshare-custom .bshare-qzone {
                background-position: -66px center;
            }

            .about5_d .con01 .fr .bshare-custom .bshare-qqim {
                background-position: -98px center;
            }

.bsTop {
    width: 100% !important;
}

.bsFrameDiv > div {
    height: 207px !important;
}

.bsFrameDiv img {
    margin: 15px !important;
}

.about5_d .con01 .fr .btn {
    float: right;
    color: #a7a7a7;
    color: rgba(167,167,167,.8);
    background: url(../images/about/ico44.png) no-repeat left center;
    padding-left: 18px;
}

    .about5_d .con01 .fr .btn:hover {
        color: #08d0bd;
        background: url(../images/about/ico44_on.png) no-repeat left center;
    }

.about5_d .con01 .fr .cont p {
    margin-top: 14px;
}

.about5_d .con01 .fr .a_btn {
    overflow: hidden;
    margin-top: 24px;
}

    .about5_d .con01 .fr .a_btn a {
        width: 400px;
        line-height: 60px;
        float: left;
        border: 1px solid #c3ced3;
        text-align: center;
        color: #697493;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

        .about5_d .con01 .fr .a_btn a.next {
            float: right;
        }

        .about5_d .con01 .fr .a_btn a:hover {
            color: #fff;
            background-color: #08d0bd;
        }

/* about chairman*/
      .chairman {
            display: flex;
            align-items: flex-start;
        }

	   h1.chairman_title{
			text-align:left;
			font-size: 24px;
			font-weight: bold;
			color: #495f79;
			margin-bottom:16px;
			display: block;
			border-left: 4px #495f79 solid;
			padding: 4px 16px;
	   }

      .chairman_pic {
            margin-right: 36px;
        }

      .chairman_pic img {
            width: 423px;
            height: auto;
			border-radius: 12px; 
        }

      .chairman_address {
            flex: 1;
        }
      .chairman_address p{
			line-height: 2 !important;
        }
      .chairman_address p strong{
            display: inline !important;
        }
/* search */
.search .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .search .con01 .content {
        position: relative;
        height: 100%;
    }

        .search .con01 .content:before {
            content: '';
            width: 360px;
            height: 100%;
            background-color: #fff;
            position: absolute;
            right: -360px;
            top: 0;
        }

    .search .con01 .bg {
        padding: 64px 50px 90px 70px;
        margin: 0 -50px 0 -70px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .search .con01 .fl > .text {
        /* border-bottom: 2px solid #ececec; */
        padding-bottom: 20px;
        margin-bottom: 33px;
    }

        .search .con01 .fl > .text h3 {
            font-size: 20px;
            color: #495f79;
            line-height: 24px;
            margin: 18px 0 3px;
            letter-spacing: 8px;
        }

        .search .con01 .fl > .text p {
            color: #495f79;
        }

    .search .con01 .fr {
        width: 810px;
        position: relative;
    }

        .search .con01 .fr .title {
            font-size: 26px;
            color: #0462cc;
            line-height: 1;
        }

        .search .con01 .fr .text {
            color: #697493;
            margin-top: 10px;
        }

            .search .con01 .fr .text em {
                color: #f73e00;
            }

    .search .con01 .list .li {
        padding: 27px 0 27px 134px;
        border-bottom: 2px solid #ececec;
        position: relative;
    }

        .search .con01 .list .li .date {
            font-family: 'en';
            font-size: 24px;
            color: #08d0bd;
            position: absolute;
            left: 0;
            top: 32px;
        }

        .search .con01 .list .li .name {
            font-size: 20px;
            color: #535353;
            line-height: 28px;
            margin-bottom: 10px;
            -webkit-transition: all .4s;
            transition: all .4s;
        }

        .search .con01 .list .li .introduction {
            color: #666666;
        }

        .search .con01 .list .li:hover .name {
            color: #08d0bd;
        }

.search .page_more {
    margin-top: 30px;
    float: right;
}

/* product */
.product .page_box:after {
    display: none;
}

.product .page_box .detailed {
    /* padding-left: 365px; */
}

    .product .page_box .detailed .page_title {
        padding-left: 25px;
    }

.product .page_white .line {
    width: 126px;
    height: 2px;
    background-color: #0462cc;
    top: 60px;
}

.product .page_box .detailed .text {
    /* padding: 0 0 20px 25px; */
    /* margin: 3px 0 20px; */
    overflow: hidden;
}

.product .page_box .detailed .wrap {
    float: left;
    width: 888px;
}

.product .page_box .detailed .text p {
    color: #666666;
    margin-bottom: 18px;
}

    .product .page_box .detailed .text p strong {
        font-size: 16px;
        display: initial;
    }

.product .page_box .detailed .icon {
    float: right;
    width: 300px;
}

.product .page_box .detailed .img {
    width: 808px;
    height: 280px;
    position: relative;
    overflow: hidden;
}
/* .product .page_box .detailed .img:before {
    content: '';
    position: absolute;
    left: 0;
    top: -50%;
    width: 10%;
    height: 190%;
    background-color: rgba(255,255,255,.2);
    transition: .3s ease-in;
    opacity: 0;
    visibility: hidden;
    transform: rotate(45deg);
}
.product .page_box .detailed .img:hover:before {
    opacity: 1;
    visibility: visible;
    left: 190%;
} */
.product .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .product .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 208px;
    }

    .product .con01 .up {
        margin: 0 -67px 0 -70px;
        position: relative;
        background-color: #fff;
        overflow: hidden;
        margin-bottom: 24px;
    }

        .product .con01 .up a {
            width: 20%;
            float: left;
            text-align: center;
            padding: 17px 0;
            position: relative;
        }

            .product .con01 .up a + a:before {
                content: '';
                width: 1px;
                height: 44px;
                background-color: #e8f1fa;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                margin: auto;
            }

            .product .con01 .up a.on:before,
            .product .con01 .up a:hover:before {
                display: none;
            }

            .product .con01 .up a .text {
                display: inline-block;
                padding-left: 55px;
            }

            .product .con01 .up a.num01 .text {
                padding-left: 68px;
                background: url(../images/product/ico44.png) no-repeat 0 center;
            }

            .product .con01 .up a.num02 .text {
                background: url(../images/product/ico45.png) no-repeat 0 center;
            }

            .product .con01 .up a.num03 .text {
                background: url(../images/product/ico46.png) no-repeat 0 center;
            }

            .product .con01 .up a.num04 .text {
                background: url(../images/product/ico47.png) no-repeat 0 center;
            }

            .product .con01 .up a.num05 .text {
                background: url(../images/product/ico48.png) no-repeat 0 center;
            }

            .product .con01 .up a.num01:hover .text,
            .product .con01 .up a.num01.on .text {
                background: url(../images/product/ico44_on.png) no-repeat 0 center;
            }

            .product .con01 .up a.num02:hover .text,
            .product .con01 .up a.num02.on .text {
                background: url(../images/product/ico45_on.png) no-repeat 0 center;
            }

            .product .con01 .up a.num03:hover .text,
            .product .con01 .up a.num03.on .text {
                background: url(../images/product/ico46_on.png) no-repeat 0 center;
            }

            .product .con01 .up a.num04:hover .text,
            .product .con01 .up a.num04.on .text {
                background: url(../images/product/ico47_on.png) no-repeat 0 center;
            }

            .product .con01 .up a.num05:hover .text,
            .product .con01 .up a.num05.on .text {
                background: url(../images/product/ico48_on.png) no-repeat 0 center;
            }

            .product .con01 .up a .text h3 {
                text-align: left;
            }

            .product .con01 .up a:hover,
            .product .con01 .up a.on {
                background-color: #0462cc;
            }

            .product .con01 .up a .cn {
                font-size: 14px;
                color: #5c606d;
            }

            .product .con01 .up a .en {
                font-family: 'en_light';
                font-size: 14px;
                color: #5c606d;
                color: rgba(92, 96, 109, .5);
            }

            .product .con01 .up a:hover .cn,
            .product .con01 .up a:hover .en,
            .product .con01 .up a.on .cn,
            .product .con01 .up a.on .en {
                color: #fff;
            }

    .product .con01 .bg {
        /* padding: 64px 50px 90px 70px; */
        /* padding: 64px 0 90px; */
        margin: 0 -70px;
        /* background-color: #fff; */
        position: relative;
        overflow: hidden;
    }

    .product .con01 .list {
        margin-right: -17px;
        overflow: hidden;
        text-align: center;
    }

        .product .con01 .list .li {
            width: 660px;
            height: 505px;
            padding: 50px 80px 0;
            margin-right: 17px;
            margin-bottom: 17px;
            float: left;
            background-color: #fff;
            position: relative;
            transition: all 500ms ease;
            -webkit-transition: all .4s ease;
            /* cursor: pointer; */
        }

            .product .con01 .list .li:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: #08d0bd;
                background: -webkit-linear-gradient(-45deg,#72ebe0,#08d0bd 100%);
                background: -moz-linear-gradient(-45deg,#72ebe0,#08d0bd 100%);
                background: -o-linear-gradient(-45deg,#72ebe0,#08d0bd 100%);
                background: -ms-linear-gradient(-45deg,#72ebe0,#08d0bd 100%);
                background: linear-gradient(-45deg,#72ebe0,#08d0bd 100%);
                -webkit-transform: scaleY(0);
                transform: scaleY(0);
                -webkit-transform-origin: 50% 0;
                transform-origin: 50% 0;
                -webkit-transition-property: transform;
                transition-property: transform;
                -webkit-transition-duration: .4s;
                transition-duration: .4s;
                -webkit-transition-timing-function: ease-out;
                transition-timing-function: ease-out;
                z-index: -1;
            }

            .product .con01 .list .li .img {
                width: 500px;
                position: absolute;
                left: 0;
                right: 0;
                bottom: 99px;
                margin: auto;
            }

            .product .con01 .list .li .text .scroll {
                height: 122px;
                overflow-y: auto;
                padding-right: 8px;
            }

            .product .con01 .list .li .text .name {
                font-size: 24px;
                color: #222222;
                margin-bottom: 10px;
                -webkit-transition: all .5s;
                transition: all .5s;
            }

            .product .con01 .list .li .text .scroll,
            .product .con01 .list .li .text .scroll p {
                color: #4a4a4a;
                color: rgba(74, 74, 74, .8);
                text-align: center;
                -webkit-transition: all .5s;
                transition: all .5s;
            }

            .product .con01 .list .li:hover {
                /* box-shadow: 0 10px 16px rgba(114, 235, 224, .3); */
                /* transform: translateY(-10px); */
            }

                .product .con01 .list .li:hover:before {
                    -webkit-transform: scaleY(1);
                    transform: scaleY(1);
                    /* -webkit-transition-timing-function: cubic-bezier(0.52,1.64,.37,.66); */
                    /* transition-timing-function: cubic-bezier(0.52,1.64,.37,.66); */
                }

                .product .con01 .list .li:hover .name,
                .product .con01 .list .li:hover .text .scroll p {
                    color: #fff;
                }

.product .page_more {
    margin: auto;
    margin-top: 30px;
}

.recommend_side {
    width: 100%;
    height: 446px;
    position: relative;
    background: url(../images/product/ico32.jpg) no-repeat center;
    background-size: cover;
    margin-bottom: 22px;
}

    .recommend_side .bd {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

        .recommend_side .bd ul {
            width: 100% !important;
            height: 100% !important;
        }

        .recommend_side .bd li {
            width: 100% !important;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
        }

            .recommend_side .bd li .img {
                height: 100%;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
            }

    .recommend_side .btn {
        display: none;
        width: 48px;
        height: 48px;
        position: absolute;
        top: 50%;
        margin-top: -24px;
        border: 1px solid #fff;
        z-index: 9;
    }

    .recommend_side .next {
        right: 28px;
        background: url(../images/next.png) no-repeat center;
    }

    .recommend_side .prev {
        left: 28px;
        background: url(../images/prev.png) no-repeat center;
    }
/* investor */
.investor .page_box .detailed {
    padding-left: 457px;
}

.investor .page_box .recommend {
    width: 100%;
    height: 276px;
    background: url(../images/investor/ico1.jpg) no-repeat center;
    background-size: cover;
    padding: 44px 42px;
    margin-top: 32px;
}

    .investor .page_box .recommend .name {
        font-size: 20px;
        color: #525252;
    }

    .investor .page_box .recommend .in {
        overflow: hidden;
        margin: 16px 0;
    }

    .investor .page_box .recommend .head_con {
        float: left;
    }

        .investor .page_box .recommend .head_con h3 {
            font-family: 'en';
            font-size: 61px;
            line-height: 1;
            padding-right: 22px;
            display: inline-block;
            position: relative;
            margin-right: 5px;
        }

            .investor .page_box .recommend .head_con h3.red {
                color: #f73e00;
            }

            .investor .page_box .recommend .head_con h3:before {
                content: '';
                width: 16px;
                height: 22px;
                position: absolute;
                right: 0;
            }

            .investor .page_box .recommend .head_con h3.red:before {
                background: url(../images/up_on2.png) no-repeat center;
                top: 13px;
            }

            .investor .page_box .recommend .head_con h3.green {
                color: #2db359;
            }

                .investor .page_box .recommend .head_con h3.green:before {
                    background: url(../images/down_on2.png) no-repeat center;
                    bottom: 16px;
                }

        .investor .page_box .recommend .head_con em {
            font-family: 'en_light';
            font-size: 24px;
            color: #525252;
        }

    .investor .page_box .recommend .in ul {
        overflow: hidden;
    }

    .investor .page_box .recommend .in li {
        float: left;
        padding-left: 20px;
        margin-left: 24px;
        border-left: 1px solid #dcdff1;
    }

        .investor .page_box .recommend .in li h3 {
            font-family: 'en';
            font-size: 34px;
            color: #0462cc;
            line-height: 1;
            position: relative;
            margin-bottom: -6px;
        }

        .investor .page_box .recommend .in li p {
            color: #6f6f6f;
        }

    .investor .page_box .recommend .text {
        clear: both;
        color: #525252;
        color: rgba(82,82,82,.6);
    }

        .investor .page_box .recommend .text em {
            margin-left: 34px;
        }

.investor .page_more {
    margin-top: 30px;
    float: right;
}
/* investor1 */
.investor1 .con01 {
    height: 713px;
    background: url(../images/about/ico2.jpg) no-repeat center top;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

    .investor1 .con01:before {
        content: '';
        width: 100%;
        height: 93px;
        background: url(../images/about/ico2_bg.png) no-repeat center;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .investor1 .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 330px;
    }

    .investor1 .con01 .list {
        overflow: hidden;
    }

        .investor1 .con01 .list .li {
            width: 586px;
            height: 297px;
            float: left;
            position: relative;
            overflow: hidden;
        }

            .investor1 .con01 .list .li .img img {
                transition-duration: .5s;
                -webkit-transition-duration: .5s;
            }

            .investor1 .con01 .list .li .detailed {
                position: absolute;
                left: 52px;
                top: 70px;
            }

            .investor1 .con01 .list .li .cn {
                font-size: 22px;
                color: #fff;
                line-height: 30px;
            }

            .investor1 .con01 .list .li .en {
                font-family: 'en_light';
                font-size: 26px;
                color: #fff;
                color: rgba(255,255,255,.5);
                line-height: 30px;
                text-transform: uppercase;
                margin: 4px 0 30px;
            }

                .investor1 .con01 .list .li .en em {
                    font-family: 'en';
                }

            .investor1 .con01 .list .li.green {
                float: right;
            }

            .investor1 .con01 .list .li:hover .img img {
                transform: scale(1.1);
                -webkit-transform: scale(1.1);
            }

.investor1 .con02 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 55px;
}

    .investor1 .con02 .content {
        position: relative;
        height: 100%;
        /* padding-top: 80px; */
        margin-top: 310px;
    }

    .investor1 .con02 .bg {
        min-height: 520px;
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .investor1 .con02 .fl {
        width: 330px;
    }

    .investor1 .con02 .blue {
        width: 100%;
        height: 218px;
        float: left;
        position: relative;
        overflow: hidden;
        margin-bottom: 35px;
    }

        .investor1 .con02 .blue .img img {
            transition-duration: .5s;
            -webkit-transition-duration: .5s;
        }

        .investor1 .con02 .blue .detailed {
            position: absolute;
            left: 28px;
            top: 35px;
        }

        .investor1 .con02 .blue .cn {
            font-size: 26px;
            color: #fff;
            line-height: 24px;
            letter-spacing: 8px;
        }

        .investor1 .con02 .blue .en {
            font-family: 'en_light';
            font-size: 20px;
            color: #fff;
            color: rgba(255,255,255,.7);
            line-height: 24px;
            text-transform: uppercase;
            margin: 4px 0 14px;
        }

        .investor1 .con02 .blue .page_more {
            float: none;
            margin: 0;
            border: 2px solid rgba(195,206,211,.5);
        }

        .investor1 .con02 .blue:hover .img img {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
        }

    .investor1 .con02 .fr {
        width: 810px;
        position: relative;
        margin-top: -32px;
    }

        .investor1 .con02 .fr .title {
            border-bottom: 2px solid #08d0bd;
            padding-bottom: 18px;
        }

            .investor1 .con02 .fr .title h3 {
                font-size: 26px;
                color: #0462cc;
                line-height: 28px;
                display: inline-block;
                position: relative;
            }

                .investor1 .con02 .fr .title h3:before {
                    content: '';
                    width: 104px;
                    height: 4px;
                    background-color: #0462cc;
                    position: absolute;
                    left: 0;
                    bottom: -23px;
                }
    /* .investor1 .con02 .fr .title h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -23px;
    height: 4px;
    width: 8px;
    background-color: #fff;
    animation: infinite_move 3s linear infinite;
    -webkit-animation: infinite_move 3s linear infinite;
}
@-webkit-keyframes infinite_move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(96px);
        transform: translateX(96px)
    }
}
@keyframes infinite_move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(96px);
        transform: translateX(96px)
    }
} */
    .investor1 .con02 .list .li {
        padding: 27px 50px 27px 134px;
        border-bottom: 2px solid #ececec;
        position: relative;
    }

        .investor1 .con02 .list .li:before {
            content: '';
            width: 40px;
            height: 48px;
            background: url(../images/investor/ico2.png) no-repeat;
            position: absolute;
            right: 0;
            top: 18px;
            -webkit-transform: translate(0,0);
            -ms-transform: translate(0,0);
            transform: translate(0,0);
            -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
            -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
            transition: all cubic-bezier(.4,0,.2,1) .4s;
        }

        .investor1 .con02 .list .li:after {
            content: '';
            width: 40px;
            height: 48px;
            background: url(../images/investor/ico2_on.png) no-repeat;
            position: absolute;
            right: 0;
            top: 18px;
            -webkit-transform: translateX(44px);
            -ms-transform: translateX(44px);
            transform: translateX(44px);
            opacity: 0;
            -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
            -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
            transition: all cubic-bezier(.4,0,.2,1) .4s;
        }

        .investor1 .con02 .list .li .date {
            font-family: 'en_light';
            font-size: 24px;
            color: #08d0bd;
            position: absolute;
            left: 0;
            top: 32px;
        }

        .investor1 .con02 .list .li .name {
            font-size: 20px;
            color: #535353;
            line-height: 28px;
            margin-bottom: 10px;
            -webkit-transition: all .4s;
            transition: all .4s;
        }

        .investor1 .con02 .list .li:hover .name {
            color: #08d0bd;
        }

        .investor1 .con02 .list .li:hover:before {
            opacity: 0;
        }

        .investor1 .con02 .list .li:hover:after {
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
            opacity: 1;
        }

		.irEmail{
		    position: relative;
			float: left;
			width: 100%;
			background-color: #FFFFFF;
			margin-top: 30px;
		}

		.irEmail h3{
			font-size: 20px;
			padding: 12px 0;
		}
		.irEmail h3 small{
			font-size: 80%;
			padding-left: 6px;
		}

/* contact */
.contact .page_title .en {
    font-size: 30px;
    color: #686868;
    color: rgba(104,104,104,.5);
}

.contact .page_box .detailed {
    padding-left: 457px;
}

    .contact .page_box .detailed .text {
        margin: 3px 0 20px;
    }

    .contact .page_box .detailed .cn {
        color: #0462cc;
    }

    .contact .page_box .detailed .img {
        width: 808px;
        height: 288px;
        position: relative;
        overflow: hidden;
    }

.contact .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .contact .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .contact .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .contact .con01 .list {
        overflow: hidden;
        margin-bottom: 30px;
    }

        .contact .con01 .list .li {
            width: 33.33333%;
            min-height: 50px;
            padding-left: 60px;
            margin-bottom: 28px;
            background-repeat: no-repeat;
            background-position: left center;
            float: left;
        }

            .contact .con01 .list .li h3 {
                font-size: 16px;
                color: #5b5b5b;
                line-height: 24px;
            }

            .contact .con01 .list .li p {
                color: #b8b8b8;
            }

                .contact .con01 .list .li p em {
                    /* font-family: 'en_light'; */
                    /* font-size: 18px; */
                }

.contact #baiMap {
    height: 565px;
}

#baiMap a {
    display: inline-block;
}

#baiMap img {
    display: inline-block;
    max-width: none;
}

.bMap-posTit:after {
    content: "";
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top: 6px solid #FFF;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: auto;
}

.bMap-posTit {
    width: 276px;
    height: 56px;
    background-color: #FFF;
    text-align: center;
    line-height: 56px;
    color: #666666;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    position: absolute;
    left: -130px;
    top: -63px;
    box-shadow: 0 2px 3px 2px rgba(0,0,0,.1);
    border-radius: 4px;
}

.contact .con01 .img {
    position: relative;
    width: 100%;
    height: 795px;
    /* overflow: hidden; */
}

    .contact .con01 .img .float .li {
        cursor: pointer;
    }

    .contact .con01 .img .float .li01 {
        position: absolute;
        top: 529px;
        left: 522px;
        width: 133px;
        height: 172px;
        z-index: 3;
    }

    .contact .con01 .img .float .li .up {
        width: 505px;
        height: 300px;
        border: 10px solid #fff;
        border-radius: 10px;
        box-shadow: 0px 13px 10px rgba(0, 0, 0, .1);
        position: absolute;
        left: 50%;
        margin-left: -330px;
        top: -246px;
        display: none;
        z-index: 2;
    }

    .contact .con01 .img .float .li .icon {
        display: none;
    }

    .contact .con01 .img .float .li01 .icon {
        width: 306px;
        height: 172px;
        /* background: url(../images/contact/ico8.png) no-repeat center; */
    }

    .contact .con01 .img .float .li.on .up {
        display: block;
        animation: fadeInUp .4s linear forwards;
        -webkit-animation: fadeInUp .4s linear forwards;
    }

    .contact .con01 .img .float .li.on .icon {
        display: block;
        animation: fadeIn .4s linear forwards;
        -webkit-animation: fadeIn .4s linear forwards;
    }

    .contact .con01 .img .float .li01.on .icon {
        background: url(../images/contact/ico8.png) no-repeat center;
    }

    .contact .con01 .img .float .li02 {
        position: absolute;
        top: 419px;
        left: 686px;
        z-index: 2;
        width: 168px;
        height: 94px;
    }

        .contact .con01 .img .float .li02.on .up {
            top: -226px;
            left: -490px;
            animation: fadeInLeft .4s linear forwards;
            -webkit-animation: fadeInLeft .4s linear forwards;
            margin: 0;
        }

        .contact .con01 .img .float .li02 .icon {
            width: 229px;
            height: 122px;
        }

        .contact .con01 .img .float .li02.on .icon {
            background: url(../images/contact/ico9.png) no-repeat center;
        }

    .contact .con01 .img .float .li03 {
        position: absolute;
        top: 121px;
        left: 702px;
        z-index: 1;
        width: 392px;
        height: 343px;
    }

        .contact .con01 .img .float .li03 .icon {
            width: 396px;
            height: 380px;
        }

        .contact .con01 .img .float .li03.on .up {
            top: -33px;
            left: -49px;
            animation: fadeInLeft .4s linear forwards;
            -webkit-animation: fadeInLeft .4s linear forwards;
        }

        .contact .con01 .img .float .li03.on .icon {
            background: url(../images/contact/ico10.png) no-repeat center;
        }

/* occupation */
.detaileds11 ul {
    z-index: 2
}

.d1 .page_title .cn {
    color: #07D0BC;
    font-size: 32px;
    padding-left: 230px;
    margin-top: 50px;
}

.d1 .page_title .en {
    color: #353535;
    margin-top: -105px;
    width: 80px;
    font-size: 40px;
}

.d1 .page_title .you {
    font-size: 18px;
    margin: 15px,0px;
    margin-bottom: 15px;
}

.d1 .page_title .en em {
    font-family: 'en_light';
    color: #353535;
    font-weight: bold;
    font-size: 40px;
}

.d1 .img .zp {
    width: 400px;
    color: #FFFFFF;
    z-index: 1;
    position: absolute;
    margin-top: 200px;
    margin-left: 800px;
}

    .d1 .img .zp p {
        font-size: 20px;
        color: #FFFFFF;
        padding-bottom: 20px;
        text-align: right;
    }

        .d1 .img .zp p:nth-child(1) {
            font-size: 30px;
            color: #FFFFFF;
            padding-bottom: 30px;
            text-align: right;
        }

        .d1 .img .zp p:nth-child(3) {
            font-size: 20px;
            color: #FFFFFF;
            padding-bottom: 10px;
            text-align: right;
        }

.d1 .img {
    width: 600px;
}

    .d1 .img img {
        height: 400px
    }

.page_white .recruitment {
    margin-left: 450px;
    margin-top: -500px;
    width: 800px;
    background-color: #F7FAFF;
    height: 550px;
    padding: 90px;
    padding-top: 50px;
    padding-left: 200px
}

    .page_white .recruitment ul li {
        margin-top: 20px;
        height: 60px;
        background-color: #FFFFFF;
        padding-left: 30px;
        padding-top: 20px;
    }

        .page_white .recruitment ul li p {
            font-weight: 600;
            font-size: 15px;
            display: inline-block;
        }

        .page_white .recruitment ul li a {
            color: #0198FD;
        }



    .page_white .recruitment h1 {
        font-size: 20px;
        font-weight: bold
    }

    .page_white .recruitment h4 {
        margin: 10px 0px;
        color: #A3A4A6;
    }

    .page_white .recruitment p img {
        margin-left: 8px;
    }

    .page_white .recruitment .p1 {
        margin-left: -170px;
        margin-top: -20px;
    }

    .page_white .recruitment .p2 {
        margin-left: 400px;
        margin-top: 30px;
    }

.page_white .page_type .type {
    margin-top: 30px;
}

    .page_white .page_type .type li {
        display: inline-block;
        width: 100px;
        height: 35px;
        line-height: 35px;
        border-radius: 10px;
        background-color: #fff;
        margin-left: 30px;
        padding-left: 10px
    }

        .page_white .page_type .type li a img {
            float: right;
            margin-top: 15px;
            margin-right: 10px;
        }

.page_white .page_type .detailed ul li {
    display: inline-block;
}

.occupation .page_box .detailed {
    padding-left: 457px;
}

    .occupation .page_box .detailed .text {
        margin: 3px 0 20px;
    }

    .occupation .page_box .detailed .img {
        width: 808px;
        height: 288px;
        position: relative;
        overflow: hidden;
    }

.occupation .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .occupation .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .occupation .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

.occupation .page_more {
    margin-top: 30px;
    float: right;
}



.occupation .con02 .fr {
    width: 1400px;
  
   
    margin-top: -102px;
}


        .occupation .con02 .fr .list li {
            width: 600px;
            height: 200px;
            background-color: #F7FBFF;
            margin-left: -250px;
           
        }

    .occupation .con02 .fr .list {
        width: 1100px;
        margin-left: -220px
    }

        .occupation .con02 .fr .list li:nth-child(odd) {
            margin-top: 10px;
            margin-right: 10px;
            float: left;
            background-color: #f6f8f9;
            clear: both;
        }


        .occupation .con02 .fr .list li:nth-child(even) {
            margin-top: -200px;
            float: right;
            margin-right: 120px;
            background-color: #f6f8f9;
            clear: both;
        }
      

.occupation .con01 .fr .list li {
    background-color: #f6f8f9;
}

    .occupation .con01 .fr .list li + li {
        margin-top: 15px;
    }


.occupation .con01 .fr .main {
    padding: 22px 115px 22px 42px;
    position: relative;
    cursor: pointer;
}

    .occupation .con01 .fr .main h3 {
        font-size: 20px;
        color: #0462cc;
        line-height: 24px;
        margin-bottom: 3px;
    }

.occupation .con01 .fr .bit {
    overflow: hidden;
}

    .occupation .con01 .fr .bit .li {
        float: left;
        color: #464646;
        color: rgba(70,70,70,.8);
        line-height: 24px;
        margin-right: 22px;
    }

.occupation .con01 .fr .listbox {
    padding: 0 42px 32px;
    display: none;
}

    .occupation .con01 .fr .listbox h3 {
        font-size: 16px;
        color: #464646;
        line-height: 24px;
    }

    .occupation .con01 .fr .listbox p {
        color: #464646;
        color: rgba(70,70,70,.8);
    }

.occupation .con01 .fr .item {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.occupation .inputBox {
    width: 266px;
    background-color: #8da6c2;
    margin-bottom: 0;
}

.listxiao {
    height: 200px;
}

.occupation .inputBox input {
    padding: 0 40px 0 18px;
    width: 100%;
    height: 66px;
    color: #f5f5f5;
    color: rgba(245,245,245,.5);
}

    .occupation .inputBox input::-webkit-input-placeholder {
        color: #f5f5f5;
        color: rgba(245,245,245,.5);
    }

    .occupation .inputBox input:-moz-placeholder {
        color: #f5f5f5;
        color: rgba(245,245,245,.5);
    }

    .occupation .inputBox input::-moz-placeholder {
        color: #f5f5f5;
        color: rgba(245,245,245,.5);
    }

    .occupation .inputBox input:-ms-input-placeholder {
        color: #f5f5f5;
        color: rgba(245,245,245,.5);
    }

.occupation .inputBox button {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 66px;
    background: url(../images/searchBtn.png) no-repeat left center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.occupation .mySelect {
    width: 266px;
    height: 66px;
    line-height: 66px;
    font-size: 14px;
    margin-left: 6px;
}

    .occupation .mySelect .show {
        padding-left: 18px;
        height: 66px;
        line-height: 66px;
        color: #f5f5f5;
        background-color: #8da6c2;
    }

.occupation .con02 .content .mySelect .show {
    color: #3C3D3E;
    height: 40px;
    line-height: 40px;
    width: 230px;
    background: url("upload/img/2022-06-17/drop-downBox/Polygon1.png") no-repeat center;
    background-color: #F7FBFF;
}

.occupation .con02 .content .mySelect img {
    float: right;
    margin-right: 30px;
    margin-top: 0px;
    z-index: 1;
}

.occupation .con02 .content .inputBox {
    background-color: #F7FBFF;
    color: #3C3D3E;
    height: 40px;
    line-height: 40px;
    width: 230px
}


.occupation .mySelect .show:after {
    display: none;
}

.occupation .mySelect .drapList li {
    padding: 0 18px;
}

.occupation .con03 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .occupation .con03 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }
/* occupation2 */
.occupation2 .page_box .detailed {
    padding-left: 457px;
}

    .occupation2 .page_box .detailed .text {
        margin: 3px 0 20px;
    }

    .occupation2 .page_box .detailed .img {
        width: 808px;
        height: 288px;
        position: relative;
        overflow: hidden;
    }

.occupation2 .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}

    .occupation2 .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .occupation2 .con01 .bg {
        min-height: 496px;
        padding: 50px 65px 55px 510px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .occupation2 .con01 .img {
        width: 458px;
        height: 100%;
        padding: 50px 65px 55px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: absolute;
        left: 0;
        top: 0;
    }

        .occupation2 .con01 .img:before {
            content: '';
            width: 100%;
            height: 100%;
            background: url(../images/occupation/ico19.png) no-repeat center/cover;
            position: absolute;
            left: 0;
            top: 0;
        }

        .occupation2 .con01 .img .detailed h3 {
            color: #fff;
        }

        .occupation2 .con01 .img .detailed p {
            color: #fff;
            color: rgba(255,255,255,.7);
        }

    .occupation2 .con01 .detailed h3 {
        font-size: 18px;
        color: #535353;
        margin-bottom: 10px;
    }

    .occupation2 .con01 .detailed p {
        color: #545454;
        color: rgba(84,84,84,.8);
    }

    .occupation2 .con01 .list {
        overflow: hidden;
        margin: 20px 0;
    }

        .occupation2 .con01 .list .li {
            width: 50%;
            height: 160px;
            background-color: #d5e5f1;
            background-repeat: no-repeat;
            background-position: center;
            padding: 24px 22px 0;
            float: left;
        }

            .occupation2 .con01 .list .li:nth-of-type(even) {
                background-color: #c9dadf;
            }

            .occupation2 .con01 .list .li h3 {
                font-size: 16px;
                color: #1332cf;
            }

            .occupation2 .con01 .list .li p {
                color: #697493;
            }

            .occupation2 .con01 .list .li .icon {
                width: 35px;
                height: 5px;
                background: url(../images/about/ico13.png) no-repeat center;
                display: block;
                margin: 12px 0;
            }

    .occupation2 .con01 .text {
        margin-top: 29px;
    }

.occupation2 .con02 {
    /* background: url(../images/occupation/ico12.jpg) no-repeat left center; */
    background-color: #8da7c2;
    position: relative;
    overflow: hidden;
    border: 14px solid #fff;
    border-right: none;
    border-left: none;
}

    .occupation2 .con02 .content {
        position: relative;
        height: 562px;
        padding: 62px 0 70px;
    }

        .occupation2 .con02 .content:before {
            content: '';
            width: 960px;
            height: 100%;
            background-color: #3057b5;
            position: absolute;
            right: -360px;
            top: 0;
        }

        .occupation2 .con02 .content:after {
            content: '';
            width: 960px;
            height: 100%;
            background: url(../images/occupation/ico21.png) 0 0;
            position: absolute;
            left: -360px;
            top: 0;
        }

    .occupation2 .con02 .line {
        width: 14px;
        height: 100%;
        background-color: #f0f4f9;
        position: absolute;
        left: 50%;
        margin-left: -7px;
        top: 0;
        z-index: 2;
    }

    .occupation2 .con02 .light_blue {
        width: 50%;
        float: left;
        position: relative;
        padding-right: 85px;
        z-index: 2;
    }

        .occupation2 .con02 .light_blue .en {
            color: #fff;
            color: rgba(255,255,255,.3);
        }

    .occupation2 .con02 .dark_blue {
        width: 50%;
        float: left;
        position: relative;
        padding-left: 65px;
    }

.name .cn {
    font-size: 20px;
    color: #1f33a3;
}

.name .en {
    font-family: 'en_light';
    font-size: 30px;
    color: #fff;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    margin-top: 10px;
}

.occupation2 .con02 .name .cn {
    color: #fff;
}

.occupation2 .con02 .img {
    margin-top: 14px;
}

.occupation2 .con02 .cube {
    width: 292px;
    height: 285px;
    margin: 54px 0 0 155px;
    position: relative;
}

    .occupation2 .con02 .cube:after {
        content: '';
        width: 100%;
        height: 100%;
        background: url(../images/occupation/ico10.png) no-repeat center;
        position: absolute;
        top: 0;
        left: 0;
    }

    .occupation2 .con02 .cube:before {
        content: '';
        width: 100%;
        height: 100%;
        background: url(../images/occupation/ico9.png) no-repeat center;
        position: absolute;
        top: 0;
        left: 0;
    }

    .occupation2 .con02 .cube.animated:after {
        animation: fadeIn 1s ease-in-out 1 forwards;
        -webkit-animation: fadeIn 1s ease-in-out 1 forwards;
    }

    .occupation2 .con02 .cube.animated:before {
        animation: pulse 1s ease-in-out 1 forwards;
        -webkit-animation: pulse 1s ease-in-out 1 forwards;
    }

    .occupation2 .con02 .cube .li {
        font-size: 14px;
        color: #fff;
        color: rgba(255,255,255,.7);
        position: absolute;
    }

        .occupation2 .con02 .cube .li:before {
            content: '';
            width: 32px;
            height: 32px;
            background: url(../images/occupation/ico11.png) no-repeat;
            position: absolute;
        }

        .occupation2 .con02 .cube .li.li01 {
            top: -30px;
            left: 0;
            width: 100%;
            text-align: center;
        }

            .occupation2 .con02 .cube .li.li01:before {
                left: 0;
                right: 0;
                bottom: -23px;
                margin: auto;
            }

        .occupation2 .con02 .cube .li.li02 {
            top: 47px;
            left: 286px;
            width: 118px;
        }

            .occupation2 .con02 .cube .li.li02:before {
                left: -38px;
                top: -5px;
            }

        .occupation2 .con02 .cube .li.li03 {
            top: 169px;
            left: 304px;
            width: 118px;
        }

            .occupation2 .con02 .cube .li.li03:before {
                left: -28px;
                top: -3px;
            }

        .occupation2 .con02 .cube .li.li04 {
            top: 274px;
            left: 220px;
            width: 185px;
        }

            .occupation2 .con02 .cube .li.li04:before {
                left: -25px;
                top: -5px;
            }

        .occupation2 .con02 .cube .li.li05 {
            top: 274px;
            right: 218px;
            width: 185px;
            text-align: right;
        }

            .occupation2 .con02 .cube .li.li05:before {
                right: -24px;
                top: -5px;
            }

        .occupation2 .con02 .cube .li.li06 {
            top: 169px;
            right: 298px;
            width: 115px;
            text-align: right;
        }

            .occupation2 .con02 .cube .li.li06:before {
                right: -28px;
                top: -3px;
            }

        .occupation2 .con02 .cube .li.li07 {
            top: 47px;
            right: 285px;
            width: 142px;
            text-align: right;
        }

            .occupation2 .con02 .cube .li.li07:before {
                right: -38px;
                top: -5px;
            }

.occupation2 .con02 .round {
    width: 363px;
    height: 356px;
    position: relative;
}

    .occupation2 .con02 .round .icon_round {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(../images/occupation/ico23.png) no-repeat center;
    }

    .occupation2 .con02 .round .li {
        color: #0462cc;
        color: rgba(4,98,204,.8);
        position: absolute;
        text-align: center;
        width: 97px;
        height: 100px;
        line-height: 100px;
        background: url(../images/occupation/ico22.png) no-repeat center;
    }

        .occupation2 .con02 .round .li .name {
            display: inline-block;
            vertical-align: middle;
        }

        .occupation2 .con02 .round .li h3 {
            line-height: 18px;
        }

        .occupation2 .con02 .round .li.li01 {
            top: 0px;
            left: 133px;
        }

        .occupation2 .con02 .round .li.li02 {
            top: 50px;
            left: 239px;
        }

        .occupation2 .con02 .round .li.li03 {
            top: 165px;
            left: 266px;
        }

        .occupation2 .con02 .round .li.li04 {
            top: 257px;
            left: 190px;
        }

        .occupation2 .con02 .round .li.li05 {
            top: 257px;
            left: 73px;
        }

        .occupation2 .con02 .round .li.li06 {
            top: 165px;
            left: 0px;
        }

        .occupation2 .con02 .round .li.li07 {
            top: 50px;
            left: 28px;
        }

    .occupation2 .con02 .round .box {
        width: 147px;
        height: 153px;
        background: url(../images/occupation/ico24.png) no-repeat center;
        position: absolute;
        top: 106px;
        left: 106px;
        text-align: center;
        padding-top: 31px;
    }

        .occupation2 .con02 .round .box h3 {
            font-size: 16px;
            color: #545454;
            background: url(../images/occupation/ico25.png) no-repeat center top;
            padding-top: 62px;
        }

.occupation2 .con03 {
    height: 331px;
    background: url(../images/occupation/ico8.jpg) no-repeat center;
    padding-top: 110px;
}

    .occupation2 .con03 .text p {
        color: #fff;
        text-align: center;
    }
/* occupation3 */
.occupation3 .duotu img {
    position: absolute;
    z-index: 1;
}

.occupation3 .duotu .tu:active {
    z-index: 2;
    transform: scale(2,2);
}

.occupation3 .page_box .detailed {
    padding-left: 457px;
}

    .occupation3 .page_box .detailed .text {
        margin: 3px 0 20px;
    }

    .occupation3 .page_box .detailed .img {
        width: 808px;
        height: 288px;
        position: relative;
        overflow: hidden;
    }

.occupation3 .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
}

    .occupation3 .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .occupation3 .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

.zc_title .en {
    color: transparent;
    -webkit-text-stroke: 1px #96ddea;
    -ms-text-stroke: 1px #96ddea;
    text-stroke: 1px #96ddea;
    font-size: 62px;
    line-height: 50px;
    font-family: 'en';
    text-transform: uppercase;
}

.zc_title .cn {
    font-size: 20px;
    color: #000000;
    color: rgba(0, 0, 0, .9);
}

.zc_title p {
    color: #000000;
    color: rgba(0, 0, 0, .8);
    margin-top: 5px;
}

.occupation3 .con01 .fl .item {
    width: 404px;
    height: 404px;
    margin: 90px 0 47px 77px;
    position: relative;
}

    .occupation3 .con01 .fl .item .icon {
        width: 100%;
        height: 100%;
        background: url(../images/occupation/ico15.png) no-repeat center;
        position: absolute;
        left: 0;
        top: 0;
    }

    .occupation3 .con01 .fl .item .icon02 {
        width: 346px;
        height: 299px;
        background: url(../images/occupation/ico18.png) no-repeat center;
        position: absolute;
        left: 27px;
        top: 3px;
    }

.occupation3 .con01 .item .li {
    position: absolute;
}

.occupation3 .con01 .fl .item .li.li01 {
    top: -60px;
    left: 0;
    width: 100%;
    text-align: center;
}

.occupation3 .con01 .fl .item .li.li02 {
    right: -28px;
    top: 355px;
    text-align: right;
}

.occupation3 .con01 .fl .item .li.li03 {
    top: 355px;
    left: -77px;
}

.occupation3 .con01 .fl .item .li.li02 p {
    text-align: right;
}

.occupation3 .con01 .fl .item .li.li01 p {
    text-align: center;
}

.occupation3 .con01 .item .li h3 {
    font-size: 16px;
    color: #cb8e2c;
}

.occupation3 .con01 .fl .item .li p {
    color: #727272;
    line-height: 24px;
}

.occupation3 .con01 .fl .item .text .li p {
    color: #5b5b5b;
    line-height: 16px;
}

.occupation3 .con01 .fl .item .text .li.li01 {
    top: 123px;
    left: 30px;
    width: auto;
    text-align: left;
}

.occupation3 .con01 .fl .item .text .li.li02 {
    top: 123px;
    right: 30px;
}

.occupation3 .con01 .fl .item .text .li.li03 {
    top: 366px;
    left: 0;
    right: 0;
    margin: auto;
}

.occupation3 .con01 .fl .item .text .li.li04 {
    top: 144px;
    left: 95px;
}

.occupation3 .con01 .fl .item .text .li.li05 {
    top: 144px;
    right: 95px;
}

.occupation3 .con01 .fl .item .text .li.li06 {
    top: 296px;
    left: 0;
    right: 0;
    margin: auto;
}

    .occupation3 .con01 .fl .item .text .li.li03 p,
    .occupation3 .con01 .fl .item .text .li.li04 p,
    .occupation3 .con01 .fl .item .text .li.li05 p,
    .occupation3 .con01 .fl .item .text .li.li06 p {
        text-align: center;
    }

.occupation3 .con01 .fr .item {
    width: 491px;
    height: 377px;
    margin: 73px 18px 92px 0;
    position: relative;
}

    .occupation3 .con01 .fr .item .icon {
        width: 100%;
        height: 100%;
        background: url(../images/occupation/ico16.png) no-repeat center;
        position: absolute;
        left: 0;
        top: 0;
    }

    .occupation3 .con01 .fr .item .li.li01 {
        top: -41px;
        left: 0;
        width: 100%;
        text-align: center;
    }

    .occupation3 .con01 .fr .item .li.li02 {
        right: 76px;
        top: 394px;
        text-align: center;
    }

    .occupation3 .con01 .fr .item .li.li03 {
        left: 60px;
        top: 394px;
        text-align: center;
    }

    .occupation3 .con01 .fr .item .text .li.li01 {
        top: 11px;
        left: 188px;
        width: 109px;
    }

    .occupation3 .con01 .fr .item .text .li.li02 {
        top: 340px;
        right: 69px;
        width: 109px;
    }

    .occupation3 .con01 .fr .item .text .li.li03 {
        top: 340px;
        left: 62px;
        width: 109px;
    }

    .occupation3 .con01 .fr .item .text .li.li04 {
        top: 178px;
        left: 0px;
        width: 62px;
    }

    .occupation3 .con01 .fr .item .text .li.li05 {
        top: 178px;
        right: 2px;
        width: 62px;
    }

    .occupation3 .con01 .fr .item .text .li.li06 {
        top: 340px;
        left: 211px;
        width: 62px;
    }

    .occupation3 .con01 .fr .item .text .li p {
        text-align: center;
        color: #fff;
    }

.occupation3 .con01 .w_name {
    font-size: 20px;
    color: #5a5a5a;
    text-align: center;
    line-height: 54px;
    background: url(../images/occupation/ico17.png) no-repeat center;
}

.occupation3 .con02 {
    background-color: #f3f3f3;
    overflow: hidden;
    padding: 27px 0;
}

    .occupation3 .con02 .bg {
        height: 623px;
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background: url(../images/occupation/ico26.jpg) no-repeat center bottom #fff;
        position: relative;
        overflow: hidden;
    }

    .occupation3 .con02 .wrap {
        position: relative;
        height: 423px;
        margin-top: -21px;
    }

    .occupation3 .con02 .li {
        position: absolute;
    }

        .occupation3 .con02 .li.li01 {
            width: 390px;
            top: 65px;
            left: 0;
        }

        .occupation3 .con02 .li.li02 {
            top: 45px;
            left: 666px;
        }

        .occupation3 .con02 .li.li03 {
            top: 152px;
            left: 822px;
        }

        .occupation3 .con02 .li.li04 {
            top: 238px;
            left: 852px;
        }

        .occupation3 .con02 .li.li05 {
            width: 390px;
            top: 314px;
            left: 0;
        }

            .occupation3 .con02 .li.li01 p,
            .occupation3 .con02 .li.li05 p {
                text-align: right;
            }

        .occupation3 .con02 .li p {
            font-size: 16px;
            color: #727272;
            line-height: 28px;
        }

            .occupation3 .con02 .li p em {
                color: #057ddf;
            }

.occupation3 .con03 {
    background-color: #f3f3f3;
    overflow: hidden;
    padding-bottom: 55px;
}

    .occupation3 .con03 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .occupation3 .con03 .wrap {
        min-height: 422px;
        position: relative;
    }

    .occupation3 .con03 .zc_title {
        position: relative;
        z-index: 2;
    }

    .occupation3 .con03 .wrap:before {
        content: '';
        width: 100%;
        height: 422px;
        background: url(../images/occupation/ico27.jpg) no-repeat center bottom;
        position: absolute;
        left: 0;
        bottom: 18px;
    }

    .occupation3 .con03 .li h3 {
        font-size: 18px;
        color: #dfac3a;
        line-height: 42px;
        margin-bottom: 10px;
    }

        .occupation3 .con03 .li h3 em {
            width: 42px;
            height: 42px;
            background-color: #dfac3a;
            background-color: rgba(223, 172, 58, .5);
            border-radius: 50%;
            display: block;
            font-family: 'en';
            font-size: 26px;
            color: #fff;
            text-align: center;
            margin-right: 8px;
            float: left;
        }

    .occupation3 .con03 .li p {
        color: #727272;
        color: rgba(114, 114, 114, .9);
        line-height: 28px;
    }

    .occupation3 .con03 .fl {
        width: 360px;
        position: relative;
    }

    .occupation3 .con03 .fr {
        width: 306px;
        position: relative;
    }

        .occupation3 .con03 .fr .li h3 {
            text-align: right;
        }

            .occupation3 .con03 .fr .li h3 em {
                float: right;
            }

        .occupation3 .con03 .fr .li p {
            text-align: right;
        }

    .occupation3 .con03 .fl .li {
        margin-top: 105px;
    }

        .occupation3 .con03 .fl .li + .li {
            margin-top: 65px;
        }

    .occupation3 .con03 .fr .li + .li {
        margin-top: 155px;
    }
/* ability */
.ability .page_box .detailed {
    padding-left: 457px;
}

    .ability .page_box .detailed .text {
        margin: 3px 0 20px;
    }

    .ability .page_box .detailed .img {
        width: 808px;
        height: 288px;
        position: relative;
        overflow: hidden;
    }

.ability .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .ability .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 280px;
    }

    .ability .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .ability .con01 .text {
        margin-bottom: 20px;
    }

        .ability .con01 .text > h3 {
            font-size: 22px;
            color: #222222;
            margin-bottom: 14px;
        }

        .ability .con01 .text > p {
            color: #353535;
            color: rgba(53,53,53,.8);
        }

        .ability .con01 .text .cn {
            font-size: 20px;
            color: #0462cc;
            margin-bottom: 5px;
        }

        .ability .con01 .text .en {
            color: transparent;
            -webkit-text-stroke: 1px #cef6f2;
            -ms-text-stroke: 1px #cef6f2;
            text-stroke: 1px #cef6f2;
            font-size: 66px;
            line-height: 1;
            font-family: 'en';
        }

        .ability .con01 .text .list {
            overflow: hidden;
            text-align: center;
            padding: 27px 0 60px;
            margin-right: -10px;
            margin-bottom: 45px;
            border-bottom: 1px solid #dfdfdf;
        }

            .ability .con01 .text .list .li {
                float: left;
                width: 230px;
                min-height: 305px;
                background-color: #f6f6f6;
                border-radius: 10px;
                padding: 44px 20px 0;
                margin-right: 10px;
            }

                .ability .con01 .text .list .li h4 {
                    font-size: 18px;
                    color: #3c4459;
                    margin: 15px 0 5px;
                }

                .ability .con01 .text .list .li p {
                    font-size: 12px;
                    color: #5d5d5d;
                    line-height: 20px;
                    text-align: center;
                }

        .ability .con01 .text .list02 {
            margin-top: 40px;
        }

            .ability .con01 .text .list02 .li {
                overflow: hidden;
                background-color: #f6f6f6;
                height: 326px;
                margin-top: 24px;
            }

                .ability .con01 .text .list02 .li .img {
                    width: 50%;
                    height: 326px;
                    float: left;
                }

                .ability .con01 .text .list02 .li .detailed {
                    padding: 34px 32px 0;
                    float: left;
                    width: 50%;
                }

                .ability .con01 .text .list02 .li.li_ri .img {
                    float: right;
                }

                .ability .con01 .text .list02 .li h4 {
                    font-size: 16px;
                    color: #616161;
                    margin-bottom: 20px;
                }

                .ability .con01 .text .list02 .li p {
                    color: #767676;
                }
/* ability2 */
.ability2 .page_box .detailed {
    padding-left: 457px;
}

    .ability2 .page_box .detailed .text {
        margin: 3px 0 20px;
    }

    .ability2 .page_box .detailed .img {
        width: 808px;
        height: 288px;
        position: relative;
        overflow: hidden;
    }

.ability2 .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .ability2 .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .ability2 .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .ability2 .con01 .name {
        overflow: hidden;
        border-bottom: 1px solid rgba(89, 89, 89, .3);
        margin-bottom: 60px;
    }

        .ability2 .con01 .name .li {
            float: left;
            font-size: 18px;
            color: #232323;
            line-height: 24px;
            padding-bottom: 20px;
            margin-right: 40px;
            text-transform: uppercase;
            cursor: pointer;
        }

            .ability2 .con01 .name .li.on {
                color: #0462cc;
                border-bottom: 3px solid #0462cc;
            }

    .ability2 .con01 .wrap .fl {
        width: 666px;
    }

    .ability2 .con01 .blue {
        min-height: 393px;
        background-color: #8da6c2;
        padding: 27px 30px;
        margin-top: 12px;
    }

    .ability2 .con01 .wrap {
        position: relative;
        overflow: hidden;
    }

        .ability2 .con01 .wrap .text h3 {
            font-size: 30px;
            color: #232323;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .ability2 .con01 .wrap .text p {
            color: #676767;
        }

    .ability2 .con01 .blue h3 {
        font-size: 20px;
        color: #fff;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .ability2 .con01 .blue p {
        padding-left: 18px;
        color: #fff;
        position: relative;
        margin-bottom: 10px;
    }

        .ability2 .con01 .blue p:before {
            content: '';
            width: 9px;
            height: 9px;
            background-color: #fff;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 8px;
        }

    .ability2 .con01 .img_side {
        width: 433px;
        height: 393px;
        position: absolute;
        bottom: 0;
        right: 0;
    }

        .ability2 .con01 .img_side .bd {
            width: 100% !important;
            height: 100% !important;
            overflow: hidden;
        }

            .ability2 .con01 .img_side .bd .item {
                width: 100% !important;
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
            }

                .ability2 .con01 .img_side .bd .item .img {
                    height: 100%;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                }

        .ability2 .con01 .img_side .hd {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 33px;
            margin: auto;
            text-align: center;
        }

            .ability2 .con01 .img_side .hd ul li.on {
                width: 32px;
                background: #0462cc;
                border-radius: 4px;
            }

            .ability2 .con01 .img_side .hd ul li {
                display: inline-block;
                width: 9px;
                height: 9px;
                background-color: rgba(96, 96, 96, .5);
                border-radius: 50%;
                margin: 0 2px;
                transition: all .4s;
                -webkit-transition: all .4s;
                cursor: pointer;
            }

table.names {
    width: 100%;
    font-size: 16px;
    color: #595959;
    border-width: 1px;
    border-color: rgba(89,89,89,.3);
    border-collapse: collapse;
}

    table.names tr {
        background-color: #fff;
    }

    table.names td {
        border-width: 1px;
        padding: 18px;
        border-style: solid;
        border-color: rgba(89,89,89,.3);
        border-top: none;
        border-right: none;
        border-left: none;
    }

table.schedule {
    width: 100%;
    color: #595959;
    color: rgba(89, 89, 89, .8);
    border-width: 1px;
    border-color: rgba(211,211,211,.5);
    border-collapse: collapse;
}

    table.schedule tr {
        background-color: #fff;
    }

    table.schedule td {
        border-width: 1px;
        padding: 8px 20px;
        border-style: solid;
        border-color: rgba(211,211,211,.5);
        border-top: none;
        border-right: none;
        border-left: none;
    }

        table.names td.num,
        table.schedule td.num {
            width: 280px;
        }

        table.names td.num01,
        table.schedule td.num01 {
            width: 332px;
        }

        table.names td.num02,
        table.schedule td.num02 {
            width: 588px;
        }
/* ability3 */
.ability3 .page_box .detailed {
    padding-left: 457px;
}

    .ability3 .page_box .detailed .text {
        margin: 3px 0 20px;
    }

    .ability3 .page_box .detailed .img {
        width: 808px;
        height: 288px;
        position: relative;
        overflow: hidden;
    }

.ability3 .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .ability3 .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .ability3 .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .ability3 .con01 .text p {
        color: #484848;
        font-size: 16px;
    }

    .ability3 .con01 .text ul {
        overflow: hidden;
        text-align: center;
    }

    .ability3 .con01 .text li {
        display: inline-block;
        width: 193px;
        height: 233px;
        background-image: url(../images/ability/ico30.png);
        background-repeat: no-repeat;
        background-position: center;
        padding-top: 107px;
        margin: 0 43px;
    }

        .ability3 .con01 .text li p {
            text-align: center;
            font-size: 14px;
            line-height: 20px;
            color: #676767;
            color: rgba(103,103,103,.9);
        }
/* supply */
.supply .page_box .detailed {
    padding-left: 457px;
}

    .supply .page_box .detailed .text {
        margin: 3px 0 20px;
    }

    .supply .page_box .detailed .img {
        width: 808px;
        height: 288px;
        position: relative;
        overflow: hidden;
    }

.supply .con01 {
    min-height: 800px;
    background-color: #f3f3f3;
    /* background: url(../images/about/ico34.jpg) no-repeat center top #e2edf5; */
    overflow: hidden;
    position: relative;
    padding-bottom: 75px;
}

    .supply .con01 .content {
        position: relative;
        height: 100%;
        padding-top: 310px;
    }

    .supply .con01 .bg {
        padding: 64px 65px 90px;
        margin: 0 -65px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .supply .con01 .text p {
        color: #484848;
        font-size: 14px;
    }

        .supply .con01 .text p strong {
            font-size: 16px;
            margin-bottom: 10px;
        }

    .supply .con01 .text ul {
        overflow: hidden;
    }

    .supply .con01 .text li {
        float: left;
        line-height: 62px;
        background-color: #e3edf0;
        background-color: rgba(227,237,240,.6);
        padding: 0 26px;
        margin-right: 10px;
    }

        .supply .con01 .text li p {
            font-size: 14px;
            line-height: 62px;
            color: #676767;
            color: rgba(103,103,103,.9);
        }

    .supply .con01 .text .link {
        color: #0462cc;
        line-height: 56px;
        padding: 0 40px 0 75px;
        background: url(../images/supply/ico3.png) no-repeat 38px center;
        background-color: #f1f1f1;
        display: inline-block;
        margin-bottom: 40px;
    }


@media screen and (max-height: 860px) {
    .pop .popBody {
        height: 520px;
        margin-top: -180px;
    }

        .pop .popBody > .scroll {
            height: 446px;
        }

    .recommend_side {
        height: 388px;
    }
}

@media screen and (max-width: 1366px) {
    .about .con01 .Map {
        margin-left: 0;
    }
}
