/*
*	Created by Edward on 23/10/18
*	Copyright (c) 2023 ishutime.com All rights reserved
*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
@font-face {
    font-family: 'iconfont';  /* Project id 4291615 */
    src: url('//at.alicdn.com/t/c/font_4291615_4fl4egvjy3g.woff2?t=1702434551011') format('woff2'),
    url('//at.alicdn.com/t/c/font_4291615_4fl4egvjy3g.woff?t=1702434551011') format('woff'),
    url('//at.alicdn.com/t/c/font_4291615_4fl4egvjy3g.ttf?t=1702434551011') format('truetype');
}
@font-face {
    font-family: SourceHanSansCNBlod;
    src: url('https: //website-ishutime.oss-cn-chengdu.aliyuncs.com/font/SourceHanSansCN-Bold.ttf');
}

@font-face {
    font-family: SourceHanSansCNMedium;
    src: url('https: //website-ishutime.oss-cn-chengdu.aliyuncs.com/font/SourceHanSansCN-Medium.ttf');
}

@font-face {
    font-family: SourceHanSans;
    /* src: url(../fonts/SourceHanSansCN-Regular.TTF); */
    src: url(../fonts/Alibaba-PuHuiTi-Light.otf);
}

@font-face {
    font-family: Alibaba;
    src: url(../fonts/Alibaba-PuHuiTi-Light.otf);
}

@font-face {
    font-family: montserrat;
    src: url(../fonts/Geometr415MdBTMedium.ttf)
}

html,
body {
    font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
    font-size: 14px;
    color: #272727;
    background: black;
}

input,
textarea {
    font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
}

.iconfont {
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: Brown;
    src: url(../fonts/brown/brown-regular.woff2)
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #3f73fa;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #3f73fa;
}

@keyframes fadeIniup {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.he_fadeup1 {
    -webkit-animation: fadeIniup 1s ease both;
    animation: fadeIniup 1s ease both;
    -ms-animation: fadeInUp 1s ease both;
    animation-delay: 0.3s;
}

.cpthActive.animated {
    -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%) !important;
}

.cpth {
    -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
    -webkit-transition: 1.2s cubic-bezier(0.215, 0.610, 0.355, 1) 0.3s;
}

.index {
    background: #000;
}

.header {
    width: 100%;
    height: auto;
    position: fixed;
    left: 0%;
    top: 0%;
    z-index: 100;
    padding: 10px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: all .5s;
    -webkit-transform: translateY(0%);
}

.header.active {
    -webkit-transform: translateY(-100%);
}

.header a,
.header span {
    color: #ffffff;
}

.nav {
    width: 55%;
    position: relative;
}

.nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.nav ul li {
    width: calc(100% / 6);
    position: relative;
    text-align: center;
    line-height: 45px;
}

.nav ul li .firstLab,
.nav ul li .firstLab a {
    position: relative;
    width: 100%;
    display: block;
}

.nav ul li .firstLab a {
    -webkit-transition: all .5s;
}

.nav ul li:hover .firstLab a {
    letter-spacing: 1px;
}

.nav ul li .firstLab {
    font-size: 18px;
}

.nav ul li .firstLab::after {
    width: 0%;
    height: 3px;
    left: 50%;
    position: absolute;
    bottom: 0%;
    content: '';
    background: #fff;
    -webkit-transition: all .5s;
}

.nav ul li:hover .firstLab::after {
    width: 50%;
    left: 25%;
}

.nav ul li .secondLab {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0%;
    top: 65px;
    background: #fff;
    padding: 15px 5px;
    -webkit-transition: all .5s cubic-bezier(0.215, 0.610, 0.355, 1);
    border-radius: 5px;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
}

.nav ul li .secondLab::before {
    width: 120px;
    height: 15px;
    position: absolute;
    left: 50%;
    margin-left: -60px;
    top: 0px;
    content: '';
    background: url(../images/move_up.png) no-repeat;
    -webkit-transition: all .65s cubic-bezier(0.19, 1, 0.22, 1);
    background-size: cover;
}

.nav ul li .secondLab a {
    display: block;
    width: 100%;
    height: auto;
    line-height: 40px;
    color: #3e3e3e;
}

.nav ul li:hover .secondLab {
    opacity: 1;
    visibility: visible;
    top: 59px;
}

.nav ul li:hover .secondLab::before {
    top: -14px;
}

.nav ul li .secondLab a:hover {
    color: #e60012;
}

.logo {
    width: 208px;
    position: relative;
}

.mem_logo {
    width: 160px;
    height: 42px;
    position: relative;
    border: 1px solid #fff;
    color: #fff;
    line-height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 16px;
    border-radius: 50px;
}

.mem_logo .icon {
    font-size: 16px;
    margin-right: 5px;
}

#container {
    position: relative;
}

.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.banner::before {
    width: 100%;
    height: 60vh;
    position: absolute;
    left: 0%;
    top: 0%;
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .25));
    pointer-events: none;
    z-index: 5;
}

.banner .bannerImg {
    width: 101vw;
    height: 100vh;
    max-width: none;
    transform-origin: 100% 100%;
    object-fit: cover;
    position: absolute;
    top: auto;
    bottom: 0;
    left: -0.5vw;
    right: -0.5vw;
}

.slogan {
    width: 100%;
    text-align: center;
    position: absolute;
    color: #fff;
    left: 0%;
    top: 30%;
    font-size: 5vw;
    z-index: 10;
    /* font-family: Alibaba; */
}
.slogan p{
    font-family: SourceHanSansCNBlod;
    font-weight: bold;
}
#jianshan {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
}

.service {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0%;
    top: 100%;
    z-index: 1;
}

.service ul {
    width: 50%;
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 40%;
}

.service ul li {
    width: 45%;
    height: 50vh;
    position: relative;
    margin-bottom: 20vh;
}

.service ul li:nth-child(odd) {
    margin-top: 20vh;
}

.service ul li .rect {
    width: 100%;
    height: 100%;
    position: relative;
    background: #494949 center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.service ul li .rect .pic {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition: all .5s;
}
.service ul li .rect:hover .pic{
    transform: scale(1.1);
}
.service ul li .txt {
    width: 100%;
    height: auto;
    position: relative;
    color: #fff;
    line-height: 2;
}

.service ul li .txt b {
    display: block;
    position: relative;
    font-size: 2vw;
    /* font-family: Alibaba; */
    font-weight: normal;
}

.service ul li .txt p {
    font-size: 16px;
}

.btns {
    width: 100%;
    height: auto;
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 5%;
}

.btns a,
.js_more {
    width: 170px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50px;
    line-height: 60px;
    text-align: center;
    position: relative;
    color: #fff;
    font-size: 16px;
    margin: 0px 1vw;
    display: flex;
    justify-content: center;
    z-index: 2;
    -webkit-transition: all .5s;
    overflow: hidden;
}

.btns a::before,
.js_more::before {
    width: 180px;
    height: 180px;
    position: absolute;
    left: 50%;
    border-radius: 50%;
    top: 50%;
    content: '';
    -webkit-transform: translate(-50%, -50%) scale(0);
    background: #7ffde1;
    -webkit-transition: all .5s cubic-bezier(0.215, 0.610, 0.355, 1);
    z-index: -1;
}

.btns a:hover,
.btns a.active,
.js_more:hover,
.js_more.active {
    border-color: transparent;
    color: #0c0c0c;
    -webkit-transform: scale(1.1);
}

.btns a:hover::before,
.btns a.active::before,
.js_more:hover::before,
.js_more a.active::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
}

.warp {
    position: relative;
}

.banner_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    opacity: 0;
}

.story_box {
    background: #3f73fa;
    border-radius: 3vw;
    display: flex;
    justify-content: space-between;
    -webkit-transform: scale(0.8);
    padding: 8vw 0 12vw;
    align-items: center;
    margin-top: -5vw;
}

.jjff {
    background: #fff;
    border-radius: 3vw;
    display: flex;
    justify-content: space-between;
    padding: 8vw 0 12vw;
    align-items: center;
    -webkit-transform: scale(0.8);
}

.story_box .left {
    width: 30%;
    color: #fff;
    margin-left: 5%;
    opacity: 0;
    position: relative;
    top: 5vw;
}

.story_box .right {
    width: 60%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    top: 5vw;
}

.newsSwiper {
    width: 100%;
    overflow: initial;
}

.js_title {
    font-size: 68px;
    margin-bottom: 1vw;
}

.js_des {
    position: relative;
    line-height: 2;
    font-size: 18px;
    margin-bottom: 10vw;
}
.newsSwiper{
    padding-bottom: 2vw;
}
.newsSwiper .swiper-slide {
    position: relative;
}

.newsSwiper .swiper-slide a {
    display: block;
    position: relative;
    padding: 20px;
    background: #5381fb;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.newsSwiper .swiper-slide a .thum {
    border-radius: 10px;
    margin-bottom: 10px;
}

.newsSwiper .swiper-slide a .info {
    position: relative;
    padding-top: 5px;
}

.newsSwiper .swiper-slide a .name {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsSwiper .swiper-slide:hover .thum .pic {
    transform: scale(1.1);
}

.newsSwiper .swiper-slide a .des {
    width: 100%;
    position: relative;
    font-size: 18px;
    line-height: 30px;
    min-height: 90px;
    -webkit-line-clamp: 3;
    margin-bottom: 7vw;
}
.newsSwiper .swiper-slide a .icon{
    font-size: 32px;
}
.newsSwiper .swiper-pagination{
    bottom: 0;
}
.newsSwiper .swiper-pagination .swiper-pagination-bullet{
    background: white;
}
.js_more {
    margin: 0;
}

.news_box {
    background: #aedce9;
    position: relative;
    -webkit-transform: scale(0.8);
    border-radius: 3vw;
    margin-top: -5vw;
    padding-bottom: 12vw;
}

.common_top {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    margin-bottom: 3vw;
}

.common_top .js_title {
    margin-bottom: 0px;
}

.js_more.b {
    border: 1px solid #272727;
    color: #272727;
}

.js_more.b::before {
    background: #272727;
}

.js_more.b:hover {
    color: #fff;
}

.js_more.c {
    border: 1px solid #3f73fa;
    color: #3f73fa;
}

.js_more.c::before {
    background: #3f73fa;
}

.js_more.c:hover {
    color: #fff;
}

.js_more.d {
    border: 1px solid white;
    color: white;
}

.js_more.d::before {
    background: #3f73fa;
}

.js_more.d:hover {
    color: #fff;
    border: 1px solid #3f73fa;
}

.news_warp {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.news_warp .left {
    width: 55%;
    position: relative;
}

.focus_news {
    width: 100%;
    display: flex;
    position: relative;
    background: rgba(255,255,255,.7);
    border-radius: 10px;
    padding: 15px;
}

.focus_news .thum {
    width: 55%;
    position: relative;
    border-radius: 10px;
}

.focus_news:hover .thum .pic {
    transform: scale(1.1);
}

.focus_news .info {
    width: 45%;
    position: relative;
    /*background: #fff;*/
    border-radius: 0 10px 10px 0;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
}

.focus_bottom {
    width: 100%;
    position: relative;
    margin-top: 2vw;
    display: flex;
    justify-content: space-between;
}

.focus_bottom a {
    display: block;
    position: relative;
    background: rgba(255,255,255,.6);
    width: 48.5%;
    border-radius: 10px;
    padding: 15px;
}

.focus_bottom a:hover .thum .pic {
    transform: scale(1.1);
}

.focus_news .info .name {
    width: 100%;
    position: relative;
    font-size: 24px;
    line-height: 1.7;
}

.focus_news .info .des {
    font-size: 16px;
    line-height: 1.7;
}

.focus_bottom a .thum {
    border-radius: 10px;
}

.focus_bottom a .info {
    padding: 25px;
    position: relative;
    border-radius: 10px;
    /*background: #fff;*/
}

.focus_bottom a .info .name {
    font-size: 24px;
    position: relative;
}

.focus_bottom a .info .des {
    font-size: 16px;
    margin: 10px 0px 20px;
}

.news_warp .right {
    width: 40%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news_warp .right a {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 25px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.news_warp .right a:last-child {
    margin-bottom: 0px;
}
.news_warp .right a .info{
    width: 100%;
}
.news_warp .right a .name {
    font-size: 24px;
    position: relative;
    line-height: 1.7;
    margin-bottom: 10px;
}

.news_warp .right a .des {
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    min-height: 82px;
}

.video_warp {
    position: relative;
    border-radius: 3vw;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
    margin-top: -5vw;
    padding-bottom: 12vw;
    -webkit-transform: scale(0.8);
}

.news_box .w1400 {
    opacity: 0;
    top: 50px;
}

.video_warp .w1400 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video_warp .left {
    width: 40%;
    color: #fff;
}

.video_warp .right {
    width: 50%;
    position: relative;
}
.video_warp .right video{
    width: 100%;
    object-fit: cover !important;
}
.parter_list {
    width: 100%;
    position: relative;
    margin-top: 3vw;
}


.parter_list .logoSwiper .swiper-slide .img{
    width: 100% !important;
    height: 15vw;
    position: relative;
    margin-right: 2%;
    margin-bottom: 1.5vw;
    background: #f6f6f6;
    border-radius: 50%;
}
.parter_list .logoSwiper .swiper-slide .img img{
    width: 80%;
    height: auto;
    position: absolute;
    left: 10%;
    top: 50%;
    -webkit-transform: translateY(-50%);
}
.parter_list ul li:nth-child(6n) {
    margin-right: 0;
}


.footer {
    width: 100%;
    position: relative;
    background: #000;
    padding: 3vw 0;
}

.jianshan {
    width: 1300px;
    position: relative;
    margin: 0px auto;
    padding: 6vw 0px;
}

.footer_info {
    text-align: center;
    color: white;
    margin-bottom: 2vw;
}

.footer_info .js_more {
    margin: 2vw auto;
}

.footer_info .js_title {
    font-size: 52px;
}
.footer_info .footerPhone {
    /*display: flex;*/
    padding: 0 10vw;
}
.footer_info .phoneBox {
    width: 48%;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
}
.footer_info .phoneBox .t{
    font-size: 22px;
}
.footer_info .footerPhone{
    padding: 0;
}
.footer_info .footerPhone .imgBox{
    width: 100%;
    height: 20vw;
    margin: 0 auto;
    background-size: contain !important;
}
.infos {
    color: #ffffff;
    opacity: 0.3;
    text-align: center;
    font-size: 16px;
}

.footer_info .phoneBox .phone {
    display: inline-block;
    margin: 0 1vw;
}
.footer_info .phoneBoxs{
    margin-top: 2vw;
    padding-left: 20%;
}
.footer_info .phoneBoxs .phone{
    line-height: 2;
}
.default .list ul li:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parter_box {
    margin-top: -5vw;
    padding-bottom: 12vw;
    border-radius: 3vw;
    -webkit-transform: scale(0.8);
}

.mouse_icon {
    width: 150px;
    height: auto;
    position: fixed;
    left: 50%;
    margin-left: -75px;
    bottom: 5%;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    z-index: 5;
}

.mouse_icon p {
    font-size: 14px;
    display: block;
    margin-top: 15px;
}

.mouse_icon .mouse {
    width: 30px;
    height: auto;
    margin: 0px auto;
    position: relative;
}

.mouse_icon .mouse::before {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .1);
    border-radius: 50%;
    content: '';
}

.mouse_icon .mouse img {
    -webkit-animation: upAnimate 2s ease infinite;
}

@-webkit-keyframes upAnimate {
    0%,
    100% {
        -webkit-transform: translateY(-4px);
    }
    50% {
        -webkit-transform: translateY(4px);
    }
}

.mouse_icon .icon {
    width: 18px;
    margin: 0px auto;
}

.mouse_icon .icon img {
    -webkit-animation: upAnimate2 2s ease infinite;
}

@-webkit-keyframes upAnimate2 {
    0%,
    100% {
        -webkit-transform: translateY(-1px);
    }
    50% {
        -webkit-transform: translateY(3px);
    }
}

.jjffBox {
    width: 100%;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
}

.jjffBox .item {
    width: 25%;
    display: inline-block;
    float: left;
}

.jjffBox .item .it {
    width: 100%;
    text-align: center;
    background: #EAEAEA;
    padding: 6vw 50px;
    font-size: 32px;
    cursor: pointer;
}

.jjffBox .item .it .icon {
    width: 25%;
    margin: 0 auto 20px auto;
}

.jjffBox .item .itemB {
    width: 25%;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    margin-top: -22%;
    background: #3f73fa;
    overflow: hidden;
    border-radius: 20px;
    transition: .3s ease-in-out;
}

.jjffBox .item .itemB .img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.jjffBox .item .itemB .img img {
    border-radius: 20px;
}

.jjffBox .item .itemB .text {
    width: 100%;
    display: block;
    color: white;
    padding: 4.5vw 30px;
}

.jjffBox .item .itemB .text .tit {
    font-size: 22px;
}

.jjffBox .item .itemB .text .des {
    font-size: 16px;
    margin: 20px 0;
    line-height: 1.7;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.jjffBox .item .itemB .text .more {
    font-size: 32px;
}

.jjffBox .item:hover .itemB {
    opacity: 1;
    pointer-events: all;
}

.jjffBox .item:nth-child(2) .it {
    background: #F5F5F5;
}

.jjffBox .item:nth-child(4) .it {
    background: #F5F5F5;
}

.jjffBox .item:nth-child(5) .it {
    background: #F5F5F5;
}

.jjffBox .item:nth-child(7) .it {
    background: #F5F5F5;
}

.jjffBox .item:nth-child(5) .itemB,
.jjffBox .item:nth-child(6) .itemB,
.jjffBox .item:nth-child(7) .itemB,
.jjffBox .item:nth-child(8) .itemB {
    margin-top: -44%;
}

.bannerBox {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bannerBoxImg {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    animation: sec 3s forwards;
}

@keyframes sec {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.bannerBox .text {
    color: white;
    font-size: 88px;
    font-weight: bold;
    font-family: SourceHanSansCNBlod;
    letter-spacing: 5px;
    position: absolute;
    padding-top: 35vw;
    padding-left: 8vw;
    z-index: 1;
}

.coreF1 .w1400 {
    display: flex;
    justify-content: space-between;
}

.coreF1 .left {
    width: 35%;
}

.coreF1 .left::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 22vw;
    margin-top: 90px;
    margin-left: -26px;
    background: rgba(0, 0, 0, .1);
}

.coreF1 .left .item {
    margin-top: 4vw;
    color: #2a2a2a;
    cursor: pointer;
    position: relative;
}

.coreF1 .left .item .tit {
    font-size: 26px;
    font-weight: bold;
    transition: .3s all;
}

.coreF1 .left .item .tit::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #353535;
    border-radius: 50%;
    margin-left: -30px;
    margin-top: 12px;
    transition: .3s all;
}

.coreF1 .left .item .des {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    opacity: 0;
    height: 0;
    transition: .3s all;
}

.coreF1 .left .item.active .tit {
    font-size: 32px;
}

.coreF1 .left .item.active .des {
    opacity: 1;
    height: auto;
    margin-top: 1vw;
}

.coreF1 .left .item.active .tit::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #3f73fa;
    border-radius: 50%;
    margin-left: -30px;
    margin-top: 20px;
}

.coreF1 .right {
    width: 60%;
    height: 34vw;
    border-radius: 30px;
    overflow: hidden;
}

.coreF1 .right .videoBoxs {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.coreF1 .right .videoBoxs .playIcon {
    width: 6vw;
    position: absolute;
    margin: 15vw 24vw;
    cursor: pointer;
    transition: .3s all;
}

.coreF1 .right .videoBoxs video {
    width: 100%;
    height: 34vw;
    object-fit: cover !important;
    border-radius: 30px;
    overflow: hidden;
}

.coreF2 {
    padding-top: 0;
}

.coreF2 .titBox {
    text-align: center;
}

.coreF2 .titBox .t {
    color: #333333;
    font-size: 48px;
    font-weight: bold;
    font-family: SourceHanSansCNMedium;
}

.coreF2 .titBox .d {
    color: #323232;
    opacity: 0.79;
    font-size: 20px;
}

.coreF2 .numBox {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.coreF2 .numBox .item {
    display: inline-block;
    border-left: 1px solid #d4d4d4;
    margin: 3vw 0;
    padding: 0 4vw;
}

.coreF2 .numBox .item:first-child {
    border-left: transparent;
}

.coreF2 .numBox .item .num {
    display: inline-block;
    float: left;
    color: #3f73fa;
    font-size: 66px;
    font-family: ArialMT;
}

.coreF2 .numBox .item .text {
    display: inline-block;
    text-align: left;
    position: relative;
    top: 15px;
    margin-left: 10px;
}

.coreF2 .numBox .item .text .d {
    color: #3f73fa;
    font-size: 24px;
}

.coreF2 .numBox .item .text .e {
    color: #3a3a3a;
    font-size: 18px;
}

.coreF2Swiper {
    width: 100%;
    height: 35vw;
    padding-right: 75vw;
}

.coreF2Swiper .swiper-slide {
    width: 26vw !important;
    height: 15vw;
    border-radius: 20px;
    overflow: hidden;
    transition: .3s ease-in-out;
    margin-top: 19vw;
}

.coreF2Swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.coreF2Swiper .swiper-slide-active {
    width: 59vw !important;
    height: 34vw;
    margin-top: 0;
    /* border-bottom-left-radius: 0;
border-top-left-radius: 0; */
}

.coreF2Swiper .swiper-button-next {
    right: 32vw;
    top: 46%;
    width: 49px;
    height: 49px;
    border: 2px solid #0c0c0c;
    border-radius: 50%;
}

.coreF2Swiper .swiper-button-next::after {
    font-size: 16px;
    color: #0c0c0c;
    font-weight: bold;
}

.coreF2Swiper .swiper-button-prev {
    right: 36vw;
    top: 46%;
    left: inherit;
    width: 49px;
    height: 49px;
    border: 2px solid #0c0c0c;
    border-radius: 50%;
}

.coreF2Swiper .swiper-button-prev::after {
    font-size: 16px;
    color: #0c0c0c;
    font-weight: bold;
}

.coreF2Swiper1 {
    width: 35vw;
    position: absolute;
    right: 3vw;
    z-index: 9;
}

.coreF2Swiper1 .swiper-slide {
    color: white;
    font-size: 64px;
    font-family: SourceHanSansCNBlod;
    cursor: pointer;
    text-shadow: -1px -1px 0 #757575, 1px -1px 0 #757575, -1px 1px 0 #757575, 1px 1px 0 #757575;
}

.coreF2Swiper1 .swiper-slide-thumb-active {
    color: #343434;
}

.coreF3 {
    width: 100%;
    height: 50vw;
    background-size: cover !important;
    border-radius: 0vw 0vw 4vw 4vw;
    transition: .5s ease-in-out;
}

.coreF3 .titBox {
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    padding-top: 5vw;
}

.coreF3 .titBox .t {
    font-size: 48px;
    font-weight: bold;
    font-family: SourceHanSansCNMedium;
}

.coreF3 .titBox .tt {
    font-size: 36px;
    font-weight: bold;
    margin: 2vw 0 1vw 0;
}

.coreF3 .titBox .d {
    opacity: 0.79;
    font-size: 20px;
}

.coreF3Box {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 15vw auto 0 auto;
}

.coreF3Box .itemBox {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    line-height: 120px;
    color: white;
    border: 1px dotted white;
    cursor: pointer;
    transition: .5s all;
}

.coreF3Box .itemBox:hover {
    transform: scale(1.05);
}

.coreF3Box .itemBox .item {
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    margin: 10px auto;
}

.coreF3Box .itemBox.active .item {
    background: #3f73fa;
}

.solution {
    width: 100%;
    height: 100vh;
    background-size: cover !important;
    display: inline-block;
    position: fixed;
}

.solution .item {
    width: 25vw;
    height: 50vh;
    display: inline-block;
    float: left;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    border-right: 1px solid rgba(255, 255, 255, .5);
    text-align: center;
    clip: rect(0px, 0, 50vh, 0px);
    transition: .5s ease-in-out;
}
.solution .item::before{
    content: '';
    position: absolute;
    width: 25vw;
    height: 50vh;
    background: url('../images/img9.jpg') center no-repeat;
    background-size: cover !important;
    margin-left: -12.5vw;
    z-index: -1;
    clip: rect(0px, 0, 50vh, 0px);
    transition: .5s ease-in-out;
}
.solution .item:hover::before{
    clip: rect(0px, 25vw, 50vh, 0px);
}
.solution .item:hover .more {
    opacity: 1;
}

.solution .item .tit {
    font-size: 36px;
    font-weight: bold;
    padding-top: 12.5vw;
    transition: .3s all;
}
.solution .item:hover .tit{
    /*padding-top: 11vw;*/
}
.solution .item .tit::before {
    content: '';
    position: absolute;
    width: 53px;
    height: 4px;
    background-color: #ffffff;
    margin-left: 50px;
    margin-top: 60px;
}

.solution .item .more {
    font-size: 36px;
    margin-top: 3vw;
    opacity: 0;
    transition: .3s all;
}

.solutionDetail {
    border-radius: 0 0 70px 70px;
}

.solutionDetailTab {
    width: 100%;
    margin: 0 auto;
    background: white;
    border-bottom: 1px solid #e7e7e7;
    position: sticky;
    top: 0;
    z-index: 9;
}

.solutionDetailTab .tab {
    display: inline-block;
    color: #000000;
    font-size: 18px;
    margin: 0 1.5vw;
    font-weight: bold;
    padding: 1.5vw 0;
}

.solutionDetailTab .tab:hover {
    color: #3f73fa;
    border-bottom: 3px solid #3f73fa;
}

.solutionDetailTab .tab.active {
    color: #3f73fa;
    border-bottom: 3px solid #3f73fa;
}

.solutionDetail .left {
    width: 22%;
    display: inline-block;
    float: left;
    background-color: #ffffff;
    border-radius: .5vw;
    box-shadow: 0 0px 10px 1px gainsboro;
    overflow: hidden;
    position: sticky;
    top: 20%;
}

.solutionDetail .left .leftTab {
    display: block;
    color: #313131;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    padding: 1.5vw 3vw;
    border-bottom: 1px solid #e7e7e7;
    border-left: 5px solid transparent;
}

.solutionDetail .left .leftTab i {
    font-weight: normal;
    font-size: 32px;
}

.solutionDetail .left .leftTab.active {
    color: #3f73fa;
    border-left: 5px solid #3f73fa;
}

.solutionDetail .left .leftTab:hover {
    color: #3f73fa;
    border-left: 5px solid #3f73fa;
}

.solutionDetail .right {
    width: 70%;
    display: inline-block;
    margin-left: 5%;
}

.solutionBox .itemBox {
    margin-bottom: 5vw;
}

.solutionBox .f1 .t {
    font-size: 48px;
    font-weight: bold;
}

.solutionBox .f1 .d {
    color: #2a2a2a;
    font-size: 18px;
    margin: 1vw 0 2vw 0;
}
.solutionBox .f1 .videoBoxs{
    width: 100%;
    height: 35vw;
}
.solutionBox .f1 .videoBoxs video{
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}
.solutionBox .f1 .videoBoxs .videoIcon{
    width: 5vw;
    position: absolute;
    cursor: pointer;
    margin: 12.5vw 29vw;
    z-index: 9;
}
.solutionBoxF1 {
    width: 100%;
    overflow: hidden;
}

.solutionBoxF1 .swiper-slide .img {
    width: 100%;
    height: 28vw;
    background-size: cover !important;
    border-radius: .5vw;
}

.solutionBoxF1 .swiper-button-next {
    width: 50px;
    height: 50px;
    border: 2px solid #3f73fa;
    border-radius: 50%;
}

.solutionBoxF1 .swiper-button-next:after {
    font-size: 22px;
}

.solutionBoxF1 .swiper-button-prev {
    width: 50px;
    height: 50px;
    border: 2px solid #3f73fa;
    border-radius: 50%;
}

.solutionBoxF1 .swiper-button-prev:after {
    font-size: 22px;
}

.solutionBox .f2 .t {
    font-size: 48px;
    font-weight: bold;
}

.solutionBox .f2 .f2Box .item {
    margin-top: 3vw;
    display: flex;
}

.solutionBox .f2 .f2Box .item .icon {
    width: 105px;
    height: 105px;
}

.solutionBox .f2 .f2Box .item .text {
    width: 85%;
    margin-left: 3%;
}

.solutionBox .f2 .f2Box .item .text .tit {
    color: #333333;
    font-size: 24px;
    font-weight: bold;
}

.solutionBox .f2 .f2Box .item .text .des {
    color: #2a2a2a;
    font-size: 18px;
    text-align: justify;
    line-height: 2;
    margin-top: 10px;
}

.solutionBox .f3 .t {
    font-size: 48px;
    font-weight: bold;
}

.solutionBox .f3 .f3Box {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.solutionBox .f3 .f3Box .item {
    width: 48%;
    height: 18vw;
    display: inline-block;
    float: left;
    margin-right: 2%;
    margin-top: 2%;
    border-radius: .5vw;
    overflow: hidden;
}

.solutionBox .f3 .f3Box .item:nth-child(2n) {
    margin-right: 0;
}

.solutionBox .f3 .f3Box .item .img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    border-radius: .5vw;
    overflow: hidden;
    transition: .3s ease-in-out;
}

.solutionBox .f3 .f3Box .item .text {
    position: absolute;
    font-size: 18px;
    color: white;
    font-weight: bold;
    padding-left: 2%;
    padding-top: 17%;
    z-index: 1;
}

.solutionBox .f3 .f3Box .item:hover .img {
    transform: scale(1.1);
}

.story .boxes {
    border-radius: 0 0 70px 70px;
}

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

.storyF1 .item {
    width: 47%;
    margin-right: 5%;
    margin-bottom: 3%;
    display: inline-block;
    float: left;
}

.storyF1 .item:nth-child(2n) {
    margin-right: 0;
    position: relative;
    top: 10vw;
}

.storyF1 .item .imgBox {
    width: 100%;
    height: 24vw;
    border-radius: .5vw;
    overflow: hidden;
}

.storyF1 .item .imgBox .img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    transition: .3s ease-in-out;
}

.storyF1 .item .imgBox:hover .img {
    transform: scale(1.1);
}

.storyF1 .item .text {
    padding: 3vw 0;
}

.storyF1 .item .text .t {
    color: #363636;
    font-size: 30px;
    font-weight: bold;
}

.storyF1 .item .text .d {
    color: #363636;
    font-size: 18px;
    text-align: justify;
    line-height: 1.7;
    margin: 1vw 0;
}

.storyF1 .item .text .more {
    font-size: 32px;
}

.storyDetail {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.storyDetail .left {
    width: 70%;
}

.storyDetail .left .tit {
    color: #363636;
    font-size: 36px;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 30px;
}

.storyDetail .left .des {
    padding: 30px 0;
    color: #363636;
    font-size: 18px;
    text-align: justify;
    line-height: 2;
}

.storyDetail .left .pageBox {
    border-top: 1px solid rgba(0, 0, 0, .2);
    padding-top: 30px;
}

.storyDetail .left .pageBox a {
    display: block;
    color: #363636;
    font-size: 18px;
    line-height: 2;
}

.storyDetail .right {
    width: 25%;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
    border-radius: .5vw;
    overflow: hidden;
    padding: 30px;
}

.storyDetail .right .tit {
    color: #313131;
    font-size: 28px;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 15px;
}

.storyDetail .right .rightBox .item {
    width: 100%;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.storyDetail .right .rightBox .item .img {
    width: 40%;
    height: 5vw;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover !important;
}

.storyDetail .right .rightBox .item .text {
    width: 55%;
    margin-left: 5%;
}

.storyDetail .right .rightBox .item .text .t {
    color: #363636;
    font-size: 20px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.storyDetail .right .rightBox .item .text .d {
    color: #363636;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 5px;
}

.news .boxes {
    border-radius: 0 0 70px 70px;
}

.newsBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.newsBox .imgBox {
    width: 60%;
    height: auto;
    border-radius: .5vw;
    overflow: hidden;
}

.newsBox .imgBox .img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.newsBox .textBox {
    width: 42%;
    background: #f6f6f6;
    border-radius: .5vw;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-left: -2%;
    padding: 0 50px;
}

.newsBox .textBox .item {
    display: block;
    padding: 2.5vw 0;
    color: #333333;
    border-bottom: 1px solid #cccccc;
}

.newsBox .textBox .item:last-child {
    border-bottom: transparent;
}

.newsBox .textBox .item .name {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.newsBox .textBox .item .time {
    font-size: 16px;
    opacity: .5;
    margin-top: 20px;
}

.newsPage {
    width: 100%;
    display: inline-block;
    margin-top: 3%;
}

.newsPage .item {
    width: 29%;
    display: inline-block;
    float: left;
    margin-right: 6%;
    margin-top: 5%;
}

.newsPage .item .imgBox {
    width: 100%;
    height: 17vw;
    border-radius: .5vw;
    overflow: hidden;
}

.newsPage .item .imgBox .img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    transition: .5s all;
}

.newsPage .item:hover .imgBox .img {
    transform: scale(1.1);
}

.newsPage .item:nth-child(3n) {
    margin-right: 0;
}

.newsPage .item .textBox {
    background-color: #f6f6f6;
    border-radius: .5vw;
    position: relative;
    margin-top: -1vw;
    padding: 2vw;
    color: #333333;
}

.newsPage .item .textBox .name {
    font-size: 24px;
    font-weight: bold;
}

.newsPage .item .textBox .des {
    font-size: 16px;
    text-align: justify;
    line-height: 1.7;
    margin: 1vw 0;
}

.newsPage .item .textBox .time {
    font-size: 16px;
    opacity: .5;
}

.about .f1 .w1400 {
    display: flex;
    justify-content: space-between;
}

.about .f1 .imgInfo {
    position: absolute;
    right: 0;
    margin-top: 5vw;
}

.about .f1 .imgBox {
    width: 37%;
}

.about .f1 .textBox {
    width: 60%;
    margin-left: 8%;
}

.about .f1 .textBox .t {
    color: #333333;
    font-weight: bold;
    font-size: 48px;
}

.about .f1 .textBox .i {
    color: #3a3a3a;
    font-size: 24px;
    font-weight: bold;
    margin-top: 1vw;
}

.about .f1 .textBox .des {
    color: #666666;
    font-size: 18px;
    text-align: justify;
    line-height: 2;
}

.about .f1 .textBox .des p {
    margin-top: 2vw;
}

.about .f1 .textBox .i.it {
    margin-top: 2vw;
}

.about .f1 .textBox .i.it::before {
    content: '';
    position: absolute;
    width: 48%;
    height: 1px;
    background: #e7e7e7;
    margin-left: 160px;
    margin-top: 15px;
}

.about .f1 .textBox .itemBox {
    width: 100%;
    display: inline-block;
}

.about .f1 .textBox .itemBox .item {
    display: inline-block;
    float: left;
    margin-top: 20px;
    margin-right: 3vw;
}
.about .f1 .textBox .itemBox .item:last-child{
    margin-right: 0;
}
.about .f1 .textBox .itemBox .item .numBox {
    display: flex;
}

.about .f1 .textBox .itemBox .item .numBox .num {
    color: #3f73fa;
    font-size: 60px;
    font-family: ArialMT;
}

.about .f1 .textBox .itemBox .item .numBox .text {
    margin: 10px;
}

.about .f1 .textBox .itemBox .item .numBox .text p:nth-child(1) {
    color: #3f73fa;
    font-size: 24px;
}

.about .f1 .textBox .itemBox .item .numBox .text p:nth-child(2) {
    color: #3a3a3a;
    font-size: 18px;
}

.about .f1 .textBox .itemBox .item .tit {
    color: #6f6f6f;
    font-size: 16px;
}

.about .f2 {
    background: white;
}

.about .f2 .textBox {
    text-align: center;
    color: #333333;
}

.about .f2 .textBox .t {
    font-weight: bold;
    font-size: 48px;
}

.about .f2 .textBox .d {
    opacity: .8;
    font-size: 18px;
    margin: 1vw 0;
}

.about .f2 .imgSwiper {
    width: 100%;
    overflow: hidden;
    padding: 3vw 0 5vw 0;
}

.about .f2 .imgSwiper .swiper-slide {
    width: 22vw;
    margin: 0 auto;
    text-align: center;
}

.about .f2 .imgSwiper .swiper-slide .imgBox {
    width: 22vw;
    height: 12vw;
    background-size: cover !important;
    overflow: hidden;
}

.about .f2 .imgSwiper .swiper-slide .name {
    color: #4b4b4b;
    font-size: 20px;
    margin-top: 1vw;
    opacity: 0;
    transition: .5s all;
}
.about .f2 .imgSwiper .swiper-slide-active{
    transform: scale(1.1) !important;
}
.about .f2 .imgSwiper .swiper-slide-active .name {
    opacity: 1;
}

.about .f3 {
    width: 100%;
    height: 57vw;
    background-size: cover !important;
}

.about .f3 .textBox {
    text-align: center;
    color: #333333;
    padding-top: 6vw;
}

.about .f3 .textBox .t {
    font-weight: bold;
    font-size: 48px;
}

.about .f3 .textBox .d {
    opacity: .8;
    font-size: 18px;
    margin: 1vw 0;
}

.about .f4 .textBox {
    text-align: center;
    color: #333333;
}

.about .f4 .textBox .t {
    font-weight: bold;
    font-size: 48px;
}

.about .f4 .textBox .itemBox {
    width: 100%;
    display: inline-block;
}

.about .f4 .textBox .itemBox .item {
    display: inline-block;
    margin-top: 20px;
    padding: 0 3vw;
    border-left: 1px solid #d4d4d4;
}

.about .f4 .textBox .itemBox .item:first-child {
    border-left: transparent;
}

.about .f4 .textBox .itemBox .item .numBox {
    display: flex;
}

.about .f4 .textBox .itemBox .item .numBox .num {
    color: #3f73fa;
    font-size: 60px;
    font-family: ArialMT;
}

.about .f4 .textBox .itemBox .item .numBox .text {
    margin: 10px;
}

.about .f4 .textBox .itemBox .item .numBox .text p:nth-child(1) {
    color: #3f73fa;
    font-size: 24px;
}

.about .f4 .textBox .itemBox .item .numBox .text p:nth-child(2) {
    color: #3a3a3a;
    font-size: 18px;
}

.about .f5 {
    background: white;
}

.about .f5Box {
    width: 100%;
    height: 45vw;
    background-size: cover !important;
    border-radius: .5vw;
    overflow: hidden;
    padding-top: 29vw;
    padding-left: 5vw;
    background: white;
}

.about .f5 .textBox {
    text-align: left;
    color: white;
}

.about .f5 .textBox .t {
    font-weight: bold;
    font-size: 48px;
}

.about .f5 .textBox .d {
    opacity: .8;
    font-size: 18px;
    margin: 1vw 0;
}

.about .f6 {
    border-radius: 0 0 70px 70px;
}

.about .f6 .w1400 {
    display: flex;
}

.about .f6 .imgBox {
    width: 40%;
}

.about .f6 .textBox {
    width: 50%;
    margin-left: 10%;
}

.about .f6 .textBox .t {
    font-weight: bold;
    font-size: 48px;
    border-bottom: 2px solid #000000;
    padding: 3vw 0;
}

.about .f6 .textBox .itemBox .item {
    display: flex;
    padding: 2vw 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.about .f6 .textBox .itemBox .item:last-child {
    border-bottom: transparent;
}

.about .f6 .textBox .itemBox .item .icon {
    color: #3f73fa;
    font-size: 36px;
}

.about .f6 .textBox .itemBox .item .text {
    color: #333333;
    margin-left: 20px;
}

.about .f6 .textBox .itemBox .item .text .name {
    font-weight: bold;
    font-size: 24px;
}

.about .f6 .textBox .itemBox .item .text .des {
    font-size: 20px;
    line-height: 1.7;
}

#ci-particles {
    height: 20vw;
}

#ci-particles #canvas {
    width: 100%;
    height: 50vw;
    margin-top: -15vw;
    pointer-events: none;
}

#ci-particles #headline {
    display: none;
}

#ci-particles #imgs {
    display: none;
}
.pc{
    display: block;
}
.mobile{
    display: none;
}
@media (max-width: 1660px) {
    .about .f1 .textBox{
        margin-left: 4%;
    }
    .about .f1 .textBox .itemBox .item{
        margin-right: 2vw;
    }
    .coreF2Swiper .swiper-button-next {
        right: 31vw;
    }
    .coreF2Swiper .swiper-button-prev {
        right: 35vw;
    }
    .jjffBox .item .itemB {
        margin-top: -23%;
    }
    .jjffBox .item:nth-child(5) .itemB,
    .jjffBox .item:nth-child(6) .itemB,
    .jjffBox .item:nth-child(7) .itemB,
    .jjffBox .item:nth-child(8) .itemB {
        margin-top: -45%;
    }
}

@media (max-width: 1440px) {
    .about .f1 .textBox .itemBox .item{
        width: 31%;
        margin-right: 1vw;
    }
    .jjffBox .item .itemB {
        margin-top: -24%;
    }
    .jjffBox .item:nth-child(5) .itemB,
    .jjffBox .item:nth-child(6) .itemB,
    .jjffBox .item:nth-child(7) .itemB,
    .jjffBox .item:nth-child(8) .itemB {
        margin-top: -46.5%;
    }
    .footer_info .phoneBox .phone {
        margin: 0 .5vw;
    }
}

@media (max-width: 1366px) {
    .footer_info .phoneBox {
        font-size: 16px;
    }
    .about .f1 .textBox .itemBox .item .numBox .text p:nth-child(2){
        font-size: 16px;
    }
    .about .f1 .textBox .itemBox .item .numBox .num{
        font-size: 55px;
    }
}

@media (max-width: 900px) {
    .pc{
        display: none;
    }
    .mobile{
        display: block;
    }
    .bannerBox {
        height: 50vw;
    }
    .bannerBox .text {
        font-size: 28px;
    }
    .boxes {
        padding: 8vw 5vw;
    }
    .w1400 {
        width: 100%;
    }
    .coreF1 .w1400 {
        display: block;
    }
    .about .f1 .textBox .itemBox .item{
        width: auto;
    }
    .coreF1 .left {
        width: 100%;
    }
    .coreF1 .left .item.active .tit {
        font-size: 22px;
    }
    .coreF1 .left .item .tit img{
        width: 22px;
        position: absolute;
        margin-top: -6vw;
        margin-left: 85vw;
    }
    .coreF1 .left .item .tit img:nth-child(2) {
        display: none;
    }
    .coreF1 .left .item.active .tit img:nth-child(1) {
        display: none;
    }
    .coreF1 .left .item.active .tit img:nth-child(2) {
        display: block;
    }
    .coreF1 .left .item .tit {
        font-size: 16px;
    }
    .coreF1 .left .item .des {
        font-size: 14px;
    }
    .coreF1 .right {
        width: 100%;
        height: 50vw;
        border-radius: 5px;
        margin-top: 5vw;
    }
    .coreF1 .right .videoBoxs {
        border-radius: 5px;
    }
    .coreF1 .right .videoBoxs video {
        height: 50vw;
        border-radius: 5px;
    }
    .coreF1 .right .videoBoxs .playIcon {
        width: 52px;
        margin: 18vw 38vw;
    }
    .coreF2 .titBox .t {
        font-size: 22px;
    }
    .coreF2 .titBox .d {
        font-size: 16px;
    }
    .coreF2 .numBox .item {
        padding: 0;
        border: transparent;
    }
    .coreF2 .numBox .item .num {
        font-size: 32px;
    }
    .coreF2 .numBox .item .text {
        top: -5px;
        margin-left: 5px;
    }
    .coreF2 .numBox .item .text .d {
        font-size: 16px;
    }
    .coreF2 .numBox .item .text .e {
        font-size: 14px;
    }
    .solution .item {
        width: 50vw;
        height: 25vh;
        padding-top: 0;
    }
    .solution .item .tit {
        font-size: 22px;
        padding-top: 18.5vw;
    }
    .solution .item .tit::before {
        height: 2px;
        margin-left: 20px;
        margin-top: 35px;
    }
    .solution .item::before{
        width: 50vw;
        height: 25vh;
        margin-left: -25vw;
    }
    .solution .item:hover::before{
        clip: rect(0px, 50vw, 50vh, 0px);
    }
    .solutionDetailTab {
        display: none;
    }
    .solutionDetail .left {
        display: none;
    }
    .solutionDetail .right {
        width: 100%;
        margin-left: 0;
    }
    .solutionBox .f1 .t {
        font-size: 22px;
    }
    .solutionBox .f1 .d {
        font-size: 16px;
    }
    .solutionBoxF1 .swiper-slide .img {
        height: 40vw;
    }
    .solutionBoxF1 .swiper-button-next,
    .solutionBoxF1 .swiper-button-prev {
        display: none;
    }
    .solutionBox .f2 .t {
        font-size: 22px;
    }
    .solutionBox .f2 .f2Box .item .icon {
        width: 45px;
        height: 45px;
    }
    .solutionBox .f2 .f2Box .item .text .tit {
        font-size: 18px;
    }
    .solutionBox .f2 .f2Box .item .text .des {
        font-size: 14px;
    }
    .solutionBox .f3 .t {
        font-size: 22px;
    }
    .solutionBox .f3 .f3Box .item {
        width: 100%;
        height: 50vw;
        margin-right: 0;
        margin-bottom: 5vw;
    }
    .solutionBox .f3 .f3Box .item .text {
        padding-left: 5%;
        padding-top: 45%;
    }
    .solutionDetail {
        border-radius: 0 0 30px 30px;
    }
    .storyF1 .item {
        width: 100%;
        margin-right: 0;
    }
    .storyF1 .item .imgBox {
        height: 55vw;
    }
    .storyF1 .item .text .t {
        font-size: 18px;
    }
    .storyF1 .item .text .d {
        font-size: 16px;
    }
    .storyF1 .item:nth-child(2n) {
        top: inherit;
    }
    .story .boxes {
        border-radius: 0 0 30px 30px;
    }
    .storyDetail .left {
        width: 100%;
    }
    .storyDetail .right {
        display: none;
    }
    .storyDetail .left .tit {
        font-size: 22px;
    }
    .newsBox {
        display: block;
    }
    .newsBox .imgBox {
        width: 100%;
        height: 50vw;
    }
    .newsBox .textBox {
        width: 100%;
        margin-left: 0;
        padding: 5vw;
    }
    .newsBox .textBox .item .name {
        font-size: 18px;
    }
    .newsBox .textBox .item .time {
        margin-top: 5px;
    }
    .newsPage .item {
        width: 100%;
        margin-right: 0;
    }
    .newsPage .item .imgBox {
        height: 50vw;
    }
    .newsPage .item .textBox .name {
        font-size: 18px;
    }
    .news .boxes {
        border-radius: 0 0 30px 30px;
    }
    .about .f1 .w1400 {
        display: block;
    }
    .about .f1 .imgBox {
        width: 100%;
        margin-top: 5vw;
    }
    .about .f1 .textBox {
        width: 100%;
        margin-left: 0;
    }
    .about .f1 .textBox .t {
        font-size: 22px;
    }
    .about .f1 .textBox .i {
        font-size: 20px;
    }
    .about .f1 .textBox .des {
        font-size: 16px;
    }
    .about .f1 .textBox .i.it {
        margin-top: 5vw;
    }
    .about .f1 .textBox .itemBox .item .numBox .num {
        font-size: 36px;
    }
    .about .f1 .textBox .itemBox .item .numBox .text p:nth-child(1) {
        font-size: 16px;
    }
    .about .f1 .textBox .itemBox .item .numBox .text p:nth-child(2) {
        font-size: 16px;
    }
    .about .f1 .textBox .itemBox .item .numBox .text {
        margin: 0 10px;
    }
    .about .f2 .textBox .t {
        font-size: 22px;
    }
    .about .f3 .textBox .t {
        font-size: 22px;
    }
    .about .f4 .textBox .t {
        font-size: 22px;
    }
    .about .f4 .textBox .itemBox .item .numBox .num {
        font-size: 32px;
    }
    .about .f4 .textBox .itemBox .item .numBox .text p:nth-child(1) {
        font-size: 16px;
    }
    .about .f4 .textBox .itemBox .item .numBox .text p:nth-child(2) {
        font-size: 14px;
    }
    .about .f4 .textBox .itemBox .item .numBox .text {
        margin: 0 10px 0 0;
    }
    .about .f4 .textBox .itemBox .item {
        padding: 0;
        border-left: transparent;
        margin: 2vw 1vw;
    }
    .about .f4 .f4Img {
        margin-top: 5vw;
    }
    .about .f5Box {
        height: 50vw;
        padding-top: 15vw;
    }
    .about .f5 .textBox .t {
        font-size: 22px;
    }
    .about .f5 .textBox .d {
        font-size: 16px;
    }
    .btns a,
    .js_more {
        width: 100px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
    .about .f5 .textBox .d {
        margin-top: 3vw;
    }
    .about .f6 .imgBox {
        display: none;
    }
    .about .f6 .textBox {
        width: 100%;
        margin-left: 0;
    }
    .about .f6 .textBox .t {
        font-size: 22px;
    }
    .about .f6 .textBox .itemBox .item .icon {
        font-size: 22px;
    }
    .about .f6 .textBox .itemBox .item .text .name {
        font-size: 18px;
    }
    .about .f6 .textBox .itemBox .item .text .des {
        font-size: 16px;
    }
    .about .f6 {
        border-radius: 0 0 30px 30px;
    }
    .footer_info .js_title {
        font-size: 20px;
    }
    .infos {
        padding: 5vw;
        font-size: 14px;
    }
    .js_title {
        font-size: 22px;
    }
    .jjffBox .item {
        width: 50%;
    }
    .jjffBox .item .it {
        padding: 6vw 20px;
        font-size: 18px;
    }
    .jjffBox .item .it .icon {
        width: 30%;
    }
    .story_box {
        display: block;
    }
    .story_box .left {
        width: 100%;
        margin-left: 0;
    }
    .js_des {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 3vw;
    }
    .story_box .right {
        width: 100%;
        margin-top: 5vw;
    }
    .news_warp {
        display: block;
    }
    .news_warp .left {
        width: 100%;
        padding-bottom: 10vw;
    }
    .focus_news {
        display: block;
        border-radius: 10px;
    }
    .focus_news .thum {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
    .focus_news .info {
        width: 100%;
        border-radius: 0 0 10px 10px;
        padding: 5vw;
    }
    .focus_news .info .name {
        font-size: 16px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .focus_news .info .des {
        display: none;
    }
    .focus_bottom {
        display: block;
        margin-top: 0;
    }
    .focus_bottom a {
        width: 100%;
        margin-top: 5vw;
    }
    .focus_bottom a .info {
        padding: 5vw;
    }
    .focus_bottom a .info .name {
        font-size: 16px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .focus_bottom a .info .des {
        display: none;
    }
    .news_warp .right {
        display: none;
    }
    .video_warp .w1400 {
        display: block;
    }
    .video_warp .left {
        width: 100%;
    }
    .video_warp .right {
        width: 100%;
        margin-top: 5vw;
        padding-bottom: 10vw;
    }
    .parter_list ul li {
        width: 32%;
    }
    .parter_list ul li:nth-child(6n) {
        margin-right: 2%;
    }
    .parter_list ul li:nth-child(3n) {
        margin-right: 0;
    }
    .jjffBox .item:nth-child(3) .it {
        background: #F5F5F5;
    }
    .jjffBox .item:nth-child(4) .it {
        background: #EAEAEA;
    }
    .jjffBox .item:nth-child(5) .it {
        background: #EAEAEA;
    }
    .jjffBox .item:nth-child(6) .it {
        background: #F5F5F5;
    }
    .jjffBox .item .itemB {
        display: none;
    }
    .backTop {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 18px;
        right: 10px;
    }
    .backTop.active {
        bottom: 30px;
    }
    .slogan p{
        font-size: 26px;
        letter-spacing: 5px;
    }
    .newsSwiper .swiper-slide a .name{
        font-size: 18px;
    }
    .newsSwiper .swiper-slide a .des{
        font-size: 16px;
    }
    .service{
        position: relative;
        padding-bottom: 10vw;
    }
    .service ul{
        width: 100%;
        margin-left: 0;
        padding: 0 5vw;
    }
    .service ul li{
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 0;
    }
    .service ul li .txt{
        line-height: 1.7;
        margin: 3vw 0 5vw 0;
    }
    .service ul li .txt b{
        font-size: 22px;
    }
    .service ul li:nth-child(odd){
        margin-top: 0;
    }
    .service ul li .rect{
        height: auto;
    }
    .service ul li .rect .pic{
        height: 50vw;
    }
    .sp_header {
        height: 50px;

        overflow: hidden;

        background: rgba(0, 0, 0, 0.5);

        position: fixed;

        z-index: 999;

        width: 100%;

        top: 0

    }

    .sp_logo {
        float: left;
    }

    .sp_logo img {
        padding: 5px 5vw;

        margin: auto;

        width: 145px;

        transition: .35s all ease-in-out;
    }

    .sp_nav {
        width: 50px;
        height: 50px;
        float: right;
        position: relative;
        cursor: pointer;
        margin: 0 2vw;
    }

    .sp_nav span {

        display: block;

        background: white;

        width: 30px;

        height: 2px;

        position: absolute;

        left: 10px;

        transition: all ease .35s

    }

    .sp_nav span:nth-of-type(1) {

        top: 15px;

    }

    .sp_nav span:nth-of-type(2) {

        top: 25px

    }

    .sp_nav span:nth-of-type(3) {

        top: 35px

    }

    .sp_nav_se span:nth-of-type(1) {

        top: 25px;

        transform: rotate(45deg)

    }

    .sp_nav_se span:nth-of-type(2) {

        width: 0

    }

    .sp_nav_se span:nth-of-type(3) {

        top: 25px;

        transform: rotate(-45deg)

    }
    .nav_sp_logo{
        width: 40px !important;
        position: fixed;
        z-index: 999;
    }
    .sp_flex{
        display: flex;
    }
    .sp_black{
        width: 50px;
        height: 100%;
        position: fixed;
        background: black;
        right: -100%;
        top: 0;
        transition: top ease .35s
    }
    .sjj_nav {
        position: fixed;
        z-index: 999;
        background: white;
        width: 85%;
        height: 100%;
        font-size: 14px;
        line-height: 40px;
        top: 0;
        right: -100%;
        padding-top: 15vw;
        overflow: auto;
        overflow-x: hidden;
        transition: right ease .35s
    }
    .sp_flex .mengBan{
        width: 15%;
        height: 100%;
        background: rgba(0,0,0,.5);
        position: fixed;
        z-index: 999;
        top: 0;
        right: -100%;
        transition: right ease .35s
    }
    .nav_show2 {

        right: 85% !important;

    }
    .nav_show {

        right: 0;

    }
    .sp_bottom{
        width: 100%;
        margin: 8vw auto;
        display: inline-block;
        text-align: center;
    }
    .sp_bottom .sp_serach{
        width: 31vw;
        height: 12vw;
        background-color: #ffffff;
        border-radius: 30px;
        border: 1px solid #777777;
        display: inline-block;
        text-align: center;
        font-size: 14px;
        margin-right: 5vw;
    }
    .sp_bottom .sp_serach i{
        color: black;
        font-size: 16px;
        margin-right: 2vw;
    }
    .sp_bottom .sp_lag{
        width: 31vw;
        height: 12vw;
        display: inline-block;
        background-color: #ffffff;
        border-radius: 30px;
        border: 1px solid #777777;
        text-align: center;
    }
    .sp_bottom .sp_lag i{
        color: black;
        font-size: 16px;
        margin-right: 2vw;
    }
    .sjj_nav > ul > li:first-child {

        overflow: hidden;

        border-top: 0

    }

    .sjj_nav > ul > li:first-child > a {

        /*float: left;*/

        /*width: calc(100% - 70px)*/

    }

    .sjj_nav > ul > li:first-child .language {

        float: right;

        width: 70px;

        overflow: hidden;

        line-height: 30px;

        margin-top: 5px

    }

    .sjj_nav > ul > li:first-child .language a {

        width: 35px;

        float: left;

        border-left: 1px #ddd solid;

        text-align: center;

        color: #999

    }

    .sjj_nav ul li i {

        position: absolute;

        top: 5px;

        right: 0;

        height: 30px;

        padding: 0 7px

    }

    .sjj_nav ul li i svg {

        transform: rotate(-90deg);

        transition: all ease .35s

    }

    .sjj_nav ul li .sjj_nav_i_se svg {

        transform: rotate(0)

    }

    .sjj_nav ul li {

        border-top: 1px #ddd solid;

        position: relative;

        line-height: 55px;

        font-size: 14px

    }
    .sjj_nav ul li.active{
        background: #f3f3f3;
    }
    .sjj_nav > ul > li:last-child {

        border-bottom: 1px #ddd solid

    }

    .sjj_nav ul li ul {
        background: #f3f3f3;
        display: none;
        border-top: 1px #ddd solid;
        padding: 10px 0;
    }

    .sjj_nav ul li a {

        color: rgba(0, 0, 0, .8);

        width: 80%;

        display: block;

        font-size: 16px;

        font-weight: 700;

        padding-left: 25px;

    }
    .sjj_nav ul li ul li{
        border: transparent;
        line-height: 30px;
    }
    .sjj_nav ul li ul li a {

        color: rgba(0, 0, 0, .5);

        display: block;

        text-align: left;

        font-size: 14px;
        padding-left: 45px;

    }

    .sjj_nav ul li i svg {

        width: 20px;

        height: 20px;

        fill: #063c7e;

    }

    .sjj_nav ul li .sjj_nav_i_se svg {

        fill: #53b170;

    }

    .sjj_nav ul li ul li > ul {

        margin-left: 10px

    }
    .sjj_nav .iconBox{
        width: 100%;
        display: inline-block;
        text-align: center;
        margin-top: 15vw;
    }
    .sjj_nav .iconBox .icon{
        width: 50px;
        margin: 0 3vw;
        display: inline-block;
    }
    .sp_flex .sjj_nav .close{
        position: absolute;
        right: 2vw;
        top: 1vw;
        font-size: 30px;
    }
    .sp_flex .sjj_nav .bgImg{
        position: absolute;
        width: 70vw;
        top: 60vw;
        z-index: -1;
        right: 0;
    }
    header{
        padding: 0;
        left: 0;
    }
    .coreF2Swiper1{
        width: 100%;
        position: relative;
        right: inherit;
        margin-bottom: 5vw;
    }
    .coreF2Swiper1 .swiper-slide{
        font-size: 18px;
    }
    .coreF2Swiper{
        height: 50vw;
        padding-right: 0;
    }
    .coreF2Swiper .swiper-slide{
        width: 100% !important;
        height: 50vw;
        border-radius: 5px;
    }
    .coreF2Swiper .swiper-slide-active{
        width: 100% !important;
        height: 50vw;
    }
    .coreF2Swiper .swiper-button-next{
        border: 2px solid white;
        right: 5vw;
        width: 30px;
        height: 30px;
        top: 55%;
    }
    .coreF2Swiper .swiper-button-prev{
        left: 5vw;
        right: inherit;
        border: 2px solid white;
        width: 30px;
        height: 30px;
        top: 55%;
    }
    .coreF2Swiper .swiper-button-next::after{
        font-size: 14px;
        color: white;
    }
    .coreF2Swiper .swiper-button-prev::after{
        font-size: 14px;
        color: white;
    }
    .coreF3{
        height: 100vw;
    }
    .coreF3 .titBox .t{
        font-size: 22px;
    }
    .coreF3 .titBox .tt{
        font-size: 20px;
    }
    .coreF3 .titBox .d{
        font-size: 18px;
        padding: 0 5vw;
    }
    .coreF3Box{
        width: 95%;
        margin: 35vw auto 0 auto;
    }
    .coreF3Box .itemBox{
        width: 75px;
        height: 75px;
        font-size: 14px;
        line-height: 60px;
    }
    .coreF3Box .itemBox .item{
        width: 60px;
        height: 60px;
        margin: 7px auto;
    }
    .about .f2 .imgSwiper .swiper-slide{
        width: 100%;
    }
    .about .f2 .imgSwiper .swiper-slide .imgBox{
        width: 100%;
        height: 59vw;
    }
    .about .f2 .imgSwiper .swiper-slide .name{
        font-size: 18px;
    }
    .about .f3{
        padding: 5vw 0;
    }
    .about .f33{
        background: white;
        padding: 0 5vw 5vw 5vw;
    }
    .about .f33 .textBox {
        text-align: center;
        color: #333333;
        padding-top: 6vw;
    }

    .about .f33 .textBox .t {
        font-weight: bold;
        font-size: 22px;
    }

    .about .f33 .textBox .d {
        opacity: .8;
        font-size: 16px;
        margin: 1vw 0;
    }
    .footerImg{
        width: 90%;
        margin: 10vw auto;
    }
    .about .f2 .textBox{
        padding: 0 5vw;
    }
    .about .f2 .textBox .d{
        font-size: 16px;
    }
    #jianshan{
        top: -20%;
    }
    .newsSwiper{
        padding-bottom: 8vw;
    }
    .parter_list .logoSwiper .swiper-slide .img{
        height: 28vw;
    }
    .about .f2 .imgSwiper .swiper-slide-active{
        transform: scale(.9) !important;
    }
    .solutionBox .f1 .videoBoxs{
        height: 50vw;
    }
    .solutionBox .f1 .videoBoxs video{
        height: 50vw;
    }
    .solutionBox .f1 .videoBoxs .videoIcon{
        width: 15vw;
        margin: 17.5vw 37vw;
    }
    .footer_info .footerPhone{
        display: block;
    }
    .footer_info .phoneBox{
        width: 100%;
    }
    .footer_info .footerPhone .imgBox{
        width: 100%;
        height: 22vw;
        margin: 3vw auto;
    }
    .footer_info .phoneBoxs{
        padding-left: 0;
    }
    .footer_info .phoneBox .t{
        font-size: 18px;
    }
    .solution{
        position: relative;
    }
    .mem_logo{
        width: 125px;
        height: 40px;
        border: 1px solid rgba(0, 0, 0, .8);
        color: rgba(0, 0, 0, .8);
        margin: 6vw;
    }
}