#fullPage .section {
    height: 100vh;
}

.cursor {
    width: 60px;
    height: 60px;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    transition: opacity .3s, color .4s;
    border-radius: 50%;
    pointer-events: none;
    backface-visibility: hidden;
    opacity: 0;
}

.cursor svg {
    width: 100%;
}

.cursor svg circle.st0, .cursor svg path.st0 {
    fill-opacity: 0;
    filter: url(#filter-blur);
    animation: hx 1s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}

.cursor svg circle.st0 {
    stroke-width: 7;
}

.cursor svg circle {
    stroke: #fff;
    fill: transparent;
    stroke-width: 7;
    stroke-dasharray: 160%;
    stroke-dashoffset: 160%;
    transform: rotate(98deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset .5s;
}

.cursor svg path.st0 {
    stroke-width: 4;
}

.cursor svg .st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fff;
}

.cursor svg.active circle {
    stroke-dashoffset: 48%;
}

.cursor.on {
    opacity: 1;
}

@keyframes list_line {
    100% {
        transform: scaleX(1);
    }
}

.banner {
    height: 100vh;
}

.banner .swiper {
    height: 100%;
}

.banner .swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .swiper .swiper-slide .bg {
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: cubic-bezier(0.77, 0, 0.175, 1) 2s;
}

.banner .swiper .swiper-slide .dong {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: 2s;
}

.banner .swiper .swiper-slide.on .bg {
    transform: scale(1);
}

.banner .swiper .swiper-slide.on .dong {
    transform: translateX(0);
}

.banner .content {
    width: 100%;
    /*margin: 0 120px;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 4;
}

.banner .content .text {
    pointer-events: none;
}

.banner .content .text:not(:first-child) {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.banner .content .text h1 {
    font-size: 50px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .content .text p {
    font-size: 18px;
    color: #FFFFFF;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .content .text.on h1 div {
    transition: 1s;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.banner .content .text.on p div {
    transition: 1s;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.banner .content .text.unset h1 div {
    transition-delay: unset !important;
}

.banner .content .text.unset p div {
    transition-delay: unset !important;
}

.banner .other {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 0 0;
    position: absolute;
    bottom: 100px;
    z-index: 30;
    left: 50%;
    transform: translateX(-50%);
}

.banner .other p {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
}

.banner .other .line {
    width: 400px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.banner .other .line .list {
    width: 400px;
    height: 1px;
    background: #FFFFFF;
    transition: 1s;
    max-width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    position: relative;
}

.banner .other .line .list:after {
    content: '';
    width: 1px;
    height: 5px;
    background: #FFFFFF;
    display: block;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    transition: 1s;
    opacity: 0;
}

.banner .other .line .list.on {
    animation: list_line 5s linear forwards;
}

.banner .other .line .list.on:after {
    opacity: 1;
}

.banner .other .line .list:last-child:after {
    opacity: 0 !important;
}

.banner .other .line span {
    width: 1px;
    height: 5px;
    background: #FFFFFF;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner .other .line span:last-child {
    opacity: 0;
}

.banner .position_circle {
    width: 76px;
    height: 76px;
    position: absolute;
    bottom: 93px;
    left: 129px;
    z-index: 999;
    border: 1px solid #04BB81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s;
    cursor: pointer;
}

.banner .position_circle .joke svg {
    width: 8px;
    height: 4px;
    margin: 2px auto 0;
    display: block;
}

.banner .position_circle .circle {
    position: absolute;
    width: 147px;
    height: fit-content;
    max-width: unset;
    max-height: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.banner .position_circle .color {
    width: 14px;
    height: 21px;
    background: #FFFFFF;
    border-radius: 7px;
    position: relative;
    animation: jump 1s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
    top: -3px;
}

.banner .position_circle .color:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    width: 2px;
    height: 4px;
    background: #B3B3B3;
    border-radius: 1px;
}

.banner .position_circle .cr {
    width: 85px;
    height: 85px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .5s;
}

.banner .position_circle .cr path {
    transform-origin: 50% 50%;
    stroke: #04BB81;
    opacity: 1;
}

.banner .position_circle .cr .p1 {
    animation: circleRotate 4s linear infinite;
}

.banner .position_circle .cr .p2 {
    animation: circleRotateReverse 4s linear infinite;
}

.banner .position_circle:hover {
    border: 1px solid transparent;
}

.banner .position_circle:hover .cr {
    opacity: 1;
}

.index1 {
    display: flex;
}

.index1 .wrap {
    display: flex;
}

.index1 .r {
    width: 43%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.index1 .r .img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.index1 .r .item {
    width: 100%;
    height: 33.3%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.index1 .r .item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.index1 .r .item:not(:last-child):after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
    width: 43px;
    height: 3px;
    background: #1CB692;
}

.index1 .r .item img {
    transition: 1s;
}

.index1 .r .item:hover img {
    transform: scale(1.1);
}

.index1 .l {
    width: 59%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.index1 .l .position_img {
    position: absolute;
    bottom: 0;
    right: 111px;
    z-index: -1;
}

.index1 .l .joke {
    position: relative;
    top: 50px;
}

.index1 .l .title {
    font-size: 40px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 74px;
}

.index1 .l .bottom {
    margin: 0 0 0 32px;
    display: flex;
    position: relative;
    z-index: 2;
}

.index1 .l .bottom .line {
    width: 1px;
    height: 640px;
    background: #CCCCCC;
    margin: 18px 61px 0 0;
}

.index1 .l .bottom .flex .item {
    position: relative;
}

.index1 .l .bottom .flex .item:not(:last-child) {
    margin: 0 0 70px;
}

.index1 .l .bottom .flex .item .circle {
    content: '';
    position: absolute;
    top: 4px;
    left: -75px;
    width: 28px;
    height: 28px;
    border: 2px solid #656565;
    border-radius: 50%;
    transition: .6s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index1 .l .bottom .flex .item .circle:after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #656565;
    border-radius: 50%;
    transition: .6s;
}

.index1 .l .bottom .flex .item .show {
    font-size: 26px;
    font-weight: 400;
    color: #010101;
    transition: .6s;
    cursor: pointer;
}

.index1 .l .bottom .flex .item .hide {
    width: 712px;
    overflow: hidden;
    display: none;
}

.index1 .l .bottom .flex .item .hide > div {
    margin: 34px 0 90px 0;
}

.index1 .l .bottom .flex .item .hide p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 32px;
}

.index1 .l .bottom .flex .item .hide p strong {
    color: #1CB692;
    font-weight: normal;
}

.index1 .l .bottom .flex .item .hide .more {
    width: 174px;
    height: 55px;
    background: #FFFFFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    position: relative;
    margin: 80px 0 0 8px;
}

.index1 .l .bottom .flex .item .hide .more:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    top: 0;
    left: 0;
    transform: translate(-8px, -8px);
    border: 2px solid #1CB692;
    z-index: -1;
    transition: .6s;
}

.index1 .l .bottom .flex .item .hide .more:hover:after {
    transform: translate(0, 0);
    border: 2px solid transparent;
}

.index1 .l .bottom .flex .item.on .circle {
    border: 2px solid #1CB692;
}

.index1 .l .bottom .flex .item.on .circle:after {
    background: #1CB692;
}

.index1 .l .bottom .flex .item.on .show {
    color: #1CB692;
}

.index2 {
    position: relative;
    z-index: 1;
}

.index2 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.index2 .wrap {
    position: relative;
    top: 52%;
    transform: translateY(-50%);
}

.index2 .wrap .title {
    text-align: center;
    margin: 0 0 80px;
}

.index2 .wrap .title h1 {
    font-size: 40px;
    font-weight: bold;
    color: #1C1C1C;
    margin: 0 0 20px;
}

.index2 .wrap .title p {
    font-size: 18px;
    font-weight: 400;
    color: #1C1C1C;
}

.index2 .wrap .content .cut {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin: 0 0 95px;
}

.index2 .wrap .content .cut:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 1px dashed #666666;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

.index2 .wrap .content .cut .list {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.index2 .wrap .content .cut .list:not(:last-child) {
    margin: 0 300px 0 0;
}

.index2 .wrap .content .cut .list .circle {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 13px 0 0;
    transition: .6s;
    position: relative;
}

.index2 .wrap .content .cut .list .circle img {
    position: absolute;
    width: 43px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 1s;
}

.index2 .wrap .content .cut .list .circle img:nth-child(2) {
    opacity: 0;
}

.index2 .wrap .content .cut .list p {
    font-size: 22px;
    font-weight: bold;
    color: #1C1C1C;
}

.index2 .wrap .content .cut .list.on .circle {
    background: #1CB692;
}

.index2 .wrap .content .cut .list.on .circle img:first-child {
    opacity: 0;
}

.index2 .wrap .content .cut .list.on .circle img:nth-child(2) {
    opacity: 1;
}

.index2 .wrap .content .bottom {
    width: 1529px;
    margin: auto;
}

.index2 .wrap .content .bottom .matter {
    display: none;
    justify-content: center;
}

.index2 .wrap .content .bottom .matter.on {
    display: flex;
}

.index2 .wrap .content .bottom .matter .item:not(:last-child) {
    margin: 0 200px 0 0;
}

.index2 .wrap .content .bottom .matter .item .img {
    width: 433px;
    height: 305px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 27px;
}

.index2 .wrap .content .bottom .matter .item .img img {
    transition: 1s;
}

.index2 .wrap .content .bottom .matter .item .text {
    font-size: 16px;
    font-weight: 400;
    color: #1C1C1C;
    text-align: center;
}

.index2 .wrap .content .bottom .matter .item:hover .img img {
    transform: scale(1.05);
}

.index3 {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.index3 .position_line {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform: rotate(-1deg) scale(1.1);
    left: 1vw;
}

.index3 .position_line img {
    width: 100%;
    height: 100%;
}

.index3 .animate {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.index3 .animate .bg {
    width: 100%;
    height: 100%;
}

.index3 .content {
    width: 100%;
    padding: 0 198px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.index3 .content .title {
    font-size: 50px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 0 133px;
}

.index3 .content .magnetic {
    margin: -100px;
    padding: 100px;
    display: block;
    width: fit-content;
    display: flex;
    align-items: center;
}
.index3 .content .magnetic p {
    font-size: 1.2vw;
    font-weight: 500;
    color: #FFFFFF;
    margin-right: 20px;
    transition: 0.4s;
}
.index3 .content .magnetic:hover p {
    color: #1CB692;
}
.index3 .content .circle {
    width: 80px;
    height: 80px;
    background: #1CB692;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: unset;
}

.index3 .content .circle svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.index3 .content .circle svg path {
    fill: #fff;
}

.index4 .wrap {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1580px;
}

.index4 .wrap .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index4 .wrap .top .title {
    font-size: 40px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 25px;
}

.index4 .wrap .top a {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.index4 .wrap .content {
    display: flex;
    justify-content: space-between;
    padding: 0 35px 0 0;
    height: 620px;
}

.index4 .wrap .content .big {
    width: 804px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.index4 .wrap .content .big:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.index4 .wrap .content .big img {
    width: 100%;
    height: 100%;
    transition: 1s;
}

.index4 .wrap .content .big .text {
    position: absolute;
    bottom: 61px;
    left: 0;
    width: 100%;
    padding: 0 36px;
    font-size: 26px;
    font-weight: 400;
    color: #FFFFFF;
    z-index: 5;
}

.index4 .wrap .content .big .label {
    width: 109px;
    height: 109px;
    background: #1CB692;
    position: absolute;
    top: 34px;
    left: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
}

.index4 .wrap .content .big .label span {
    font-size: 50px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 38px;
    margin: 0 0 10px;
}

.index4 .wrap .content .big .label p {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
}

.index4 .wrap .content .big:hover img {
    transform: scale(1.05);
}

.index4 .wrap .content .small {
    width: 697px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index4 .wrap .content .small .item {
    display: flex;
    align-items: center;
}

.index4 .wrap .content .small .item .img {
    width: 300px;
    height: 185px;
    margin: 0 30px 0 0;
    overflow: hidden;
}

.index4 .wrap .content .small .item .img img {
    width: 100%;
    transition: 1s;
}
.index4 .wrap .content .small .item .text{
  flex: 1;
}
.index4 .wrap .content .small .item .text .time {
    font-size: 14px;
    font-weight: bold;
    color: #1CB692;
    margin: 0 0 10px;
}

.index4 .wrap .content .small .item .text p {
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    transition: .6s;
}

.index4 .wrap .content .small .item:hover img {
    transform: scale(1.05);
}

.index4 .wrap .content .small .item:hover .text p {
    color: #1CB692;
}


.banner .other .item {
    display: flex;
    align-items: center;
    margin: 0 20px;
}
@keyframes circleRotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes circleRotateReverse {
    0% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(1turn);
        transform: translate(-50%, -50%) rotate(1turn);
    }
}

@keyframes jump {
    0% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(-4px);
    }
}

@keyframes che {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(1279px, 1037px);
    }
}

footer, .footer {
    height: auto !important;
}

footer .fp-tableCell, .footer .fp-tableCell {
    height: auto !important;
}





@media screen and (max-width: 1920px) {
    .banner {
        height: 100vh;
        /* cursor: none; */
    }

    .banner .swiper {
        height: 100%;
    }

    .banner .swiper .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner .swiper .swiper-slide .bg {
        width: 100%;
        height: 100%;
        transform: scale(1.1);
        transition: cubic-bezier(0.77, 0, 0.175, 1) 2s;
    }

    .banner .swiper .swiper-slide .dong {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translateX(100%);
        transition: 2s;
    }

    .banner .swiper .swiper-slide.on .bg {
        transform: scale(1);
    }

    .banner .swiper .swiper-slide.on .dong {
        transform: translateX(0);
    }

    .banner .content {
        width: 100%;
        /*margin: 0 6.25vw;*/
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 4;
    }

    .banner .content .text {
        pointer-events: none;
    }

    .banner .content .text:not(:first-child) {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .banner .content .text h1 {
        font-size: 2.6041666667vw;
        font-weight: bold;
        color: #FFFFFF;
        margin: 0 0 0.5208333333vw;
    }

    .banner .content .text p {
        font-size: 0.9375vw;
        color: #FFFFFF;
        text-transform: uppercase;
    }

    .banner .content .text.on h1 div {
        transition: 1s;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .banner .content .text.on p div {
        transition: 1s;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .banner .content .text.unset h1 div {
        transition-delay: unset !important;
    }

    .banner .content .text.unset p div {
        transition-delay: unset !important;
    }

    .banner .other {
        display: flex;
        align-items: center;
        margin: 3.125vw 0 0 0;
    }

    .banner .other p {
        font-size: 0.7291666667vw;
        font-weight: bold;
        color: #FFFFFF;
    }

    .banner .other .line {
        width: 20vw;
        height: 0.0520833333vw;
        background: rgba(255, 255, 255, 0.2);
        margin: 0 0.5208333333vw;
        position: relative;
    }

    .banner .other .line div {
        width: 20vw;
        height: 0.0520833333vw;
        background: #FFFFFF;
        transition: 1s;
    }

    .banner .other .line span {
        width: 0.0520833333vw;
        height: 0.2604166667vw;
        background: #FFFFFF;
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .banner .other .line span:last-child {
        opacity: 0;
    }

    .banner .position_circle {
        width: 3.9583333333vw;
        height: 3.9583333333vw;
        position: absolute;
        bottom: 4.84375vw;
        left: 6.71875vw;
        z-index: 999;
        border: 0.0520833333vw solid #04BB81;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .6s;
    }

    .banner .position_circle .joke svg {
        width: 0.4166666667vw;
        height: 0.2083333333vw;
        margin: 0.1041666667vw auto 0;
        display: block;
    }

    .banner .position_circle .circle {
        position: absolute;
        width: 7.65625vw;
        height: fit-content;
        max-width: unset;
        max-height: unset;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-animation-name: spin;
        animation-name: spin;
        -webkit-animation-duration: 4s;
        animation-duration: 4s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .banner .position_circle .color {
        width: 0.7291666667vw;
        height: 1.09375vw;
        background: #FFFFFF;
        border-radius: 0.3645833333vw;
        position: relative;
        animation: jump 1s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
        top: -0.15625vw;
    }

    .banner .position_circle .color:after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0.3125vw;
        width: 0.1041666667vw;
        height: 0.2083333333vw;
        background: #B3B3B3;
        border-radius: 0.0520833333vw;
    }

    .banner .position_circle .cr {
        width: 4.4270833333vw;
        height: 4.4270833333vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity .5s;
    }

    .banner .position_circle .cr path {
        transform-origin: 50% 50%;
        stroke: #04BB81;
        opacity: 1;
    }

    .banner .position_circle .cr .p1 {
        animation: circleRotate 4s linear infinite;
    }

    .banner .position_circle .cr .p2 {
        animation: circleRotateReverse 4s linear infinite;
    }

    .banner .position_circle:hover {
        border: 1px solid transparent;
    }

    .banner .position_circle:hover .cr {
        opacity: 1;
    }

    .index1 {
        display: flex;
    }

    .index1 .wrap {
        display: flex;
    }

    .index1 .r {
        width: 43%;
        height: 100vh;
        position: relative;
        z-index: 1;
    }

    .index1 .r .img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .index1 .r .item {
        width: 100%;
        height: 33.3%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
    }

    .index1 .r .item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .index1 .r .item:not(:last-child):after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.1041666667vw;
        width: 2.2395833333vw;
        height: 0.15625vw;
        background: #1CB692;
    }

    .index1 .r .item img {
        transition: 1s;
    }

    .index1 .r .item:hover img {
        transform: scale(1.1);
    }

    .index1 .l {
        width: 59%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .index1 .l .position_img {
        position: absolute;
        bottom: 0;
        right: 5.78125vw;
        z-index: -1;
    }

    .index1 .l .joke {
        position: relative;
        top: 2.6041666667vw;
    }

    .index1 .l .title {
        font-size: 2.0833333333vw;
        font-weight: bold;
        color: #000000;
        margin: 0 0 3.8541666667vw;
    }

    .index1 .l .bottom {
        margin: 0 0 0 1.6666666667vw;
        display: flex;
        position: relative;
        z-index: 2;
    }

    .index1 .l .bottom .line {
        width: 0.0520833333vw;
        height: 33.3333333333vw;
        background: #CCCCCC;
        margin: 0.9375vw 3.1770833333vw 0 0;
    }

    .index1 .l .bottom .flex .item {
        position: relative;
    }

    .index1 .l .bottom .flex .item:not(:last-child) {
        margin: 0 0 3.6458333333vw;
    }

    .index1 .l .bottom .flex .item .circle {
        content: '';
        position: absolute;
        top: 0.2083333333vw;
        left: -3.90625vw;
        width: 1.4583333333vw;
        height: 1.4583333333vw;
        border: 0.1041666667vw solid #656565;
        border-radius: 50%;
        transition: .6s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .index1 .l .bottom .flex .item .circle:after {
        content: '';
        display: inline-block;
        width: 0.2083333333vw;
        height: 0.2083333333vw;
        background: #656565;
        border-radius: 50%;
        transition: .6s;
    }

    .index1 .l .bottom .flex .item .show {
        font-size: 1.3541666667vw;
        font-weight: 400;
        color: #010101;
        transition: .6s;
        cursor: pointer;
    }

    .index1 .l .bottom .flex .item .hide {
        width: 37.0833333333vw;
        overflow: hidden;
        display: none;
    }

    .index1 .l .bottom .flex .item .hide > div {
        margin: 1.7708333333vw 0 4.6875vw 0;
    }

    .index1 .l .bottom .flex .item .hide p {
        font-size: 0.9375vw;
        font-weight: 400;
        color: #000000;
        line-height: 1.6666666667vw;
    }

    .index1 .l .bottom .flex .item .hide p strong {
        color: #1CB692;
        font-weight: normal;
    }

    .index1 .l .bottom .flex .item .hide .more {
        width: 9.0625vw;
        height: 2.8645833333vw;
        background: #FFFFFF;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        border-radius: 1.4583333333vw;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8333333333vw;
        font-weight: 400;
        color: #000000;
        position: relative;
        margin: 4.1666666667vw 0 0 0.4166666667vw;
    }

    .index1 .l .bottom .flex .item .hide .more:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 1.4583333333vw;
        top: 0;
        left: 0;
        transform: translate(-0.4166666667vw, -0.4166666667vw);
        border: 0.1041666667vw solid #1CB692;
        z-index: -1;
        transition: .6s;
    }

    .index1 .l .bottom .flex .item .hide .more:hover:after {
        transform: translate(0, 0);
        border: 0.1041666667vw solid transparent;
    }

    .index1 .l .bottom .flex .item.on .circle {
        border: 0.1041666667vw solid #1CB692;
    }

    .index1 .l .bottom .flex .item.on .circle:after {
        background: #1CB692;
    }

    .index1 .l .bottom .flex .item.on .show {
        color: #1CB692;
    }

    .index2 {
        position: relative;
        z-index: 1;
    }

    .index2 .bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .index2 .wrap {
        position: relative;
        top: 52%;
        transform: translateY(-50%);
    }

    .index2 .wrap .title {
        text-align: center;
        margin: 0 0 4.1666666667vw;
    }

    .index2 .wrap .title h1 {
        font-size: 2.0833333333vw;
        font-weight: bold;
        color: #1C1C1C;
        margin: 0 0 1.0416666667vw;
    }

    .index2 .wrap .title p {
        font-size: 0.9375vw;
        font-weight: 400;
        color: #1C1C1C;
    }

    .index2 .wrap .content .cut {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        margin: 0 0 4.9479166667vw;
    }

    .index2 .wrap .content .cut:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 0.0520833333vw;
        border-top: 0.0520833333vw dashed #666666;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        z-index: -1;
        opacity: 0.5;
    }

    .index2 .wrap .content .cut .list {
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .index2 .wrap .content .cut .list:not(:last-child) {
        margin: 0 15.625vw 0 0;
    }

    .index2 .wrap .content .cut .list .circle {
        width: 3.6458333333vw;
        height: 3.6458333333vw;
        background: #FFFFFF;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0.6770833333vw 0 0;
        transition: .6s;
        position: relative;
    }

    .index2 .wrap .content .cut .list .circle img {
        position: absolute;
        width: 2.2395833333vw;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: 1s;
    }

    .index2 .wrap .content .cut .list .circle img:nth-child(2) {
        opacity: 0;
    }

    .index2 .wrap .content .cut .list p {
        font-size: 1.1458333333vw;
        font-weight: bold;
        color: #1C1C1C;
    }

    .index2 .wrap .content .cut .list.on .circle {
        background: #1CB692;
    }

    .index2 .wrap .content .cut .list.on .circle img:first-child {
        opacity: 0;
    }

    .index2 .wrap .content .cut .list.on .circle img:nth-child(2) {
        opacity: 1;
    }

    .index2 .wrap .content .bottom {
        width: 79.6354166667vw;
        margin: auto;
    }

    .index2 .wrap .content .bottom .matter {
        display: none;
        justify-content: center;
    }

    .index2 .wrap .content .bottom .matter.on {
        display: flex;
    }

    .index2 .wrap .content .bottom .matter .item:not(:last-child) {
        margin: 0 10.4166666667vw 0 0;
    }

    .index2 .wrap .content .bottom .matter .item .img {
        width: 22.5520833333vw;
        height: 15.8854166667vw;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.40625vw;
    }

    .index2 .wrap .content .bottom .matter .item .img img {
        transition: 1s;
    }

    .index2 .wrap .content .bottom .matter .item .text {
        font-size: 0.8333333333vw;
        font-weight: 400;
        color: #1C1C1C;
        text-align: center;
    }

    .index2 .wrap .content .bottom .matter .item:hover .img img {
        transform: scale(1.05);
    }

    .index3 {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .index3 .position_line {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        transform: rotate(-1deg) scale(1.1);
        left: 1vw;
    }

    .index3 .position_line img {
        width: 100%;
        height: 100%;
    }

    .index3 .animate {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .index3 .animate .bg {
        width: 100%;
        height: 100%;
    }

    .index3 .content {
        width: 100%;
        padding: 0 10.3125vw;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .index3 .content .title {
        font-size: 2.6041666667vw;
        font-weight: bold;
        color: #FFFFFF;
        margin: 0 0 133px;
    }

    .index3 .content .circle {
        width: 4.1666666667vw;
        height: 4.1666666667vw;
        background: #1CB692;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: unset;
    }

    .index3 .content .circle svg {
        width: 1.3020833333vw;
        height: 1.3020833333vw;
        fill: #fff;
    }

    .index3 .content .circle svg path {
        fill: #fff;
    }

    .index4 .wrap {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 82.2916666667vw;
    }

    .index4 .wrap .top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .index4 .wrap .top .title {
        font-size: 2.0833333333vw;
        font-weight: bold;
        color: #000000;
        margin: 0 0 1.3020833333vw;
    }

    .index4 .wrap .top a {
        font-size: 0.8333333333vw;
        font-weight: 400;
        color: #000000;
    }

    .index4 .wrap .content {
        display: flex;
        justify-content: space-between;
        padding: 0 1.8229166667vw 0 0;
        height: 32.2916666667vw;
    }

    .index4 .wrap .content .big {
        width: 41.875vw;
        height: 100%;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .index4 .wrap .content .big:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .index4 .wrap .content .big img {
        width: 100%;
        height: 100%;
        transition: 1s;
    }

    .index4 .wrap .content .big .text {
        position: absolute;
        bottom: 3.1770833333vw;
        left: 0;
        width: 100%;
        padding: 0 1.875vw;
        font-size: 1.3541666667vw;
        font-weight: 400;
        color: #FFFFFF;
        z-index: 5;
    }

    .index4 .wrap .content .big .label {
        width: 5.6770833333vw;
        height: 5.6770833333vw;
        background: #1CB692;
        position: absolute;
        top: 1.7708333333vw;
        left: 1.7708333333vw;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 5;
    }

    .index4 .wrap .content .big .label span {
        font-size: 2.6041666667vw;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 1.9791666667vw;
        margin: 0 0 0.5208333333vw;
    }

    .index4 .wrap .content .big .label p {
        font-size: 0.7291666667vw;
        font-weight: bold;
        color: #FFFFFF;
    }

    .index4 .wrap .content .big:hover img {
        transform: scale(1.05);
    }

    .index4 .wrap .content .small {
        width: 36.3020833333vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .index4 .wrap .content .small .item {
        display: flex;
        align-items: center;
    }

    .index4 .wrap .content .small .item .img {
        width: 15.625vw;
        height: 9.6354166667vw;
        margin: 0 1.5625vw 0 0;
        overflow: hidden;
    }

    .index4 .wrap .content .small .item .img img {
        width: 100%;
        transition: 1s;
    }

    .index4 .wrap .content .small .item .text .time {
        font-size: 0.7291666667vw;
        font-weight: bold;
        color: #1CB692;
        margin: 0 0 0.5208333333vw;
    }

    .index4 .wrap .content .small .item .text p {
        font-size: 1.1458333333vw;
        font-weight: 400;
        color: #000000;
        transition: .6s;
    }

    .index4 .wrap .content .small .item:hover img {
        transform: scale(1.05);
    }

    .index4 .wrap .content .small .item:hover .text p {
        color: #1CB692;
    }
}

/*# sourceMappingURL=index.css.map */

@media screen and (max-width: 1024px) {
    body #fullPage .banner, body #fullPage .banner .fp-tableCell{
        height: 100vh!important;
    }

    #fullPage .section,#fullPage .section .fp-tableCell{
        height: auto!important;
    }
    .banner .content .text h1{
        font-size: 24px;
        margin: 0 0 15px;
    }
    .banner .content{
        padding: 0 5%;
    }
    .banner .content .text p{
        font-size: 18px;
        display: block;
        text-align: center;
    }
    .banner .position_circle {
        width: 56px;
        height: 56px;
        bottom: 35px;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid #04BB81;
    }
    .banner .position_circle .circle{
        width: 100px;
    }
    .banner .position_circle .color {
        width: 14px;
        height: 21px;
        border-radius: 7px;
        top: -3px;
    }
    .banner .position_circle .color:after {
        top: 6px;
        width: 2px;
        height: 4px;
        border-radius: 1px;
    }
    .banner .position_circle .joke svg {
        width: 8px;
        height: 4px;
        margin: 2px auto 0;
    }
    .banner .position_circle .cr {
        width: 85px;
        height: 85px;
    }
    .index1 .r{
        display: none;
    }
    .index1 .l,.index1 .l .joke{
        width: 100%;
    }
    .index1 .l .joke{
        padding: 55px 5% 35px;
    }
    .index1 .l .title {
        font-size: 22px;
        margin: 0 0 25px;
    }
    .index1 .l .bottom {
        margin: 0 0 15px;
    }
    .index1 .l .bottom .line{
        display: none;
    }
    .index1 .l .bottom .flex .item:not(:last-child) {
        margin: 0 0 38px;
    }
    .index1 .l .bottom .flex .item .circle{
        display: none;
    }
    .index1 .l .bottom .flex .item .show {
        font-size: 18px;
        color: #1CB692!important;
    }
    .index1 .l .bottom .flex .item .hide{
        width: 100%;
        display: block!important;
        overflow: unset;
    }
    .index1 .l .bottom .flex .item .hide > div {
        margin: 15px 0 25px 0;
    }
    .index1 .l .bottom .flex .item .hide p {
        font-size: 12px;
        line-height: 26px;
    }
    .index1 .l .bottom .flex .item .hide .more {
        width: 140px;
        height: 47px;
        border-radius: 28px;
        font-size: 13px;
        margin: 25px 0 0 0;
    }
    .index1 .l .bottom .flex .item .hide .more:after{
        display: none;
    }

    .index2 .wrap{
        position: relative;
        top: 0;
        transform: none;
        padding: 55px 5%;
    }
    .index2 .wrap .title h1{
        font-size: 22px;
        margin: 0 0 22px;
    }
    .index2 .wrap .title p{
        font-size: 13px;
        line-height: 30px;
    }
    .index2 .wrap .content .cut:after{
        display: none;
    }
    .index2 .wrap .content{
        /*display: none;*/
    }
    .index2 .wrap .content .cut{
        margin: 35px 0;
    }
    .index2 .wrap .sj_content{
        /*display: block!important;*/
        margin: 30px 0 0 0;
    }
    .index2 .wrap .content .bottom{
        display: none;
    }
    .index2 .wrap .content .sj_bottom {
        display: block !important;
    }
    .index2 .wrap .content .sj_bottom .matter{
        display: block!important;
    }
    .index2 .wrap .content .sj_bottom .matter.hide{
        display: none!important;
    }
    .index2 .wrap .content .sj_bottom .matter.on{
        display: block!important;
    }
    .index2 .wrap .content .sj_bottom .matter .swiper{
        margin: 40px 0 0 0;
    }
    .index2 .wrap .content .sj_bottom .matter .item .img{
        width: 100%;
        height: auto;
    }
    .index2 .wrap .sj_content .con_list:not(:last-child) ,.index2 .wrap .content .cut .list:not(:last-child){
        margin: 0 45px 0 0;
    }
    .index2 .wrap .sj_content .con_list .headline{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 26px;
    }
    .index2 .wrap .sj_content .con_list .headline .circle,.index2 .wrap .content .cut .list .circle{
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 13px 0 0;
        transition: .6s;
        position: relative;
    }
    .index2 .wrap .sj_content .con_list .headline .circle img ,.index2 .wrap .content .cut .list .circle img{
        position: absolute;
        width: 20px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: 1s;
    }
    .index2 .wrap .sj_content .con_list .headline p ,.index2 .wrap .content .cut .list p{
        font-size: 16px;
        font-weight: bold;
        color: #1C1C1C;
    }
    .index2 .wrap .content .bottom .matter .item .text{
        font-size: 16px;
        font-weight: bold;
        color: #1C1C1C;
    }
    .index2 .wrap .content .bottom .matter .item .img{
        margin: 0 auto 5px;
    }

    .index2 .wrap .sj_content .con_list .bottom .item{
        display: block;
    }
    .index2 .wrap .sj_content .con_list .bottom .item:not(:last-child) {
        margin: 0 0 40px;
    }
    .index2 .wrap .sj_content .con_list .bottom .item .img{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }
    .index2 .wrap .sj_content .con_list .bottom .item .img img{
        max-width: 80%;
        object-fit: contain;
    }

    .index2 .wrap .content .bottom .matter .item .img img{
        transform: scale(1) !important;
    }

    .index2 .wrap .sj_content .con_list .bottom .item .text {
        font-size: 14px;
        font-weight: 400;
        color: #1C1C1C;
        text-align: center;
    }
    .index3 .content{
        top: 0;
        transform: none;
        padding: 100px 5%;
    }
    .index3 .content .magnetic{
        margin: 0;
        padding: 0;
    }
    .index3 .content .title{
        font-size: 22px;
        margin: 0 0 20px;
    }
    .index3 .content .magnetic p{
        font-size: 13px;
    }
    .index3 .content .circle{
        width: 35px;
        height: 35px;
    }
    .index3 .content .circle svg{
        width: 15px;
        height: 15px;
    }
    .index4 .wrap{
        top: 0;
        left: 0;
        transform: none;
        width: 90%;
        margin: auto;
        padding: 50px 0;
    }
    .index4 .wrap .top{
        margin: 0 0 25px;
    }
    .index4 .wrap .top .title{
        font-size: 22px;
    }
    .index4 .wrap .top a{
        font-size: 14px;
    }
    .index4 .wrap .content{
        height: auto;
        flex-direction: column;
        padding: 0;
    }
    .index4 .wrap .content .big{
        width: 100%;
    }
    .index4 .wrap .content .big .text {
        bottom: 20px;
        left: 0;
        width: 100%;
        padding: 0 5%;
        font-size: 14px;
    }
    .index4 .wrap .content .small{
        width: 100%;
        margin: 20px 0 0 0;
    }
    .index4 .wrap .content .small .item{
        flex-direction: column;
        padding: 0 0 10px;
    }
    .index4 .wrap .content .small .item:not(:last-child) {
        margin: 0 0 22px;

    }
    .index4 .wrap .content .small .item .img{
        width: 100%;
        height: auto;
        margin: 0;
    }
    .index4 .wrap .content .small .item .text{
        width: 100%;
    }
    .index4 .wrap .content .small .item .text .time{
        font-size: 14px;
        margin: 15px 0 4px 0;
    }
    .index4 .wrap .content .small .item .text p{
        font-size: 14px;
    }
}
