@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp10 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        -moz-transform: translateY(50px);
        -ms-transform: translateY(50px);
        -o-transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp10 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
        -moz-transform: translateY(50px);
        -o-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 circle_right {
    0% {
        transform: rotate(-135deg);
    }

    50%,
    100% {
        transform: rotate(45deg);
    }
}

@keyframes circle_right {
    0% {
        transform: rotate(-135deg);
    }

    50%,
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes circle_left {

    0%,
    50% {
        transform: rotate(-135deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes circle_left {

    0%,
    50% {
        transform: rotate(-135deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

.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
}

.fadeInUp10 {
    -webkit-animation-name: fadeInUp10;
    animation-name: fadeInUp10
}

.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
}

.circle_right {
    -webkit-animation-name: circle_right;
    animation-name: circle_right
}

.circle_left {
    -webkit-animation-name: circle_left;
    animation-name: circle_left
}

/* 公共部分 */

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.w1280 {
    width: 1280px;
    margin: 0 auto;
}

.Le {
    float: left;
}

.Ri {
    float: right;
}

p {
    color: #808080;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

.clear::after {
    content: '';
    clear: both;
    display: block;
}

.no_margin {
    margin-bottom: 0;
}

.img_bg {
    position: relative;
    overflow: hidden;
}

.img_bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transition: transform 1.5s .5s ease, -webkit-transform 1.5s .5s ease;
    -webkit-transition: transform 1.5s .5s ease, -webkit-transform 1.5s .5s ease;
    -moz-transition: transform 1.5s .5s ease, -webkit-transform 1.5s .5s ease;
    -ms-transition: transform 1.5s .5s ease, -webkit-transform 1.5s .5s ease;
    -o-transition: transform 1.5s .5s ease, -webkit-transform 1.5s .5s ease;
}

.img_bg.animated:after {
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
}



/* 内页公共标题 */
.page .content .titt {
    padding-top: 65px;
    padding-bottom: 35px;
    width: 1200px;
    margin: 0 auto;
}

.page .content .titt .CN {
    font-size: 24px;
    color: #4c4c4c;
    margin-bottom: 5px;
}

.page .content .titt .EN {
    font-family: 'RAJDHANI-SEMIBOLD';
    font-size: 24px;
    color: #b2bbd1;
    text-transform: uppercase;
    letter-spacing: -1px;
}





/* 公共部分结束 */



/* header */
.header ._btn_0 {
    display: none;
}

#header.showLoginBtn ._btn_0 {
    display: block;
    float: left;
}

#header.showLoginBtn ._btn_0 {
    margin-right: 25px;
}


#header,
.header {
    width: 100%;
    min-width: 1200px;
    max-width: 1920px;
    margin: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 998;
    height: 90px;
    box-sizing: border-box;
    /* border-bottom: 2px solid #1049a6; */
    transition: all .4s;
    -webkit-transition: all .4s;
    background-color: #fff;
    /* box-shadow: 0px 1px 6px rgba(220, 224, 230, 1); */
}

#header .logo,
.header .logo {
    position: absolute;
    top: 15px;
    left: 60px;
    width: 204px;
    height: 56px;
    background: url(/images/logo_.png) no-repeat center;
}

.header .nav {
    float: right;
}

#header .nav {
    /* position: absolute; */
    top: 0;
    right: 0;
    float: right;
}

.header .nav>ul {
    float: left;
    margin-right: 60px;
}

#header .nav>ul {
    float: left;
    margin-right: -30px;
}

#header .nav>ul li,
.header .nav>ul li {
    float: left;
    text-align: center;
    /* position: relative; */
}

#header .nav>ul li a,
.header .nav>ul li a {
    margin-right: 35px;
    /* padding: 0 15px; */
    /* padding-left: 40px; */
    /* margin: 0 3px; */
    line-height: 91px;
    color: #727272;
    display: inline-block;
    font-size: 15px;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: 600;
}

#header.on .nav>ul li a {
    color: #817f7f;
}

#header .nav>ul .channel {
    float: left;
    /* position: relative; */
    margin-right: 35px;
    margin-left: 20px;
}

#header .nav>ul .channel a {
    /* padding-right: 25px; */
    line-height: 91px;
    color: #727272;
    display: inline-block;
    font-size: 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: 600;
    margin-right: 0;
}

#header .nav>ul .channel a::before {
    /* content: ''; */
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    width: 23px;
    height: 20px;
    background: url(/images/hea_ico.png) no-repeat center;
}

#header .nav>ul .channel a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -27px;
    margin-top: -7px;
    width: 3px;
    height: 14px;
    background-color: #cccccc;
}

.header .nav>ul .nav_er .div_dl.div_dl1 {
    width: 670px;
}

#header .nav>ul .nav_er .div_dl.div_dl1 {
    width: 782px;
}

#header .nav>ul .nav_er .div_dl.div_dl2 {
    width: 687px;
}

#header .nav>ul .nav_er .div_dl.div_dl3 {
    width: 592px;
}

#header .nav>ul .nav_er .div_dl.div_dl4 {
    width: 498px;
}

#header .nav>ul .nav_er .div_dl.div_dl5 {
    width: 402px;
}

#header .nav>ul .nav_er .div_dl.div_dl6 {
    width: 307px;
}

#header .nav>ul .nav_er .div_dl.div_dl7 {
    width: 193px;
}



#header.header1 .nav>ul .nav_er .div_dl.div_dl1 {
    width: 731px;
}

#header.header1.success .nav>ul .nav_er .div_dl.div_dl1 {
    width: 754px;
}

#header.header1 .nav>ul .nav_er .div_dl.div_dl2 {
    width: 813px;
}

#header.header1 .nav>ul .nav_er .div_dl.div_dl3 {
    width: 717px;
}

#header.header1 .nav>ul .nav_er .div_dl.div_dl4 {
    width: 623px;
}

#header.header1 .nav>ul .nav_er .div_dl.div_dl5 {
    width: 528px;
}

#header.header1 .nav>ul .nav_er .div_dl.div_dl6 {
    width: 432px;
}

#header.header1 .nav>ul .nav_er .div_dl.div_dl7 {
    width: 666px;
}

#header .login_btn {
    background: url(/images/btn1.png) no-repeat center;
    margin-right: 10px;
    float: left;
}

#header .login_btn.on {
    background: url(/images/btn1on.png) no-repeat center;
}

#header .register_btn.on {
    background: url(/images/btn2on.png) no-repeat center;
}

#header .register_btn {
    background: url(/images/btn2.png) no-repeat center;
    float: left;
}

#header.header1 .nav>ul {
    margin-right: 5px;
}

#header ._btn_ {
    margin-right: 60px;
    float: left;
}

#header .lo_btn {
    height: 36px;
    width: 96px;
    margin-top: 27px;
}


#header .nav>ul .nav_er,
.header .nav>ul .nav_er {
    width: 100%;
    min-width: 1200px;
    max-width: 100%;
    position: absolute;
    top: 100%;
    /* bottom: 0px; */
    left: 0px;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    /* background-color: #f2f2f2; */
}

#header .nav>ul .nav_er6,
#header .nav>ul .nav_er7 {
    left: -117px;
}

#header .nav>ul .nav_er .div_dl,
.header .nav>ul .nav_er .div_dl {
    /* overflow: hidden;
    padding-left: 30px; */
    overflow: hidden;
    float: right;
}

#header .nav>ul .nav_er .div_dl a,
.header .nav>ul .nav_er .div_dl a {
    float: left;
    color: rgba(255, 255, 255, .5);
    /* color: #4c4c4c; */
    /* color: #808080; */
    line-height: 60px;
    font-size: 14px;
    transition: all .5s;
    font-weight: initial;
}

#header .nav>ul .nav_er .div_dl a:hover {
    color: rgba(255, 255, 255, 1);
    /* color: #4c4c4c; */
    transition: all .5s;
}

.indexBody #header .nav .inner_bor1 {
    left:  1189px;
}
#header .nav .inner_bor1 {
    height: 4px;
    background-color: #e5000c;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}
#header .nav .navLi4.on .nav_er{
    /* height: 180px !important; */
}

#header .head_ri {
    float: left;
    height: 90px;
    width: 75px;
    background: url(/images/head_ri.png) no-repeat center;
    /* margin-right: 30px; */
    cursor: pointer;
}

#header .menu {
    float: left;
    height: 90px;
    width: 24px;
    margin-right: 30px;
    background: url(/images/menu.png) no-repeat center;
    cursor: pointer;
}

#header .signBtn {
    float: right;
    width: 96px;
    height: 90px;
    margin-right: 30px;
    background: url(/images/btn1on.png) no-repeat center;
    cursor: pointer;
}

#header.header1 .bg.on {
    opacity: 1;
    pointer-events: auto;
}

#header .bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all .7s;
}

#header .bg.on {
    opacity: 1;
    transition: all .7s;
    pointer-events: auto;
}
/* #header .navLi4 .dl_diff{
    position: relative;
    overflow: hidden;
    float: left;
}
#header  .navLi4 .hea_child{
    width: 62%;
    overflow: hidden;
    border-top: 1px solid #d1d1d1;
}
#header  .navLi4 .hea_child a:nth-last-child(1){
    padding-right: 0;
}
#header  .navLi4 .hea_child a{
    padding-right: 35px;
    margin-right: 0;
}
#header .navLi4  .div_dl3{
    height: 180px;
    padding-top: 20px;
}
#header .navLi4 .div_dl3>a,#header  .navLi4 .dl_diff>a{
    color: #4c4c4c !important;
} */
#header .sidebar {
    position: fixed;
    top: 0;
    right: -00px;
    opacity: 0;
    transition: all .5s;
    z-index: 9999;
    pointer-events: none;
    background: url(/images/sidebar_bg.jpg) no-repeat bottom;
    width: 404px;
    height: 100vh;
    padding: 90px 50px 0;
}

#header .sidebar.on {
    opacity: 1;
    right: -00px;
    transition: all .5s;
    pointer-events: auto;
}

#header .sidebar .sidebar_Cont .Top {
    display: flex;
    justify-content: space-between;
}

#header .sidebar .menu_clone {
    /* position: absolute; */
    right: 52px;
    top: 90px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: url(/images/menu_clone.png) no-repeat center;
}

#header .sidebar .sidebar_Cont .Top h1 {
    font-family: 'RAJDHANI-BOLD';
    font-size: 48px;
    color: #bfbfbf;
    text-transform: uppercase;
    line-height: 1;
}

#header .sidebar_Cont .Midd ul {
    margin-top: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    overflow: hidden;
}

#header .sidebar_Cont .Midd .ul1 h3 {
    margin-bottom: 0;
}

#header .sidebar_Cont .Midd h3 {
    font-size: 16px;
    color: #4c4c4c;
    margin-bottom: 10px;
}

#header .sidebar_Cont .Midd li {
    float: left;
}

#header .sidebar_Cont .Midd li p {
    margin-bottom: 0;
    line-height: 27px;
}

#header .sidebar_Cont .Midd ul {
    display: flex;
    justify-content: space-between;
}

#header .sidebar_Cont .Bot h2 {
    font-family: 'zcoolwenyiti';
    margin-top: 140px;
    font-size: 48px;
    color: #2651bc;
    line-height: 1;
}

/* 搜索 */
#header .search_bg {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 90px);
    /* height: 100vh; */
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all .5s;
    z-index: -1;
    pointer-events: none;
}

#header .search_bg.on {
    opacity: 1;
}

#header .HSetchWrap.on .HSetch {
    height: 256px;

}

#header .HSetchWrap.on {
    height: 256px;
    opacity: 1;
    transition: all .6s;
}

#header .HSetchWrap.on .cBox {
    transform: translateY(0);
    transition: all .6s;

}

.HSetchWrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    transition: all .6s;
    height: 0;
    opacity: 0;
}

.HSetchWrap .HSetch {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transition: height .6s;
}

.HSetchWrap .HSetch .cBox {
    height: 257px;
    background-color: #f2f2f2;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: all .6s;
    transform: translateY(-100%);
}

.HSetch .cBox .w1280 {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3e3e3;
    transition: all .3s;
}

.HSetchWrap.on .HSetch .cBox .le {
    transform: translateX(0);
    opacity: 1;
}

.HSetch .cBox .le {
    transform: translateX(100px);
    opacity: 0;
    transition: all 1s ease 0.2s;
}

.HSetch .cBox .le .seInput {
    float: left;
    height: 26px;
    margin-top: 130px;
}

.HSetch .cBox .le .seInput input {
    float: left;
    width: 1200px;
    height: 30px;
    font-size: 26px;
    margin-top: -4px;
    color: #808080;
    font-weight: 400;
    /* caret-color: #e4dfda;
    opacity: .5; */
}

.HSetch .cBox .le .btn {
    float: right;
    width: 34px;
    height: 34px;
    background: url(/images/HSetch-btn.png) no-repeat 0 0;
    margin-top: 128px;
    cursor: pointer;
}


.indexBody #header.on {
    max-width: 2040px;
}


/* .indexBody #header,
.indexBody .header {
    max-width: 2040px;
} */

.indexBody #footer {
    max-width: 2040px;
}



/* 登录注册弹窗 */

.upload,
.box_sign,
.box_login,
.box_pass {
    display: none;
    position: relative;
}

.box_sign .gologin {
    width: 65px;
    height: 25px;
    position: absolute;
    bottom: 164px;
    left: 119px;
    cursor: pointer;
}


.box_sign .gopass {
    width: 65px;
    height: 25px;
    position: absolute;
    bottom: 164px;
    left: 297px;
    cursor: pointer;
}

.box_sign .signbtn {
    width: 320px;
    height: 60px;
    position: absolute;
    bottom: 194px;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
}

.box_login .gologin {
    width: 35px;
    height: 20px;
    position: absolute;
    bottom: 42px;
    left: 102px;
    cursor: pointer;
}













/*内面导航 */

.page {
    margin-top: 90px;
}

.page_ban {
    height: 350px;
    position: relative;
    margin-top: 90px;
    z-index: 101;
}


.page_ban .img {
    width: 100%;
    height: 100%;
    background: no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    /* -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    _filter: none; */
}

.page .content {
    position: relative;
    height: 100%;
    overflow: hidden;
    max-width: 1920px;
    margin: auto;
}

.page .content.about4,.page .content.news1,
.page .content.respon1,.page .content.respon2,
.page .content.join1{
    margin-bottom: 80px;
}

.content .img {
    position: relative;
    height: 254px;
    overflow: hidden;
}

.content .img .bg {
    height: 100%;
    background: no-repeat center;

}

.content .img .w1200 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding-top: 150px;
}

.content .img .h1 {
    font-family: 'RAJDHANI-SEMIBOLD';
    font-size: 48px;
    color: #fff;
    text-transform: capitalize;
    line-height: 40px;
    opacity: .8;
    filter: alpha(opacity=80);
    text-align: right;
    letter-spacing: -2px;
}

.content.about_join .img,
.content.joinus_join .img {
    height: 400px;
}

.content.about_join .img .w1200,
.content.joinus_join .img .w1200 {
    padding-top: 170px;
}

.content.about_join .h1,
.content.joinus_join .h1 {
    font-family: unset;
    font-size: 48px;
    color: #fff;
    text-transform: none;
    line-height: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    text-align: left;
    letter-spacing: 0;
    font-style: italic;
    font-weight: 600;
}

.page_nav {
    width: 1200px;
    margin: auto;
    /* position: absolute;
    left: 0;
    right: 0;
    top: 254px; */
    height: 75px;
    position: relative;
}

.page_nav::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1920px;
    margin-left: -960px;
    height: 1px;
    background-color: #e6eaed;
}

.page_nav a {
    float: left;
    line-height: 74px;
    position: relative;
    font-size: 15px;
    color: #777d8c;
}

.page_nav .list {
    position: relative;
    float: right;
}

.page_nav .list a {
    color: #8c867d;
    margin-right: 55px;
    position: relative;
}

.page_nav .list a:nth-last-child(1) {
    margin-right: 0;
}

.page_nav .name {
    float: left;
}

.page_nav .name a {
    padding-left: 25px;
    background: url(/images/icon_nav.png) no-repeat left center;
}

.page_nav .name a+a {
    padding-left: 20px;
    margin-left: 15px;
    background: url(/images/icon_nav02.png) no-repeat left 34px;
}

.page_nav .name a::before {
    content: unset;
}

.page_nav a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -27px;
    width: 3px;
    height: 3px;
    background-color: #c5cad6;
    margin-top: -1.5px;
}

.page_nav a:nth-last-child(1)::before {
    content: unset;
}

.page_nav a.on {
    color: #2651bc;
    border-bottom: 1px solid #3059be;
}



/* 弹窗 */
.pop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}

/* #header.header1 .pop .bg{
      background-color: transparent;
} */
.pop .bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
}

.pop .cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/* footer */
#pageFooter {
    height: 150px;
    background-color: #393c47;
    padding-top: 40px;
    width: 100%;
}

#pageFooter .Le>p:nth-child(1) {
    display: flex;
}

#pageFooter .Le>p {
    margin-bottom: 0;
    color: #a6a6a6;
}
#pageFooter .Le a{
    color: #a6a6a6;
    display: inline-block;
}
#pageFooter .Le>p>a {
    margin-left: 8px;
}

#pageFooter .Le em {
    margin-left: 8px;
    position: relative;
}
#pageFooter .Le em.foot_statement{
    cursor: pointer;
}

#pageFooter .Le em::before {
    content: '·';
    position: absolute;
    left: -6px;
    top: 0;
}

#pageFooter .Le em:nth-child(1):before {
    content: unset;
}

#pageFooter .Ri {
    width: 360px;
}

#pageFooter .Ri .li2 {
    margin-left: 40px;
}

#pageFooter .Ri .li2 p {
    font-family: 'Gilroy_Bold';
    font-size: 24px;
    color: #e50019;

}

#pageFooter .Ri li {
    float: left;
    position: relative;

}

#pageFooter .Ri li img {
    float: left;
}

#pageFooter .Ri li p {
    float: left;
    line-height: 46px;
    margin-left: 8px;
    color: #a6a6a6;
}



/* banner */

.banner {
    position: relative !important;
    width: 100%;
    height: 610px !important;
    position: relative;
    margin: 90px auto 0 !important;
    max-width: 2040px;
    cursor: initial;
    /* pointer-events: none; */
}

.banner #video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .bd {
    width: 100%;
    overflow: hidden;
}

.banner .bd ul {
    width: 100% !important;
}

.banner .bd li {
    width: 100% !important;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.banner .bd li .img {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.banner .bd li .content {
    width: 1200px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}


.banner .bd li .ban_t {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 1200px;
    margin: auto;
    z-index: 99;
    text-align: left;
}

/* .banner .bd li .ban_t .animated{
    -webkit-animation-delay:.5s;
    animation-delay: .5s;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
} */

.banner .bd li .ban_t .cn {
    font-family: 'zcoolwenyiti';
    font-size: 52px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.banner .bd li .ban_t .en {
    font-family: 'RAJDHANI-SEMIBOLD';
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    font-size: 22px;
    letter-spacing: -1px;
}

.banner .bd li .ban_t1::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 21px;
    width: 420px;
    height: 420px;
    background: url(/images/ban/ban_ico2.png) no-repeat center;
    transition-delay: 1s;
}

.banner .bd li .ban_t1 {
    padding-top: 210px;
}

.banner .bd li .ban_t1 .cn {
    color: #2651bc;
}

.banner .bd li .ban_t2 {
    padding-top: 80px;
}

.banner .bd li .ban_t2 p img{
    display: block;
    margin: 0 auto;
}

.banner .bd li .ban_t2 .cn {
    color: #fff;
    margin-bottom: 20px;
}

.banner .bd li .ban_t4,.banner .bd li .ban_t3 {
    padding-top: 210px;
}

/* .banner .bd li .ban_t4 .cn {
    margin-bottom: 20px;
} */

.banner .bd li .ban_t4 {
    padding-top: 35px;
}

.banner .bd li .ban_t4 h3 {
    color: #829ab5;
    font-size: 43px;
    line-height: 1;
    margin-bottom: 15px;

}

.banner .bd li .ban_t4 h5 {
    color: #fff;
    font-size: 43px;
    line-height: 1;

}

.banner .bd li .ban_t4 .ban_dian {
    margin: 25px 0 40px;

}

.banner .bd li .content .ban_t2 .text01 {
    float: right;
}

.banner .bd li .content .ban_t .text1 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.banner .bd li .content .ban_t4 .text1 p{
    opacity: .3;
}

.banner .bd li .content .ban_t .text02 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.banner .hd {
    position: absolute;
    left: 0;
    bottom: 3%;
    z-index: 99;
    right: 0;
    width: 1200px;
    height: 20px;
    margin: auto;
    text-align: center;
}

.banner .hd ul {
    /* float: right; */
}

.banner .hd ul li {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    line-height: 1;
    margin: 0 4px;
    border: 3px solid #fff;
    border-radius: 50%;
    /* transition: transform 0s 0s,opacity 0s 0s,background-color .3s; */
    /* transform: translateY(20px); */
    opacity: 1;
    cursor: pointer;
    box-sizing: border-box;
    float: left;
}

.banner .hd ul li.on {
    display: block;
    transform: translateY(0px);
    opacity: 1;
    background-color: #fff;
    /* transition: transform .4s .6s,opacity .4s .6s,background-color .3s; */
}

.banner .hd ul li div {
    box-sizing: unset;
}

.banner .hd ul li em {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    line-height: 98px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.banner .hd ul li .circle_process {
    display: none;
}

.banner .hd ul li.on .circle_process {
    display: block;
}

.btnWrap {
    position: absolute;
    bottom: 35px;
    right: 233px;
    z-index: 99;
    pointer-events: auto;
}

.banner .btnWrap .box .playState.play {
    background-image: url("/images/icon_pause1.png");
    background-position: center;

}

.banner .btnWrap .box .playState.stop {
    background-image: url("/images/icon_play.png");
    background-position: center;
}

.banner .btnWrap .box .playState {
    float: left;
    width: 44px;
    height: 44px;
    margin-left: 58px;
    margin-right: 58px;
    cursor: pointer;
    background: no-repeat center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    border: 2px solid #ffffff;
    transition: all .3s;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.banner .next,
.banner .prev {
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    z-index: 99;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    transition: all .7s;
}

.banner .next {
    right: 0;
    background: #fff url("../images/icon_next.png") no-repeat center;
}

.banner .prev {
    left: 0;
    background: #fff url("../images/icon_prev.png") no-repeat center;
}

.banner .prev:hover {
    background-position: 5px center;
}

.banner .next:hover {
    background-position: 23px center;
}


/* 众博在线登录_众博(中国)  */
.index_Cont1 {
    position: relative;
    height: 304px;
    overflow: hidden;
    /* margin-bottom: 20px; */
    padding-top: 40px;
    max-width: 2040px;
    margin: 0 auto 20px;

}

.index_Cont1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -545px;
    width: 1090px;
    height: 304px;
    background: url(/images/index/c1_lebg.png) no-repeat center;
    z-index: -1;
}

.index_Cont1 .ct_le {
    width: 600px;
    float: left;
    position: relative;
}

.index_Cont1 .ct_le .img_Bx {
    /* background: url(/images/index/ct_le2.jpg) no-repeat center !important; */
    height: 264px;
}

.index_Cont1 .ct_le .ct_leBox {
    width: 180px;
    height: 100%;
    background-color: rgba(205, 172, 125, .9);
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 25px;
}
.index_Cont1 .ct_le .ct_leBox h3{
    color: #e5011a;
    font-size: 22px;
    transition: all .6s;
    /* line-height: 45px; */
    text-align: center;
    padding-bottom: 22px;
    font-weight: 600;
    opacity: 0;
}

.index_Cont1 .ct_le .ct_leBox p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, .25);
    border-bottom: 2px solid rgba(255, 255, 255, .25);
    padding: 40px 0 85px;
    position: relative;
}

.index_Cont1 .ct_le .ct_leBox p::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    background: url(/images/index/in_ico1.png) no-repeat center;
    width: 18px;
    height: 18px;
    margin: auto;

}

.index_Cont1 .ct_ri {
    float: right;
    width: 600px;
    background-color: #fff;
    padding-left: 30px;
    position: relative;
}

.index_Cont1 .ct_ri .news_Tab {
    position: absolute;
    top: 0;
    left: 145px;
}

.index_Cont1 .ct_ri .news_Tab li {
    float: left;
    margin-right: 25px;
    color: #808080;
    font-size: 15px;
    cursor: pointer;
}

.index_Cont1 .ct_ri .news_Tab li.on {
    color: #0637b2;
}

.index_Cont1 .news_T {
    overflow: hidden;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e5e3;
}

.index_Cont1 .news_T .news_T-date {
    width: 100px;
    height: 120px;
    background-color: #f0f0f0;
    padding: 40px 15px 25px;
    font-family: 'Gilroy_Bold';
    text-align: right;
    float: left;

}

.index_Cont1 .news_T .news_T-date .day {
    color: #e50019;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 5px;
}

.index_Cont1 .news_T .news_T-date .year {
    font-size: 18px;
    color: #b2b2b2;
}

.index_Cont1 .news_T .news_T-txt {
    width: 450px;
    margin-top: 40px;
    margin-left: 20px;
    float: left;
}

.index_Cont1 .news_T .news_T-txt h3 {
    font-family: 'Gilroy_Medium';
    color: #4c4c4c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.index_Cont1 .news_T .news_T-txt p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    word-break: break-all;
    overflow: hidden;
    max-width: 100%;
}

.index_Cont1 .news_B {
    padding-top: 20px;

}

.index_Cont1 .news_B li {
    margin-bottom: 5px;
    /* font-family: 'Gilroy_Medium'; */
    overflow: hidden;
}

.index_Cont1 .news_B .news_B-date {
    font-size: 16px;
    color: #b2b2b2;
    float: left;
}

.index_Cont1 .news_B .news_B-txt {
    float: left;
    margin-left: 20px;
    font-size: 15px;
    color: #4c4c4c;
    /* margin-left: 25px; */
    /* font-weight: 600; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    word-break: break-all;
    overflow: hidden;
    max-width: 100%;
    width: 380px;

}


.index_Cont2 {
    height: 290px;
    background: url(/images/index-cont2.jpg) no-repeat center top;
}

.index_Cont2 .yuxList {
    width: 1200px;
    height: 270px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.index_Cont2 .yuxList .li {
    /* width: 800px; */
    width: 1200px;
    position: absolute;
    top: 0;
    height: 270px;
}

.index_Cont2 .yuxList .li .dt {
    float: left;
    width: 180px;
    height: 270px;
    position: relative;
    padding: 85px 0 75px;
    transition: all .6s;
    background: url(/images/index/dt_bg.jpg) no-repeat center;
}

.index_Cont2 .yuxList .li.on .dt {
    background: url(/images/index/dt_bgon.jpg) no-repeat center;
    transition: all .6s;

}

.index_Cont2 .yuxList .li .dt h4 {
    color: #757d8d;
    font-size: 18px;
    transition: all .6s;
    text-align: center;
}

.index_Cont2 .yuxList .li.on .dt h4 {
    transition: all .6s;
    color: #fff;

}

.index_Cont2 .yuxList .li .dt p {
    color: rgba(84, 104, 126, .45);
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'RAJDHANI-BOLD';
    text-align: center;
}

.index_Cont2 .yuxList .li.on .dt p {
    color: rgba(255, 255, 255, .45);
}

.index_Cont2 .yuxList .li .dt .icon {
    transition: all .6s;
    margin: 0 auto 30px;
}

.index_Cont2 .yuxList .li1 .dt .icon {
   
    width: 38px;
    height: 38px;
    background: url(/images/index/dt_ic3.png) no-repeat center;
}

.index_Cont2 .yuxList .li1.on .dt .icon {
    background: url(/images/index/dt_ic3on.png) no-repeat center;
    transition: all .6s;
}

.index_Cont2 .yuxList .li2 .dt .icon {
    width: 34px;
    height: 34px;
    background: url(/images/index/dt_ic1.png) no-repeat center;
}

.index_Cont2 .yuxList .li2.on .dt .icon {
    background: url(/images/index/dt_ic1on.png) no-repeat center;
    transition: all .6s;
}

.index_Cont2 .yuxList .li3 .dt .icon {
  
    width: 43px;
    height: 34px;
    background: url(/images/index/dt_ic2.png) no-repeat center;
}

.index_Cont2 .yuxList .li3.on .dt .icon {
    background: url(/images/index/dt_ic2on.png) no-repeat center;
    transition: all .6s;
}


.index_Cont2 .yuxList .li .dt img {
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .4s ease-in-out;
}

.index_Cont2 .yuxList .li .dt img:nth-child(1) {
    opacity: 1;
}

.index_Cont2 .yuxList .li .dt img:nth-child(2) {
    opacity: 0;
}

.index_Cont2 .yuxList .li.on .dt img:nth-child(1) {
    opacity: 0;
}

.index_Cont2 .yuxList .li.on .dt img:nth-child(2) {
    opacity: 1;
}



.index_Cont2 .yuxList .li .dd {
    float: left;
    width: 0;
    height: 100%;
    overflow: hidden;
}

.index_Cont2 .yuxList .li .dd img {
    width: auto;
    max-width: none;
}


.index_Cont2 .yuxList .li.li1 {
    left: 0px;
}

.index_Cont2 .yuxList .li.li2 {
    /* left: 820px; */
    left: 1020px;
}

.index_Cont2 .yuxList .li.li3 {
    left: 1020px;
}

.index_Cont2 .Le,
.index_Cont2 .Ri {
    z-index: 10;
}

/* 众博在线登录_众博(中国) 结束 */







/* 关于部分 */
.about .about_npm1 .ab1_leImg{
    position: relative;
    bottom: -20px;
}
.about .about_npm1 {
    margin-top: 75px;
    margin-bottom: 20px;
}

.about .about_npm1 .le {
    float: left;
    width: 400px;
    min-height: 365px;
    /* background: url(/images/about/bg1.png) no-repeat; */
    /* background-position: bottom; */
}

.about .about_npm1 .le h1 {
    color: #2651bc;
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    font-family: 'RAJDHANI-BOLD';
}

.about .about_npm1 .le h1 em {
    color: #e50019;
}

.about .about_npm1 .le h2 {
    color: #4c4c4c;
    font-size: 24px;
}

.about .about_npm1 .ri {
    float: right;
    width: 800px;
    /* height: 365px; */
    /* overflow-y: auto; */
    padding-right: 5px;
}

.about .about_npm1 .ri p {
    color: #808080;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
}
.about .about_npm1 .ri p.no_margin {
    margin-bottom: 0;
}

.about .about_npm2 .box {
    background: url(/images/about/about_bg1.jpg) no-repeat;
    background-size: cover;
    height: 368px;
    padding: 0 49px;
}

.about .about_npm2 .box .le {
    float: left;
    margin-top: 60px;
}

.about .about_npm2 .box .le h1 {
    font-size: 38px;
    color: #2651bc;
    line-height: 45px;
    font-family: 'zcoolwenyiti';
    position: relative;
}

.about .about_npm2 .box .le h1::after {
    content: '';
    background: #2651bc;
    position: absolute;
    width: 8px;
    height: 75px;
    top: 5px;
    left: -48px;
}

.about .about_npm2 .box .le h2 {
    font-size: 18px;
    color: #444559;
    margin-top: 25px;
}

.about .about_npm2 .box .ri {
    width: 379px;
    float: right;
    margin-top: 45px;
    position: relative;
}

.about .about_npm2 .box .ri .ul .li i {
    width: 8px;
    height: 8px;
    background: rgba(229, 0, 25, .7);
    display: block;
    border-radius: 50%;
    position: absolute;
    bottom: 75px;
    right: 127px;
}

.about .about_npm2 .box .ri .ul .li i::before {
    content: '';
    width: 44px;
    height: 44px;
    position: absolute;
    border-radius: 50%;
    left: -18px;
    top: -18px;
    /* 不支持浏览器的后备 */
    /* 	    background: #000000; */
    /* 新的WebKit语法 */
    background-image: -webkit-radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    background-image: -moz-radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    /* IE10 + */
    background-image: -ms-radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    /* Opera (13?) */
    background-image: -o-radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    /* 标准写法*/
    background-image: radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    -webkit-animation: z-scale 1.5s ease infinite alternate;
    animation: z-scale 1.5s ease infinite alternate;
}

.about .about_npm2 .box .ri .ul .li i::after {
    content: '';
    width: 88px;
    height: 88px;
    position: absolute;
    border-radius: 50%;
    left: -39px;
    top: -39px;
    -webkit-animation: z-scale 1.5s ease infinite alternate;
    animation: z-scale 1.5s ease infinite alternate;
    /* 不支持浏览器的后备 */
    /* 	    background: #000000; */
    /* 新的WebKit语法 */
    background-image: -webkit-radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    background-image: -moz-radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    /* IE10 + */
    background-image: -ms-radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    /* Opera (13?) */
    background-image: -o-radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
    /* 标准写法*/
    background-image: radial-gradient(center center, circle contain, rgb(229 0 12 / 2%) 0%, rgb(229 0 12 / 10%) 60%, rgb(229 0 12 / 26%) 90%, #aa6771 100%);
}

@-webkit-keyframes z-scale {
    0% {
        -webkit-transform: scale(.85);
        transform: scale(.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.about .about_npm3 {
    height: 455px;
    margin-top: 80px;
    background: url(/images/about/about_bg2.jpg) no-repeat center;
}

.page .content.about {
    padding-bottom: 0;
}

.about .about_npm3 .w1200 {
    position: relative;
    height: 100%;
}

.about .about_npm3 .w1200 .txt {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.about .about_npm3 .w1200 .txt .play {
    float: left;
    margin-right: 90px;
}

.about .about_npm3 .w1200 .txt h1 {
    float: right;
    color: #fff;
    font-size: 30px;
    line-height: 43px;
    font-weight: 100;
}

.about1 .box {
    /* margin-top: 30px; */
}

.about1 .box .time {
    background: url(/images/about/bg2.png) no-repeat;
    background-size: cover;
    width: 288px;
    height: 288px;
    float: left;
    margin-right: 16px;
    padding: 48px 29px;
}

.about1 .box .time:nth-child(4n) {
    margin-right: 0;
}

.about1 .box .time h1 {
    font-size: 22px;
    color: #4c4c4c;
    margin-bottom: 5px;
}

.about1 .box .time h2 {
    font-size: 16px;
    color: #808080;
    letter-spacing: -.7px;
}

.about1 .box .time .line {
    width: 50px;
    height: 4px;
    margin: 15px 0;
    background: url(/images/about/line.jpg) no-repeat;
}

.about1 .box .time .p {
    color: #808080;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

.about2 .about_npm1 {
    background: url(/images/about/bg3.png) no-repeat center;
    padding-bottom: 293px;
    background-position: bottom;
}

.page .content.about2 {
    padding-bottom: 0;
}

.about2 .ul .li {
    padding: 50px 0 47px 0;
    border-bottom: 2px solid #ebeff7;
    position: relative;
    overflow: hidden;
}

.about2 .ul .li::before {
    content: '';
    width: 2px;
    height: 100%;
    background: #ebeff7;
    position: absolute;
    left: 197px;
    top: 0;
}

.about2 .ul .li::after {
    content: '';
    width: 63px;
    height: 2px;
    background: #ebeff7;
    position: absolute;
    left: 199px;
    top: 60px;
}

.about2 .ul .li:nth-child(1) {
    padding: 5px 0 47px 0;
}

.about2 .ul .li:nth-child(1)::before {
    height: 95px;
    top: 15px;
}

.about2 .ul .li:nth-child(1)::after {
    top: 15px;
}

.about2 .ul .li .le {
    float: left;
    width: 197px;
    color: #2651bc;
    font-size: 36px;
    line-height: 36px;
    margin-top: -5px;
    font-family: 'zcoolwenyiti';
}

.about2 .ul .li .ri {
    float: right;
    width: 910px;
}

.about2 .ul .li .ri h1 {
    color: #e50019;
    font-size: 30px;
    font-family: 'RAJDHANI-SEMIBOLD';
    margin-bottom: 10px;

}

.about2 .ul .li .ri p {
    color: #808080;
    font-size: 16px;
    margin-bottom: 0;
}

.about3 .about_npm1 .le {
    float: left;
    width: 360px;
}

.about3 .about_npm1 .le .titt {
    width: 100%;
}

.about3 .about_npm1 .le .ul .li {
    border-bottom: 2px solid #e9ecf2;
    padding: 23px 0 28px 0;
    background-position: 360px 50% !important;
    transition: all .3s;
    position: relative;
}

.about3 .about_npm1 .le .ul .li::after {
    content: '';
    width: 54px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s;
    opacity: 0;
}

.about3 .about_npm1 .le .ul .li:last-child {
    border-bottom: none;
}

.about3 .about_npm1 .le .ul .li:nth-child(1) {
    padding: 0 0 28px 0;
}

.about3 .about_npm1 .le .ul .li:nth-child(1)::after {
    background: url(/images/about/ico1.png) no-repeat;
}

.about3 .about_npm1 .le .ul .li:nth-child(2)::after {
    width: 46px;
    height: 46px;
    background: url(/images/about/ico2.png) no-repeat;
}

.about3 .about_npm1 .le .ul .li:nth-child(3)::after {
    width: 50px;
    height: 39px;
    background: url(/images/about/ico3.png) no-repeat;
}

.about3 .about_npm1 .le .ul .li:nth-child(4)::after {
    width: 46px;
    height: 46px;
    background: url(/images/about/ico4.png) no-repeat;
}

.about3 .about_npm1 .le .ul .li:nth-child(5)::after {
    width: 43px;
    height: 48px;
    background: url(/images/about/ico5.png) no-repeat;
}

.about3 .about_npm1 .le .ul .li:hover {
    background-position: 306px 50% !important;
}

.about3 .about_npm1 .le .ul .li:hover h2 {
    font-size: 17px;
    color: #2651bc;
}

.about3 .about_npm1 .le .ul .li:hover h1 {
    font-size: 30px;
}

.about3 .about_npm1 .le .ul .li:hover::after {
    opacity: 1;
}

.about3 .about_npm1 .le .ul .li h1 {
    color: #4c4c4c;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 5px;
    font-weight: 100;
    transition: all .3s;
}

.about3 .about_npm1 .le .ul .li h2 {
    color: #808080;
    transition: all .4s;
    font-size: 14px;
}

.about3 .about_npm1 .ri {
    width: 750px;
    float: right;
    margin-top: 80px;
    position: relative;
}

.about3 .about_npm1 .ri .itme {}


.about3 .about_npm1 .ri .p {
    margin-top: 25px;
    padding-left: 25px;
    position: relative;
    background: url(/images/about/ico6.png) no-repeat;
    background-position: 5px 50%;
    font-size: 14px;
    color: #808080;
    line-height: 24px;
}

.about3 .about_npm1 {
    background: url(/images/about/bg4.png) no-repeat;
    background-position: left bottom;
    padding-bottom: 100px;
}

.page .content.about3 {
    padding-bottom: 0;
}

.about4 .about_npm1 .top .time {
    width: 400px;
    float: left;
    background: #e9ecf2;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.about4 .about_npm1 .top .time::after {
    content: '';
    width: 2px;
    height: 12px;
    background: #bac2d1;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
}

.about4 .about_npm1 .top .time:last-child::after {
    display: none;
}

.about4 .about_npm1 .top .time p {
    color: #8d94a6;
    font-size: 32px;
    line-height: 84px;
    font-family: 'RAJDHANI-SEMIBOLD';
    text-align: center;
    margin: auto;
    display: initial;
    position: relative;
}

.about4 .about_npm1 .top .time.on::after {
    background: #2651bc;
}

.about4 .about_npm1 .top .time.on {
    background: #2651bc;

}

.about4 .about_npm1 .top .time.on p {
    color: #fff;
    padding-left: 20px;
}

.about4 .about_npm1 .top .time.on p::after {
    content: '';
    width: 10px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    background: url(/images/about/ico7.png) no-repeat;
}

.about4 .about_npm1 .box .time {

    display: none;
}

.about4 .about_npm1 .box .time:nth-child(2) .ul {
    padding: 75px 0 0;
}

.about4 .about_npm1 .box .time:nth-child(2) .ul h2 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 73%;
    bottom: 0;
}

.about4 .about_npm1 .box .time .ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 75px 118px 0;
}

.about4 .about_npm1 .box .time .ul .li {
    margin-right: 35px;
    position: relative;
    padding: 0px 45px 0;
    min-height: 113px;
    margin-bottom: 50px;

}

.about4 .about_npm1 .box .time:nth-child(1) {
    display: block;
}

.about4 .about_npm1 .box .time .ul .li:last-child {
    margin-right: 0;
}

.about4 .about_npm1 .box .time .li::after {
    content: '';
    width: 46px;
    height: 113px;
    background: url(/images/about/ico8.png) no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

.about4 .about_npm1 .box .time .li::before {
    content: '';
    width: 46px;
    height: 113px;
    background: url(/images/about/ico9.png) no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}

.about4 .about_npm1 .box .time .li h1 {
    font-size: 14px;
    color: #4c4c4c;
    text-align: center;
    line-height: 22px;
}

.about4 .about_npm1 .box .time .li h2 {
    font-size: 14px;
    color: #808080;
    position: relative;
    height: 60px;
    text-align: center;
    padding: 45px 15px 0;
}

.about4 .about_npm1 .box .time .li h2::after {
    content: '';
    width: 12px;
    height: 12px;
    background: url(/images/about/ico10.png) no-repeat;
    position: absolute;
    left: 50%;
    top: 13px;
    transform: translateX(-6px);

}

.about4 .about_npm1 .box .time:nth-child(1) .li:nth-child(2) {
    margin-right: 0;
}

/* 关于部分 结束 */











/* 新闻版块 */
.news_cont1 {
    height: 390px;
    position: relative;
    overflow: hidden;
}

.news_cont1 .Le {
    width: 400px;
    height: 390px;
    padding: 45px 38px;
    background-color: #f2f2f2;
    font-family: 'RAJDHANI-BOLD';

}

.news_cont1 .Le .date {
    font-size: 24px;
    color: #999;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.news_cont1 .Le h3 {
    font-size: 22px;
    letter-spacing: -1px;
    color: #4c4c4c;
    margin-bottom: 25px;

}

.news_cont1 .Le .btn {
    width: 160px;
    height: 60px;
    font-size: 16px;
    color: #fff;
    padding-left: 30px;
    line-height: 60px;
    background: #e50019 url(../images/news/ico1.png) no-repeat 108px center;
    background-size: 12px 12px;
    transition: all .5s;
    margin-top: 45px;
}

.news_cont1 .Le .btn:hover {
    background-color: #d00d22;
    transition: all .5s;
}

.news_cont2 {
    padding-top: 80px;
    overflow: hidden;
    position: relative;
}

.news_cont2 .xian {
    position: relative;
}

.news_cont2 .xian::before {
    content: '';
    position: absolute;
    left: 400px;
    top: -80px;
    width: 2px;
    height: 765px;
    background: url(/images/news/ico4.png) no-repeat top;
    z-index: 10;
}

.news_cont2 .Le h4 {
    font-size: 18px;
    color: #4c4c4c;
    line-height: 1;
    margin-bottom: 30px;
}

.news_cont2 .Le .c_down,
.bus1_cont1 .ct_Top .c_down {
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    height: 60px;
    width: 350px;
    position: relative;
}

.news_cont2 .Le .c_down span,
.bus1_cont1 .ct_Top .c_down span {
    height: 58px;
    line-height: 58px;
    padding-left: 17px;
    font-size: 14px;
    color: #bfbfbf;
    background: url(/images/news/news_icon_year.png) no-repeat 30px center;
    cursor: pointer;
    display: block;
}

.news_cont2 .Le .c_down span:after,
.bus1_cont1 .ct_Top .c_down span::after {
    content: "";
    display: block;
    position: absolute;
    right: -2px;
    top: -2px;
    width: 60px;
    height: 60px;
    background: #e0e0e0 url(../images/news/ico2.png) no-repeat center;
}
.news1 .news_cont2 .Le .c_down ul{
    width: 350px;
}
.news_cont2 .Le .c_down ul {
    width: 355px;
}

.news_cont2 .Le .c_down ul,
.bus1_cont1 .ct_Top .c_down ul {
    display: none;
    top: 58px;
    max-height: 302px;
    position: absolute;
    left: -2px;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    z-index: 10;
}

.news_cont2 .Le .c_down li:nth-last-of-type(1)::before,
.join_Positions .join_npm1 .topit .li .drop-down ul li:nth-last-of-type(1)::before,
.bus1_cont1 .ct_Top .c_down li:nth-last-of-type(1)::before {
    content: unset;
}

.news_cont2 .Le .c_down li,
.bus1_cont1 .ct_Top .c_down li {
    padding-left: 30px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #bfbfbf;
    background: #f2f2f2;
    /* border-bottom: 2px solid #e6e6e6; */
    transition: all .5s;
    font-family: "Gilroy-Medium";
    position: relative;
}

.news_cont2 .Le .c_down li::before,
.join_Positions .join_npm1 .topit .li .drop-down ul li::before,
.bus1_cont1 .ct_Top .c_down li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 83%;
    height: 2px;
    background-color: #e6e6e6;
}

.news_cont2 .Le .c_down li:hover,
.bus1_cont1 .ct_Top .c_down li:hover {}

.news_cont2 .Le .c_down li:hover,
.bus1_cont1 .ct_Top .c_down li:hover {
    color: #2651bc;
    /* background: #e60013; */
    transition: all .5s;
}

.news_cont2 .Le .ipt_box,
.bus1_cont1 .ct_Top .ipt_box {
    position: relative;
    border: 2px solid #e0e0e0;
    height: 60px;
}

.news_cont2 .Le .ipt_box input,
.bus1_cont1 .ct_Top .ipt_box input {
    width: 100%;
    height: 58px;
    line-height: 58px;
    border: 0 none;
    font-size: 14px;
    color: #bfbfbf;
    padding: 0 90px 0 17px;
    background: url(/images/news/news_icon_key.png) no-repeat 30px center;
}

.news_cont2 .Le .ipt_box .btn,
.bus1_cont1 .ct_Top .ipt_box .btn {
    position: absolute;
    right: -2px;
    top: -2px;
    width: 60px;
    height: 60px;
    background: #2651bc url(../images/news/ico3.png) no-repeat center;
}

.bus1_cont1 .cont_Box {
    position: relative;
    overflow: hidden;
    display: block;
}

.news_cont2 .Le .ipt_box input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #bfbfbf;
}

.news_cont2 .Le .ipt_box input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #bfbfbf;
}

.news_cont2 .Le .ipt_box input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #bfbfbf;
}

.news_cont2 .Le .ipt_box input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #bfbfbf;
}

.news_cont2 .Ri>a:nth-child(1) {
    margin-top: 0;
}

.news_cont2 .Ri>a:nth-last-of-type(1) {
    border-bottom: none;

}

.news_cont2 .Ri a:nth-last-of-type(1) {
    border-bottom: none;
}

.news_cont2 .Ri a,
.news_ct .w1200 a {
    overflow: hidden;
    display: block;
    padding-bottom: 35px;
    margin-top: 35px;
    border-bottom: 2px solid #ededed;
}

.news_cont2 .Ri a:hover .time_date,
.news_ct .w1200 a:hover .time_date {
    color: #808080;
    transition: all .5s;
}

.news_cont2 .Ri a:hover .news_text h3,
.news_ct .w1200 a:hover .news_text h3 {
    color: #e50019;
    transition: all .5s;
}

.news_cont2 .Ri .time_date,
.news_ct .time_date {
    float: left;
    margin-right: 15px;
    font-size: 22px;
    color: #999999;
    font-family: 'RAJDHANI-BOLD';
    transition: all .5s;
    letter-spacing: -1px;
}

.news_cont2 .Ri .news_text {
    width: 650px;
    float: right;
}

.news_ct .news_text {
    width: 1080px;
    float: right;
}

.news_cont2 .Ri .news_text h3,
.news_ct .news_text h3 {
    color: #4c4c4c;
    font-size: 18px;
    /* line-height: 1; */
    margin-bottom: 15px;
    transition: all .5s;
}

.news_cont2 .Ri .news_text p,
.news_ct .news_text p {
    margin-bottom: 0;
}

.news_cont2 .more,
.news_ct .more {
    width: 180px;
    height: 70px;
    font-size: 16px;
    color: #fff;
    padding-left: 30px;
    line-height: 70px;
    background: #e50019 url(../images/news/ico1.png) no-repeat 136px center;
    background-size: 12px 12px;
    transition: all .5s;
    margin-left: 100px;
    cursor: pointer;
}

.news_cont2 .more:hover,
.news_ct .more:hover {
    background-color: #d00d22;
    transition: all .5s;
}

.news_ct .more {
    margin-top: 40px;
    margin-left: 120px;
}

/* 新闻详情页 */
.news1-1_cont .Le {
    width: 770px;
    position: relative;
}

.details_title {
    padding-bottom: 25px;
    border-bottom: 2px solid #e6e9f0;
}

.details_title .date {
    font-size: 24px;
    color: #bbc5c9;
    letter-spacing: -1px;
    margin-bottom: 5px;
    font-family: 'RAJDHANI-BOLD';
}

.details_title h3 {
    color: #4c4c4c;
    font-size: 22px;
}

.news1-1_cont .bdsharebuttonbox {
    position: absolute;
    top: 22px;
    right: 0;
    white-space: nowrap;
}

.news1-1_cont .bdsharebuttonbox p {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    color: #999494;
    letter-spacing: normal;
}

.news1-1_cont .bdsharebuttonbox a {
    width: 32px;
    height: 32px;
    background: no-repeat center;
    margin: 0 0 0 10px;
}

.news1-1_cont .bdsharebuttonbox .bshare-weixin {
    background-image: url(/images/news/news_d_icon_wx.jpg);
}

.news1-1_cont .bdsharebuttonbox .bshare-sinaminiblog {
    background-image: url(/images/news/news_d_icon_wb.jpg);
}

.news1-1_cont .bsTop {
    width: auto !important;
}

.news1-1_cont .bsBox {
    height: auto !important;
}

.news1-1_cont .details_p {
    padding-top: 40px;
}

.news1-1_cont .details_p img {
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

.news1-1_cont .details_p span {
    font-size: 13px;
    color: #b2b2b2;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.news1-1_cont .Ri {
    width: 360px;

}

.news1-1_cont .Ri .RiBox {
    background-color: #edf0f5;
    padding: 30px 40px;
}

.news1-1_cont .Ri h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #53565c;
}

.news1-1_cont .Ri .RiBox>a:nth-of-type(1) {
    padding-top: 0;
}

.news1-1_cont .Ri .RiBox>a:nth-last-of-type(1) {
    border-bottom: 0;
}

.news1-1_cont .Ri .RiBox>a {
    display: block;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: 2px solid #dde2eb;
}

.news1-1_cont .Ri .date {
    font-size: 18px;
    color: #a4a8b3;
    letter-spacing: -1px;
    line-height: 1;
    font-family: 'RAJDHANI-SEMIBOLD';
}

.news1-1_cont .details_btn {
    display: flex;
    justify-content: space-evenly;
    margin-top: 30px;
}

.news1-1_cont .details_btn .news_prev,
.news1-1_cont .details_btn .news_next {
    color: #808080;
}

.news1-1_cont .details_btn .rut_btn {
    color: #e50019;
}

/* 视频中心 */
.page .content.news3 {
    padding-bottom: 60px;
}

.media-cont ul {
    overflow: hidden;
}

.media-cont ul li {
    width: 390px;
    float: left;
    margin-right: 15px;
    margin-bottom: 40px;
}

.media-cont ul li:nth-child(3n) {
    margin-right: 0;
}

.media-cont ul li .img {
    position: relative;
    height: 250px;
    overflow: hidden;
    transition: all .3s;
}

.media-cont ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-cont ul li .img::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all .3s;
}

.media-cont ul li .img .play {
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all .3s;
    cursor: pointer;
}

.media-cont ul li:hover .play,
.media-cont ul li:hover .img::after {
    opacity: 1;
}

.media-cont ul li .text .h1 {
    color: #4c4c4c;
    font-size: 18px;
    margin-top: 15px;
    position: relative;
    line-height: 1;
    padding-left: 15px;
}

.media-cont ul li .text .h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 18px;
    background-color: #2651bc;
}

.media-cont ul li:hover .h1 {
    color: #2651bc;
}

#c_shade {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
}

#c_shade .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    filter: alpha(opacity=80);
}

#c_shade .cnt {
    position: absolute;
    left: 50%;
    top: calc(50% + 30px);
    transform: translate(-50%, -50%);
    width: 1200px;
}

#c_shade .cnt .closeBtn {
    background-color: #fff;
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    background: #fff url(../images/news/close02.png) no-repeat center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

#c_shade .cnt #video {
    width: 100%;
}


/* 新闻版块 结束 */







/* 业务布局 开始 */

/* business1 地产开发 */
.page .content.business1 {
    padding-bottom: 0;
}

.bus1_cont1 {
    overflow: hidden;
    margin-bottom: 80px;
}

.business1 .bus1_cont1 .ct_Top {
    margin-bottom: 40px;
    height: 60px;
}

.business1 .bus1_cont1 .ct_Top .c_down {
    width: 380px;
    float: left;
    margin-right: 20px;
    margin-bottom: 0;
    z-index: 994 !important;
}

.business1 .bus1_cont1 .ct_Top .ipt_box {
    width: 610px;
    float: left;
    margin-right: 18px;
}

.business1 .bus1_cont1 .ct_Top .ipt_box .btn {
    background-color: #e50019;
}

.bus1_cont1 .ct_Top .ipt_box input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999;
}

.bus1_cont1 .ct_Top .ipt_box input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
}

.bus1_cont1 .ct_Top .ipt_box input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
}

.bus1_cont1 .ct_Top .ipt_box input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999;
}

.bus1_cont1 .ct_Top .map {
    width: 172px;
    height: 60px;
    float: right;
    background: url(/images/business/ico1.png) no-repeat 40px;
    background-color: #d9d9d9;
}

.bus1_cont1 .ct_Top .map a {
    padding-left: 65px;
    line-height: 60px;
    color: #4c4c4c;
    font-size: 15px;
}

.bus1_cont1 .Le {
    width: 400px;
    padding: 0 50px 30px 0;
    border-right: 2px solid #ededed;

}

.bus1_cont1 .Le h1 {
    font-size: 28px;
    color: #4c4c4c;
    line-height: 38px;
    margin-bottom: 40px;
}

.bus1_cont1 .Le h4 {
    font-size: 18px;
    line-height: 26px;
    color: #4c4c4c;
    margin-bottom: 10px;
}

.bus1_cont1 .Le img {
    margin-top: 135px;
}

.bus1_cont1 .Ri {
    width: 750px;
    position: relative;
}

.bus1_cont1 .Ri li {
    overflow: hidden;
}

.bus1_cont1 .Ri li .cont_txt {
    width: 590px;
    height: auto;
    float: left;
    padding-top: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8e8e8;
    padding-right: 40px;
}

.bus1_cont1 .Ri li .cont_txt .tit {
    font-size: 18px;
    color: #4c4c4c;
    margin-bottom: 15px;
}

.bus1_cont1 .Ri li .cont_txt p {
    /* padding-right: 20px;

    max-height: 57px;
    overflow-y: auto; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    word-break: break-all;
    overflow: hidden;
    max-width: 100%;
}


.bus1_cont1 .Ri li .cont_txt .icn {
    float: right;
}

.bus1_cont1 .Ri .bd {
    height: 547px;
}

.bus1_cont1 .Ri .bd ul,
.bus1_cont1 .Ri .bd ul li {
    width: 100% !important;
    height: 100% !important;
}



.bus1_cont1 .Ri .ban_btn .prev,
.bus1_cont1 .Ri .ban_btn .next {
    width: 60px;
    height: 60px;
    transition: all .7s;
    cursor: pointer;
    position: absolute;
    top: 168px;

}

.bus1_cont1 .Ri .ban_btn .prev:hover,
.bus1_cont1 .Ri .ban_btn .next:hover {
    background-color: #e50019;
    transition: all .7s;

}

.bus1_cont1 .Ri .ban_btn .prev {
    background: rgba(0, 0, 0, 0.5) url(/images/business/left.png) no-repeat center;
    background-size: 11px 20px;
    left: 0;

}

.bus1_cont1 .Ri .ban_btn .next {
    background: rgba(0, 0, 0, 0.5) url(/images/business/riht.png) no-repeat center;
    background-size: 11px 20px;
    right: 0;
}

.bus1_cont2 {
    background: #e1e7ed url(../images/business/bus1_bg.png) no-repeat top;
    height: 100%;
    padding-top: 80px;
    overflow: hidden;
}

.bus1_cont2 .c2_txt {
    padding-top: 20px;
}

.bus1_cont2 .c2_txt h4 {
    color: #494b4c;
    font-size: 18px;
}

.bus1_cont2 .c2_txt p {
    color: #797c80;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    word-break: break-all;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 0;
}

.bus1_cont2 .w1200 a {
    width: 578px;
    margin-right: 39px;
    padding-bottom: 20px;
    margin-bottom: 50px;
    float: left;
    overflow: hidden;

    border-bottom: 2px solid #afbfcf;
}

.bus1_cont2 .w1200 .imgBx {
    height: 100%;
    overflow: hidden;
    width: 578px;
}

.bus1_cont2 .w1200 a:hover img {
    transform: scale(1.1);
    transition: all .6s;
}

.bus1_cont2 .w1200 a img {
    transition: all .6s;

}

.bus1_cont2 .w1200 a:nth-child(2n) {
    margin-right: 0;
}

.bus1_cont2 .w1200 a:nth-last-of-type(1),
.bus1_cont2 .w1200 a:nth-last-of-type(2) {
    margin-bottom: 40px;
}

.bus1_cont2 .w1200 .more {
    width: 180px;
    height: 70px;
    font-size: 16px;
    color: #fff;
    float: right;
    padding-left: 30px;
    line-height: 70px;
    background: #e50019 url(../images/news/ico1.png) no-repeat 136px center;
    background-size: 12px 12px;
    margin-bottom: 90px;
    transition: all .5s;
    cursor: pointer;
}

.bus1_cont2 .w1200 .more:hover {
    background-color: #d00d22;
    transition: all .5s;
}



/* 地产详情页 */
.page .content.business1_data {
    padding-bottom: 0;
}

.busda_cont1 {
    height: 565px;
    position: relative;
    overflow: hidden;
}

.busda_cont1 .bg {
    filter: blur(4px);
    -webkit-filter: blur(4px);
    height: 565px;
    background-size: cover !important;
    position: relative;
}

.busda_cont1 .bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}



.busda_cont1 .w1200 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

.busda_cont1 .w1200 .box {
    margin-top: 80px;
    height: 440px;
    position: relative;
}

.busda_cont1 .Ri {
    width: 400px;
    height: 440px;
    padding: 40px;
    background-color: #fff;

}

.busda_cont1 .Ri h1 {
    color: #4c4c4c;
    font-size: 28px;
    line-height: 1;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.busda_cont1 .Ri h4 {
    font-size: 16px;
    color: #4c4c4c;
    display: flex;
    justify-content: left;
    margin-top: 25px;
}

.busda_cont1 .Ri h4 em {
    display: block;
    font-size: 30px;
    color: #2651bc;
    position: relative;
    top: -3px;
    font-family: 'RAJDHANI-SEMIBOLD';
    letter-spacing: -1px;
}

.busda_cont1 .Ri h5 {
    font-size: 13px;
    color: #a6a6a6;
    margin-top: 5px;
    line-height: 18px;
    margin-bottom: 15px;
}

.busda_cont1 .Ri .address {
    display: flex;
    justify-content: space-between;
}

.busda_cont1 .Ri p {
    margin-bottom: 0;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    word-break: break-all; */
    overflow: hidden;
    max-width: 84%;
}

.busda_cont1 .Ri .address a {
    display: inline;
    color: #2651bc;
    font-weight: 600;
}

.busda_cont1 .Ri .btn {
    width: 100%;
    height: 60px;
    line-height: 60px;
    margin-top: 25px;
    background: #006ad4;
    color: #fff;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}


.busda_cont1 .returnBtn {
    font-size: 16px;
    color: #fff;
    background: url(/images/business/ico3.png) no-repeat left;
    position: absolute;
    top: -45px;
    right: 0;
    padding-left: 20px;
}

.business1_data .tit {
    font-size: 24px;
    color: #4c4c4c;
    padding-top: 50px;
}

.busda_cont2 {
    padding: 30px 0 45px;
    border-bottom: 2px solid #e6e6e6;
}

.busda_cont2 ul {
    overflow: hidden;
    margin-top: 20px;
}

.busda_cont2 ul li p {
    line-height: 30px;
    margin-bottom: 0;
}
.busda_cont2 ul li p>em{
    width: 70px;
    display: inline-block;
    text-align-last: justify;
}
.busda_cont2 ul li {
    position: relative;
    float: left;

}

.busda_cont2 ul li:nth-child(1) {
    width: 290px;
}

.busda_cont2 ul li:nth-child(2) {
    width: 424px;
    padding-left: 110px;
}

.busda_cont2 ul li:nth-child(3) {
    width: 485px;
    padding-left: 110px;
}


.busda_cont2 ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 290px;
    width: 1px;
    height: 104px;
    background-color: #e6e6e6;
}

.busda_cont2 ul li:nth-child(1):before {
    left: 290px;
}

.busda_cont2 ul li:nth-child(2):before {
    left: 424px;
}

.busda_cont2 ul li:nth-child(3):before {
    content: unset;
}

.busda_cont3 {
    margin-bottom: 80px;
}

.busda_cont3 .item_hd ul {
    padding-top: 30px;
    /* display: flex;
    justify-content: space-between; */
    margin-bottom: 15px;
    overflow: hidden;
}

.busda_cont3 .item_hd ul li {
    width: 230px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #f0f0f0;
    margin-left: 12px;
    font-size: 16px;
    color: #808080;
    cursor: pointer;
    float: left;
    margin-bottom: 10px;
}

.busda_cont3 .item_hd ul li.on {
    background-color: #e50019;
    color: #fff;

}

.busda_cont3 .item_hd ul li:nth-child(6n) {
    margin-left: 0;
}

.busda_cont3 .item_hd ul li:nth-of-type(1) {
    margin-left: 0;
}
.busda_cont3 .item_bd{
    padding-top: 25px;
}
.busda_cont3 .item_bd .item-con {
    position: relative;
    display: none;
}
.busda_cont3 .item_bd .item-con li .item_tit{
    background-color: #f0f0f0;
    font-size: 16px;
    color: #808080;
    height: 60px;
    line-height: 60px;
    text-align: center;
    transition: all .6s;
}
.busda_cont3 .item_bd .item-con li:hover .item_tit{
    background-color: #e50019;
    color: #fff;
    transition: all .6s;

}

.busda_cont3 .item_bd .item-con:nth-child(1) {
    display: block;
}

.busda_cont3 .item_bd .item-con .bd {
    overflow: hidden;
}

/* .busda_cont3 .item_bd .item-con .bd ul {
    width: 100% !important;
    height: 240px  !important;
} */
.busda_cont3 .item_bd .item-con .bd li{
    width: 388px !important;
    margin-right: 18px;
    overflow: hidden;
    float: left;
}
.busda_cont3 .item_bd .item-con .bd li.clone{
    /* display: none; */
}
.busda_cont3 .item_bd .item-con .bd li:nth-child(3n){
    /* margin-right: 0; */
}

.busda_cont3 .item_bd .item-con .bd li img {
    width: 388px;
    height: 240px;
    max-height: 500px;
    object-fit: cover;
}

.busda_cont3 .item_bd li .txt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.7);
    padding-left: 35px;
}

.busda_cont3 .item_bd li .txt p {
    color: #fff;
    line-height: 70px;
    font-size: 16px;

}

.busda_cont3 .item_bd .hd {
    position: absolute;
    bottom: 29px;
    right: 0;
    display: none;
}

.busda_cont3 .item_bd .hd li {
    float: left;
    font-size: 0;
    width: 11px;
    height: 11px;
    background-color: #959595;
    border-radius: 50%;
    margin-right: 17px;
    cursor: pointer;
}

.busda_cont3 .item_bd .hd li:nth-last-of-type(1) {
    margin-right: 40px;
}

.busda_cont3 .item_bd .hd li.on {
    background-color: #e50019;
}

.busda_cont3 .item_bd .prev,
.busda_cont3 .item_bd .next {
    width: 60px;
    height: 60px;
    transition: all .7s;
    cursor: pointer;
    position: absolute;
    top: 110px;

}


.busda_cont3 .item_bd .next:hover {
    background: url(/images/business/b_nexton.png) no-repeat center;
    transition: all .7s;
}

.busda_cont3 .item_bd .prev:hover {
    background: url(/images/business/b_prevon.png) no-repeat center;
    transition: all .7s;

}

.busda_cont3 .item_bd .prev {
    background: url(/images/business/b_prev.png) no-repeat center;
    left: -80px;
}

.busda_cont3 .item_bd .next {
    background: url(/images/business/b_next.png) no-repeat center;
    right: -80px;
}

.busda_cont4 {
    background-color: #f2f2f2;
    overflow: hidden;
    position: relative;
    height: 660px;
}

.busda_cont4 .tit {
    float: left;
}

.busda_cont4 .add_list {
    width: 600px;
    float: right;
    margin-top: 40px;
    margin-bottom: 40px;
}

.busda_cont4 .add_list li .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    float: left;
    transition: all .4s;
}

.busda_cont4 .add_list li:nth-of-type(1) .icon {
    background: url(/images/business/io1.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(2) .icon {
    background: url(/images/business/io2.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(3) .icon {
    background: url(/images/business/io3.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(4) .icon {
    background: url(/images/business/io4.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(5) .icon {
    background: url(/images/business/io5.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(1).crt .icon {
    background: url(/images/business/io1on.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(2).crt .icon {
    background: url(/images/business/io2on.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(3).crt .icon {
    background: url(/images/business/io3on.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(4).crt .icon {
    background: url(/images/business/io4on.png) no-repeat center;
}

.busda_cont4 .add_list li:nth-of-type(5).crt .icon {
    background: url(/images/business/io5on.png) no-repeat center;
}

.busda_cont4 .add_list ul {
    display: flex;
    justify-content: space-between;
}

.busda_cont4 .add_list li {
    margin-right: 40px;

}

.busda_cont4 .add_list li:nth-last-of-type(1) {
    margin-right: 0;
}

.busda_cont4 .add_list li img {
    float: left;
}

.busda_cont4 .add_list li p {
    float: left;
    line-height: 48px;
    margin-left: 10px;
}

.house {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    display: none;
}

.house_bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #333;
    opacity: 0.7;
}

.house .info {
    width: 400px;
    height: 400px;
    background: #fff;
    padding: 0 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -200px;
    box-sizing: border-box;
    padding-top: 40px;
}

.house .info h3 {
    color: #535353;
    font-size: 24px;
    text-align: center;
    font-weight: normal;
}

.house .info p {
    font-size: 14px;
    color: #535353;
    margin-top: 20px;
}

.house .info input {
    width: 100%;
    height: 48px;
    border: 1px solid #e5e4e2;
    background: #f5f3ee;
    font-size: 14px;
    color: #535353;
    box-sizing: border-box;
    padding-left: 20px;
    margin-top: 20px;
}

.house .info input:focus {
    outline: none;
    border: 1px solid #d1ad6f;
}

.house .info button {
    width: 100%;
    height: 48px;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    background: #006ad4;
    margin-top: 40px;
}


.iw_poi_title {
    color: #CC5522;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    padding-right: 13px;
    white-space: nowrap
}

.iw_poi_content {
    font: 12px arial, sans-serif;
    overflow: visible;
    padding-top: 4px;
    white-space: -moz-pre-wrap;
    word-wrap: break-word
}


/* map */
.business1_data .map_del {
    position: absolute;
    z-index: 6;
    width: 100%;
    height: 450px;
    top: 120px;
    left: 0;
    right: 0;
    width: 1200px;
    margin: 0 auto;
}

.business1_data .map_del::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 5;
    pointer-events: none;
}

.business1_data .map_del #dituContent {
    width: 100%;
    margin: auto;
    height: 450px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.business1_data .map_del #dituContent img {
    max-width: none;
}

.business1_data .map_del .map_around {
    position: absolute;
    bottom: 65px;
    right: 0;
    z-index: 5;
    width: 400px;
    height: 320px;
    background: #fff;
    padding: 27px 30px;
    overflow-y: auto;
    overflow-x: hidden;
}

.business1_data .map_del .map_around ul li {
    /* height: 78px; */
    position: relative;
    color: #808080;
    cursor: pointer;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.business1_data .map_del .map_around ul li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.business1_data .map_del .map_around ul li .grp {
    display: flex;
    justify-content: space-between;
}

.business1_data .map_del .map_around ul li p {
    margin-bottom: 0;
}

.business1_data .map_del .map_around ul li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    background: #eaeaea;
}

.business1_data .map_del .map_around #r-result {
    height: 220px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 30px;
}

.business1_data .map_del .map_around #r-result ul {
    font-size: 0px;
}

.business1_data .map_del .map_around #r-result li {
    display: block;
    margin-bottom: 30px;
    cursor: pointer;
}

/*.map_del .map_around #r-result li .num{position: absolute; left: 0; width: 30px; line-height: 30px; color: #fff; height: 35px; text-align: center; top: 20px;font-size: 20px;}
 / .business1_data  .map_del .map_around #r-result li .grp {display: block; }
.business1_data  .map_del .map_around #r-result li .grp h6 {font-size: 16px; color: #4c4c4c; line-height: 1em; font-weight: normal; }
.business1_data  .map_del .map_around #r-result li .grp p {font-size: 14px; color: #808080; margin-top: 4px; }
.business1_data  .map_del .map_around #r-result .parents {/*display:none;*/
/* } */

.business1_data .map_del .map_around #r-result .parents ._ul {
    display: none;
}

.business1_data .map_del .map_around #r-result .parents ._ul.on {
    display: block;
}

.business1_data .map_del .map_around #r-result ._li {
    display: block;
    margin-bottom: 30px;
    cursor: pointer;
}

.business1_data .map_del .map_around #r-result ._li .text {
    display: block;
}

.business1_data #r-result .parents ._ul p {
    font-size: 14px;
    color: #808080;
    margin-top: 4px;
}

.business1_data .map_cn {
    position: absolute;
    top: 60px;
    left: 285px;
    width: 535px;
    height: 443px;
}

.business1_data .BMap_cpyCtrl {
    display: none;
}




/* business2 对外投资 */
.bus2_cont1 .ct_title {
    margin-top: -10px;
    margin-bottom: 50px;
}

.bus2_cont1 .ct_title p {
    margin-bottom: 0;
}

.bus2_cont1 .ct_title h3 {
    font-size: 24px;
    margin-top: 7px;
    color: #808080;
}

.bus2_cont1 .img_box {
    position: relative;
    margin-bottom: 80px;
}

.bus2_cont1 .img_box .bd {
    overflow: hidden;
}

.bus2_cont1 .img_box .bd li {
    width: 390px;
    background-color: #ebedf2;
    margin-right: 15px;
}

.bus2_cont1 .img_box .bd li .box_txt {
    min-height: 217px;
    padding: 40px 15px 40px 40px;
    position: relative;
    background-position: 280px 40px !important;
}

.bus2_cont1 .img_box .bd li .box_txt p {
    overflow: auto;
    max-height: 97px;
    padding-right: 30px;
}

.bus2_cont1 .img_box .bd li:nth-child(1) .box_txt {
    background: url(/images/business/01.png) no-repeat;
    background-size: 75px 61px;

}

.bus2_cont1 .img_box .bd li:nth-child(2) .box_txt {
    background: url(/images/business/02.png) no-repeat;
    background-size: 94px 61px;

}

.bus2_cont1 .img_box .bd li:nth-child(3) .box_txt {
    background: url(/images/business/03.png) no-repeat;
    background-size: 94px 61px;
}

.bus2_cont1 .img_box .bd li:nth-child(4) .box_txt {
    background: url(/images/business/04.png) no-repeat;
    background-size: 100px 61px;
}

.bus2_cont1 .img_box .bd li .box_txt h3 {
    font-size: 24px;
    color: #4c4c4c;
    line-height: 1;
    margin-bottom: 15px;
}


.bus1_cont1 .Ri .ban_btn .prev,
.bus1_cont1 .Ri .ban_btn .next {
    width: 60px;
    height: 60px;
    transition: all .7s;
    cursor: pointer;
    position: absolute;
    top: 168px;

}

.bus1_cont1 .Ri .ban_btn .prev:hover,
.bus1_cont1 .Ri .ban_btn .next:hover {
    background-color: #e50019;
    transition: all .7s;
}

.bus1_cont1 .Ri .ban_btn .prev {
    background: rgba(0, 0, 0, 0.5) url(/images/business/left.png) no-repeat center;
    background-size: 11px 20px;
    left: 0;

}



.bus2_cont1 .img_box .b_prev,
.bus2_cont1 .img_box .b_next,
.join1_cont1 .img_box .b_prev,
.join1_cont1 .img_box .b_next {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    transition: all .7s;
    cursor: pointer;
    margin-top: -30px;
}

.bus2_cont1 .img_box .b_prev:hover,
.bus2_cont1 .img_box .b_next:hover,
.join1_cont1 .img_box .b_prev:hover,
.join1_cont1 .img_box .b_next:hover {
    background-color: #e50019 !important;
    transition: all .7s;
}

.bus2_cont1 .img_box .b_prev,
.join1_cont1 .img_box .b_prev {
    background: rgba(0, 0, 0, 0.3) url(/images/business/left.png) no-repeat center;
    background-size: 11px 20px;
    left: -100px;
}

.bus2_cont1 .img_box .b_next,
.join1_cont1 .img_box .b_next {
    background: rgba(0, 0, 0, 0.3) url(/images/business/riht.png) no-repeat center;
    background-size: 11px 20px;
    right: -100px;
}

/* business3 物业管理 */
.bus3_cont1 {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.bus3_cont1 .Ri {
    width: 750px;
}

.bus3_cont1 .Ri p>em {
    color: #e50019;
}



/* 业务布局 结束 */


/* 社会责任 开始 */
/* responsibility1.html */
.res1_cont1 .w1200>p {
    font-size: 14px;
    margin-bottom: 15px;
}

.res1_cont1 .w1200>p em {
    font-size: 16px;
}

.res1_cont1 .w1200 h3 {
    line-height: 1;
    font-size: 36px;
    color: #4c4c4c;
    font-weight: lighter;
    margin-bottom: 20px;
}

.res1_cont1 .w1200 .ct_img {
    margin-top: 25px;
    animation-delay: 2s;
}


/* 社会责任 结束 */


/* 加入众博在线登录_众博(中国) 开始 */
/* join us 11 */
.page .content.join2 {
    padding-bottom: 80px;
}

.join1_cont1 .top {
    margin-bottom: 40px;
}

.joinus_join .join1_cont1 {
    margin: 75px 0 90px;
}

.join1_cont1 {
    position: relative;
    overflow: hidden;
}

.join1_cont1 h6 {
    color: #777d8c;
    font-size: 20px;
}

.join1_cont1 p {
    margin-bottom: 10px;
}

.join1_cont1 .top h3 {
    color: #2651bc;
    font-size: 30px;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 300;

}

.join1_cont1 .mid_hd {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.join1_cont1 .mid_hd::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ebebeb;
    z-index: -1;
}

.join1_cont1 .mid_hd li {
    float: left;
    font-size: 16px;
    color: #808080;
    width: 120px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin-right: 15px;
    transition:all .4s;
    cursor: pointer;
    background: #e9ecf2;
}

.join1_cont1 .mid_hd li.on {
    color: #fff;
    background: #2651bc;
    /* transition:all .7s; */
}


.join1_cont1 .img_box {
    position: relative;
    margin-top: 20px;
    display: none;
}

.join1_cont1 .img_box:nth-child(1) {
    display: block;
}

.join1_cont1 .img_box .bd {
    overflow: hidden;
}

.join1_cont1 .img_box .bd li {
    width: 390px !important;
    height: 260px;
    padding: 30px 40px;
    background-color: #e9ecf2;
    margin-right: 15px;
}

.join1_cont1 .img_box .bd li h3 {
    margin-top: 20px;
    color: #4c5059;
    font-size: 20px;
    margin-bottom: 10px;
}

.join1 .join1_cont1 .img_box .b_next {
    background: #e9ecf2 url(../images/business/riht11.png) no-repeat center;

}

.join1 .join1_cont1 .img_box .b_prev {
    background: #e9ecf2 url(../images/business/left11.png) no-repeat center;
}

.join1 .join1_cont1 .img_box .b_next:hover {
    background: url(/images/business/riht.png) no-repeat center;
}

.join1 .join1_cont1 .img_box .b_prev:hover {
    background: url(/images/business/left.png) no-repeat center;
}

.join1_cont1 .bot {
    background: url(/images/join/jo1_cont.jpg) no-repeat bottom;
    height: 425px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.join1_cont1 .bot .Ri {
    width: 520px;
    padding: 55px 40px 55px 0;
    box-sizing: border-box;
}

.join1_cont1 .bot .Ri h3 {
    color: #4c5059;
    font-size: 24px;
    line-height: 1;
    padding-bottom: 20px;
}




/* join2  社会招聘 */
@keyframes opa1 {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opa2 {
    0% {
        background: transparent;
    }

    100% {
        background: #f0f4fc;
    }
}

.join2_cont1 {
    position: relative;
    overflow: hidden;
}

.join2_cont1 li:nth-child(4n) {
    margin-right: 0;
}

.join2_cont1 li {
    float: left;
    margin-right: 16px;
    margin-bottom: 16px;
    width: 288px;
    height: 338px;
    transition: all .6s;
    position: relative;
}

.join2_cont1 li .ico {
    background: url(/images/join/yuan.png) no-repeat center;
    width: 174px;
    height: 174px;
    margin: 0 auto;
    position: relative;
}

.join2_cont1 li .ico img {
    position: absolute;
    right: 0;

    margin: 0 auto;
}
.join2_cont1 li:nth-of-type(1) .ico img {
    left: 16px;
    top: 55px;
}

.join2_cont1 li:nth-of-type(2) .ico img {
    left: 20px;
    top: 53px;
}

.join2_cont1 li:nth-of-type(3) .ico img {
    left: 25px;
    top: 57px;
}

.join2_cont1 li:nth-of-type(4) .ico img {
    left: 24px;
    top: 56px;
}

.join2_cont1 li:nth-of-type(5) .ico img {
    left: 32px;
    top: 58px;
}

.join2_cont1 li:nth-of-type(6) .ico img {
    left: 13px;
    top: 54px;
}

.join2_cont1 li:nth-of-type(7) .ico img {
    left: 19px;
    top: 53px;
}

.join2_cont1 li:nth-of-type(8) .ico img {
    left: 14px;
    top: 52px;
}

.join2_cont1 li h3 {
    transition: all .3s;
    font-size: 24px;
    color: #4c4c4c;
    text-align: center;
    margin-bottom: 7px;
}

.join2_cont1 li h5 {
    text-transform: uppercase;
    font-family: 'RAJDHANI-SEMIBOLD';
    transition: all .6s;
    color: #bfbfbf;
    text-align: center;
    font-size: 24px;
}

.join2_cont1 li a {
    width: 100%;
    height: 100%;
    background: #f0f4fc;
    padding-top: 40px;
    position: relative;
    border-radius: 20px;
    transition: all .6s;

}

.join2_cont1 li a::before {
    content: '';
    position: absolute;
    top: 59px;
    left: 85px;
    width: 190px;
    height: 190px;
    margin: auto;
    background: url(/images/join/hover.png) no-repeat center;
    opacity: 0;
    border-radius: 20px;
}

.join2_cont1 li a:hover::before {
    transition: all .6s;
    opacity: 1;
}

.join2_cont1 li a:hover {
    /* background: url(/images/join/join2_hover.png) no-repeat center; */
    background: #2651bc;
    /* animation: opa1 .6s 0s forwards linear; */
    transition: all .6s;
    border-radius: 20px;

}

.join2_cont1 li:hover h3 {
    transition: all .3s;
    color: #fff;
}

.join2_cont1 li:hover h5 {
    transition: all .6s;
    color: #9eabcc;
}



/* join2_list 社会招聘列表详情页 */
.join2_list{
    margin-bottom: 80px !important;
}
.join2_list_cont1 {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px ;

}

.join2_list_cont1 .Le {
    width: 350px;
}

.join2_list_cont1 .Le .li {
    overflow: hidden;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}


.join2_list_cont1 .Le .li:nth-last-of-type(1) {
    border-bottom: none;

}

.join2_list_cont1 .Le .tit {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.join2_list_cont1 .Le .tit h3 {
    color: #4c4c4c;
    font-size: 20px;

}

.join2_list_cont1 .Le .tit h3 img {
    margin-right: 10px;
}

.join2_list_cont1 .Le .tit .reset {
    color: #1890ff;
    font-size: 14px;
}

.join2_list_cont1 .Le .sea_input {
    float: left;
    width: 350px;
    height: 50px;
    position: relative;
    background: #fff;
    margin-right: 15px;
    z-index: 5;
    border: 1px solid #e6e6e6;
}

.join2_list_cont1 .Le .sea_input input {
    width: calc(100% - 66px);
    height: 100%;
    padding-left: 20px;
    font-size: 15px;
    color: #999999;
}

.join2_list_cont1 .Le .sea_input .btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: #2651bc url(../images/contact1/ico19.png) no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}

.join2_list_cont1 .Le .type {
    padding-bottom: 15px;
}

.join2_list_cont1 .Le .type,
.join2_list_cont1 .Le .place,
.join2_list_cont1 .Le .category {
    padding-top: 30px;
}

.join2_list_cont1 .Le .type .show {
    width: 13px;
    height: 8px;
    background: url(/images/join/show.png) no-repeat center;
    display: none;
}

.join2_list_cont1 .Le .cont ul {
    overflow: hidden;
    width: 340px;
}

.join2_list_cont1 .Le .cont li {
    margin-bottom: 15px;
    cursor: pointer;
    float: left;
    margin-right: 50px;
}

.join2_list_cont1 .Le .cont li:nth-of-type(4),.join2_list_cont1 .Le .cont li:nth-of-type(7) {
    margin-right: 64px;
}

.join2_list_cont1 .Le .cont li:nth-child(3n) {
    margin-right: 0;
}

.join2_list_cont1 .Le .cont li .icn {
    background: url(/images/join/ico7.png) no-repeat center;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    float: left;
}

.join2_list_cont1 .Le .cont li.on .icn {
    background: url(/images/join/ico7on.png) no-repeat center;
}

.join2_list_cont1 .Le .cont li p {
    float: left;
    line-height: 1;
}

.join2_list_cont1 .Le .inp {
    position: relative;
}

.join2_list_cont1 .Le .cont .more {
    color: #1890ff;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
    display: none !important;
}

.join2_list_cont1 .Le .drop-txt {
    line-height: 48px;
    padding-left: 20px;
    font-size: 15px;
    color: #999999;
    cursor: pointer;
    border: 1px solid #e6e6e6;
}

.join2_list_cont1 .Le .drop-down {
    position: relative;
    border: 1px solid #e6e6e6;
    line-height: 48px;
}

.join2_list_cont1 .Le .drop-down ul {
    display: none;
    background: #fff;
    padding: 0 0 0 20px;
    max-height: 143px;
    overflow-y: auto;
    border-top: 1px solid #e6e6e6;
}

.join2_list_cont1 .Le .drop-down ul li {
    font-size: 15px;
    color: #999999;
    line-height: 48px;
    transition: all .3s;
    cursor: pointer;
    position: relative;
}

.join2_list_cont1 .Le .drop-down ul li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 94%;
    height: 2px;
    background-color: #f5f5f5;
}

.join2_list_cont1 .Le .drop-down ul li:nth-last-of-type(1):before {
    content: unset;
}

.join2_list_cont1 .Le .inp .info_box {
    width: 350px;
}

.join2_list_cont1 .Le .inp .i {
    position: absolute;
    right: 0;
    top: 0;
    width: 66px;
    height: 52px;
    background: url(/images/contact1/ico18.png) no-repeat;
    background-position: 50% 50%;
    pointer-events: none;
}

.join2_list_cont1 .Le .category #TypeList {}




.join2_list_cont1 .Ri {
    width: 800px;
}

.join2_list_cont1 .Ri .title {
    display: flex;
    justify-content: space-between;
}

.join2_list_cont1 .Ri .title h3 {
    color: #4c4c4c;
    font-size: 20px;
    font-family: 'RAJDHANI-SEMIBOLD';
}

.join2_list_cont1 .Ri .title .box_r {
    display: flex;
    justify-content: space-between;
}

.join2_list_cont1 .Ri .title .box_r p {
    line-height: 38px;
}

.join2_list_cont1 .Ri .c_down {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
    height: 38px;
    width: 125px;
    position: relative;
}

.join2_list_cont1 .Ri .c_down span {
    height: 38px;
    line-height: 35px;
    padding-left: 17px;
    font-size: 14px;
    color: #b2b2b2;
    background: url(/images/join/ico8.png) no-repeat 95px center;
    cursor: pointer;
    display: block;
}

.join2_list_cont1 .Ri .c_down ul {
    display: none;
    width: 125px;
    top: 35px;
    max-height: 302px;
    position: absolute;
    left: -2px;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    z-index: 10;
}

.join2_list_cont1 .Ri .c_down ul li {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #bfbfbf;
    background: #f2f2f2;
    transition: all .5s;
    padding-left: 20px;
    position: relative;
    cursor: pointer;
}

.join2_list_cont1 .Ri .c_down ul li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    /* right: 0; */
    width: 67%;
    height: 2px;
    background-color: #e6e6e6;
}

.join2_list_cont1 .Ri .c_down ul li:hover,
.join2_list_cont1 .Le .drop-down ul li:hover {
    color: #2651bc;
    transition: all .5s;
}

.join2_list_cont1 .Ri ._list {
    overflow: hidden;
}

.join2_list_cont1 .Ri ._list .time {
    margin-top: 16px;
    width: 800px;
    margin-right: 16px;
    float: left;
    height: 140px;
    background: #f2f2f2 url(../images/contact1/ico20.png) no-repeat;
    padding: 40px 90px 0 40px;
    background-position: 710px 50%;
    transition: all .6s;

}
.join2_list_cont1 .Ri ._list .time:hover {
    background: #f2f2f2 url(../images/contact1/ico20-1.png) no-repeat;
    background-position: 710px 50%;
    transition: all .6s;
}
.join2_list_cont1 .Ri ._list .time:hover h1{
    color: #2651bc;
    transition: all .5s;

}

.join2_list_cont1 .Ri .time h1 {
    color: #4c4c4c;
    margin-bottom: 6px;
    font-size: 20px;
    transition: all .5s;

}

.join2_list_cont1 .Ri .ul .li {
    float: left;
    color: #7e888c;
    font-size: 14px;
    margin-right: 25px;
}

.join2_list_cont1 .Ri .page#pagination .active {
    /* color: #808080;
    background: transparent;
    border: 2px solid #d9d9d9; */
}




/* 社会招聘详情页  */
.join2_data_cont1 {
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
}

.join2_data_cont1 .title_Top {
    padding-bottom: 30px;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.join2_data_cont1 .title_Top h1 {
    color: #4c4c4c;
    margin-bottom: 6px;
    font-size: 24px;
}

.join2_data_cont1 .title_Top .li {
    float: left;
    color: #808080;
    font-size: 14px;
    margin-right: 25px;
}

.join2_data_cont1 .title_Top .Ri ul {
    float: left;
    line-height: 49px;
}

.join2_data_cont1 .title_Top .Ri li {
    float: left;
    color: #808080;
    font-size: 16px;
    margin-right: 30px;
    padding-left: 25px;
}

.join2_data_cont1 .title_Top .Ri li:nth-of-type(1) {
    background: url(/images/join/ico9.png) no-repeat left center;
}

.join2_data_cont1 .title_Top .Ri li:nth-of-type(2) {
    background: url(/images/join/ico10.png) no-repeat left center;

}

.join2_data_cont1 .title_Top .Ri .delivery_btn {
    float: right;
    width: 130PX;
    height: 50px;
    line-height: 50px;
    background-color: #2651bc;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
}

.join2_data_cont1 .cont_Bot {
    padding: 40px 0 0;
}

.join2_data_cont1 .cont_Bot h3 {
    color: #4c4c4c;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 8px;
}

.join2_data_cont1 .cont_Bot li {
    margin-bottom: 30px;
}

.join2_data_cont1 .cont_Bot li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.join2_data_cont1 .cont_Bot li em {
    font-size: 18px;
    color: #2651bc;
    font-family: 'RAJDHANI-SEMIBOLD';
}

/* 加入众博在线登录_众博(中国) 结束 */





/* 联系部分 */
.contact1 .contact_npm1 .le {
    float: left;
}

.contact1 .contact_npm1 .le .titt {
    width: 100%;
}

.contact1 .contact_npm1 .le .txt h1 {
    color: #4c4c4c;
    font-size: 30px;
    font-weight: 100;
    line-height: 30px;
}

.contact1 .contact_npm1 .le .txt .line {
    width: 56px;
    height: 4px;
    margin: 15px 0 20px;
    background: url(/images/about/line.jpg) no-repeat;
}

.contact1 .contact_npm1 .le .txt p {
    font-size: 14px;
    color: #808080;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'RAJDHANI-SEMIBOLD';
}

.contact1 .contact_npm1 .le .txt p em {
    font-size: 17px;
    vertical-align: top;
}

.contact1 .contact_npm1 .ri {
    width: 800px;
    float: right;
    min-height: 254px;
    margin-top: 100px;
    background: url(/images/contact1/bg1.jpg) no-repeat center;
    background-position: bottom;
    padding-left: 50px;
    padding-top: 52px;
}

.contact1 .contact_npm1 .ri .top {
    border-bottom: 2px solid #d7dae0;
    padding-bottom: 18px;
}

.contact1 .contact_npm1 .ri .top .time {
    float: left;
    font-size: 16px;
    color: #626673;
    margin-right: 42px;
    position: relative;
    cursor: pointer;
}

.contact1 .contact_npm1 .ri .top .time::after {
    content: '';
    width: 10%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all .6s;
    height: 2px;
    bottom: -20px;
    background: #e5061e;
    opacity: 0;
}

.contact1 .contact_npm1 .ri .top .time.on {
    color: #e5061e;
}

.contact1 .contact_npm1 .ri .top .time.on::after {
    opacity: 1;
    width: 100%;
}

.contact1 .contact_npm1 .ri .bobox {
    margin-top: 26px;
}

.contact1 .contact_npm1 .ri .bobox .time {
    display: none;
}

.contact1 .contact_npm1 .ri .bobox .time:nth-child(1) {
    display: block;
}

.contact1 .contact_npm1 .ri .bobox .time h1 {
    color: #777d8c;
    font-size: 14px;
    padding-left: 30px;
    font-family: 'RAJDHANI-SEMIBOLD';
    background: url(/images/contact1/ico1.png) no-repeat;
    background-position: 0 50%;
    margin-bottom: 15px;
}

.contact1 .contact_npm1 .ri .bobox .time h2 {
    color: #777d8c;
    font-size: 14px;
    padding-left: 30px;
    font-family: 'RAJDHANI-SEMIBOLD';
    background: url(/images/contact1/ico2.png) no-repeat;
    background-position: 0 50%;
}

.contact1 .contact_npm1 .ri .bobox .time h2 em {
    font-size: 18px;
    vertical-align: top;
}

#contact1_map {
    height: 450px;
    width: 100%;
    clear: both;
    margin: 30px auto 0;
    max-width: 1200px;
}

#contact1_map span {
    opacity: 0;
}

#contact1_map .BMap_Marker {
    opacity: 1;
}

#contact1_map img {
    max-width: none;
}

.page .content.contact1 {
    padding-bottom: 80px;
}

.contact2 .contact_npm1 .box {
    height: 425px;
    margin-top: -100px;
    overflow: hidden;
    background: url(/images/contact1/bg1.png) no-repeat bottom;
    position: relative;
}

.contact2 .contact_npm1 .box .txt {
    position: absolute;
    bottom: 130px;
    left: 60px;
}

.contact2 .contact_npm1 .box .txt h1 {
    color: #e50019;
    font-size: 30px;
    font-weight: 100;
    line-height: 30px;
    margin-bottom: 15px;
}

.contact2 .contact_npm1 .box .txt p {
    color: #a69379;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 14px;
}

.contact2 .contact_npm1 .box .ewmbg {
    width: 417px;
    height: 436px;
    background: url(/images/contact1/bg3.png) no-repeat;
    position: absolute;
    left: 350px;
    bottom: -436px;
    transition: all 1s;
    z-index: 2;
}

.contact2 .contact_npm1 .box .ewmbg.animated {
    bottom: 0;
}

.contact2 .contact_npm1 .box .ewm {
    position: absolute;
    left: 50%;
    max-width: 97px;
    left: 228px;
    top: 32%;
}

.contact2 .contact_npm1 .box .enit {
    width: 473px;
    height: 140px;
    background: url(/images/contact1/bg4.png) no-repeat;
    position: absolute;
    right: 45px;
    bottom: 96px;
    line-height: 153px;
    z-index: 1;
}

.contact2 .contact_npm2 {
    padding: 60px 0 90px;
    background: #f2f2f2;
    margin-top: 88px;
}

.page .content.contact2 {
    padding-bottom: 0;
}

.contact2 .contact_npm2 .topBox {
    float: right;
    padding-bottom: 20px;
    margin-top: -104px;
    overflow: hidden;
}

.contact2 .contact_npm2 .topBox .time {
    float: left;
    color: #4c4c4c;
    font-size: 16px;
    margin-left: 28px;
    position: relative;
    cursor: pointer;
}

.contact2 .contact_npm2 .topBox .time.on {
    color: #2651bc;
}

.contact2 .contact_npm2 .topBox .time::after {
    content: '';
    width: 3px;
    height: 12px;
    background: #2651bc;
    position: absolute;
    bottom: -32px;
    left: 50%;
    transition: all .6s;
    transform: translateX(-50%);
    opacity: 0;
}

.contact2 .contact_npm2 .topBox .time.on::after {
    bottom: -20px;
    opacity: 1;
}

.contact2 .contact_npm2 .botbox .ul .li {
    float: left;
    width: 390px;
    height: 301px;
    background: #fff;
    margin-right: 15px;
    margin-bottom: 15px;
    position: relative;

    background-position: bottom;
}

.contact2 .contact_npm2 .botbox .ul .li::after {
    content: '';
    width: 280px;
    height: 273px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: all .3s;
    transform: translateX(-50%);
    background: url(/images/contact1/bg2.png) no-repeat center;
    opacity: 0;
}

.contact2 .contact_npm2 .botbox .ul .li:hover::after {
    opacity: 1;
}

.contact2 .contact_npm2 .botbox .ul .li:hover p {
    color: #4c4c4c;
}

.contact2 .contact_npm2 .botbox .ul .li:hover .aimg::before {
    opacity: 0;
}

.contact2 .contact_npm2 .botbox .ul .li:hover .poimg {
    top: 67%;
}

.contact2 .contact_npm2 .botbox .ul .li:nth-child(3n) {
    margin-right: 0;
}

.contact2 .contact_npm2 .botbox .ul .li .aimg {
    position: relative;
    width: 192px;
}

.contact2 .contact_npm2 .botbox .ul .li .poimg {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all .5s;
    transform: translate(-50%, -50%);
}

.contact2 .contact_npm2 .botbox .ul .li .aimg i {
    width: 120px;
    height: 120px;
    border: 1px solid #e6e8ec;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    margin: auto;
}

.contact2 .contact_npm2 .botbox .ul .li p {
    color: #808080;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    margin-top: 18px;
}

.contact2 .contact_npm2 .botbox .ul .li .aimg::before {
    content: '';
    width: 187px;
    height: 26px;
    position: absolute;
    left: 3px;
    bottom: 0;
    z-index: 1;
    transition: all .3s;
    background: url(/images/contact1/ico3.png) no-repeat;
}

.contact2 .contact_npm2 .botbox .ul .li .aimg img {
    max-width: 106px;
}

.contact2 .contact_npm2 .botbox .moreit {
    color: #fff;
    font-size: 16px;
    line-height: 68px;
    background: #e50019 url(../images/contact1/ico4.png) no-repeat;
    width: 180px;
    float: right;
    padding-left: 33px;
    background-position: 134px 50%;
    cursor: pointer;
    transition: all .5s;
    margin-top: 25px;
}

.contact2 .contact_npm2 .botbox .moreit:hover {
    background-color: #d00d22;
    transition: all .5s;
}

.contact3 .contact_npm1 .le {
    float: left;
}

.page .content.contact3 {
    padding-bottom: 90px;
}

.contact3 .contact_npm1 .le .titt {
    width: 100%;
}

.contact3 .contact_npm1 .le .txt h1 {
    color: #4c5059;
    font-size: 30px;
    font-weight: 100;
    line-height: 30px;
}

.contact3 .contact_npm1 .le .txt p {
    margin-bottom: 65px;
    color: #777d8c;
    font-size: 15px;
    margin-top: 15px;
}

.contact3 .contact_npm1 .ri {
    float: right;
    width: 750px;
    margin-top: 150px;
}

.contact3 .contact_npm1 .ri .font {
    float: left;
    width: 367px;
    height: 66px;
    position: relative;
    margin-right: 16px;
    margin-bottom: 16px;
}

.contact3 .contact_npm1 .ri .font:nth-child(2n) {
    margin-right: 0;
}

.contact3 .contact_npm1 .ri .font input {
    background: #f0f0f0;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    padding-right: 15px;
}

.contact3 .contact_npm1 .ri .font p {
    color: #999999;
    font-size: 14px;
    position: absolute;
    left: 20px;
    top: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}

.contact3 .contact_npm1 .ri .font p em {
    color: #e50019;
    margin-right: 2px;
}

.contact3 .contact_npm1 .ri .font:nth-child(3) em {
    color: #f0f0f0;
}

.contact3 .contact_npm1 .ri .font:nth-child(4) em {
    color: #f0f0f0;
}

.contact3 .contact_npm1 .ri .textarea {
    clear: both;
    height: 160px;
    background: #f0f0f0;
    position: relative;
}

.contact3 .contact_npm1 .ri .textarea textarea {
    width: 100%;
    height: 100%;
    padding: 25px 20px;
    background: none;
    border: none;
}

.contact3 .contact_npm1 .ri .textarea p {
    color: #999999;
    font-size: 14px;
    position: absolute;
    left: 20px;
    top: 25px;
}

.contact3 .contact_npm1 .ri .textarea p em {
    color: #e50019;
    margin-right: 2px;
}

.contact3 .contact_npm1 .ri .submitfont {
    text-align: right;
    color: #fff;
    height: 66px;
    font-size: 16px;
    padding-right: 76px;
    line-height: 66px;
    cursor: pointer;
    margin-top: 16px;
    background: #e50019 url(../images/contact1/ico5.png) no-repeat;
    background-position: 690px 50%;
}




/* 联系部分 结束 */







/* 校园招聘部分 */
.content .qaimg {
    height: 700px;
}
.join_us3.content .qaimg{
    margin-top:  0 !important ;
    height: 610px;

}
.content .qaimg h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    font-weight: 300;
    font-family: 'RAJDHANI-SEMIBOLD';
}

.content .qaimg h2 p {
    font-size: 60px;
    color: #ffffff;
    line-height: 60px;
    font-weight: 300;
    float: left;
    font-family: 'RAJDHANI-SEMIBOLD';
}

.content .qaimg h2 .em {
    font-size: 82px;
    font-weight: 100;
    margin-bottom: 0;
    margin-right: 5px;
    font-family: 'RAJDHANI-LIGHT';
}

.content .qaimg .h1 {
    text-align: left;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .5px;

}
.content.join_qa .qaimg{
    height: 254px;
}
.content.join_qa .qaimg .w1200 {
    padding-top: 135px;
}
.content .qaimg .w1200 {
    padding-top: 288px;
}
.content .qaimg.banner{
    max-width: 1920px ;
}
.content .qaimg.banner .next, .content .qaimg.banner .prev{
    top: 50%;
    margin-top: -24px;
}
.content .qaimg.banner .next{
    right: 40px;
}
.content .qaimg.banner .prev{
    left: 40px;
}
.content .qaimg .btnWrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    pointer-events: auto;
    max-width: 1920px;
    margin: 0 auto;
    display: none;
}


.join_qa .tith1,.join_us3 .tith1 {
    color: #4c4c4c;
    font-size: 36px;
    line-height: 77px;
    text-align: center;
    background-position-y: 7px;
    text-transform: uppercase;
    font-weight: bold;
}

.join_us3 .tith1{
	position: relative;
	padding-top: 50px;
	height: 181px;
	background: url(/images/contact1/titBg.png) no-repeat center;
}
.join_us3 .contact_npm1 {
    padding: 17px 0 77px;
}

.join_us3 .contact_npm1 .box {
    margin-top: -20px;
}

.join_us3 .contact_npm1 .box .li {
    float: left;
    width: 334px;
    margin-right: 10px;
}

.join_us3 .contact_npm1 .box .li:last-child {
    width: 166px;
    margin-right: 0;
}

.join_us3 .contact_npm1 .box .li i {
    height: 154px;
    display: block;
    position: relative;
}

.join_us3 .contact_npm1 .box .li i img {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.join_us3 .contact_npm1 .box .li:nth-child(1) i {
    background: url(/images/contact1/bg5.png) no-repeat;
}

.join_us3 .contact_npm1 .box .li:nth-child(2) i {
    background: url(/images/contact1/bg6.png) no-repeat;
}

.join_us3 .contact_npm1 .box .li:nth-child(3) i {
    background: url(/images/contact1/bg7.png) no-repeat;
}

.join_us3 .contact_npm1 .box .li:nth-child(4) i {
    width: 100%;
    background: url(/images/contact1/bg8.png) no-repeat;
}

.join_us3 .contact_npm1 .box .li p {
    color: #4c4c4c;
    font-size: 16px;
    padding-left: 44px;
    margin-bottom: 0;
    margin-top: 15px;
    font-family: 'RAJDHANI-SEMIBOLD';
}

.join_us3 .layout{
	padding-top: 27px;
	height: 573px;
	background: url(/images/contact1/layout-bg.png) no-repeat center/cover;
}
.join_us3 .layout .tith1{
	padding-top: 38px;
	background-image: url(/images/contact1/titBg2.png);
}
.join_us3 .layout .list{
	display: flex;
	justify-content: space-between;
	margin-top: -40px;
}
.join_us3 .layout .list li{
	position: relative;
	width: 136px;
	height: 136px;
}
 .join_us3 .layout .list li .txt{
	 position: absolute;
	 left: 0;
	 width: 100%;
	 text-align: center;
	 bottom: 26px;
	 font-size: 16px;
	 color: #fff;
 }
 .join_us3 .layout .list li:first-child,.join_us3 .layout .list li:nth-child(7){
	 margin-top: 150px;
 }
 .join_us3 .layout .list li:nth-child(2),.join_us3 .layout .list li:nth-child(6){
 	 margin-top: 100px;
 }
 .join_us3 .layout .list li:nth-child(3),.join_us3 .layout .list li:nth-child(5){
 	 margin-top: 50px;
 }
 .join_us3 .abt{
	 padding-top: 17px;
     background: url(/images/contact1/abt_bg.png) no-repeat center;
     height: 567px;
 }
.join_us3 .abt .des{
	position: relative;
	z-index: 2;
	margin-top: -30px;
}
.join_us3 .abt .des p:first-child{
	margin-top: 0;
}
.join_us3 .abt .des p{
	margin-top: 18px;
	text-align: center;
	font-size: 14px;
	line-height: 28px;
	color: #808080;
}

.join_us3  .num_list{
    position: relative;
    margin-top: 60px;

}
.join_us3  .num_list::after{
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    background: url(/images/contact1/xian.png) no-repeat center;
    width: 100%;
    height: 1px;
}
.join_us3  .num_list ul{
    margin: auto;
    width: 740px;
}
.join_us3  .num_list li {
    /* display: flex; */
      width: 124px;
      float: left;
      text-align: center;
      margin-right: 184px;
}
.join_us3  .num_list li:nth-of-type(3){
    margin-right: 0;
}
.join_us3  .num_list li:nth-of-type(1) span{
    color: #e50019;
    font-size: 20px;
    font-family: 'RAJDHANI-BOLD';
    position: initial;
}
.join_us3  .num_list li span{
    color: #e50019;
    font-size: 36px;
    font-family: 'RAJDHANI-BOLD';
    margin-left: 3px;
    position: relative;
    top: -6px;
}
.join_us3  .num_list li em{
    color: #e50019;
    font-size: 54px;
    font-family: 'RAJDHANI-BOLD';
    letter-spacing: -2px;
}
.join_us3  .num_list li h4{
    display: block;
    color: #4c4c4c;
    font-size: 16px;
    /* font-weight: 600; */
    font-family: 'RAJDHANI-SEMIBOLD';
}
.join_us3 .contact_npm4 .tith1 {
    padding-top: 50px;
    background-image: url(/images/contact1/titBg3.png);
}
.join_us3 .contact_npm4 {
    background: url(/images/contact1/contact_npm4.jpg) no-repeat center;
    height: 629px;
    position: relative;
}
.join_us3 .contact_npm4 .topit{
    padding-top: 33px;
}
.join_us3 .npm4_banner{
    position: relative;
}
.join_us3 .npm4_banner .bd li{
    width: 590px ;
    margin-right: 20px;
}
.join_us3 .npm4_banner .bd li .top{
    background: url(/images/contact1/i1.png) no-repeat center bottom;
    width: 590px;
    height: 157px;
    padding: 40px;
}
.join_us3 .npm4_banner .bd li .top h3{
    color: #4c4c4c;
    font-size: 18px;
    margin-bottom: 10px;
} 
.join_us3 .npm4_banner .bd li .bot {
    padding-left: 40px;
    padding-top: 15px;
    overflow: hidden;
}
.join_us3 .npm4_banner .bd li .bot .head{
    float: left;
}
.join_us3 .npm4_banner .bd li .bot .head img{
    border-radius: 50%;
}
.join_us3 .npm4_banner .bd li .bot .mag{
    float: left;
    padding-left: 20px;
    padding-top: 30px;
}
.join_us3 .npm4_banner .bd li .bot .mag h4{}
.join_us3 .npm4_banner .bd li .bot .mag p{}


.join_us3 .npm4_banner .prev,
.join_us3 .npm4_banner .next {
    width: 60px;
    height: 60px;
    transition: all .7s;
    cursor: pointer;
    position: absolute;
    top: 60px;

}


.join_us3 .npm4_banner .next:hover {
    background: url(/images/business/b_nexton.png) no-repeat center;
    transition: all .7s;
}

.join_us3 .npm4_banner .prev:hover {
    background: url(/images/business/b_prevon.png) no-repeat center;
    transition: all .7s;

}

.join_us3 .npm4_banner .prev {
    background: url(/images/contact1/next11.png) no-repeat center;
    left: -100px;
}

.join_us3 .npm4_banner .next {
    background: url(/images/contact1/prev11.png) no-repeat center;
    right: -100px;
}

.join_us3_deliver .img{
    height: 400px;
    position: relative;
    overflow: hidden;
}
.join_us3_deliver .img .ri{
    width: 43.75%;
    height: 400px;
    float: right;
}
.join_us3_deliver .img .le_head{
    width: 56.25%;
    float: left;
    height: 400px;
}
.join_us3_deliver .subBan .name{
    font-size: 16px;
    color: #fff;
    text-align: right;
    position: relative;
    margin-bottom: 30px;
    margin-top: 30px;
}
.join_us3_deliver.content .img .w1200{
    padding-top: 140px;
}
.join_us3_deliver .subBan .name::before{
    content: '';
    position: absolute;
    top: 11px;
    right: 70px;
    width: 60px;
    height: 2px;
    background: url(/images/contact1/xian2.png) no-repeat center;
}
.join_us3_deliver .subBan h6{
    font-size: 26px;
    line-height: 42px;
    color: #fff;
    text-align: right;
}
.join_us3_deliver  .cont_deliver{
    padding: 90px 0;
}
.join_us3_deliver  .cont_deliver h3{
    font-size: 36px;
    color: #4c4c4c;
    margin-bottom: 45px;
}
.join_us3_deliver  .cont_deliver img{
    margin-bottom: 20px;
}


.join1.content .img .w1200{
    padding-top: 135px;
}
.join_qa .contact_npm2 {
    background: #f5f5f5;
    padding: 16px 0 5px 0;
    position: relative;
}
.join_qa .contact_npm2 .tith1{
    position: relative;
    padding-top: 50px;
    height: 181px;
    background: url(/images/contact1/titBg4.png) no-repeat center;
}

.join_qa .contact_npm2 .box {
    margin-top: 20px;
    position: relative;
    margin-bottom: 120px;
}

.join_qa .contact_npm2 .box .boxbg {
    background: #fff;
    padding: 33px 58px 88px;
    position: relative;
    z-index: 2;
}

.join_qa .contact_npm2 .box::before {
    content: '';
    width: 1236px;
    height: 552px;
    position: absolute;
    left: -40px;
    top: -44px;
    z-index: 1;
    background: url(/images/contact1/bg9.png) no-repeat;
}

.join_qa .contact_npm2 .box .tkbg {
    width: 56px;
    height: 56px;
    position: absolute;
    left: 58px;
    top: 56px;
    transition: all 1s;
    background: url(/images/contact1/ico13.png) no-repeat;
}

.join_qa .contact_npm2 .box.animated .tkbg {
    top: -56px;
}

.join_qa .contact_npm2 .box::after {
    content: '';
    width: 24px;
    height: 22px;
    position: absolute;
    right: -24px;
    bottom: 0;
    z-index: 1;
    background: url(/images/contact1/bg10.png) no-repeat;
}
.join_qa .contact_npm2 .box .ul {
    margin-bottom: 40px;
}
.join_qa .contact_npm2 .box .li {
    margin-bottom: 32px;

}

.join_qa .contact_npm2 .box .li:last-child {
    margin-bottom: 0;
}

.join_qa .contact_npm2 .box .li .liq {
    height: 84px;
    background: #fff url(../images/contact1/ico11.png) no-repeat;
    background-position: 30px 50%;
    padding-left: 73px;
    position: relative;
}

.join_qa .contact_npm2 .box .li .lia {
    height: 84px;
    background: #e6ecf2 url(../images/contact1/ico12.png) no-repeat;
    background-position: 30px 50%;
    position: relative;
    padding-left: 73px;
}

.join_qa .contact_npm2 .box .li p {
    font-size: 16px;
    color: #808080;
    position: absolute;
    left: 73px;
    top: 50%;
    transform: translateY(-50%);
}

.page .content.join_qa {
    padding-bottom: 0;
}

.join_us3 .qaimg .w1200 {
    text-align: center;
}

.join_us3 .qaimg .w1200 a {
    width: 144px;
    height: 48px;
    margin: 80px auto 0;
    border-radius: 36px;
    backdrop-filter: blur(4px);
    line-height: 48px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #e1dedd;
    display: none;
}

.content.join_us3 .qaimg .w1200 {
    padding-top: 210px;
}

.join_us3 .join_npm1 {
    padding-top: 100px;
}

.join_us3 .join_npm1 .time {
    float: left;
    width: 390px;
    height: 230px;
    border-radius: 15px;
    margin-right: 15px;
    padding-top: 50px;
    transition: all .3s;
    background-image: linear-gradient(#edf2fa, #e5eff9, #d8e9f7, #cce4f5);
}

.join_us3 .join_npm1 .time:last-child {
    margin-right: 0;
}

.join_us3 .join_npm1 .time i {
    display: block;
    margin: 0 auto 25px;
    transition: all 1s;
}

.join_us3 .join_npm1 .time h1 {
    color: #2651bc;
    font-size: 30px;
    line-height: 30px;
    transition: all .3s;
    font-weight: 100;
    text-align: center;
    margin-bottom: 10px;
}

.join_us3 .join_npm1 .time p {
    color: #6c7780;
    font-size: 16px;
    padding-right: 20px;
    margin: auto;
    display: table;
    transition: all .3s;
    background: url(/images/contact1/ico17.png) no-repeat;
    background-position: right 50%;
}

.join_us3 .join_npm1 .time:nth-child(2) i {
    width: 54px;
    height: 48px;

    background: url(/images/contact1/ico14.png) no-repeat;
}

.join_us3 .join_npm1 .time:nth-child(2):hover i {
    background: url(/images/contact1/ico14on.png) no-repeat;
}

.join_us3 .join_npm1 .time:nth-child(1) i {
    width: 54px;
    height: 56px;
    background: url(/images/contact1/ico15.png) no-repeat;
}

.join_us3 .join_npm1 .time:nth-child(1):hover i {
    background: url(/images/contact1/ico15on.png) no-repeat;
}

.join_us3 .join_npm1 .time:nth-child(3) i {
    width: 50px;
    height: 48px;
    background: url(/images/contact1/ico16.png) no-repeat;
}

.join_us3 .join_npm1 .time:nth-child(3):hover i {
    background: url(/images/contact1/ico16on.png) no-repeat;
}

.join_us3 .join_npm1 .time:hover {
    background-image: linear-gradient(#5890f1, #4f84e7, #3969d0, #2854be);
    box-shadow: 0px 8px 9px 0px #c4cfe6;
}

.join_us3 .join_npm1 .time:hover h1 {
    color: #fff;
}



.join_us3 .join_npm1 .time:hover p {
    color: #fff;
    background: url(/images/contact1/ico17on.png) no-repeat;
    background-position: right 50%;
}

.content.join_Positions .qaimg{
	height: 254px;
}
.content.join_Positions .qaimg .w1200 {
    padding-top: 85px;
}
.join_Positions .join_npm1 {
    background: #f2f2f2;
    padding: 60px 0 90px;
}
.content.join_Positions .qaimg h2 p{
	font-size: 40px;
	line-height: 45px;
}

.join_Positions .join_npm1 .topit .li {
    float: left;
    width: 390px;
    height: 66px;
    position: relative;
    background: #fff;
    margin-right: 15px;
    z-index: 5;
}

.join_Positions .join_npm1 .topit .li:last-child {
    margin-right: 0;
}

.page .content.join_Positions {
    /* padding-bottom: 0; */
}

.join_Positions .join_npm1 .topit .li .drop-down {
    height: 100%;
    width: 100%;
}

.join_Positions .join_npm1 .topit .li .drop-down ul {
    display: none;
    background: #fff;
    padding: 0;
    overflow-y: auto;

    max-height: 302px;
    z-index: 10;
}

.join_Positions .join_npm1 .topit .li .drop-down ul li {
    /* font-size: 15px;
    color: #999999;
    line-height: 25px;
    transition: all .3s; */
    cursor: pointer;
    padding-left: 30px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #bfbfbf;
    background: #f2f2f2;
    transition: all .5s;
    font-family: "Gilroy-Medium";
    position: relative;
}

.join_Positions .join_npm1 .topit .li .drop-down ul li:hover {
    transition: all .5s;
    color: #2651bc;
}

.join_Positions .join_npm1 .topit .li .drop-down .drop-txt {
    line-height: 66px;
    padding-left: 20px;
    font-size: 15px;
    color: #999999;
    cursor: pointer;
}

.join_Positions .join_npm1 .topit .li .i {
    position: absolute;
    right: 0;
    top: 0;
    width: 66px;
    height: 100%;
    background: #e6e6e6 url(/images/contact1/ico18.png) no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}

.join_Positions .join_npm1 .topit .li .clei {
    position: absolute;
    right: 0;
    top: 0;
    width: 66px;
    height: 100%;
    background: #e50019 url(../images/contact1/ico19.png) no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}

.join_Positions .join_npm1 .topit .li input {
    width: calc(100% - 66px);
    height: 100%;
    padding-left: 20px;
    font-size: 15px;
    color: #999999;
}

.join_Positions .join_npm1 .botbox .time {
    margin-top: 16px;
    width: 592px;
    margin-right: 16px;
    float: left;
    height: 140px;
    background: #fff url(../images/contact1/ico20.png) no-repeat;
    padding: 45px 90px 0 40px;
    background-position: 502px 50%;
}
.join_Positions .join_npm1 .botbox .time:hover {
    background: #fff url(../images/contact1/ico20-1.png) no-repeat;
    background-position: 502px 50%;
    transition: all .6s;
}
.join_Positions .join_npm1 .botbox .time:hover h1{
    color: #2651bc;
    transition: all .5s;
}

.join_Positions .join_npm1 .botbox .time:nth-child(2n) {
    margin-right: 0;
}

.join_Positions .join_npm1 .botbox .time .ul .li {
    float: left;
    color: #7e888c;
    font-size: 14px;
    padding-left: 20px;
    margin-right: 25px;
}

.join_Positions .join_npm1 .botbox .time h1 {
    color: #4c4c4c;
    margin-bottom: 6px;
    font-size: 20px;
    transition: all .5s;
}

.join_Positions .join_npm1 .botbox .time .ul .li:nth-child(1) {
    background:  url(/images/contact1/ico21.png) no-repeat;
    background-position: left 50%;
}

.join_Positions .join_npm1 .botbox .time .ul .li:nth-child(2) {
    background:  url(/images/contact1/ico22.png) no-repeat;
    background-position: left 50%;
}

.join_Positions .join_npm1 .botbox .time .ul .li:nth-child(3) {
    background:  url(/images/contact1/ico23.png) no-repeat;
    background-position: left 50%;
}

#pagination {
    margin-top: 40px;
}

#pagination button {
    border: 2px solid #d9d9d9;
    width: 42px;
    height: 42px;
    line-height: 42px;
    box-sizing: border-box;
    text-align: center;
    color: #808080;
    font-size: 18px;
    margin-left: 16px;
    font-family: 'RAJDHANI-SEMIBOLD';
}

#pagination .spage-skip {
    display: none;
}

#pagination .spage-number {
    float: right;
}

#pagination .prev,
#pagination .next {
    width: 86px;
    font-size: 14px;
}

#pagination .active {
    border: 2px solid #2651bc;
    background: #2651bc;
    color: #fff;
}



.join_positions_data {
    background: #f5f5f5;
    padding-top: 90px;
    margin-top: 0;
    padding-bottom: 100px;
    min-height: 90vh;
}

.join_positions_data .join2_data_cont1 .title_Top h1 {
    margin-bottom: 15px;
}

.join_positions_data .join2_data_cont1 .title_Top .li {
    position: relative;
    line-height: 1;
}

.join_positions_data .join2_data_cont1 .title_Top .li::before {
    content: '';
    position: absolute;
    right: -13px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #d4d4d4;
}

.join_positions_data .join2_data_cont1 .title_Top .li:nth-last-of-type(1)::before {
    content: unset;
}





/* 投递 资料填写页面 join_deliver */

.join_deliver {
    padding: 170px 0 100px;
    background-color: #f5f5f5;
    margin-top: 0;
}

.join_deliver .tit {
    overflow: hidden;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;

}

.join_deliver .tit h1 {
    font-size: 24px;
    color: #4c4c4c;
    float: left;
    margin-right: 20px;
    line-height: 46px;
}

.join_deliver .tit p {
    font-size: 16px;
    color: #2651bc;
    border-bottom: 1px solid #2651bc;
    display: inline;
    float: left;
    line-height: 36px;

}
.join_deliver .deliver_cont3  {
    height: 262px;
    overflow: visible !important;
}
.join_deliver .deliver_cont2  {
    height: 368px;
    overflow: visible !important;
}
.join_deliver  .deliver_cont8{
    height: 224px !important;
    overflow: visible !important;
}
.join_deliver .cont {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.join_deliver .cont h2 {
    font-size: 18px;
    color: #4c4c4c;
    float: left;
}

.cont .upload_ct {
    width: 580px;
    height: 260px;
    border-radius: 10px;
    padding: 40px;
    background-color: #fff;
    margin-left: 160px;
    float: left;
}

.cont .upload_ct h5 {
    font-size: 18px;
    color: #4c4c4c;
    text-align: center;
}

.join_deliver .cont .upload_btn {
    color: #2651bc;
    width: 130px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #2651bc;
    border-radius: 30px;
    text-align: center;

}
.join_deliver .cont .upload_tips {
    color: #2651bc;
    font-weight: bold;
    text-align: center;
    /* padding-bottom: 15px; */
    font-size: 15px;
}

.join_deliver .cont .upload_btn.uplo2 label {
    font-size: 14px;
}

.join_deliver .cont .upload_btn label {
    color: #2651bc;
    font-size: 16px;
    cursor: pointer;
}

.join_deliver .cont .upload_btn input {
    display: none;
}

.join_deliver .cont .upload_btn.uplo1 {
    margin: 20px auto ;
}
.deliver_cont1 {
    position: relative;
}
.deliver_cont1 .upload_ct p{
    /* position: absolute;
    bottom: 40px;
    left: 0;
    right: 0; */
}
.cont .upload_ct p {
    color: #b2b2b2;
    text-align: center;
    padding-top: 15px;
}

.join_deliver .cont .ct_ri {
    float: left;
}

.join_deliver .cont .txt {
    color: #808080;
    line-height: 50px;
    margin-right: 20px;
    width: 146px;
    text-align: right;
    position: relative;
}

.join_deliver .cont .txt img {
    position: relative;
    top: -8px;
    left: -5px;
}

.join_deliver .cont .txt.xing p::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 29px;
    background: url(/images/xing.png) no-repeat center;
    width: 6px;
    height: 7px;
}

.join_deliver .cont .ct_ri .row:nth-last-of-type(1) {
    margin-bottom: 0;
}

.join_deliver .cont .row {
    display: flex;
    margin-bottom: 20px;

}

.join_deliver .cont .chex {
    margin: -15px 0 5px;
}

.join_deliver .cont .row .input {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
}

.join_deliver .cont .row .input input {
    width: 400px;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;

}

.row input::-webkit-input-placeholder,
.HSetch .cBox .le .seInput input::-webkit-input-placeholder,
.row textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #b2b2b2;
}

.row input:-moz-placeholder,
.HSetch .cBox .le .seInput input:-moz-placeholder,
.row textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #b2b2b2;
}

.row input:-ms-input-placeholder,
.HSetch .cBox .le .seInput input:-ms-input-placeholder,
.row textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #b2b2b2;
}

.join_deliver .cont .chexbox {
    overflow: hidden;
}

.join_deliver .cont .chexbox li {
    /* margin-bottom: 15px; */
    cursor: pointer;
    float: left;
    margin-right: 25px;
    /* line-height: 50px; */
}

.join_deliver .cont .chexbox li:nth-child(3n) {
    margin-right: 0;
}

.join_deliver .cont .chexbox li .icn {
    background: url(/images/join/ico7.png) no-repeat center;
    width: 17px;
    height: 50px;
    margin-right: 7px;
    float: left;
    line-height: 50px;
}

.join_deliver .cont .chexbox li.on .icn {
    background: url(/images/join/ico77on.png) no-repeat center;
}

.join_deliver .cont .chexbox li p {
    float: left;
    line-height: 1;
    line-height: 50px;
}

.join_deliver .cont .c_down {
    height: 50px;
    position: relative;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
    width: 125px;
}
.join_deliver .cont .drop-down{
    height: 50px;
    position: relative;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
    width: 400px;
}
.join_deliver .cont .drop-down .drop-txt {
    line-height: 48px;
    padding-left: 20px;
    font-size: 14px;
    color: #b2b2b2;
    background: #fff url(/images/join/ico11.png) no-repeat;
    cursor: pointer;
    display: block;
    border-radius: 7px;
    background-position: 360px center;

}
.join_deliver .cont .drop-down  ul{
    display: none;
    top: 49px;
    max-height: 350px;
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    z-index: 10;
    background-color: #fff;
}
.join_deliver .cont .c_down span {
    line-height: 48px;
    padding-left: 20px;
    font-size: 14px;
    /* color: #b2b2b2; */
    background: #fff url(/images/join/ico11.png) no-repeat;
    cursor: pointer;
    display: block;
    border-radius: 7px;

}

.join_deliver .cont .c_down ul,.join_deliver .deliver_cont7 .cert_down ul {
    display: none;
    top: 49px;
    max-height: 350px;
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    z-index: 10;
    background-color: #fff;
}
.join_deliver .cont .c_down li,.join_deliver .deliver_cont7 .cert_down li {
    padding-left: 20px;
    line-height: 30px;
    font-size: 14px;
    color: #bfbfbf;
    background: #fff;
    transition: all .5s;
    font-family: "Gilroy-Medium";
    cursor: pointer;
}
.join_deliver .cont .drop-down li{
    padding-left: 20px;
    line-height: 30px;
    font-size: 14px;
    color: #bfbfbf;
    background: #fff;
    transition: all .5s;
    font-family: "Gilroy-Medium";
    cursor: pointer;
}

.join_deliver .cont .drop-down li:hover{
    color: #000;
}


.join_deliver .cont .certificates {
    width: 260px;
    margin-right: 10px;

}

.join_deliver .cont .certificates span {
    background-position: 230px center;
}
.join_deliver .deliver_cont4 .c_down span {
    height: 100%;
    z-index: 999;
}
.join_deliver .deliver_cont4 .drop-down{
    background-color: #fff;
}
.join_deliver .deliver_cont4 .c_down  .cont7_inp{
 z-index: -1;
}
.join_deliver .deliver_cont4 .c_down  .cont7_inp input{
    height: 50px;
}
.join_deliver .deliver_cont7 .certi-ct{
    display: flex;
}
.join_deliver .deliver_cont7  .certi_inp,
.join_deliver .deliver_cont4  .certi_inp {
    width: 100%;
    line-height: 50px;
    padding-left: 20px;
    /* color: #b2b2b2; */
}
.join_deliver .deliver_cont7  .certi-ct{
    position: relative;
}
.join_deliver .deliver_cont7 .c_down span{
    overflow: hidden;
    /* height: 60px; */
    position: absolute;
    top: -1px;
    left: -1px;
    width: 94%;
    height: 100%;
    color: inherit;

    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
}
.join_deliver  .cont7_inp{
    position: absolute;
    width: 80%;
    top: 0; 
}
.join_deliver .deliver_cont7 .row .input {
    margin-top: 25px;
        background-color: unset;
        border: none;
        border-radius: 0;
}
.join_deliver .deliver_cont7 .row .input .txt{
    float: left;
}
.join_deliver .deliver_cont7 .row.textarea:nth-of-type(1)   {
    border: none;
    margin-top: 00;
    padding-top: 0;
}
.join_deliver .deliver_cont7 .row .input textarea{
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
}
.join_deliver .deliver_cont7  .textarea{
    display: block;
    margin-top: 30px ;
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
}

.join_deliver .deliver_cont7 .cert_down{
    background-color: #fff;
    width: 325px;
    
    height: 50px;
    position: relative;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
}
.join_deliver .deliver_cont7 .drop-down span {
    line-height: 48px;
    padding-left: 20px;
    font-size: 14px;
    color: #b2b2b2;
    background: #fff url(/images/join/ico11.png) no-repeat;
    cursor: pointer;
    display: block;
    border-radius: 7px;
}
.join_deliver .deliver_cont7 .cert_down span {
    background-position: 292px center !important;
    color: inherit !important;
    padding-left: 20px !important;
    line-height: 50px !important;
}
.join_deliver .cont .uplo p {
    margin-left: 35px;
    line-height: 50px;
    color: #b2b2b2;
}

.join_deliver .cont .c_down.city {
    width: 400px;
}

.join_deliver .cont .c_down.city span {
    background-position: 360px center;
}

.deliver_cont3 .teach_tit {
    color: #808080;
    font-size: 16px;
    width: 140px;
    text-align: right;
}

.join_deliver .cont .c_down.w400 {
    width: 400px;
}

.join_deliver .cont .c_down.w400 span {
    background-position: 360px center;
}
.join_deliver .cont .school_ct:nth-of-type(1){
    margin-top: 0 ;
    border-top: none ;
}
.join_deliver .cont.deliver_cont5 .ct_ri .experience_ct:nth-child(2){
   margin-top: 0 ;
    border-top: none ;
}
.join_deliver .cont.deliver_cont5 .ct_ri .experience_ct:nth-of-type(1),
.join_deliver .cont.deliver_cont6 .ct_ri .experience_ct:nth-of-type(1){
    margin-top: 0 ;
    border-top: none ;
}
.join_deliver .cont.deliver_cont5 .ct_ri .experience_ct.work_ct:nth-child(2){
    margin-top: 30px !important;
    border-top: 1px solid #e0e0e0 !important;
}
.join_deliver .cont .school_ct,
.join_deliver .cont .experience_ct{
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.join_deliver .cont .moreBtn {
    color: #2651bc;
    margin-left: 168px;
    margin-top: -5px;
    cursor: pointer;
    margin-top: 20px;
}
.join_deliver .cont .row input[type="date"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
    /* color: #b2b2b2; */
}
.deliver_cont4 .teach_tit {
    margin-left: 75px;
    display: flex;
    justify-content: space-between;
    /* margin-top: -20px; */
}
.deliver_cont4 .teach_tit >p{
    line-height: 60px;
    margin-bottom: 0;
    font-size: 16px;
}

.deliver_cont4 .teach_tit .dele{
    line-height: 60px;
}
.deliver_cont4 .ct_ri:nth-of-type(1) {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 0;
    border-top: none;
}

.deliver_cont4 .ct_ri {
    margin-left: 75px;
    /* padding-top: 40px; */
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 20px;
}
.deliver_cont7 .ct_ri{
    position: relative;
}
.deliver_cont7 .certi-ct .dele {
    background: url(/images/join/ico12.png) no-repeat left;
    background-size: 15px 15px;
    padding-left: 20px;
    color: #2651bc;
    cursor: pointer;
    line-height: 50px;
    position: absolute;right: 40px;
}
.deliver_cont5 .ct_ri .internship,
.deliver_cont6 .ct_ri .internship {
  
    color: #808080;
    margin-left: 75px;
} 
.cont .ct_ri .p_text{
    line-height: 50px;
    color: #808080;
}
.cont .internship label{
    cursor: pointer;
}
.deliver_cont5 .experience_ct,
.deliver_cont6 .experience_ct{
    margin-top: 25px;
}
.deliver_cont5 .ct_ri .teach_tit,
.deliver_cont6 .ct_ri .teach_tit {
    display: flex;
    justify-content: space-between;
    width: 795px;
    margin-left: 75px;


}

.deliver_cont5 .ct_ri .teach_tit p,
.deliver_cont6 .ct_ri .teach_tit p {
    margin-bottom: 0;
    line-height: 60px;
    font-size: 16px;
}
.deliver_cont4 .ct_ri .dele,
.deliver_cont5 .ct_ri .dele,
.deliver_cont6 .ct_ri .dele {
    background: url(/images/join/ico12.png) no-repeat left;
    background-size: 15px 15px;
    padding-left: 20px;
    color: #2651bc;
    cursor: pointer;
    line-height: 60px;
}

.cont textarea {
    border: none;
    border-radius: 7px;
    padding: 12PX 20px;
}

.deliver_cont8 .input {
    display: flex;
}

.join_deliver .deliver_cont8 .row .input input {
    width: 265px;
}

.join_deliver .deliver_cont8 .lang span {
    background-position: 90px center;

}


.deliver_cont8 .TwoCot:nth-last-of-type(1) .lang:nth-last-of-type(1){
    width: 265px;
}
.deliver_cont8 .TwoCot  #language2_1{
    background-position: 232px center;
}
.deliver_cont8 .TwoCot .lang {
    margin-right: 10px;

}

.cont .row .tips {
    color: #b2b2b2;
    line-height: 50px;
    margin-left: 30px;
}

.deliver_cont12 {
    padding-top: 45px;
    position: relative;
    overflow: hidden;
}

.deliver_cont12 .Le {
    width: 650px;
}

.deliver_cont12 .Le input {
    margin-top: 5px;
    float: left;
}
.deliver_cont12 .Le p a{
    display: inline-block;
}

.deliver_cont12 .Ri {
    width: 275px;
}

.deliver_cont12 .Ri .submit {
    width: 130px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #2651bc;
    color: #fff;
    font-size: 16px;
    border-radius: 25px;
    float: left;
    margin-right: 15px;
}

.deliver_cont12 .Ri .quit {
    width: 130px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #fff;
    color: #808080;
    font-size: 16px;
    border-radius: 25px;
    float: left;
}

.cont .time .block {
    position: relative;
    width: 185px;
    height: 50px;
}

.cont .time .block1 {
    margin-left: 30px;
    position: relative;
}

.cont .time .block1::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -21px;
    width: 12px;
    height: 1px;
    background: url(/images/join/ico13.png) no-repeat center;
}

.cont .time .el-date-editor.el-input,
.cont .time .el-date-editor.el-input__inner {
    width: 185px;
}

.cont .time .el-input__inner {
    height: 50px;
    line-height: 50px;
}

.cont .time .GetToday {
    display: flex;
    justify-content: left;
    margin-left: 30px;
}

.cont .time .GetToday p {
    line-height: 50px;
    margin-left: 5px;
}

.cont .time .GetToday input {
    margin-top: 17px;
}

.join_deliver2 .deliver_cont12{
    padding-top: 0;
}
.join_deliver2 .deliver_cont12 .Ri{
    width: auto;
}





/* 2022-4-26 */
/* 登录成功后显示状态 */
#header.header1 .header_info{
    display: block;
    /* margin-right: 0; */
}
#header.header1.success .header_info .box2 {
    display: block;
}

#header.header1.success .box1 {
    display: none;
}

/* 未登录隐藏状态 */
#header.header1.fail .header_info .box2 {
    display: none;
}

#header.header1.fail .box1 {
    display: block;
}

.header_info {
    float: left;
    margin-right: 60px;
    display: none;
}

.header_info .btn {
    padding: 0 19px 0 45px;
    line-height: 34px;
    display: inline-block;
    color: #727272;
    font-weight: bold;
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.header_info .btn.dl {
    background: url(/images/public/ico6.png) no-repeat 22px center;
}

.header_info .btn.zc {
    background: url(/images/public/ico7.png) no-repeat 22px center;
}

.header_info .btn.dl:hover {
    background: url(/images/public/_ico6.png) no-repeat 22px center;
}

.header_info .btn.zc:hover {
    background: url(/images/public/_ico7.png) no-repeat 22px center;
}

.header_info .btn:hover {
    color: #2651bc;
}

.header_info .head_user,
.header_info .head_out,
.header_info .num {
    display: inline-block;
    vertical-align: top;
    line-height: 91px;
    position: relative;
}

.header_info .num {
    font-family: 'RAJDHANI-SEMIBOLD';
    font-size: 16px;
}

.head_user_bot {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 18px 18px;
    background-color: #fff;
    box-shadow: 0px 0px 27px rgba(146, 162, 182, .2);
    z-index: 99;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: -1px !important;
}

.head_user.on:before {
    content: '';
    width: 0;
    height: 0;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-bottom: 9px solid #fff;
    box-shadow: 0px 0px 27px rgba(146, 162, 182, .2);
    position: absolute;
    /*top: -9px;
    */
    left: 32px;
    bottom: 1px;
    z-index: 100;
}

.head_user_bot a {
    font-size: 14px;
    color: #808080;
    line-height: 37px;
}

.head_user_top {
    font-size: 14px;
    color: #808080;
    padding-right: 18px;
    background: url(/images/public/ico8.png) no-repeat right center;
}

.head_out {
    position: relative;
    font-size: 14px;
    color: #808080;
    padding-left: 23px;
    margin-left: 18px;
}

.head_out:before {
    content: '';
    width: 2px;
    height: 12px;
    background-color: #e0e0e0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.public_header .header .nav>ul {
    margin: 0;
}

.header_info .box1 {
    margin-top: 27px;
}

.public_reign {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    height: 100vh;
    background: url(/images/public/ico1.jpg) no-repeat center 90px;
    background-size: cover;
    position: relative;
}

.public_reign>.w1200 {
    position: relative;
    height: 100%;
}

.public_reign #pageFooter {
    position: absolute;
    left: 0;
    bottom: 0;
}
#pageFooter .Ri .li1 .code_img {
    position: absolute;
    bottom: 67px;
    left: -36px;
    width: 118px;
    height: 125px;
    background: url(/images/wxQcBg.png) no-repeat;
    padding: 5px 5px;
    display: none;
}
.public_box {
    position: absolute;
    top: 46%;
    right: 0;
    width: 400px;
    padding: 60px 40px;
    background-color: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.public_box .tit {
    font-size: 30px;
    color: #4c4c4c;
    margin-bottom: 30px;
    font-weight: lighter;
}

.public_box .input {
    height: 50px;
    width: 100%;
    padding: 0 42px;
    color: #4c4c4c;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.public_box .input::-webkit-input-placeholder {
    color: #bfbfbf;
}

.public_box .input:-moz-placeholder {
    color: #bfbfbf;
}

.public_box .input::-moz-placeholder {
    color: #bfbfbf;
}

.public_box .input:-ms-input-placeholder {
    color: #bfbfbf;
}

.public_box .item {
    position: relative;
}

.public_box .item+.item {
    margin-top: 15px;
}

.exhibitors_login .item:before {
    content: '';
    width: 18px;
    height: 100%;
    background: url(/images/public/ico2.png) no-repeat center;
    position: absolute;
    left: 18px;
    top: 0;
}

.exhibitors_login .item2:before {
    background: url(/images/public/ico3.png) no-repeat center;
}

.exhibitors_login .item .eye {
    width: 18px;
    height: 100%;
    background: url(/images/public/ico4.png) no-repeat center;
    position: absolute;
    right: 18px;
    top: 0;
    cursor: pointer;
}

.exhibitors_login .item .eye.on {
    background: url(/images/public/ico5.png) no-repeat center;
}

.public_box .button {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #2651bc;
    color: #fff;
    font-size: 16px;
    line-height: 55px;
    outline: none;
    cursor: pointer;
    margin-top: 40px;
}

.link_entries {
    overflow: hidden;
    font-size: 14px;
    color: #999999;
    margin-top: 15px;
}

.link_entries_btns {
    float: left;
}

.link_entries_btns a {
    color: #629eff;
    display: inline-block;
}

.exhibitors_register .input {
    padding: 0 20px;
}

.exhibitors_register .rule {
    position: relative;
    font-size: 14px;
    color: #bfbfbf;
    margin-top: 6px;
}

.exhibitors_register .checkbox {
    position: relative;
    display: block;
    float: left;
}

.exhibitors_register .checkbox input:first-child {
    position: absolute !important;
    opacity: 0;
    filter: Alpha(opacity=0);
    margin: 0;
}

.exhibitors_register .checkbox label {
    padding-left: 18px !important;
    min-height: 24px;
    line-height: 24px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.exhibitors_register .checkbox input:first-child:checked+label::before,
.exhibitors_register .checkbox input:first-child:checked+input[type="hidden"]+label::before {
    background-color: #629eff;
    border-color: #629eff;
}

.exhibitors_register .checkbox input:first-child+label::before,
.exhibitors_register .checkbox input:first-child+input[type="hidden"]+label::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
}

.exhibitors_register .checkbox input:first-child:checked+label::after,
.exhibitors_register .checkbox input:first-child:checked+input[type="hidden"]+label::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 5px;
    height: 8px;
    border: solid 2px #fff;
    border-left: none;
    border-top: none;
    transform: translate(4px, 0px) rotate(45deg);
    -ms-transform: translate(4px, 0px) rotate(45deg);
    -moz-transform: translate(4px, 0px) rotate(45deg);
    -webkit-transform: translate(4px, 0px) rotate(45deg);
}

.exhibitors_register .rule a {
    color: #629eff;
}

.exhibitors_register .item3 {
    overflow: hidden;
}

.exhibitors_register .item3 input {
    width: 185px;
    float: left;
}

.exhibitors_register .getVerifyCode {
    float: right;
    width: 120px;
    font-size: 14px;
    color: #bfbfbf;
    line-height: 48px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.statement_pop,.fo_pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* overflow: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5); */
}

.statement_pop::-webkit-scrollbar,.fo_pop::-webkit-scrollbar  {
    display: none;
}

.statement_pop .bg,.fo_pop .bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* background-color: transparent; */
}

.statement_pop .popBody,.fo_pop .popBody {
    position: relative;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -210px;
    width: 1200px;
    height: 500px;
    z-index: 2;
    background: #fff;
    padding: 60px 20px 60px 60px;
}
.statement_pop .detailed,.fo_pop .detailed {
    height: 272px;
    overflow: auto;
    padding-right: 40px;
}
.statement_pop  .title .en,.fo_pop .title .en{
    font-family: 'RAJDHANI-SEMIBOLD';
    font-size: 36px;
    color: #b2bbd1;
    line-height: 1;
    text-transform: none;
    margin-bottom: 12px;
}
.statement_pop  .title .cn ,.fo_pop  .title .cn {
    font-size: 26px;
    color: #4c4c4c;
    line-height: 1;
    margin-top: 14px;
}
.pop.statement_pop .title ,.fo_pop .title{
    padding-bottom: 44px;
    margin: 0;
    border: none;
}
.statement_pop .close ,.fo_pop .close{
    position: absolute;
    top: -58px;
    right: 0;
    width: 48px;
    height: 48px;
    background: url(/images/menu_clone.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    z-index: 1;
}


.public_bg {
    min-height: 930px;
    background-color: #f5f5f5;
    overflow: hidden;
    padding-bottom: 60px;
}

.join_list {
    padding-top: 160px;
}

.join_list .up,
.join_personal .up {
    overflow: hidden;
    margin-bottom: 25px;
}

.join_list .down {
    overflow: hidden;
}

.join_list .h3,
.join_personal .h3 {
    font-size: 24px;
    color: #4c4c4c;
    float: left;
    line-height: 1;
    padding-top: 25px;
}

.join_personal .up .btn {
    float: right;
    font-size: 16px;
    color: #fff;
    padding: 0 38px;
    line-height: 50px;
    background-color: #2651bc;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.join_list .box {
    width: 100%;
    background-color: #fff;
    padding: 40px 40px 70px;
}

.join_list .tishi {
    font-size: 16px;
    color: #4c4c4c;
}

.join_list .box .li+.li {
    margin-top: 50px;
}

.join_list .box .li h3 {
    font-size: 18px;
    color: #4c4c4c;
    line-height: 1.2;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 16px;
    margin-bottom: 18px;
}

.join_list .box .li p {
    font-size: 14px;
    color: #808080;
    line-height: 26px;
    margin: 0;
}

.join_list2 .down .fl {
    width: 920px;
    float: left;
}

.join_list2 .down .fr {
    width: 260px;
    float: right;
    padding: 40px 0 52px;
    background-color: #fff;
    text-align: center;
}

.join_list2 .down .fr .icon,
.join_list2 .down .fr .icon img {
    width: 56px;
    height: 56px;
    overflow: hidden;
    margin: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.join_list2 .down .fr .h5 {
    font-size: 24px;
    color: #4c4c4c;
    line-height: 33px;
    font-weight: lighter;
    margin: 36px 0 24px;
}

.join_list2 .down .fr .img,
.join_list2 .down .fr .img img {
    width: 140px;
    height: 140px;
    overflow: hidden;
    margin: auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.join_list2 .down .fr .img img {
    border: 1px solid #e3e3e3;
}

.join_list2 .down .fr .p {
    font-size: 16px;
    color: #4c4c4c;
    margin-top: 10px;
}

.join_list2 .list {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    position: relative;
    width: 100%;
    margin-top: 58px;
}

.join_list2 .list .item {
    display: inline-block;
    position: relative;
}

.join_list2 .list .item1 {
    max-width: 65px;
}

.join_list2 .list .item2 {
    max-width: 134px;
}

.join_list2 .list .item3 {
    max-width: 86px;
}

.join_list2 .list .item4 {
    max-width: 100px;
}

.join_list2 .list .item:before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #e5e5e5;
    position: absolute;
    top: 40px;
    left: 0;
}

.join_list2 .list .item1:before {
    left: 60px;
    width: 225px;
}

.join_list2 .list .item2:before {
    left: 95px;
    width: 200px;
}

.join_list2 .list .item3:before {
    left: 45px;
    width: 205px;
}

.join_list2 .list .item4:before {
    display: none;
}

.join_list2 .list .item1,
.join_list2 .list .item2 {
    text-align: center;
}

.join_list2 .list .h3 {
    font-size: 16px;
    color: #808080;
    line-height: 20px;
    float: none;
    min-height: 27px;
    left: 2px;
    position: relative;
}

.join_list2 .list .item:last-child .h3 {
    font-family: 'RAJDHANI-SEMIBOLD';
    font-size: 18px;
}

.join_list2 .list .en {
    font-family: 'RAJDHANI-SEMIBOLD';
    font-size: 30px;
    color: #cccccc;
    line-height: 1;
    font-style: italic;
}

.join_list2 .list .introduce {
    font-size: 13px;
    color: #989898;
    line-height: 20px;
    margin-top: 28px;
}

.join_list2 .list .introduce a {
    color: #629eff;
    display: inline-block;
}

.join_list2 .list ul {
    position: relative;
    margin-left: 3px;
    margin-top: 19px;
}

.join_list2 .list ul:before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #e6e6e6;
    position: absolute;
    left: 6px;
    top: -12px;
}

.join_list2 .list li {
    font-size: 14px;
    color: #989898;
    line-height: 36px;
    padding-left: 24px;
    background: url(/images/public/ico11.png) no-repeat left center;
    position: relative;
}

.join_personal {
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    /* padding-top: 160px; */

}

.join_personal .Le {
    width: 920px;
    margin-right: 20px;
    background-color: #fff;
    padding-top: 55px;
    padding-bottom: 50px;
}


.join_personal .Le .txt {
    text-align: right;
    width: 130px;
}
.join_personal .Le .row.drow .txt{
    /* line-height: 40px; */
}
.join_personal .Le .txt img {
    position: relative;
    top: -6px;
    left: -4px;
}

.join_personal .Le .cont_ {
    font-size: 14px;
    color: #a6a6a6;
    margin-left: 5px;
}
.join_personal .Le .cont_ .p{
    display: flex;
    justify-content: left;
}
.join_personal .Le .row {
    display: flex;
    margin-bottom: 35px;
}

.join_personal .Le .cont_>span:nth-of-type(1) {
    margin-right: 10px;
}
#address,#wrap{
    margin-top: -9px;
    display: none;
}
#address select ,#wrap select{
    width: 190px;
    height: 40px;
    border: 1px solid #e3e3e3;
    outline: none;
    margin-right: 20px;
    color: #a6a6a6;
    padding-left: 20px;
    font-size: 14px;
}

#address select option ,#wrap select option{
    width: 80px;
    max-width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}



.edit_btn button{
    width: 140px;
    height: 60px;
    line-height: 60px;
    background-color: #2651bc;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-left: 137px;
    float: left;
}
.keep_btn{
    margin-left: 137px;
    display: none;
}
.keep_btn button{
    width: 140px;
    height: 60px;
    line-height: 60px;
    background-color: #2651bc;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-right: 20px;
}
.keep_btn button:nth-of-type(2){
    background-color: #fff;
    border: 1px solid #e3e3e3;
    height: 58px;
    line-height: 58px;
    color: #b2b2b2;
}
.join_personal .Le .row .p .type{
    margin-right: 10px;
}
.join_personal .Le .row .inp{
    border: 1px solid #e3e3e3;
    margin-top: -10px;
    color: #a6a6a6;
    height: 40px    ;
    line-height: 40px;
    width: 460px;
    padding-left: 20px;
    display: none;

}
.join_personal .Le .row .inp_num{
    width: 460px;
    margin-top: -10px;

}
.join_personal .Le  .tips{
    margin-left: 137px;
    color: #a6a6a6;
    margin-bottom: 30px;
}

.join_personal .Le .tips_inp{
    display: none;
}

.join_personal .Ri {
    width: 260px;
    background-color: #fff;
    padding: 40px 0 50px;
}
.join_personal .Ri .ico{
    /* margin: 0 auto; */
    text-align: center;
}
.join_personal .Ri .code{
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    padding: 8px;
}
.join_personal .Ri .code img{

}
.join_personal .Ri h1{
    font-size: 24px;
    color: #4c4c4c;
    text-align: center;
    line-height: 33px;
    margin-top: 35px;
    margin-bottom: 25px;
    font-weight: lighter
}
.join_personal .Ri p{
    font-size: 16px;
    color: #4c4c4c;
    margin-top: 15px;
    text-align: center;
}
select{
    /*取消默认箭头开始*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    /*取消默认箭头结束*/
    border: none;
    background: url(/images/join/ico11.png) no-repeat 160px ;
}
.join_personal .c_down.certificates{
    margin-right: 10px;
    float: left;
    margin-top: -10px;
    width: 160px;
}
.join_personal .c_down.SexCt{
    margin-right: 10px;
    float: left;
    margin-top: -10px;
}
.join_personal  .c_down {
    height: 40px;
    position: relative;
    border: 1px solid #e3e3e3;
    border-radius: 0;
    width: 125px;
    display: none;
}
.join_personal  .c_down ul{
    border: 1px solid #e3e3e3;
    top: 38px !important;
}
.join_personal  .c_down li{
    border-bottom: 1px solid #e3e3e3;
    line-height: 40px !important;
    height: 40px;
    cursor: pointer;
}
.join_personal  .c_down li:nth-last-of-type(1){
    border-bottom: none;
}
.join_personal  .c_down span{
    line-height: 38px;
    padding-left: 20px;
    font-size: 14px;
    color: #b2b2b2;
    background: #fff url(/images/join/ico11.png) no-repeat;
    cursor: pointer;
    display: block;
    border-radius: 0;
}
.join_personal .certificates span{
    background-position: 132px;
    margin-right: 10px;
}
.join_personal .SexCt span{
    background-position: 98px;
    margin-right: 10px;
}

.join_personal .row .c_down ul {
    display: none;
    top: 49px;
    max-height: 350px;
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    z-index: 10;
    background-color: #fff;
}
.join_personal .row .c_down li {
    padding-left: 20px;
    line-height: 30px;
    font-size: 14px;
    color: #bfbfbf;
    background: #fff;
    transition: all .5s;
    font-family: "Gilroy-Medium";
}
.join_personal  .row .input {
    background-color: #fff;
    /* border: 1px solid #e3e3e3; */
    border-radius: 0;
    float: left;
    margin-top:-2px;
}
.join_personal  .row .input input {
    width: 400px;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
}
.join_personal  .row .inp_Date{
    width: 160px !important;
}
.join_personal  .row  .SFZHM{
    width: 290px !important;
}

.join_personal .add_btn .tip-p{
    float: left;
    color: #2651bc;
    padding-left: 20px;
    line-height: 60px;
    font-weight: bold;
}

/* 校园招聘部分 */


/* 我的简历 */
.join_deliver2{
    padding: 0 0;
    margin-top: 90px;
    background-color: #fbfbfb;
}

.join_deliver2 .w1200{
    position: relative;
    top: -100px;
    background-color: #fff;
    padding: 45px 60px 80px;
}

.join_deliver2 .tit{
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    margin: auto;
    padding-bottom: 0;
    border: none;
}
.join_deliver2 .tit h1{
    font-size: 30px;
    color: #fff;
    float: none;
    margin-right: 0;
}
.join_deliver2 .tit p{
    float: none;
    color: #fff;
    border: none;
    font-size: 14px;
}
.join_deliver2 .modifyBtn{
    position: absolute;
    right: 0;
    top: 10px;
}
.join_deliver2 .modifyBtn .submit{
    width: 155px;
    height: 50px;
    line-height: 50px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    background: url(/images/join/ico14.png) no-repeat 30px center;
    padding-left: 25px;
}
.join_deliver2 .cont{
    border: none;
    margin-bottom: 55px;
    padding: 0;
}
.join_deliver2 .deliver_cont1  h2{
    float: left !important;
    margin-bottom: 0 !important;
}
.join_deliver2 .cont h2{
    color: #333333;
    padding-left: 15px;
    position: relative;
    float: none;
    margin-bottom: 50px;
    font-weight: 600;
}
.join_deliver2 .cont h2::before{
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 3px;
    height: 16px;
    background-color: #2651bc;
}
.join_deliver2 .cont .upload_ct{
    padding: 35px 0 27px;
    background-color: #f8f9fc;
    width: 520px;
    height: auto;
    text-align: center;
    float: none;
    margin: auto;
}
.join_deliver2 .cont .upload_ct p{
    padding-top: 0;
}
.join_deliver2 .cont .upload_ct .download{
    text-align: center;
}

.join_deliver2  .ct_le{
    width: 553px;
    float: left;
}
.join_deliver2 .cont .txt{
    font-size: 14px;
    color: #999;
    width: auto;
    text-align: left;
    padding-left: 15px;
    line-height: 20px;
    margin-right: 0;
}
.join_deliver2 .cont .p_text{
    font-size: 16px;
    color: #666;
    padding-left: 15px;

}
.join_deliver2 .cont .row{
    display: block;
    margin-bottom: 40px;
    float: left;
    width: 540px;
}
.join_deliver2 .cont .worknship,.join_deliver2 .cont .information,.join_deliver2 .cont .education,.join_deliver2 .cont .internship,.join_deliver2 .cont .project,.join_deliver2 .cont .certificate{
    padding-top:50px;
    border-top:1px dashed #d3d3d3;
}
.join_deliver2 .cont .worknship:after,.join_deliver2 .cont .information:after,.join_deliver2 .cont .education:after,.join_deliver2 .cont .internship:after,.join_deliver2 .cont .project:after,.join_deliver2 .cont .certificate:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
}
.join_deliver2 .cont .worknship:first-of-type,
.join_deliver2 .cont .information:first-of-type,
.join_deliver2 .cont .education:first-of-type,
.join_deliver2 .cont .internship:first-of-type,
.join_deliver2 .cont .project:first-of-type,
.join_deliver2 .cont .certificate:first-of-type{
    padding-top:0;
    border-top: 0 none;
}
.join_deliver2 .deliver_cont2{
    height: auto;
    overflow: hidden !important;
}

.join_deliver2 .cont .row.textarea{
    width: 100%;
}
.join_deliver2 .cont:nth-last-child(1){
    margin-bottom: 0;
}
.ban_img{
    background: url(/images/join/resume.jpg) no-repeat center;
    height: 321px;
}
.join_schedule .box{
    height: 450px;
}

.join_schedule .box >a{
    width: 150px;
    height: 60px;
    line-height: 60px;
    border: 1px solid #2651bc;
    color: #2651bc;
    font-size: 16px;
    border-radius: 0;
    text-align: center;
    margin: 150px auto;
}
.join_deliver2 .deliver_cont7 .textarea{
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}
.join_deliver2 .deliver_cont7 .textarea .name{
    margin-bottom: 10px;
}
.join_deliver2 .deliver_cont8{
    overflow: hidden !important;
    height: auto !important;
}

.join_deliver2 .deliver_cont4 .education,
.join_deliver2 .deliver_cont5 .internship,
.join_deliver2 .deliver_cont6 .project,
.join_deliver2 .deliver_cont8 .worknship,
.join_deliver2 .deliver_cont7 .certificate
{
    overflow: hidden;
    width: 100%;
    margin-top: 20px;

}
.join_deliver2 .deliver_cont4 .education:nth-of-type(1),
.join_deliver2 .deliver_cont5 .internship:nth-of-type(1),
.join_deliver2 .deliver_cont6 .project:nth-of-type(1),
.join_deliver2 .deliver_cont8 .worknship:nth-of-type(1),
.join_deliver2 .deliver_cont7 .certificate:nth-of-type(1){
    margin-top: 0;
}

.r_nav.fixed{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}
.r_nav{
    position: absolute;
    z-index: 1000;
    padding-top: 10px;
    left: 50px;
    top: 154px;
}

.r_nav a{
    width: 120px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 16px;
    color: #808080;
    background: #e9ecf2;
    margin-bottom: 10px;
}

.r_nav a.on{
    color: #fff;
    background: #2651bc;
}

.cont .time .block.on{
    z-index: 10;
}

/* 时间选项 */
.c_select input{
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
    cursor: pointer;
    background: #fff url(/images/join/ico11.png) no-repeat 155px center;
}


.time_wr{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 50;
    background: #fff;
}
.time_wr>div{
    float: left;
    width: 50%;
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
}

.time_wr .item{
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color:#808080;
    cursor:pointer;
    transition: all .3s;
}

.time_wr .item:hover{
    color:#000;
    background: #e9ecf2;
}

.time_wr .item.on{
    color:#fff;
    background: #2651bc;
}