:root * {
    box-sizing: border-box;
}
@font-face {
    font-family: 'num';
    src: url('num.ttf') format('truetype');
    font-style: normal;
}
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

a, input, textarea, select, button {
    outline: 0;
}

fieldset,
img {
    border: 0;
    vertical-align: middle;
}

ol, ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    text-decoration: none;
}
a:hover{
    color: #0883e7;
}

input, select, button {
    vertical-align: baseline;
    border-radius: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
}

i {
    font-style: normal;
}

button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
}

input[type=checkbox], input[type=radio] {
    vertical-align: middle;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    margin: 0;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

textarea {
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    overflow: auto;
    resize: none;
}


img {
    vertical-align: middle;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header {
    height: 80px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index:3;
    transition: all .3s;
    background-color: transparent;
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.header-inner{
    height: 80px;
    width: 95%;
    margin: auto;
    min-width: 1248px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    height: 50px;
}


.nav {
    width: 100%;
    display: flex;
    justify-content: right;
}

.nav li {
    padding-left: 36px;
    position: relative;
    display: flex;
    align-items: center;
}

.nav li i {
    padding-left: 4px;
    transition: all .5s;
    color: #fff;
}

.nav li a {
    line-height: 80px;
    display: block;
    font-size: 18px;
    color: #fff;
}

.nav li:hover a {
    font-weight: bold;
    animation-name: animate-flop;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}



@keyframes animate-dropdown {
    0% {
        transform: translate3d(0, 30px, 0);
        opacity: 0;
    }
    70% {
        transform: translate3d(0, 30px, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes animate-dropup {
    0% {
        transform: translate3d(0, -30px, 0);
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes animate-flop {
    0% {
        transform: rotateX(270deg);
    }

    100% {
        transform: rotateX(360deg);
    }
}

@keyframes animate-up {
    0% {
        opacity: 0;
        transform: translateY(100vh)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes animate-left {
    0% {
        opacity: 0;
        transform: translateX(100vw)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes animate-rotate-left {
    0% {
        transform: rotate(0deg);
        transform-origin: 100% 50%;
    }
    100% {
        transform: rotate(180deg);
        transform-origin: 100% 50%;
    }
}

@keyframes animate-rotate-right {
    0% {
        transform: rotate(0deg);
        transform-origin: 0 50%;
    }
    100% {
        transform: rotate(180deg);
        transform-origin: 0 50%;
    }
}
.inner{
    width: 1248px;
    margin: auto;
}
.inner.flex{
    display: flex;
}

.business {
    position: relative;
    display: flex;
    width: 1248px;
    margin: 100px auto;
    justify-content: space-between;
}

.business a {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 24px;
}

.business a img {
    width: 120px;
    height: 120px;
    position: absolute;
    z-index: 3;
    padding: 20px;
    border-radius: 50%;
    display: block;
    top: 44px;
    left: 50%;
    margin-left: -60px;
}

.business a .circle {
    width: 160px;
    height: 160px;
    display: flex;
    margin: 24px auto;
    position: relative;
    z-index: 3;
}

.business a .circle .circle-left,
.business a .circle .circle-right {
    width: 80px;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.business a .circle .circle-left:before,
.business a .circle .circle-right:before {
    content: ' ';
    width: 80px;
    height: 160px;
    border-width: 5px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    transition: all .3s;
}

.business a .circle .circle-left:before {
    border-right: none;
    border-radius: 80px 0 0 80px;
    left: 0;
}

.business a .circle .circle-right:before {
    border-left: none;
    border-radius: 0 80px 80px 0;
    right: 0;
}

.business a:hover .circle .circle-left:before {
    animation-name: animate-rotate-left;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}
.business a b{
    display: block;
    text-align: center;
    line-height: 2;
    position: relative;
    z-index: 3;
    transition: color 1s;
}
.business a span{
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 2;
    z-index: 1;
    height: 300px;
    padding-top: 240px;
    top: 0;
    display: none;
}
.business a:hover span{
    display: block;
    animation-name: animate-dropdown;
    animation-duration: .5s;
    animation-fill-mode: both;
}
.business a:hover b{
    color: #fff;
}
.business a:hover .circle .circle-right:before {
    animation-name: animate-rotate-right;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.business a:nth-child(1) img,
.business a:nth-child(1) span{
    background: #0883e7;
}
.business a:nth-child(1) .circle .circle-left:before,
.business a:nth-child(1) .circle .circle-right:before{
    border-color: #0883e7;
}

.business a:nth-child(2) img,
.business a:nth-child(2) span{
    background: #ffc100;
}
.business a:nth-child(2) .circle .circle-left:before,
.business a:nth-child(2) .circle .circle-right:before{
    border-color: #ffc100;
}

.business a:nth-child(3) img,
.business a:nth-child(3) span{
    background: #ff8202;
}
.business a:nth-child(3) .circle .circle-left:before,
.business a:nth-child(3) .circle .circle-right:before{
    border-color: #ff8202;
}

.business a:nth-child(4) img,
.business a:nth-child(4) span{
    background: #02e54a;
}
.business a:nth-child(4) .circle .circle-left:before,
.business a:nth-child(4) .circle .circle-right:before{
    border-color: #02e54a;
}

.business a:nth-child(5) img,
.business a:nth-child(5) span{
    background: #00dbdd;
}
.business a:nth-child(5) .circle .circle-left:before,
.business a:nth-child(5) .circle .circle-right:before{
    border-color: #00dbdd;
}
.swiper-title{
    text-align: center;
}

.swiper-title .en,
.swiper-title .ch{
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-title .ch:before{
    content: '';
    height: 1px;
    background: #666;
    width: 50px;
    margin-right: 24px;
}
.swiper-title .ch:after{
    content: '';
    height: 1px;
    background: #666;
    width: 50px;
    margin-left: 24px;
}
.swiper-title.white{
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.swiper-title.white .ch:before,
.swiper-title.white .ch:after{
    background: #fff;
}
.article-tab{
    display: flex;
    justify-content: center;
}
.article-tab li{
    width: 150px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 35px;
    border: 1px solid #eee;
    background: #fff;
    margin: 24px 12px;
}
.article-tab li.active{
    background: #0883e7;
    border-color: #0883e7;
    color: #fff;
}

.article-block{
    justify-content: space-between;
    background: #fff;
    display: flex;
    width: 0;
    height: 0;
    overflow: hidden;
    transition: all .1s;
}
.article-block.active{
    height: auto;
    width: 100%;
}
.article-swiper {
    background: #fff;
    width: 624px;
    height: 500px;
    flex-shrink: 0;
}

.article-swiper img {
    width: 624px;
    height: 506px;
    object-fit: cover;
}

.article-swiper p {
    padding: 12px 110px 12px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article-text{
    width: 100%;
    padding: 12px 24px;
    border: 1px solid #eee;
    border-left:none;
}

.article-text a{
    padding: 12px 0;
    display: flex;
    border-bottom: 2px solid #fafafa;
    transition: all .3s;
}
.article-text a:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.article-text a .date{
    width: 100px;
    flex-shrink: 0;
    position: relative;
    background: #0883e7;
    color: #fff;
    text-align: center;
    margin-right: 12px;
    border-radius: 3px;
    padding: 12px 0;
    line-height: 1.2;
}


.article-text a .date b{
    font-size: 20px;
    display: block;
}
.article-text a .date span{
    color: rgba(255,255,255,.8);
    font-weight: bold;
}

.article-text a .text{
    width: 100%;
}
.article-text a .text b{
    display: block;
    height: 28px;
    line-height: 28px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 18px;
    font-weight: bold;
}
.article-text a .text p{
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #777;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
}

.article-swiper .swiper-pagination {
    bottom: 12px !important;
    text-align: right !important;
    padding-right: 12px;
}

.article-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: .5;
}

.article-swiper .swiper-pagination-bullet-active {
    background: #cc0000;
    opacity: 1;
}
.article{
    padding-bottom: 48px;
}
.about{
    padding-top: 48px;
    margin-bottom: 48px;
}
.about-media{
    width: 624px;
    height: 364px;
    flex-shrink: 0;
}
.about-media img{
    width: 624px;
    height: 364px;
    object-fit: cover;
}
.about-text{
    background: rgba(255,255,255,.9);
    height: 364px;
    padding: 24px;
}
.about-text span{
    display: block;
    color: #999;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 12px;
}
.about-text p{
    padding-top: 12px;
    line-height: 1.8;
}

.more{
    width: 150px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 35px;
    border: 1px solid #eee;
    background: #fff;
    display: block;
    margin: auto;
}
.more:hover{
    background: #0883e7;
    border-color: #0883e7;
    color: #fff;
}


.footer {
    background: #555;
    padding: 24px 0;
}

.footer-end {
    align-items: center;
    justify-content: space-between;
}

.footer-end .end-item .logo {
    padding-bottom: 20px;
    height: 60px;
}

.footer-end .end-item .qrcode {
    width: 100px;
    margin-left: auto;
    border-radius: 3px;
}

.footer-end .end-item a {
    color: rgba(255, 255, 255, .8);
    padding-left: 12px;
}

.footer-end .end-item a:hover {
    color: #fff;
}

.footer-end .end-item p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 25px;
}

.footer-end .end-item:nth-child(2) {
    text-align: right;
}

.swiper-page,
.swiper-banner{
    width: 100%;
    height: 100vh;
}
.swiper-page .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-banner .swiper-slide{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-banner .swiper-slide img{
    width: 40%;
    max-width: 800px;
}
.banner-sub{
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    display: flex;
    align-items: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,.2);
}
.banner-sub .text{
    width: 100%;
    text-align: center;
}
.banner-sub .ch{
    font-size: 36px;
}
.banner-sub .en{
    font-size: 18px;
}
.nav-sub{
    height: 64px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    background: #fff;
}
.nav-sub a{
    border: 1px solid #f0f0f0;
    background: #f5f5f5;
    position: relative;
    line-height: 40px;
    border-radius: 20px;
    display: block;
    padding: 0 36px;
    margin-right: 24px;
}
.nav-sub a.active{
    background: #007aff;
    color: #fff;
    border-color: #007aff;
    font-weight: bold;
}
.nav-sub a.active:after{
    position: absolute;
    content: '';
    border-top: 8px solid #007aff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    bottom: -8px;
    left: 50%;
    margin-left: -4px;
}
.content{
    padding: 24px 0;
    min-height: calc(100vh - 597px);
}
.content p{
    padding: 12px 0;
}
.content img{
    max-width:100%;
    height: auto;
}
.paging {
    display: flex;
    padding: 24px;
    justify-content: center;
    align-items: center;
}
.paging .curr{
    background: #007aff;
    color: #fff;
}
.paging a,.paging span {
    border: #f0f0f0 1px solid;
    padding: 3px 12px;
    margin: 0 6px;
    background: #fafafa;
    display: block;
    border-radius: 5px;
}

.paging a:hover {
    background: #fff;
}

.paging a.current,.paging .active {
    background: #007aff;
    color: #fff;
    border: #007aff 1px solid;
}

.paging span {
    margin: 0 6px;
    display: block;
}

.article-list{
    width: 100%;
}

.article-list a{
    padding: 24px 0;
    display: flex;
    border-bottom: 2px solid #fafafa;
    transition: all .3s;
}

.article-list a .date{
    width: 100px;
    flex-shrink: 0;
    position: relative;
    background: #0883e7;
    color: #fff;
    text-align: center;
    margin-right: 24px;
    border-radius: 3px;
    padding: 18px 0;
    line-height: 1.2;
}


.article-list a .date b{
    font-size: 20px;
    display: block;
}
.article-list a .date span{
    color: rgba(255,255,255,.8);
    font-weight: bold;
}

.article-list a .text{
    width: 100%;
}
.article-list a .text b{
    display: block;
    height: 28px;
    line-height: 28px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 20px;
    font-weight: 500;
}
.article-list a .text p{
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #777;
    margin: 0;
    padding: 0;
    font-size: 16px;
}


.article-detail-title {
    font-size: 24px;
    line-height: 1.2;
    padding: 24px 24px 0 24px;
    font-weight: bold;
    text-align: center;
}

.article-detail-info {
    border-bottom: 1px dotted #f0f0f0;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding: 12px 0;
    margin: 0 24px;
    justify-content: center;
}

.article-detail-info .iconfont {
    font-size: 16px;
}

.article-detail-info .iconfont:nth-child(2) {
    padding-left: 24px;
}

.talent-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.talent-list a {
    width: 100%;
    margin: 0 0 24px 0;
    display: block;
    transition: .3s;
    position: relative;
}

.talent-list a img {
    width: 170px;
    height: 170px !important;
    object-fit: cover;
    border-radius: 50%;
    transition: all .3s;
    display: block;
    margin: auto;
}
.talent-list a b {
    display: block;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding-top: 12px;
}
.talent-list a span {
    display: block;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #639dce;
}
.talent-list a:hover {
    transform: translate3d(0, -6px, 0);
}
.talent-list a:hover img{
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
}
.talent-photo{
    width: 250px;
    height: 250px !important;
    object-fit: cover;
    margin: auto;
    display: block;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    border-radius: 50%;
}


.company-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.company-list a {
    width: 100%;
    margin: 0 0 24px 0;
    display: block;
    transition: .3s;
    position: relative;
}

.company-list a img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    transition: all .3s;
}
.company-list a b {
    display: block;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding-top: 12px;
    width: 100%;

}
.company-list a span {
    display: block;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #639dce;
}
.company-list a:hover {
    transform: translate3d(0, -6px, 0);
}
.company-list a:hover img{
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
}

.home-company{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 48px 0;
}
.home-company a{
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}
.home-company a img{
    width: 100%;
    height: 132px;
    padding: 24px;
    background: #f6f5f1;
    opacity: .8;
    transition: all .3s;
    object-fit: cover;
}
.home-company a:hover img{
    opacity: 1;
}


.home-end {
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.95);
    border-radius: 5px;
    padding: 48px;
}
.home-end p{
    line-height: 1.8;
}
.home-end .end-item .slogan {
    margin-bottom: 48px;
    height: 60px;
}

.home-end .end-item .qrcode {
    width: 120px;
    margin-left: auto;
    border-radius: 3px;
}

.home-end .end-item:nth-child(2) {
    text-align: right;
}