* {
    padding: 0;
    margin: 0;
}

body,
html {
    height: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
}

body {
    overflow-x: hidden;
}

body.onscroll-xy {
    width: 100%;
    overflow: hidden;
}

#page-animate {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1001;
    overflow: hidden;
}

.page-animate {
    width: 100%;
    height: 100%;
}

#dataNums,
#dataNums1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

#dataNums,
#dataNums1 {
    overflow: hidden;
}

#dataNums {
    left: 0;
    z-index: 2;
    width: 100%;
    -webkit-animation: 3s 3s ease-out 1 width100;
    animation: 3s 3s ease-out 1 width100;
}

#dataNums1 {
    right: 0;
    z-index: 3;
    -webkit-animation: 3s 3s ease-out 1 forwards width0;
    animation: 3s 3s ease-out 1 forwards width0;
}

.animate-water {
    position: fixed;
    left: 50%;
    top: 0;
    width: 35px;
    height: 49px;
    margin-left: -18px;
    /* margin-top: -25px; */
    margin-top: -220px;
    background: url(/static/img/animate_water.png) center center no-repeat;
    background-size: 100% auto;
    z-index: 100;
    animation: water-animate 1.5s ease-out 1s 1 forwards;
    -webkit-animation: water-animate 1.5s ease-out 1s 1 forwards;
}

@keyframes water-animate {
    0% {
        opacity: 1;
        top: 0;
    }
    80% {
        opacity: .8;
        top: 25;
    }
    100% {
        opacity: 0;
        top: 50%;
    }
}

@-webkit-keyframes water-animate {
    0% {
        opacity: 1;
        top: 0;
    }
    80% {
        opacity: .8;
        top: 25;
    }
    100% {
        opacity: 0;
        top: 50%;
    }
}


/*
#dataNums {
	-webkit-animation:3s   width0;
	animation:3s   width0;
}
*/

@-webkit-keyframes width100 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes width100 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width0 {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

@keyframes width0 {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

#dataNums .bg,
#dataNums1 .bg {
    background: #F1FEF3;
    width: 100%;
    height: 100%;
    /* transition: all 1s ease-in-out; */
    left: 0;
}

#dataNums .bg.bgno {
    left: 100%;
}

.dataNums {
    width: 100%;
}

.page-aniname-content {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

#dataNums .page-aniname-content {
    left: 0;
}

#dataNums1 .page-aniname-content {
    right: 0;
}

.page-aniname-content .page-animate-message {
    font-size: 36px;
    text-align: center;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 33px;
    width: 100%;
}

.dataNums2 .page-aniname-content .page-animate-message {
    color: #439345;
}

.page-aniname-content .page-animate-button {
    width: 80px;
    height: 80px;
    background: #fff;
    background-size: 25% auto;
    border-radius: 50%;
    position: relative;
    font-size: 0.8rem;
    color: #005c53;
    font-weight: 600;
}

.page-aniname-content .page-animate-button::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page-aniname-content .page-animate-button .animate_button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border-width: 3px;
    border-style: solid;
}

.page-aniname-content .page-animate-button .animate_button_1 {
    width: 80px;
    height: 80px;
    border-color: rgba(255, 255, 255, .8);
    animation: 1s ease-in 0s infinite btn1;
    -webkit-animation: 1s ease-in 0s infinite btn1;
}

.page-aniname-content .page-animate-button .animate_button_2 {
    width: 102px;
    height: 102px;
    border-color: rgba(255, 255, 255, .5);
    animation: btn2 1s ease-in-out 0s infinite;
    -webkit-animation: btn2 1s ease-in-out 0s infinite;
}

.page-aniname-content .page-animate-button .animate_button_3 {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, .2);
    animation: btn3 1s ease-in-out 0s infinite;
    -webkit-animation: btn3 1s ease-in-out 0s infinite;
}

@keyframes btn1 {
    from {
        width: 80px;
        height: 80px;
        border-color: rgba(255, 255, 255, .8)
    }
    to {
        height: 100px;
        width: 100px;
        border-color: rgba(255, 255, 255, .3)
    }
}

@-webkit-keyframes btn1 {
    from {
        width: 80px;
        height: 80px;
        border-color: rgba(255, 255, 255, .8)
    }
    to {
        height: 100px;
        width: 100px;
        border-color: rgba(255, 255, 255, .3)
    }
}

@keyframes btn2 {
    from {
        height: 102px;
        width: 102px;
        border-color: rgba(255, 255, 255, .5)
    }
    to {
        height: 120px;
        width: 120px;
        border-color: rgba(255, 255, 255, .2)
    }
}

@-webkit-keyframes btn2 {
    from {
        height: 102px;
        width: 102px;
        border-color: rgba(255, 255, 255, .5)
    }
    to {
        height: 120px;
        width: 120px;
        border-color: rgba(255, 255, 255, .2)
    }
}

@keyframes btn3 {
    from {
        width: 120px;
        height: 120px;
        border-color: rgba(255, 255, 255, .2)
    }
    to {
        width: 140px;
        height: 140px;
        border-color: rgba(255, 255, 255, .0)
    }
}

@-webkit-keyframes btn3 {
    from {
        width: 120px;
        height: 120px;
        border-color: rgba(255, 255, 255, .2)
    }
    to {
        width: 140px;
        height: 140px;
        border-color: rgba(255, 255, 255, .0)
    }
}

.dataNums .dataOne {
    width: 90px;
    height: 240px;
    margin: 0px 3px;
    text-align: center;
    font-family: Oswald;
    font-weight: 300;
    border-radius: 5px;
    float: left;
    list-style: none;
}

.dataNums .dataLine {
    width: 30px;
}

.dataNums .dataBoc {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(359deg, transparent, #000 20%), linear-gradient(180deg, transparent, #000 20%);
    -webkit-mask-size: 100% 160px, 100% 160px;
    -webkit-mask-position: bottom, top;
    -webkit-mask-repeat: no-repeat;
}

.dataLine .dataBoc {
    -webkit-mask: none;
}

.dataNums .dataBoc .tt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font: 300 54px/75px Oswald;
    font-size: 150px;
    line-height: 280px;
    color: #ffffff;
}

.dataNums .dataBoc .nott {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: Oswald;
    font-weight: 400;
    font-size: 63px;
    line-height: 370px;
    color: #ffffff;
}

.dataNums2 .dataBoc .tt,
.dataNums2 .dataBoc .nott {
    color: #439345;
}

.dataNums .dataOne.dataLinem {
    width: 65px;
}

.dataNums .dataBoc .ttt {
    font-size: 200px;
    background: none;
    transition: none;
    color: #ffffff;
    font-family: Oswald;
    font-weight: 400;
    line-height: 240px;
}

.dataNums .tt span {
    width: 100%;
    height: 100%;
    font: 400 190px/240px Oswald;
    float: left;
    color: #ffffff;
}

#dataNums1 .dataNums .tt span {
    color: #439345;
}

#dataNums1 .bg {
    background: #F1FEF3;
}

#dataNums1 .dataNums .dataBoc .ttt {
    color: #439345;
}

.dataNums .dataBoc .ttt {}

#dataNums .bg {
    background: linear-gradient(180deg, rgba(0, 92, 83, 0) 0%, #005C53 100%);
    opacity: 0.72;
}

.swiper,
.animate-swiper,
.animate-swiper-inner,
.animate-swiper-item,
.animate-swiper-item img {
    height: 100%;
    width: 100%;
}

.swiper {
    background: #fff;
}

@media screen and (max-width:1320px) {
    .dataNums {
        height: 120px;
    }
    .dataNums .dataOne {
        width: 60px;
        height: 120px;
    }
    .dataNums .tt span,
    .dataNums .dataBoc .ttt {
        font-size: 100px;
        line-height: 120px;
    }
    .dataNums .dataLine {
        width: 30px;
        line-height: 175px;
    }
    .dataNums .dataBoc .nott {
        line-height: 175px;
        font-size: 30px;
    }
    .dataNums .dataOne.dataLinem {
        width: 40px;
    }
}

.dataNum1 {
    position: absolute;
    top: 56%;
    width: 20%;
    float: left;
    /* padding-right:4%;
	*/
    color: #fff5a1;
    font-size: 36px;
    text-align: center;
    left: 17%;
}

.dataNum2 {
    position: absolute;
    top: 56%;
    width: 20%;
    float: left;
    color: #fff5a1;
    font-size: 36px;
    text-align: center;
    left: 40%;
}

.dataNum3 {
    position: absolute;
    top: 56%;
    width: 20%;
    float: left;
    padding-left: 5%;
    color: #fff5a1;
    font-size: 36px;
    text-align: center;
    left: 60%;
}

.dataIcon {
    font-size: 67px;
    float: left;
    font-style: normal;
}

#holder {
    position: fixed;
    z-index: 10;
}

.animate-swiper {
    display: block;
}

.animate-swiper-item img {
    width: auto !important;
}

.animate-swiper-inner {
    position: relative;
    overflow: hidden;
}

.animate-swiper-item {
    width: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    right: -100%;
    transition: right 1s ease-in-out;
}

.animate-swiper-item:first-child {
    width: 100%;
    position: static;
    z-index: 0;
}

@media screen and (max-width:960px) {
    .swiper,
    .animate-swiper,
    .animate-swiper-inner,
    .animate-swiper-item,
    .animate-swiper-item img {
        height: 100%;
    }
    .animate-swiper-item img {
        width: auto !important;
    }
    .dataNums .dataOne {
        width: 40px;
        height: 80px;
    }
    .dataNums .dataBoc .tt {
        font-size: 60px;
        line-height: 80px;
    }
    .dataNums .tt span {
        font-size: 60px;
        line-height: 80px;
    }
    .dataNums .dataLine {
        width: 20px;
    }
    .dataNums .dataBoc .ttt {
        font-size: 40px;
        line-height: 100px;
        width: 20px;
    }
    .dataNums .dataBoc .nott {
        font-size: 20px;
        line-height: 100px;
    }
    .dataNums .dataOne.dataLinem {
        width: 30px;
    }
    .page-aniname-content .page-animate-message {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 50px;
    }
    .page-aniname-content .page-animate-button,
    .page-aniname-content .page-animate-button .animate_button_1 {
        width: 40px;
        height: 40px;
    }
    .page-aniname-content .page-animate-button .animate_button_2 {
        width: 50px;
        height: 50px;
    }
    .page-aniname-content .page-animate-button .animate_button_3 {
        width: 70px;
        height: 70px;
    }
    .page-aniname-content .page-animate-button .animate_button {
        border-width: 2px;
    }
    @keyframes btn1 {
        from {
            width: 40px;
            height: 40px;
            border-color: rgba(255, 255, 255, .8)
        }
        to {
            height: 50px;
            width: 50px;
            border-color: rgba(255, 255, 255, .3)
        }
    }
    @-webkit-keyframes btn1 {
        from {
            width: 40px;
            height: 40px;
            border-color: rgba(255, 255, 255, .8)
        }
        to {
            height: 50px;
            width: 50px;
            border-color: rgba(255, 255, 255, .3)
        }
    }
    @keyframes btn2 {
        from {
            height: 50px;
            width: 50px;
            border-color: rgba(255, 255, 255, .5)
        }
        to {
            height: 70px;
            width: 70px;
            border-color: rgba(255, 255, 255, .2)
        }
    }
    @-webkit-keyframes btn2 {
        from {
            height: 50px;
            width: 50px;
            border-color: rgba(255, 255, 255, .5)
        }
        to {
            height: 70px;
            width: 70px;
            border-color: rgba(255, 255, 255, .2)
        }
    }
    @keyframes btn3 {
        from {
            width: 70px;
            height: 70px;
            border-color: rgba(255, 255, 255, .2)
        }
        to {
            width: 90px;
            height: 90px;
            border-color: rgba(255, 255, 255, .0)
        }
    }
    @-webkit-keyframes btn3 {
        from {
            width: 70px;
            height: 70px;
            border-color: rgba(255, 255, 255, .2)
        }
        to {
            width: 90px;
            height: 90px;
            border-color: rgba(255, 255, 255, .0)
        }
    }
}

@media screen and (max-width:576px) {
    .dataNums .dataOne {
        width: 30px;
        height: 80px;
    }
    .dataNums .dataBoc .tt {
        font-size: 40px;
        line-height: 80px;
    }
    .dataNums .tt span {
        font-size: 40px;
        line-height: 80px;
    }
    .dataNums .dataLine {
        width: 15px;
    }
    .dataNums .dataBoc .ttt {
        font-size: 30px;
        line-height: 90px;
        width: 15px;
    }
    .dataNums .dataBoc .nott {
        font-size: 20px;
        line-height: 100px;
    }
    .dataNums .dataOne.dataLinem {
        width: 30px;
    }
    .page-aniname-content .page-animate-message {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 50px;
    }
}