html, body {
    margin: 0px;
    padding: 0px;
    -ms-overflow-style: none;
    /*火狐下隐藏滚动条*/
    overflow: -moz-scrollbars-none;
}

::-webkit-scrollbar {
    display: none;
}

.float:after {
    content: "";
    display: block;
    clear: both;
}

/*.swiper-container {*/
/*    width: 890px;*/
/*    height: 160px;*/
/*    background: #EDF8EF;*/
/*    margin: 32px auto;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

.swiper-container {
    width: 100%;
    height: 260px;
    background: #EDF8EF;
    position: relative;
    overflow: hidden;
    /*margin: 32px auto;*/
    cursor: pointer;
}

.swiper-container img {
    height: 260px;
    width: 1200px;
}

/*.swiper-container .swiper-pagination {*/
/*    width: 676px !important;*/
/*    position: absolute;*/
/*    bottom: 30px !important;*/
/*    right: 48px;*/
/*    text-align: right !important;*/
/*    padding-right: 48px !important;*/
/*}*/


.page-loading,
.page-loading > div {
    position: relative;
    box-sizing: border-box;
}

.page-loading {
    display: block;
    font-size: 0;
    color: #01AB84;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.page-loading.la-dark {
    color: #333;
}

.page-loading > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.page-loading {
    width: 48px;
    height: 48px;
}

.page-loading > div:nth-child(1),
.page-loading > div:nth-child(2) {
    position: absolute;
    left: 0;
    width: 100%;
}

.page-loading > div:nth-child(1) {
    top: -25%;
    z-index: 1;
    height: 100%;
    border-radius: 10%;
    animation: square-jelly-box-animate 0.6s -0.1s linear infinite;
}

.page-loading > div:nth-child(2) {
    bottom: -9%;
    height: 10%;
    background: #01AB84;
    border-radius: 50%;
    opacity: 0.2;
    animation: square-jelly-box-shadow 0.6s -0.1s linear infinite;
}

.page-loading.la-sm {
    width: 16px;
    height: 16px;
}

.page-loading.la-2x {
    width: 64px;
    height: 64px;
}

.page-loading.la-3x {
    width: 96px;
    height: 96px;
}

@keyframes square-jelly-box-animate {
    17% {
        border-bottom-right-radius: 10%;
    }

    25% {
        transform: translateY(25%) rotate(22.5deg);
    }

    50% {
        border-bottom-right-radius: 100%;
        transform: translateY(50%) scale(1, 0.9) rotate(45deg);
    }

    75% {
        transform: translateY(25%) rotate(67.5deg);
    }

    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes square-jelly-box-shadow {
    50% {
        transform: scale(1.25, 1);
    }
}


