body,
html,
section {
    margin: 0;
    padding: 0;
}

body {
    font-family: Microsoft YaHei;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    color: #121f44;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

* {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

table,
tr,
th,
td {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #368df3;
}

.lay-out {
    height: 100%;
}

.header {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 80px;
    z-index: 50;
    background-color: #fff;
    box-shadow: 2px 0px 15px rgb(7, 34, 80, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: auto;
    position: relative;
}

.logo {
    position: absolute;
    left: 0px;
    width: 155px;
    height: 40px;
    top: 20px;
}

.nav {
    display: flex;
    justify-content: center;
    line-height: 80px;
}

.nav li a {
    color: #121f44;
    text-decoration: none;
    padding: 0 20px;
    display: block;
}

.nav-icon {
    display: none;
}

@media (max-width: 900px) {
    .logo {
        left: 10px;
        width: 115px;
        height: 30px;
        top: 5px;
    }
    .header {
        height: 40px;
    }
    .nav-icon {
        display: block;
        float: right;
        cursor: pointer;
        padding: 11px 10px 0 0;
    }
    .nav-icon span {
        display: block;
        width: 20px;
        height: 2px;
        margin-bottom: 6px;
        background: #252b3a;
        border-radius: 3px;
    }
    .nav {
        line-height: 50px;
        position: fixed;
        z-index: 200;
        top: 0;
        height: auto;
        width: 130px;
        height: 100%;
        background-color: #fff;
        transform: translateX(-130%);
        transition: 0.2s ease-out;
        display: block;
    }
    .nav li a {
        padding: 0 20px;
        display: block;
    }
    #Nav:checked~.nav {
        transform: translateX(0);
    }
    .bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        transform: translate3d(0, 0, 0);
        cursor: pointer;
    }
    #Nav:checked~.bg {
        opacity: 1;
        visibility: visible;
    }
}


/*头部 结束*/

.banner {
    width: 100%;
    position: relative;
}

.banner-text {
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: 2;
}

.banner-text h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.banner-text p {
    color: rgb(255, 255, 255, 0.8);
}

.bg-img {
    position: relative;
    display: block;
    height: 500px;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    background-image: url(../images/banner-bg.png), -webkit-gradient(linear, left top, left bottom, from(#0e1733), to(#0e1733));
    background-image: url(../images/banner-bg.png), linear-gradient(180deg, #0e1733, #0e1733);
    background-position: 50% 100%, 0 0;
    background-size: 100%;
    background-repeat: no-repeat, repeat;
    color: #121f44;
}

.banner-svg {
    position: absolute;
    bottom: 0;
    height: 150px;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    background-image: none;
    width: 100%;
}

.animate-bounce-up .animate1 {
    color: rgb(19, 56, 110, 0.1);
    left: 30%;
    animation-name: myfirst;
    -webkit-animation-name: myfirst;
}

.animate-bounce-up .animate2 {
    color: rgb(19, 56, 110, 0.1);
    left: 45%;
    animation-name: mysecond;
    -webkit-animation-name: mysecond;
}

.animate-bounce-up .animate3 {
    color: rgb(19, 56, 110, 0.1);
    left: 60%;
    animation-name: mythird;
    -webkit-animation-name: mythird;
}

.animate-data {
    position: absolute;
    z-index: 1;
    animation-duration: 6s;
    animation-timing-function: ease-out;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-play-state: running;
    /* Safari and Chrome: */
    -webkit-animation-duration: 6s;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-play-state: running;
}

@keyframes myfirst {
    0% {
        color: rgb(24, 113, 187, 0.1);
        top: 300px;
    }
    30% {
        color: rgb(24, 113, 187, 1);
        top: 240px;
    }
    100% {
        color: rgb(24, 113, 187, 0.1);
        top: 210px;
    }
}

@-webkit-keyframes myfirst
/* Safari and Chrome */

{
    0% {
        color: rgb(24, 113, 187, 0.1);
        top: 300px;
    }
    30% {
        color: rgb(24, 113, 187, 1);
        top: 240px;
    }
    100% {
        color: rgb(24, 113, 187, 0.1);
        top: 210px;
    }
}

@keyframes mysecond {
    0% {
        color: rgb(24, 113, 187, 0.1);
        top: 300px;
    }
    50% {
        color: rgb(24, 113, 187, 1);
        top: 180px;
    }
    100% {
        color: rgb(24, 113, 187, 0.1);
        top: 220px;
    }
}

@-webkit-keyframes mysecond
/* Safari and Chrome */

{
    0% {
        color: rgb(24, 113, 187, 0.1);
        top: 300px;
    }
    50% {
        color: rgb(24, 113, 187, 1);
        top: 180px;
    }
    100% {
        color: rgb(24, 113, 187, 0.1);
        top: 220px;
    }
}

@keyframes mythird {
    0% {
        color: rgb(24, 113, 187, 0.1);
        top: 300px;
    }
    50% {
        color: rgb(24, 113, 187, 1);
        top: 140px;
    }
    100% {
        color: rgb(24, 113, 187, 0.1);
        top: 130px;
    }
}

@-webkit-keyframes mythird
/* Safari and Chrome */

{
    0% {
        color: rgb(24, 113, 187, 0.1);
        top: 300px;
    }
    50% {
        color: rgb(24, 113, 187, 1);
        top: 140px;
    }
    100% {
        color: rgb(24, 113, 187, 0.1);
        top: 130px;
    }
}

@media (max-width: 900px) {
    .banner-text {
        top: 35px;
    }
    .banner-svg {
        height: 150px;
    }
    .banner-text h1 {
        font-size: 20px;
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
    }
    .banner-text p {
        width: 90%;
        margin: auto;
    }
    .animate-bounce-up .animate1 {
        left: 10%;
    }
    .animate-bounce-up .animate2 {
        left: 45%;
    }
    .animate-bounce-up .animate3 {
        left: 70%;
    }
    @keyframes myfirst {
        0% {
            color: rgb(24, 113, 187, 0.1);
            top: 200px;
        }
        30% {
            color: rgb(24, 113, 187, 1);
            top: 140px;
        }
        100% {
            color: rgb(24, 113, 187, 0.1);
            top: 110px;
        }
    }
    @-webkit-keyframes myfirst/* Safari and Chrome */
    {
        0% {
            color: rgb(24, 113, 187, 0.1);
            top: 200px;
        }
        30% {
            color: rgb(24, 113, 187, 1);
            top: 140px;
        }
        100% {
            color: rgb(24, 113, 187, 0.1);
            top: 110px;
        }
    }
    @keyframes mysecond {
        0% {
            color: rgb(24, 113, 187, 0.1);
            top: 200px;
        }
        50% {
            color: rgb(24, 113, 187, 1);
            top: 140px;
        }
        100% {
            color: rgb(24, 113, 187, 0.1);
            top: 120px;
        }
    }
    @-webkit-keyframes mysecond/* Safari and Chrome */
    {
        0% {
            color: rgb(24, 113, 187, 0.1);
            top: 20px;
        }
        50% {
            color: rgb(24, 113, 187, 1);
            top: 140px;
        }
        100% {
            color: rgb(24, 113, 187, 0.1);
            top: 120px;
        }
    }
    @keyframes mythird {
        0% {
            color: rgb(24, 113, 187, 0.1);
            top: 200px;
        }
        50% {
            color: rgb(24, 113, 187, 1);
            top: 110px;
        }
        100% {
            color: rgb(24, 113, 187, 0.1);
            top: 70px;
        }
    }
    @-webkit-keyframes mythird/* Safari and Chrome */
    {
        0% {
            color: rgb(24, 113, 187, 0.1);
            top: 3200px;
        }
        50% {
            color: rgb(24, 113, 187, 1);
            top: 110px;
        }
        100% {
            color: rgb(24, 113, 187, 0.1);
            top: 70px;
        }
    }
}

@media screen and (max-width: 1000px) and (min-width: 640px) {
    .bg-img {
        height: 400px;
        background-size: 150%;
    }
}

@media (max-width: 640px) {
    .bg-img {
        height: 340px;
        background-size: 400%;
    }
}


/*banner 结束 */

.view-coontent {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -180px;
}

.view-row {
    max-width: 1280px;
    margin: auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 2px 0px 15px rgb(7, 34, 80, 0.1);
    padding-bottom: 50px;
}

.view-title {
    position: relative;
    padding: 50px 15px;
}

.view-title h2 {
    color: #368df3;
    font-size: 30px;
    font-weight: 600;
    position: absolute;
    text-align: center;
    width: calc(100% - 24px);
}

.view-title p {
    font-size: 36px;
    color: #1f2329;
    opacity: .04;
    letter-spacing: 8px;
    font-weight: 900;
}

.com-information {
    background-color: #f8f9fb;
    max-width: calc(100% - 80px);
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.company-photo {
    width: 50%;
    position: relative;
}

.company-photo .img {
    display: block;
    max-width: 100%;
    height: 100%;
}

.company-photo .mask-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
}

.company-photo:after {
    clear: both;
}

.introduce {
    width: calc(50% - 50px);
    text-align: left;
    padding: 20px 30px 20px 20px;
}

.introduce h3 {
    color: #121f44;
    font-size: 18px;
    font-weight: 600;
    margin: 50px 0 20px 0
}

.introduce a {
    background-image: url(../images/icon-left.png);
    background-repeat: no-repeat;
    background-position: 92%;
    text-align: right;
    display: block;
    float: right;
    margin-top: 50px;
    color: #368df3;
    padding-right: 30px;
    background-size: 18px;
    transition: all .25s ease-in;
    -moz-transition: all .25s ease-in;
    -webkit-transition: all .25s ease-in;
}

.introduce a:hover {
    background-position: 100%;
}

.introduce a:after {
    clear: both;
}

@media (max-width: 900px) {
    .view-row {
        width: calc(100% - 24px);
        margin: auto;
        padding-bottom: 5px;
    }
    .view-title {
        padding: 25px 15px;
        height: 40px;
    }
    .view-title h2 {
        font-size: 20px;
        font-weight: 600;
    }
    .view-title p {
        font-size: 20px;
        top: -26px;
    }
    .com-information {
        max-width: calc(100% - 24px);
        height: auto;
    }
    .company-photo {
        width: 100%;
    }
    .introduce {
        width: 100%;
        padding: 12px;
    }
    .introduce h3 {
        margin: 20px 0px 15px 0px;
    }
    .introduce a {
        margin-top: 20px;
    }
    .company-photo .img {
        max-height: 100%;
        height: auto;
    }
    .company-photo .mask-img {
        display: none;
    }
}


/*企业介绍 结束*/

.sort-website {
    max-width: calc(100% - 80px);
    margin: auto;
}

.sort-website li {
    /* width: 280px; */
    background-color: #368df3;
    background-image: linear-gradient(75deg, #3570d7, #3795ed);
    border-radius: 10px;
    padding: 20px;
}

.sort-website li a {
    display: block;
    /* background-color: #368df3; */
    /* 浏览器不支持的时候显示 */
    /* background-image: linear-gradient(75deg, #427ce2, #5aafff); */
    color: #fff;
    /* border-radius: 10px; */
    /* padding: 20px; */
}

.sort-website .lineartwo {
    background-image: linear-gradient(75deg, #3795ed, #5aafff);
}

.sort-website .linearthree {
    background-image: linear-gradient(75deg, #4b9cfa, #4cc7fa);
}

.sort-website .linearfour {
    background-image: linear-gradient(75deg, #4cc6fa, #2fc0ef);
}

.sort-website .linearfive {
    background-image: linear-gradient(75deg, #2fc0ef, #4aebf9);
}

.website-title {
    display: flex;
    flex-wrap: wrap;
}

.website-title img {
    width: 56px;
    height: 56px;
}

.website-title h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 56px;
    padding-left: 10px;
}

.explain-p {
    text-align: left;
    padding: 15px 0 10px 0;
}

@media (min-width: 900px) {
    .sort-website {
        /* display: flex; */
        /* justify-content: space-between; */
        display: grid;
        grid-gap: 16px;
        grid-template-columns: auto auto auto auto auto;
    }
}

@media (max-width: 900px) {
    .sort-website {
        max-width: calc(100% - 24px);
    }
    .sort-website li {
        width: calc(100% - 40px);
        margin-bottom: 15px;
    }
    .sort-website li a {
        width: calc(100% - 30px);
        padding: 15px;
    }
    .website-title h3 {
        font-size: 16px;
    }
}


/*旗下网站*/

.content-row {
    max-width: 1280px;
    margin: auto;
}

.user-title {
    padding: 50px 15px;
}

.user-title h2 {
    color: #368df3;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.user-title p {
    font-size: 16px;
    color: #121f44;
    margin-top: 15px;
}

.imgs-group {
    position: relative;
    height: 480px;
}

.animation-one a,
.animation-two a,
.animation-five a,
.animation-twelve a,
.animation-nine a {
    animation-name: mymove-first;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-delay: -1.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
    /* Safari and Chrome: */
    -webkit-animation-name: mymove-first;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-delay: -1.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-play-state: running;
}

@keyframes mymove-first {
    0% {
        top: 0px;
        transform: scale(1);
    }
    100% {
        top: 0px;
        transform: scale(1.2);
    }
}

@-webkit-keyframes mymove-first
/* Safari and Chrome */

{
    0% {
        top: 0px;
        transform: scale(1);
    }
    100% {
        top: 0px;
        transform: scale(1.2);
    }
}

.animation-three a,
.animation-four a,
.animation-ten a,
.animation-thirteen a,
.animation-six a {
    animation-name: mymove-second;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-delay: -1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
    /* Safari and Chrome: */
    -webkit-animation-name: mymove-second;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-delay: -1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-play-state: running;
}

@keyframes mymove-second {
    0% {
        top: 0px;
        transform: scale(0.8);
    }
    100% {
        top: 0px;
        transform: scale(1);
    }
}

@-webkit-keyframes mymove-second
/* Safari and Chrome */

{
    0% {
        top: 0px;
        transform: scale(0.8);
    }
    100% {
        top: 0px;
        transform: scale(1);
    }
}

.animation-eight a,
.animation-eleven a,
.animation-fiveteen a,
.animation-fourteen a,
.animation-seven a {
    animation-name: mymove-third;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
    /* Safari and Chrome: */
    -webkit-animation-name: mymove-third;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-play-state: running;
}

@keyframes mymove-third {
    0% {
        top: 0px;
        transform: scale(0.7);
    }
    100% {
        top: 0px;
        transform: scale(0.9);
    }
}

@-webkit-keyframes mymove-third
/* Safari and Chrome */

{
    0% {
        top: 0px;
        transform: scale(0.7);
    }
    100% {
        top: 0px;
        transform: scale(0.9);
    }
}

.imgs-group li {
    position: absolute;
}

.imgs-group li a {
    display: block;
    background-color: #368df3;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
}

.imgs-group li img {
    border: 1px solid #fff;
    border-radius: 20px;
    box-sizing: border-box;
}

.flag-img span {
    position: relative;
    top: -6px;
}

.animation-one {
    top: 20px;
    left: 58%;
}

.animation-two {
    top: 140px;
    left: 46%;
    z-index: 2;
}

.animation-three {
    top: 150px;
    left: 26%;
}

.animation-four {
    top: 40px;
    left: 18%;
}

.animation-five {
    top: 360px;
    left: 55%;
    z-index: 1;
}

.animation-six {
    top: 220px;
    left: 38%;
}

.animation-seven {
    top: 310px;
    left: 28%;
}

.animation-eight {
    top: 300px;
    left: 50%;
    z-index: 0;
}

.animation-nine {
    top: 220px;
    left: 63%;
    z-index: 1;
}

.animation-ten {
    top: 300px;
    left: 78%;
}

.animation-eleven {
    top: 60px;
    left: 34%;
}

.animation-twelve {
    top: 110px;
    left: 51%;
    z-index: 0;
}

.animation-thirteen {
    top: 160px;
    left: 71%;
    z-index: 0;
}

.animation-fourteen {
    top: 60px;
    left: 82%;
}

.animation-fiveteen {
    top: 220px;
    left: 12%;
}

.imgs-group .animation-fiveteen a,
.imgs-group .animation-twelve a,
.imgs-group .animation-fourteen a,
.imgs-group .animation-thirteen a {
    filter: blur(1px);
    -webkit-filter: blur(1px);
    background-color: #d8e7fa;
}

.imgs-group .animation-six a,
.imgs-group .animation-eight a,
.imgs-group .animation-eleven a {
    background-color: #b2d2f8;
}

.imgs-group .animation-seven a,
.imgs-group .animation-ten a {
    background-color: #6aaaf7;
}

@media (max-width: 900px) {
    .content-row {
        width: calc(100% - 24px);
        margin: auto;
    }
    .user-title {
        padding: 25px 15px;
    }
    .user-title h2 {
        font-size: 20px;
        font-weight: 600;
    }
    .user-title p {
        font-size: 14px;
        margin-top: 8px;
    }
    .imgs-group {
        /*max-width: calc(100% - 24px);*/
        margin: auto;
        height: 380px;
    }
    .flag-img span {
        position: relative;
        top: -6px;
    }
    .animation-one {
        top: 0px;
        left: 44%;
    }
    .animation-two {
        top: 130px;
        left: 32%;
    }
    .animation-three {
        top: 160px;
        left: 12%;
    }
    .animation-four {
        top: 40px;
        left: 2%;
    }
    .animation-five {
        top: 290px;
        left: 15%;
    }
    .animation-six {
        top: 220px;
        left: 34%;
    }
    .animation-seven {
        top: 230px;
        left: 1%;
    }
    .animation-eight {
        top: 280px;
        left: 38%;
    }
    .animation-nine {
        top: 210px;
        left: 58%;
    }
    .animation-ten {
        top: 300px;
        left: 65%;
    }
    .animation-eleven {
        top: 5px;
        left: 14%;
    }
    .animation-twelve {
        top: 80px;
        left: 33%;
    }
    .animation-thirteen {
        top: 120px;
        left: 65%;
    }
    .animation-fourteen {
        top: 60px;
        left: 64%;
    }
    .animation-fiveteen {
        top: 100px;
        left: 0%;
    }
    @keyframes mymove-first {
        0% {
            top: 0px;
            transform: scale(0.8);
        }
        100% {
            top: 0px;
            transform: scale(0.9);
        }
    }
    @-webkit-keyframes mymove-first/* Safari and Chrome */
    {
        0% {
            top: 0px;
            transform: scale(0.8);
        }
        100% {
            top: 0px;
            transform: scale(0.9);
        }
    }
    @keyframes mymove-second {
        0% {
            top: 0px;
            transform: scale(0.7);
        }
        100% {
            top: 0px;
            transform: scale(0.8);
        }
    }
    @-webkit-keyframes mymove-second/* Safari and Chrome */
    {
        0% {
            top: 0px;
            transform: scale(0.7);
        }
        100% {
            top: 0px;
            transform: scale(0.8);
        }
    }
    @keyframes mymove-third {
        0% {
            top: 0px;
            transform: scale(0.4);
        }
        100% {
            top: 0px;
            transform: scale(0.5);
        }
    }
    @-webkit-keyframes mymove-third/* Safari and Chrome */
    {
        0% {
            top: 0px;
            transform: scale(0.4);
        }
        100% {
            top: 0px;
            transform: scale(0.5);
        }
    }
}


/*用户*/

.content-view {
    width: 100%;
}

.soft-work {
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
}

.soft-work li {
    display: inline-block;
    width: 240px;
    height: 290px;
}

.soft-work li img {
    width: 210px;
    margin: auto;
}

@media (max-width: 900px) {
    .soft-work li {
        width: 200px;
        height: 236px;
    }
    .soft-work li img {
        width: 170px;
        margin: auto;
    }
}


/*软著证书*/

.team {
    position: relative;
    width: 100%;
    height: 650px;
    margin: auto;
}

.team li {
    width: 160px;
}

.team-one {
    position: absolute;
    top: 170px;
    left: calc(50% - 80px);
}

.team-two {
    position: absolute;
    top: 0px;
    left: calc(30% - 65px);
    /* left: calc(25% - 80px); */
}

.team-three {
    position: absolute;
    top: 0px;
    left: calc(70% - 80px);
    /* left: calc(75% - 80px); */
}

.team-four {
    
    top: 200px;
    left: calc(20% - 80px);
    position: absolute;
    /* top: 255px;
    left: calc(15% - 80px); */
}

.team-five {
    position: absolute;
    top: 200px;
    left: calc(80% - 80px);
    /* top: 255px;
    left: calc(85% - 80px); */
}

.team-six {
    position: absolute;
    top: 390px;
    left: calc(30% - 80px);
}

.team-seven {
    position: absolute;
    top: 390px;
    left: calc(70% - 80px);
    /* top: 450px;
    left: calc(35% - 80px); */
}

.team-eight {
    position: absolute;
    /* top: 450px;
    left: calc(65% - 80px); */
    top: 470px;
    left: calc(50% - 80px);
}

.teamstylr label {
    cursor: pointer;
}

.teamstylr div {
    width: 120px;
    height: 120px;
    margin: auto;
    position: relative;
}

.teamstylr div img {
    width: 120px;
    height: 120px;
    border-radius: 70px;
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgb(54, 141, 243, 0.35);
    position: absolute;
    top: 0;
    left: 0;
}

.teamstylr p {
    font-size: 16px;
    font-weight: 600;
    color: #368df3;
    margin-top: 25px;
}

.teamstylr span {
    color: #121f44;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.additional div {
    width: 100px;
    height: 100px;
}

.additional div img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px
}

.teamstylr .glow {
    position: absolute;
    width: 200px;
    height: 200px;
    left: -18px;
    top: -36px;
    z-index: -2;
    border: none;
    border-radius: 100px;
    background-color: #368df3;
    opacity: 0;
    -webkit-animation: warn 2.5s ease-out;
    -moz-animation: warn 2.5s ease-out;
    animation: warn 2.5s ease-out;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.team-details {
    position: fixed;
    z-index: 200;
    top: calc(50% - 200px);
    left: calc(50% - 300px);
    width: 600px;
    height: auto;
    background-color: #fff;
    transform: translatey(-500%);
    /*transition: 0.33s ease-out;*/
    display: block;
    border-radius: 15px;
    padding: 15px;
    text-align: left;
}

.team-details li {
    width: 100%;
}

.team-details li img {
    width: 100px;
    height: 100px;
    margin-top: 8px;
    border: 1px solid #fff;
    box-shadow: 0 0 15px rgb(54 141 243 / 28%);
    border-radius: 100px;
}

.team-details .present-in {
    padding: 15px 20px 0 20px;
}

.present-in p {
    padding: 15px 0;
    white-space: pre-wrap;
}

.team-details .present-in span {
    display: block;
    padding: 5px 20px;
    position: relative;
}

.team-details .present-in i {
    position: absolute;
    top: 10px;
    left: 0px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #368df3;
}

.team-details .present-in i:after {
    content: " ";
    display: block;
    padding: 5px;
    border-radius: 8px;
    background-color: rgb(54, 141, 243, 0.2);
    position: absolute;
}

.present {
    display: flex;
    flex-wrap: nowrap;
}

.team-details .detailed-cent {
    padding-top: 10px;
}

.detailed p,
.detailed-cent p {
    padding: 5px 10px;
    white-space: pre-wrap;
}

.team-bg {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    transform: translate3d(0, 0, 0);
    cursor: pointer;
    transition: 0.33s ease-out;
}

#details1:checked~.datails-show1 {
    transform: translatey(0);
}

#details1:checked~.bg1 {
    opacity: 1;
    visibility: visible;
}

#details2:checked~.datails-show2 {
    transform: translatey(0);
}

#details2:checked~.bg2 {
    opacity: 1;
    visibility: visible;
}

#details3:checked~.datails-show3 {
    transform: translatey(0);
}

#details3:checked~.bg3 {
    opacity: 1;
    visibility: visible;
}

#details4:checked~.datails-show4 {
    transform: translatey(0);
}

#details4:checked~.bg4 {
    opacity: 1;
    visibility: visible;
}

#details5:checked~.datails-show5 {
    transform: translatey(0);
}

#details5:checked~.bg5 {
    opacity: 1;
    visibility: visible;
}

#details6:checked~.datails-show6 {
    transform: translatey(0);
}

#details6:checked~.bg6 {
    opacity: 1;
    visibility: visible;
}

#details7:checked~.datails-show7 {
    transform: translatey(0);
}

#details7:checked~.bg7 {
    opacity: 1;
    visibility: visible;
}

#details8:checked~.datails-show8 {
    transform: translatey(0);
}

#details8:checked~.bg8 {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 640px) {
    .team .teamstylr {
        width: 130px;
    }
    .teamstylr div img {
        top: -10px;
        left: -10px;
        width: 100px;
        height: 100px;
    }
    .additional div img {
        top: -10px;
        left: -10px;
        width: 80px;
        height: 80px;
    }
    .team-details {
        margin: -150px 0 0 -43%;
        top: 50%;
        left: 50%;
        width: 80%;
        height: auto;
        max-height: 300px;
        padding: 15px 10px;
        white-space: nowrap;
        overflow-y: auto;
    }
    .present {
        display: flex;
        flex-wrap: wrap;
    }
    .detailed-cent {
        padding-top: 0px;
    }
    .team-details .present-in {
        padding: 15px 10px 0 10px;
        width: 100%;
    }
    .team-details li img {
        margin: auto;
        width: 90px;
        height: 90px;
    }
    .team {
        white-space: nowrap;
        overflow-y: auto;
        min-width: 100%;
         height: 545px;
        /*height: 500px;*/
    }
    .teamstylr div {
        width: 80px;
        height: 80px;
    }
    .additional div {
        width: 60px;
        height: 60px;
        border: 2px solid #fff;
    }
    .teamstylr p {
        font-size: 12px;
    }
    .teamstylr span {
        font-size: 12px;
        margin-top: 4px;
    }
    .teamstylr .glow {
        width: 140px;
        height: 140px;
        left: -5px;
        top: -30px;
    }
    .team-one {
        top: 160px;
        left: 45%;
    }
    .team-two {
        top: 20px;
        left: 8%;
    }
    .team-three {
        top: 20px;
        left: 80%;
    }
    .team-four {
        top: 170px;
        /* top: 210px; */
        left: -10px;
    }
    .team-five {
        top: 170px;
        /* top: 210px; */
        left: calc(100% - 20px);
    }
    .team-six {
        top: 320px;
        left: 8%;
    }
    .team-seven {
        top: 320px;
        left: 80%;
        /* top: 380px;
        left: 15%; */
    }
    .team-eight {
        /* top: 380px;
        left: 75%; */
        top: 420px;
        left: 42%;
    }
}

@keyframes warn {
    0% {
        transform: scale(0);
        opacity: 0.0;
    }
    75% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.0;
    }
}

@-webkit-keyframes warn {
    0% {
        transform: scale(0);
        opacity: 0.0;
    }
    75% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.0;
    }
}


/*team*/

.foot-bg {
    background-color: rgb(14, 23, 51, 1);
    margin-top: 50px;
}

.foot-content {
    color: #656d84;
    text-align: left;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    line-height: 18px;
    padding: 30px 20px 30px 20px;
    width: calc(100% - 40px)
}

.foot-l {
    width: calc( 30% - 20px);
    padding-right: 20px;
}

.foot-c {
    width: calc( 44% - 62px);
    border-left: 1px solid rgb(255, 255, 255, 0.2);
    border-right: 1px solid rgb(255, 255, 255, 0.2);
    padding: 10px 30px;
}

.foot-r {
    width: 26%;
    padding-top: 8px;
}

.foot-r {
    display: flex;
    justify-content: center;
}

.foot-r span {
    display: block;
    margin-top: 5px;
}

.foot-r div {
    text-align: center;
    width: 42%;
}

.foot-l a,
.foot-c a {
    color: #656d84;
}

.foot-c a:hover {
    color: #fff;
}

.foot-l img {
    display: inline-block;
}

.foot-l p,
.foot-c p {
    margin-top: 15px;
}

.address {
    display: block;
}

.address-title {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

@media screen and (max-width: 900px) and (min-width: 640px) {
    .foot-l {
        width: calc( 50% - 20px);
        padding-right: 20px;
    }
    .foot-c {
        width: calc( 50% - 62px);
        border-right: none;
    }
    .foot-r {
        width: 50%;
        padding-top: 20px;
    }
}

@media screen and (max-width: 640px) {
    .foot-bg {
        margin-top: 30px;
    }
    .foot-content {
        width: 100%;
        padding: 20px 0;
    }
    .foot-l img {
        width: 40%;
    }
    .foot-l,
    .foot-c {
        width: 100%;
        margin: auto;
        border: none;
        padding: 0;
    }
    .foot-r {
        width: 80%;
        padding-top: 20px;
        margin: auto;
    }
}


/*企业介绍*/

.about-company {
    height: 350px;
    background: url(../images/about.png) center no-repeat;
    background-size: auto 106%;
}

@media screen and (max-width: 900px) and (min-width: 640px) {
    .about-company {
        height: 280px;
        background-size: auto 100%;
        background-position: -100px 0px;
    }
}

@media screen and (max-width: 640px) {
    .about-company {
        height: 150px;
        background-size: auto 100%;
        background-position: -150px 0px;
    }
}

.about-bg {
    background: url(../images/case.png) center no-repeat;
    background-size: auto 100%;
    padding: 0 10px 150px 10px;
    width: calc(100% - 20px)
}

.about-text {
    text-indent: 28px;
    text-align: left;
    line-height: 26px;
}

.grow-title {
    font-size: 18px;
    font-weight: 600;
    color: #368df3;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 30px;
}

.course {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 10px;
}

.course-l {
    position: relative;
}

.course-record {
    position: relative;
    border-left: 1px solid rgb(54, 141, 243, 1);
    left: 10px;
    top: 5px;
    margin-bottom: 5px;
}

.course-l .circular1 {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 10px;
    background-color: rgb(54, 141, 243, 1);
    position: absolute;
    top: 3px;
    left: 3px;
}

.course-l .circular2 {
    position: absolute;
    top: 0px;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: rgb(54, 141, 243, 0.2)
}

.course-record {
    padding: 0 15px;
}

.course-record p {
    line-height: 26px;
    text-align: left;
}

.course-record p a {
    color: rgb(54, 141, 243, 1);
}

@media screen and (max-width: 900px) {
    .about-bg {
        padding: 0 0 50px 0;
        width: calc(100% - 0px);
        background-size: auto 20%;
        background-position-y: bottom;
    }
    .grow-title {
        font-size: 16px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .course-l .circular1 {
        width: 10px;
        height: 10px;
        top: 3px;
        left: 3px;
    }
    .course-l .circular2 {
        width: 16px;
        height: 16px;
    }
    .course-record {
        padding: 0 5px 0 15px;
        left: 8px;
    }
    .course-record p {
        margin-bottom: 5px;
    }
}


/**/

.zipcode {
    margin-bottom: 50px;
}

.country-data {
    width: 100%;
    border: 1px solid #d2d2d2;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 10px;
}

.country-data tr {
    border: 1px solid #d2d2d2;
}

.country-data tr td {
    border: 1px solid #d2d2d2;
    width: calc( (100% - 50px) / 5);
    word-break: break-all;
    padding: 10px 10px;
    background-color: #fff;
}

.country-data tr td a {
    color: #368df3;
}

.country-data tr th {
    border: 1px solid #d2d2d2;
    width: 100%;
    padding: 10px 10px;
    text-align: left;
    background-color: #f7fbff;
}

.country-data tr .td-lef {
    width: 50px;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .zipcode {
        white-space: nowrap;
        overflow-y: auto;
        margin-bottom: 20px;
    }
    .country-data tr td {
        width: 150px;
    }
    .country-data tr .td-lef {
        padding: 0 5px;
    }
}