@charset "utf-8";

/*滚屏渐出*/
@media screen and (min-width:1025px) {
    .transY {
        -webkit-transform: translateY(60px);
        -moz-transform: translateY(60px);
        -ms-transform: translateY(60px);
        transform: translateY(60px);
        opacity: 0;
        visibility: hidden
    }

    .transYF {
        -webkit-transform: translateY(-60px);
        -moz-transform: translateY(-60px);
        -ms-transform: translateY(-60px);
        transform: translateY(-60px);
        opacity: 0;
        visibility: hidden
    }

    .transX {
        -webkit-transform: translateX(60px);
        -moz-transform: translateX(60px);
        -ms-transform: translateX(60px);
        transform: translateX(60px);
        opacity: 0;
        visibility: hidden
    }

    .transXF {
        -webkit-transform: translateX(-60px);
        -moz-transform: translateX(-60px);
        -ms-transform: translateX(-60px);
        transform: translateX(-60px);
        opacity: 0;
        visibility: hidden
    }

    .active .transX, .active .transXF, .active .transY, .active .transYF {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
        opacity: 1;
        visibility: visible
    }

    .trans {
        -webkit-transition: .7s ease-out;
        -moz-transition: .7s ease-out;
        transition: .7s ease-out
    }

    .dly-1 {
        -webkit-transition-delay: .1s;
        -moz-transition-delay: .1s;
        transition-delay: .1s
    }

    .dly-2 {
        -webkit-transition-delay: .2s;
        -moz-transition-delay: .2s;
        transition-delay: .2s
    }

    .dly-3 {
        -webkit-transition-delay: .3s;
        -moz-transition-delay: .3s;
        transition-delay: .3s
    }

    .dly-4 {
        -webkit-transition-delay: .4s;
        -moz-transition-delay: .4s;
        transition-delay: .4s
    }

    .dly-5 {
        -webkit-transition-delay: .5s;
        -moz-transition-delay: .5s;
        transition-delay: .5s
    }

    .dly-6 {
        -webkit-transition-delay: .6s;
        -moz-transition-delay: .6s;
        transition-delay: .6s
    }

    .dly-7 {
        -webkit-transition-delay: .7s;
        -moz-transition-delay: .7s;
        transition-delay: .7s
    }

    .dly-8 {
        -webkit-transition-delay: .8s;
        -moz-transition-delay: .8s;
        transition-delay: .8s
    }

    .dly-9 {
        -webkit-transition-delay: .9s;
        -moz-transition-delay: .9s;
        transition-delay: .9s
    }

    .dly-10 {
        -webkit-transition-delay: 1s;
        -moz-transition-delay: 1s;
        transition-delay: 1s
    }

    .dly-11 {
        -webkit-transition-delay: 1.1s;
        -moz-transition-delay: 1.1s;
        transition-delay: 1.1s
    }

    .dly-12 {
        -webkit-transition-delay: 1.2s;
        -moz-transition-delay: 1.2s;
        transition-delay: 1.2s
    }

    .active .am-lsi {
        -webkit-animation: lightSpeedIn .8s both;
        -moz-animation: lightSpeedIn .8s both;
        animation: lightSpeedIn .8s both
    }

    .active .am-fiu {
        -webkit-animation: fadeInUp .8s both;
        -moz-animation: fadeInUp .8s both;
        animation: fadeInUp .8s both
    }

    .active .am-fid {
        -webkit-animation: fadeInDown .8s both;
        -moz-animation: fadeInDown .8s both;
        animation: fadeInDown .8s both
    }

    .active .am-fir {
        -webkit-animation: fadeInRight .8s both;
        -moz-animation: fadeInRight .8s both;
        animation: fadeInRight .8s both
    }

    .active .am-fil {
        -webkit-animation: fadeInLeft .8s both;
        -moz-animation: fadeInLeft .8s both;
        animation: fadeInLeft .8s both
    }

    .active .am-rvv {
        position: relative
    }

    .active .am-rvv:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 0 0;
        -moz-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        transform-origin: 0 0 0;
        -webkit-animation: reveal-v 2s .2s cubic-bezier(0, 0, .2, 1) both;
        -moz-animation: reveal-v 2s .2s cubic-bezier(0, 0, .2, 1) both;
        animation: reveal-v 2s .2s cubic-bezier(0, 0, .2, 1) both
    }

    .active .am-rvl {
        position: relative
    }

    .active .am-rvl:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 0 0;
        -moz-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        transform-origin: 0 0 0;
        -webkit-animation: reveal-l 2s .2s cubic-bezier(0, 0, .2, 1) both;
        -moz-animation: reveal-l 2s .2s cubic-bezier(0, 0, .2, 1) both;
        animation: reveal-l 2s .2s cubic-bezier(0, 0, .2, 1) both
    }

    .active .am-delay-1 {
        -webkit-animation-delay: .1s;
        -moz-animation-delay: .1s;
        animation-delay: .1s
    }

    .active .am-delay-2 {
        -webkit-animation-delay: .2s;
        -moz-animation-delay: .2s;
        animation-delay: .2s
    }

    .active .am-delay-3 {
        -webkit-animation-delay: .3s;
        -moz-animation-delay: .3s;
        animation-delay: .3s
    }

    .active .am-delay-4 {
        -webkit-animation-delay: .4s;
        -moz-animation-delay: .4s;
        animation-delay: .4s
    }

    .active .am-delay-5 {
        -webkit-animation-delay: .5s;
        -moz-animation-delay: .5s;
        animation-delay: .5s
    }

    .active .am-delay-6 {
        -webkit-animation-delay: .6s;
        -moz-animation-delay: .6s;
        animation-delay: .6s
    }

    .active .am-delay-7 {
        -webkit-animation-delay: .7s;
        -moz-animation-delay: .7s;
        animation-delay: .7s
    }

    .active .am-delay-8 {
        -webkit-animation-delay: .8s;
        -moz-animation-delay: .8s;
        animation-delay: .8s
    }

    .active .am-delay-9 {
        -webkit-animation-delay: .9s;
        -moz-animation-delay: .9s;
        animation-delay: .9s
    }

    .active .am-delay-10 {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s
    }

    .active .am-delay-11 {
        -webkit-animation-delay: 1.1s;
        -moz-animation-delay: 1.1s;
        animation-delay: 1.1s
    }

    .active .am-delay-12 {
        -webkit-animation-delay: 1.2s;
        -moz-animation-delay: 1.2s;
        animation-delay: 1.2s
    }

}

/*banner*/
.banner-swiper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.banner-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-swiper .banner-item {
    height: 100%;
    width: 100%;
}

.banner-swiper .banner-item .banner-pic {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner-item>img {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

.banner-swiper .banner-item .banner-text {
    left: 50%;
    transform: translateX(-50%);
    bottom: 18%;
    width: 100%;
}

.banner-swiper .banner-item-index {
    display: flex;
    align-items: flex-start;
}

.banner-swiper .banner-item .banner-text .banner-total {
    color: rgba(255, 255, 255, 0.50);
    padding-top: 4px;
    margin-left: 8px;
}

.banner-swiper .banner-item .banner-text .banner-item-title {
    margin-top: 12px;
}

.banner-swiper .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
}

.banner-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #fff;
    margin-bottom: 10px;
    position: relative;
    margin: 0 14px;
}

.banner-swiper .swiper-pagination .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.5);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #fff;
    opacity: 0;
    transition: .6s all;
}

.banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.banner-swiper .banner-item .banner-text .banner-item-title.banner-title-pc {
    display: block;
    width: 90%;
}

.banner-swiper .banner-item .banner-text .banner-item-title.banner-title-mo {
    display: none;
}

.banner-swiper .banner-item .banner-text .banner-en-pc {
    display: block;
    padding-top: 10px;
}

.banner-swiper .banner-item .banner-text .banner-en-mo {
    display: none;
}

.banner-swiper .banner-item .banner-pic.banner-pic-pc {
    display: block;
}

.banner-swiper .banner-item .banner-pic.banner-pic-mo {
    display: none;
}

.swiper_leftright>.p_thre_prev {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/banner_left.svg') no-repeat;
    width: 30px;
    height: 30px;
    left: 50px;
    cursor: pointer;
}

.swiper_leftright>.p_thre_next {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/banner_right.svg') no-repeat;
    width: 30px;
    height: 30px;
    right: 50px;
    cursor: pointer;
}

.banner-swiper .scroll_down {
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 100px;
    margin-left: -25px;
    cursor: pointer;
    z-index: 102;
    animation: fadeInUp 1s ease-out 0s infinite alternate;
}

.in_click {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 30px;
    margin-left: -12px;
    cursor: pointer;
    z-index: 102;
    animation: fadeInUp 1s ease-out 0s infinite alternate;
}
/*圆*/
.feng {
    position: absolute;
    width: 50%;
     left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
    z-index: 99;
}
.flexCenter {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.feng .flexCenter p.swiper-pagination-bullet {
  cursor: pointer;
  opacity: 1;
  width: 19px;
  height: 19px;
  display: block;
  background: none;
  position: relative;
  margin: 0 7px;
}
.feng p::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  opacity: 0;
}
.feng p:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.feng p svg {
  opacity: 0;
  position: relative;
  z-index: 4;
}

.feng .swiper-pagination-bullet-active::after {
  opacity: 1;
}
.feng .swiper-pagination-bullet-active svg {
  opacity: 1;
}
.feng .swiper-pagination-bullet-active svg path {
  opacity: 1;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }

}

@media (max-width:1580px) {
    .swiper_leftright>.p_thre_prev {
        left: 20px;
    }

    .swiper_leftright>.p_thre_next {
        right: 20px;
    }

}

@media (max-width:767px) {
    .feng {
    bottom: 20px;
}
    .in_click {
        display: none;
    }

}

@media (max-width:500px) {
    #mainVisual {
        height: auto !important;
    }

    #mainVisual .fp-tableCell {
        height: auto !important;
    }

    .banner-swiper {
        height: auto !important;
    }

    .banner-swiper .banner-item .banner-pic.banner-pic-pc {
        display: none;
    }

    .banner-swiper .banner-item .banner-pic.banner-pic-mo {
        display: block;
    }

    .banner-swiper .banner-item .banner-text .banner-item-title.banner-title-pc {
        display: none;
    }

    .banner-swiper .banner-item .banner-text .banner-item-title.banner-title-mo {
        display: block;
        font-size: 20px;
    }

    .banner-swiper .banner-item .banner-text .banner-en-pc {
        display: block;
    }

    .banner-swiper .banner-item .banner-text .banner-en-mo {
        display: none;
    }

    .banner-swiper .swiper-pagination {
        bottom: 30px;
    }

    .banner-swiper .banner-item-index, .banner-swiper .scroll_down {
        display: none;
    }
    .swiper_leftright {
        display: none;
    }
    .banner-en-pc {
        font-size: 14px !important;
    }

}

/*index two*/
.index-about {
    height: 100%;
    overflow: hidden;
}

.index-about .about_left {
    width: 50%;
    padding-top: 50px;
}

.about_bj {
    width: 100%;
    height: 100%;
    background-color: #941D37;
    transform: translate(100%);
    transition: 1.5s;
    z-index: 1;
}

.about_bj.active {
    transform: translate(0%);
    transition: 1.5s;
    z-index: 1;
}

.about_bjbai {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-clip-path: url(#arc-right-clip);
    clip-path: url(#arc-right-clip);
}

.about_bjbai.active {
    -webkit-transform: scaleX(0.6);
    transform: scaleX(0.6);
    transition: 1.5s;
    z-index: 1;
}

.arc {
    position: absolute;
    width: 0;
    height: 0;
}

.bj_img {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: .3s;
    height: 100%;
}

.bj_img.active {
    opacity: 1;
    transition: .3s;
}

.main_con {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    transform: translateY(75px);
    -webkit-transform: translateY(75px);
}

.main_con.active {
    opacity: 1;
    transition: .3s;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.main_contit {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.main_contittwo {
    color: #CCC;
    font-family: Alimama FangYuanTi VF;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 33px;
    margin-top: 32px;
}

.main_connear {
    color: var(--main-color);
    font-family: Alimama FangYuanTi VF;
    font-size: 88px;
    font-weight: 600;
    line-height: 1;
    margin-top: 19px;
}

.main_connear>span {
    display: inline-block;
}

.main_connear>span:last-child {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.main_jieshao {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    max-width: 670px;
    margin-top: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.main_line {
    width: 100%;
    height: 1px;
    background-color: #ECECEC;
    margin-top: 22px;
}

.main_con_number {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}

.main_con_ever div:nth-child(1) {
    margin-bottom: 8px;
    display: flex;
}

.main_con_ever div:nth-child(1)>span:nth-child(1) {
    color: var(--main-color);
    font-family: Alimama FangYuanTi VF;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-right: 9px;
}

.main_con_ever div:nth-child(1)>span:nth-child(2) {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.main_con_ever div:nth-child(2) {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.main_con>img {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.bj_img.active {
    z-index: 1;
}

.about_bjbai.active {
    z-index: 2;
}

.public_button_label {
    color: #666;
    font-size: 16px;
    line-height: 50px;
    position: relative;
    z-index: 9;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    text-align: center;
}

.public_button_boxs {
    display: flex;
    margin-top: 83px;
}

.public_button_text {
    position: relative;
    width: 155px;
    padding: 0 50px 0 0;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.public_button_box {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    z-index: 1;
}

.public_button_box a {
    position: relative;
    display: inline-block;
    z-index: 9;
}

.public_button_circle {
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
    cx: calc(100% - 25px);
}

.public_button_back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.public_button_svg {
    width: 100%;
    height: 100%;
}

.public_button_color {
    fill: #F2F2F2;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.public_button_icon {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #F2F2F2;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 102%;
    top: 0;
    z-index: 9;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}

.public_button_icon svg {
    width: 24px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

@media (min-width:768px) {
    .public_button_active .public_button_circle {
        cx: calc(32% - 20px);
    }

    .public_button_box:hover .public_button_text {
        padding: 0 0 0 50px;
    }

    .public_button_box:hover .public_button_icon {
        left: 2px;
        -webkit-transform: none;
        transform: none;
    }

    .public_button_box:hover .public_button_label {
        color: #fff;
    }

    .public_button_box:hover .public_button_icon {
        background: #941D37;
    }

    .public_button_box:hover .public_button_icon svg path {
        stroke: #fff;
    }

    .public_button_box:hover .public_button_color {
        fill: #941D37;
    }

}

@media (max-width:1580px) {
    .public_button_boxs {
        margin-top: 40px;
    }

}

@media (max-width:1440px) {
    .main_contit {
        font-size: 32px;
    }

    .main_connear {
        font-size: 68px;
    }

    .main_contittwo {
        margin-top: 25px;
    }

}

@media (max-width:1366px) {
    .index-about .about_left {
        padding-top: 100px;
        width: 58%;
    }

    .main_contit {
        font-size: 30px;
    }

    .main_connear {
        font-size: 58px;
        margin-top: 10px;
    }

    .main_contittwo {
        margin-top: 15px;
    }

    .main_con_ever div:nth-child(1) > span:nth-child(1) {
        font-size: 40px;
    }

}

@media (max-width:1280px) {
    .main_contit {
        font-size: 28px;
    }

    .main_con_ever div:nth-child(1) > span:nth-child(1) {
        font-size: 36px;
    }

}

@media (max-width:991px) {
    .main_contit {
        font-size: 26px;
    }

    .main_con_ever div:nth-child(1) > span:nth-child(1) {
        font-size: 36px;
    }

    .main_line {
        margin-top: 10px;
    }

    .main_connear {
        font-size: 48px;
        margin-top: 10px;
    }

    .main_con_number {
        flex-flow: row wrap;
    }

    .main_con_number .main_con_ever {
        width: 50%;
        padding-bottom: 20px;
    }

    .public_button_boxs {
        margin-top: 20px;
    }

}

@media (max-width:767px) {
    .two_bg, .two_bg .fp-tableCell {
        height: auto !important;
    }

    .two_bg .section-content {
        height: auto;
        padding-bottom: 40px;
    }

    .index-about .about_left {
        width: 100%;
        padding-top: 50px;
    }

    .index-about {
        height: auto;
    }

    .about_bj {
        display: none;
    }

    .about_bjbai {
        display: none;
    }

    .main_con {
        position: relative;
        display: block;
        opacity: 1;
        transform: inherit;
    }

    .main_contit {
        font-size: 22px;
    }

    .bj_img {
        position: inherit;
        margin-top: 30px;
        height: auto;
    }

    .main_con_ever div:nth-child(1) > span:nth-child(1) {
        font-size: 30px;
    }

}

@media (max-width:375px) {
    .main_contit {
        font-size: 20px;
    }

}

/*第三屏*/
.field-swiper {
    width: 100%;
    height: 100%;
}

.section-content {
    height: 100vh;
}

.field_button_boxs {
    display: flex;
    margin-top: 32px;
}

.main_ac {
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
}

.index-field {
    font-size: 20px;
    padding-bottom: 15%;
}

.index-field:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.00) 100%);*/
}

.index-field .yw_cont {
    position: relative;
    padding-top: 190px;
    padding-bottom: 50px;
    height: 100%;
    justify-content: space-between;
    z-index: 9;
}

.field-section-title {
    color: #FFF;
    font-weight: 400;
    line-height: 1.4;
}

.field-section-title1 {
    margin-top: 8px;
    color: #FFF;
    font-weight: 400;
    line-height: 1.2;
}

.index-field .index-field-title {
    color: rgba(255, 255, 255, .6);
}

.index-field .index-section-title {
    margin-top: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.index-field .first_tittwo {
    font-weight: 400;
}

.field-swiper .field-nav {
    width: 100%;
    z-index: 9;
}

.field-swiper .field-item {
    min-width: 100px;
    width: 14.28%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    margin-right: 24px;
    cursor: pointer;
}

.field-swiper .field-item.active {
    opacity: 1;
}

.field-swiper .field-item:last-of-type {
    margin-right: 0;
}

.field-swiper .field-item-pic {
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 16px;
}

.field-swiper .field-item .field-item-content {
    width: 46px;
    height: 46px;
}

.field-swiper .field-item-pic .circle {
    width: 6em;
    max-width: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.8);
}

.field-swiper .field-item-pic .circle-active {
    width: 6em;
    max-width: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
}

.field-swiper .field-item:hover .field-item-pic .circle {
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
}

.field-swiper .field-item:hover .field-item-pic .circle-active, .field-swiper .field-item.active .circle-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.field-swiper .field-item.active .circle {
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0
}

.field-swiper .field-item-mo {
    display: none;
}

.field-swiper .field-nav-pc {
    display: flex;
    justify-content: space-between;
}

.field-swiper .field-nav-mo {
    display: none;
}

.field_itemline {
    position: relative;
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.field_itemline::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #fff;
    z-index: 1;
}

.field-item.active .field_itemline {
    background-color: rgba(255, 255, 255, 0.3);
}

.field-item.active .field_itemline::after {
    -webkit-transition: all 3s linear;
    -moz-transition: all 3s linear;
    -ms-transition: all 3s linear;
    -o-transition: all 3s linear;
    transition: all 3s linear;
    width: 100%;
}

.three_bg .main_ac {
    bottom: 15%;
}

.field-item-title {
    color: #FFF;
    font-weight: 700;
    line-height: 28px;
}

.p_button_color {
    fill: rgba(255, 255, 255, 0.20);
}

.p_icon {
    background: rgba(255, 255, 255, 0.20);
}

.p_label {
    color: #fff;
}

.p_icon svg path {
    stroke: white;
}

@media (max-width:1440px) {
    .three_bg .main_ac {
        bottom: 100px;
    }

    .index-field {
        padding-bottom: 200px;
    }

    .index-field .yw_cont {
        padding-top: 190px;
    }

}

@media (max-height:700px) {
    .main_jieshao {
        margin-top: 15px;
    }

    .index-field .yw_cont {
        padding-top: 110px;
    }

    .three_bg .main_ac {
        bottom: 50px;
    }

}

@media (max-width:767px) {
    .three_bg, .three_bg .fp-tableCell {
        height: auto !important;
    }

    .index-field {
        height: auto;
        padding-bottom: 30px;
    }

    .index-field .yw_cont {
        padding-top: 100px;
        padding-bottom: 0;
    }

    .index-field .index-section-title {
        padding-bottom: 50px;
    }

    .index-field {
        padding-bottom: 250px;
    }

    .field-swiper .field-nav-mo {
        bottom: 50px;
    }

    .field-swiper .field-nav-pc {
        display: none;
    }

    .field-swiper .field-nav-mo {
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }

    .field-swiper .field-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 110px;
        height: 110px;
        padding: 3% 2%;
        margin-right: 0;
        opacity: .6;
    }

    .field-swiper .field-item.swiper-slide-active, .field-swiper .field-item.swiper-slide-active::before {
        opacity: 1;
    }

    .field-swiper .field-item-pic {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }

    .field-swiper .field-item .field-item-content {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .field-swiper .field-nav-mo .field-item-title {
        margin-top: 6px;
    }

    .field-swiper .link-btn {
        font-size: 16px;
    }

    .field-swiper .field-item-mo {
        display: block;
        margin: 0 auto;
    }

}

/*index four*/
.case_bg {
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
}

.case_title h2 {
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.case_title p {
    padding-top: 8px;
    color: #999;
    font-weight: 400;
    line-height: 26px;
}

.case_bg .case_top {
    padding-top: 30px;
    align-items: flex-end;
}

.case_bg .case_top .public_button_boxs {
    margin-top: 0;
}

.case_bg .tabs {
    padding-top: 5%;
}

.tab-content .tab, .p_a_down .tab_down {
    display: none;
    width: 100%;
}

.tab-content .tab.active, .p_a_down .tab_down.active {
    display: inline-block;
}

.business_unit .tab-btns {
    overflow: hidden;
}

.tabs .tab .swiper-container {
    overflow: visible;
}

.tabs .tab .swiper-container .swiper-slide img {
    width: 100%;
}

.tabs .tab .swiper-container .swiper-slide {
    opacity: 0.3;
}

.tabs .tab .swiper-container .swiper-slide-active, .tabs .tab .swiper-container .swiper-slide-next, .tabs .tab .swiper-container .swiper-slide-next + .swiper-slide {
    opacity: 1;
}

.case_swiper .swiper-wrapper .thumb {
    cursor: url('../images/hover_procut.svg'), pointer;
}

.case_swiper .thumb {
    position: relative;
    overflow: hidden;
}

/*.case_swiper .thumb:before {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 0;
    background-image: url(../images/case_jt.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    opacity: 0;
    transition: all .4s;

    z-index: 9;
}*/

.case_swiper .thumb i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: transform .6s;
}

.case_swiper a:hover .thumb i {
    transform: scale(1.12)
}

/*.case_swiper a:hover .thumb:before {
    opacity: 1;
    bottom: 24px;
}*/

.case_swiper .thumb::after {
    content: "";
    position: absolute;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.6);*/
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.case_swiper .thumb:hover::after {
    opacity: 1;
}

.case_swiper .title {
    /*opacity: 0;*/
    padding-top: 20px;
    /*transform: translateY(10px);*/
    transition: all .4s;
}

.case_swiper .title  h3 {
    color: #333;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case_swiper .title p {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case_swiper .title p span:nth-child(1) {
    padding-right: 6px;
}

.case_swiper .title p span:nth-child(2) {
    padding-left: 6px;
}

.case_swiper .swiper-slide:hover .title {
    opacity: 1;
    transform: translateY(0);
}
.case_swiper .swiper-slide:hover .title h3{
    color: var(--main-color);
}
.case_swiper .swiper-slide:hover .title p{
    color: var(--main-color);
}

.case_swiper .case-pagination {
    text-align: center;
    padding-top: 30px;
}

.case_swiper .case-pagination .swiper-pagination-bullet {
    margin: 0 4px;
    border: 1px solid #CCC;
    width: 10px;
    height: 10px;
    background-color: transparent;
}

.case_swiper .case-pagination span.swiper-pagination-bullet-active {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.case_swiper .busi_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -44px;
    padding: 22px;
    background: #FFF;
    opacity: 0.6;
    cursor: pointer;
    z-index: 9;
}
.tab-content .case_swiper .busi_button {
    margin-top:-68px;
}
.case_swiper .busi_button:hover {
    opacity: 1;
    background: var(--main-color);
}

.case_swiper .busi_button:hover svg path {
    stroke: #fff;
}

.case_swiper .busi-prev {
    left: 0;
}

.case_swiper .busi-next {
    right: 0;
}

.case_bg .case_scoll {
    overflow-x: auto;
    overflow-y: hidden;
    text-align: center;
}

.case_bg .case_scoll::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #F5F5F5;
}

.case_bg .case_scoll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.case_bg .case_scoll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #bdbdbd;
}

.case_bg .tab-btns {
    padding-top: 50px;
    display: inline-flex;
}

.case_bg .tab-btn {
    position: relative;
    margin: 0 8px;
    min-width: 146px;
    padding: 12px 32px;
    border-radius: 60px;
    border: 1px solid #E7E7E7;
    background: #FFF;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    z-index: 9;
    cursor: pointer;
}

.case_bg .tab-btn img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
}

.case_bg .tab-btn.active {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
}

.case_bg .tab-btn.active img {
    opacity: 0.5;
}

.tab-btns button {
    opacity: 0;
}

/*触摸光*/
.index_case_cursor_wrap {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 12.75vw;
    height: 6.75vw;
    z-index: 999;
}

.index_case_light {
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-filter: blur(7.291666vw);
    filter: blur(7.291666vw);
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

@media screen and (max-height:700px) {
    .case_bg .case_top {
        padding-top: 40px;
    }

    .case_bg .tabs {
        padding-top: 3%;
    }

    .case_swiper .title {
        padding-top: 10px;
    }

    .case_bg .tab-btns {
        padding-top: 30px;
    }

}

@media screen and (max-width:1366px) {
    .case_swiper .title  h3 {
        font-size: 22px;
    }

}

@media screen and (max-width:1280px) {
    .case_swiper .thumb::before {
        width: 40px;
        height: 40px;
    }

    .case_swiper .busi_button {
        margin-top: -68px;
        padding: 10px;
        width: 44px;
        height: 44px;
    }

}

@media screen and (max-width:991px) {
    .case_swiper .thumb::before {
        width: 30px;
        height: 30px;
    }

    .case_swiper .title  h3 {
        font-size: 20px;
    }

}

@media screen and (max-width:767px) {
    .case_bg {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .case_bg, .case_bg .fp-tableCell {
        height: auto !important;
    }

    .case_bg .tabs {
        padding-top: 40px;
    }

    .case_top {
        display: block;
    }

    .case_title {
        padding-bottom: 20px;
    }

    .case_swiper .title  h3 {
        font-size: 18px;
    }

    .case_swiper .title p {
        margin-top: 4px;
        font-size: 16px;
    }

    .case_swiper .title {
        opacity: 1;
        transform: translateY(0);
    }

    .tabs .tab .swiper-container .swiper-slide-next, .tabs .tab .swiper-container .swiper-slide-next + .swiper-slide {
        opacity: 0.3;
    }

    .case_bg .tab-btn {
        margin: 0 4px;
        min-width: 135px;
        padding: 8px 20px;
    }

}

/*首页新闻*/
.new_bg {
    background: #EFF3F5;
    overflow: hidden;
}

.new_bg .bg_icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    max-width: 738px;
    height: 426px;
    background-repeat: no-repeat;
    background-size: contain;
}

.new_bg .field_button_boxs {
    margin-top: 0;
}

.new_icon {
    background: rgba(255, 255, 255, 1);
}

.new_button_color {
    fill: rgba(255, 255, 255, 1);
}

.index-news-center {
    padding-top: 65px;
}

.news-recommond {
    width: 48%;
}

.news-recommond .news-recommond-pic-box {
    width: 100%;
    overflow: hidden;
}

.news-recommond .news-recommond-pic-box i {
    display: block;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all .6s;
}

.news-recommond .news_content {
    padding: 32px 30px;
    background: #FFF;
}

.news-recommond .news-recommond-title {
    margin-top: 16px;
    color: #333;
    font-weight: 400;
    line-height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-recommond:hover .news-recommond-pic-box i {
    transform: scale(1.12)
}

.news-recommond:hover .news-recommond-title {
    color: var(--main-color);
}

.news-recommond .deta_icotime {
    padding-left: 8px;
    color: #9E9E9E;
    font-family: Alimama FangYuanTi VF;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.index-news-center .news-center-list {
    width: 52%;
    padding-left: 40px;
}

.index-news-center .news-center-list .news-center-item {
    padding: 26px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
}

.index-news-center .news-center-list .news-center-item:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #d6d6d6;
}

.index-news-center .news-center-list .news-center-item:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width .8s;
}

.index-news-center .news-center-list .news-center-item:nth-child(1) {
    padding-top: 0;
}

.news-center-list .news-center-item .news-center-item-title {
    justify-content: space-between;
    width: 100%;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.index-news-center .news-center-list .news-center-item .news-center-item-time {
    align-items: center;
    color: #9E9E9E;
    margin-top: 14px;
    text-align: left;
    display: flex;
    padding-left: 19px;
    font-family: Alimama FangYuanTi VF;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.news-center-item-title>img {
    width: 24px;
    height: 24px;
    margin-left: 40px;
}

.newss_tit {
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
}

.newss_tit>span:nth-child(1) {
    background-color: #BDC5C9;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
    margin-right: 10px;
    transition: all .3s;
}

.newss_tit>span:nth-child(2) {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    width: calc(100% - 17px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-news-center .news-center-list .news-center-item:hover:after {
    opacity: 0;
}

.index-news-center .news-center-list .news-center-item:hover:before {
    width: 100%;
    left: 0;
}

.news-center-item:hover .news-center-item-title .newss_tit span:nth-child(1) {
    background-color: var(--main-color);
}

.news-center-item:hover .news-center-item-title .newss_tit span:nth-child(2) {
    color: var(--main-color);
}

.index-news-center .news-center-list .news-center-item .news-center-item-time>img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.news-center-item:hover  i svg path {
    transition: all .3s;
}

.news-center-item:hover  i svg path {
    stroke: var(--main-color);
}

@media screen and (max-width:1440px) {
    .index-news-center .news-center-list .news-center-item {
        padding: 22px 0;
    }

}

@media screen and (max-width:1366px) {
    .index-news-center .news-center-list .news-center-item {
        padding: 20px 0;
    }

}

@media screen and (max-width:1280px) {
    .index-news-center .news-center-list .news-center-item {
        padding: 15px 0;
    }

}

@media screen and (max-width:767px) {
    .new_bg {
        padding-top: 40px;
    }

    .new_bg .bg_icon {
        width: 70%;
    }

    .index-news-center {
        display: block;
        padding-top: 35px;
    }

    .index-news-center .news-center-list {
        width: 100%;
        padding-top: 30px;
        padding-left: 0;
        padding-bottom: 50px;
    }

    .news-recommond .news_content {
        padding: 25px 20px;
    }

    .newss_tit > span:nth-child(2) {
        font-size: 18px;
    }

}