<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

html, body {
    height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, form {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 100%;
}

header, aside, nav, section, article, address, footer {
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    outline: 0;
    color: #626465;
}

    a:focus {
        outline: 0;
    }

img {
    border: 0;
}

body {
    font-family: "Microsoft YaHei","宋体",arial,verdana,sans-serif;
    font-size: 16px;
    color: #6b6d6f;
    background-color: #fff;
}

table {
    border-collapse: collapse;
}

input, select, textarea {
    outline: 0;
    margin: 0;
    font-family: "Microsoft YaHei","宋体",arial,verdana,sans-serif;
}

button:focus {
    outline: 0;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

.header {
    position: fixed;
    _position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header {
    background-color: rgba(0,0,0,.05);
}

    .header.cur {
        height: 100px;
        background-color: rgba(0,0,0,.6);
        border: 0;
    }

        .header.cur .logo {
            padding-top: 28px;
        }

        .header.cur .nav a {
            height: 100px;
            line-height: 100px;
            color: #b3b3b3;
        }

        .header.cur .nav li.cur a {
            color: #fff;
        }

    .header .logo {
        padding-top: 28px;
        float: left;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

        .header .logo a {
            display: block;
        }

        .header .logo img {
            display: block;
            -webkit-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
        }

.nav {
    float: right;
}

    .nav li {
        float: left;
    }

    .nav a {
        position: relative;
        float: left;
        height: 100px;
        line-height: 100px;
        padding: 0 25px;
        color: #386f16;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .nav li.cur a, .nav li a:hover {
        color: #fff;
    }

.nav-toggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3000;
    width: 25px;
    height: 100%;
    padding: 0 12px;
}

    .nav-toggle .icon {
        position: relative;
        width: 25px;
        height: 100%;
    }

    .nav-toggle i {
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #fff;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        -webkit-transition-duration: .5s;
        transition-duration: .5s;
        -webkit-transition-timing-function: swing;
        transition-timing-function: swing;
    }

    .nav-toggle .i1 {
        top: 35%;
        left: 0;
    }

    .nav-toggle .i2 {
        top: 50%;
        left: 0;
        margin-top: -1px;
    }

    .nav-toggle .i3 {
        bottom: 35%;
        left: 0;
    }

.nav-open .nav-toggle i {
    background-color: #fff;
}

.nav-open .nav-toggle .i1 {
    -webkit-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
}

.nav-open .nav-toggle .i2 {
    opacity: 0;
}

.nav-open .nav-toggle .i3 {
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
}

.btn_download{
        top:80%;
    }
@media screen and (max-width:1199px) {
    .header .logo {
        margin-left: 10px;
    }
}

@media screen and (max-width:992px) {
    .wrap {
        width: 100%;
        padding: 0 18px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .header, .header.cur {
        height: 80px;
    }
        .header .logo, .header.cur .logo {
            padding-top: 20px;
        }

            .header .logo img {
                width: auto;
                height: 40px;
            }

        .header .nav-a {
            height: 80px;
            line-height: 80px;
            font-size: 14px;
        }
}

@media screen and (max-width:768px) {
    .header, .header.cur {
        height: 60px;
    }
    
        .header .logo, .header.cur .logo {
            padding-top: 15px;
        }

            .header .logo img {
                width: auto;
                height: 30px;
            }

    .nav-toggle {
        display: block;
    }

    .header .nav {
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2000;
        width: 100%;
        height: 0;
        background-color: rgba(0,0,0,.8);
        display: -webkit-box;
        display: -moz-box;
        display: box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        box-orient: vertical;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        box-pack: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        box-align: center;
        opacity: 0;
        -webkit-transition: opacity .5s ease 0s;
        -moz-transition: opacity .5s ease 0s;
        transition: opacity .5s ease 0s;
    }

    .nav-open .header .nav {
        opacity: 1;
        height: 100%;
    }

    .nav ul {
        display: block;
        width: 100%;
    }

    .nav li {
        display: block;
        width: 100%;
    }

    .header .nav a {
        float: none;
        color: #aaa;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .header .nav li.cur a, .header .nav li a:hover {
        color: #fff;
    }

    .header .nav li {
        display: block;
        width: 100%;
        text-align: center;
        color: #fff;
        padding: 0;
        margin: 0;
        opacity: 0;
        -webkit-transition: all .4s ease 0s;
        -moz-transition: all .4s ease 0s;
        transition: all .4s ease 0s;
    }

        .header .nav li:nth-of-type(1) {
            -webkit-transform: translate(-50px,-50px);
            -moz-transform: translate(-50px,-50px);
            -ms-transform: translate(-50px,-50px);
            -o-transform: translate(-50px,-50px);
        }

        .header .nav li:nth-of-type(2) {
            -webkit-transform: translate(50px,-50px);
            -moz-transform: translate(50px,-50px);
            -ms-transform: translate(50px,-50px);
            -o-transform: translate(50px,-50px);
        }

        .header .nav li:nth-of-type(3) {
            -webkit-transform: translate(0,50px);
            -moz-transform: translate(0,50px);
            -ms-transform: translate(0,50px);
            -o-transform: translate(0,50px);
        }

        .header .nav li:nth-of-type(1) {
            -webkit-transition-delay:;
            -moz-transition-delay:;
            -ms-transition-delay:;
            -o-transition-delay:;
        }

    .nav-open .header .nav li:nth-of-type(2) {
        -webkit-transition-delay: .1s;
        -moz-transition-delay: .1s;
        -ms-transition-delay: .1s;
        -o-transition-delay: .1s;
    }

    .nav-open .header .nav li:nth-of-type(3) {
        -webkit-transition-delay: .2s;
        -moz-transition-delay: .2s;
        -ms-transition-delay: .2s;
        -o-transition-delay: .2s;
    }

    .nav-open .header .nav li:nth-of-type(4) {
        -webkit-transition-delay: .3s;
        -moz-transition-delay: .3s;
        -ms-transition-delay: .3s;
        -o-transition-delay: .3s;
    }

    .nav-open .header .nav li:nth-of-type(5) {
        -webkit-transition-delay: .4s;
        -moz-transition-delay: .4s;
        -ms-transition-delay: .4s;
        -o-transition-delay: .4s;
    }

    .nav-open .header .nav li {
        border: 0;
        opacity: 1;
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
    }

    .nav li a:after {
        display: none;
    }

    .nav-open {
        overflow: hidden;
    }
}

@media screen and (max-width:480px) {
    .header .logo, .header.cur .logo {
        margin-left: 0;
        padding-top: 18px;
    }

        .header .logo img {
            height: 24px;
        }

    .nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    -webkit-transition-property: -webkit-transform,left,top;
    -webkit-transition-duration: 0s;
    -webkit-transform: translate3d(0px,0,0);
    -webkit-transition-timing-function: ease;
    -moz-transition-property: -moz-transform,left,top;
    -moz-transition-duration: 0s;
    -moz-transform: translate3d(0px,0,0);
    -moz-transition-timing-function: ease;
    -o-transition-property: -o-transform,left,top;
    -o-transition-duration: 0s;
    -o-transform: translate3d(0px,0,0);
    -o-transition-timing-function: ease;
    -o-transform: translate(0px,0);
    -ms-transition-property: -ms-transform,left,top;
    -ms-transition-duration: 0s;
    -ms-transform: translate3d(0px,0,0);
    -ms-transition-timing-function: ease;
    transition-property: transform,left,top;
    transition-duration: 0s;
    transform: translate3d(0px,0,0);
    transition-timing-function: ease;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-free-mode &gt; .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    float: left;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
}

.swiper-container {
}

.swiper-slide {
}

.swiper-slide-active {
}

.swiper-slide-visible {
}

.swiper-pagination-switch {
}

.swiper-active-switch {
}

.swiper-visible-switch {
}

.banner {
    overflow: hidden;
    position: relative;
    height: 960px;
    background: url(https://clean.30.net/assets//img/ind/angogo_guanjia_banner.jpg) no-repeat 50% bottom;
    
    _background: url(https://clean.30.net/assets/img/ind/angogo_guanjia_banner.jpg) no-repeat 50% bottom;
    background-size: cover;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.plane {
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: 420px;
}

.balloon {
    position: absolute;
    top: 400px;
    left: 50%;
    width: 4%;
    width: 80px;
}

.balloonL {
    margin-left: -765px;
    margin-top: -257px;
    -webkit-animation: balloonUp_1 10s linear 0s infinite;
    -moz-animation: balloonUp_1 10s linear 0s infinite;
    -o-animation: balloonUp_1 10s linear 0s infinite;
    animation: balloonUp_1 10s linear 0s infinite;
}

.balloonR {
    margin-left: 670px;
    -webkit-animation: balloonUp_2 10s linear 0s infinite;
    -moz-animation: balloonUp_2 10s linear 0s infinite;
    -o-animation: balloonUp_2 10s linear 0s infinite;
    animation: balloonUp_2 10s linear 0s infinite;
}

@-webkit-keyframes balloonUp_1 {
    0% {
        -webkit-transform: translate(400px,200px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(-400px,-400px),scale(2.8,2.8);
        opacity: 0;
    }
}

@-o-keyframes balloonUp_1 {
    0% {
        -o-transform: translate(400px,200px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        -o-transform: translate(-400px,-400px),scale(2.8,2.8);
        opacity: 0;
    }
}

@-moz-keyframes balloonUp_1 {
    0% {
        -moz-transform: translate(400px,200px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(-400px,-400px),scale(2.8,2.8);
        opacity: 0;
    }
}

@keyframes balloonUp_1 {
    0% {
        -webkit-transform: translate(400px,200px);
        -moz-transform: translate(400px,200px);
        -ms-transform: translate(400px,200px);
        -o-transform: translate(400px,200px);
        transform: translate(400px,200px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(-400px,-400px),scale(2.8,2.8);
        -moz-transform: translate(-400px,-400px),scale(2.8,2.8);
        -ms-transform: translate(-400px,-400px) scale(2.8,2.8);
        -o-transform: translate(-400px,-400px) scale(2.8,2.8);
        transform: translate(-400px,-400px) scale(2.8,2.8);
        opacity: 0;
    }
}

@-webkit-keyframes balloonUp_2 {
    0% {
        -webkit-transform: translate(-400px,300px);
        opacity: 0;
    }

    10% {
        -webkit-transform: translate(-400px,300px);
        opacity: 0;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(300px,-200px),scale(1.8,1.8);
        opacity: 0;
    }
}

@-o-keyframes balloonUp_2 {
    0% {
        -o-transform: translate(-400px,300px);
        opacity: 0;
    }

    10% {
        -o-transform: translate(-400px,300px);
        opacity: 0;
    }

    90% {
        opacity: 1;
    }

    100% {
        -o-transform: translate(300px,-200px) scale(1.8,1.8);
        opacity: 0;
    }
}

@-moz-keyframes balloonUp_2 {
    0% {
        -moz-transform: translate(-400px,300px);
        opacity: 0;
    }

    10% {
        -moz-transform: translate(-400px,300px);
        opacity: 0;
    }

    90% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(300px,-200px),scale(1.8,1.8);
        opacity: 0;
    }
}

@keyframes balloonUp_2 {
    0% {
        -webkit-transform: translate(-400px,300px);
        -moz-transform: translate(-400px,300px);
        -ms-transform: translate(-400px,300px);
        -o-transform: translate(-400px,300px);
        transform: translate(-400px,300px);
        opacity: 0;
    }

    10% {
        -webkit-transform: translate(-400px,300px);
        -moz-transform: translate(-400px,300px);
        -ms-transform: translate(-400px,300px);
        -o-transform: translate(-400px,300px);
        transform: translate(-400px,300px);
        opacity: 0;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(300px,-200px),scale(1.8,1.8);
        -moz-transform: translate(300px,-200px),scale(1.8,1.8);
        -ms-transform: translate(300px,-200px) scale(1.8,1.8);
        -o-transform: translate(300px,-200px) scale(1.8,1.8);
        transform: translate(300px,-200px) scale(1.8,1.8);
        opacity: 0;
    }
}

.launchInfo {
    
    width: 385px;
    float: right;
    margin-right: 410px;
    padding-top: 280px;
}

    .launchInfo h1 {
        text-indent: -1000px;
        width: 100%;
        height: 140px;
        margin-bottom: 20px;
        background: url(https://clean.30.net/assets/img/ind/title_ca56172.png) no-repeat 50% 50%;
        background-size: contain;
    }

    .launchInfo .btn {
        margin-top:20px;
        
    }

        

    .launchInfo .i-android {
        display: inline-block;
        width: 22px;
        height: 28px;
        line-height: 28px;
        background: url(https://clean.30.net/assets/img/ind/android_712c24b.png) no-repeat 0 0;
        vertical-align: -5px;
        *vertical-align: 5px;
        margin-right: 10px;
    }

    .launchInfo .code {
        float: right;
        
        margin-top:20px;
        margin-left:20px;
        background: url(https://clean.30.net/assets/img/ind/angogo_small_Code.jpg) no-repeat 0 0;
        background-size: contain;
    }

    .launchInfo .txtVer {
        width: 78%;
        padding-top: 8px;
        text-align: center;
        color: #fff;
        font-size: 14px;
    }

.download_qr_overlay {
    position: fixed;
    _position: absolute;
    visibility: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2000;
    opacity: 0;
    background: url(https://clean.30.net/assets/img/bgOverlay_a632004.png) repeat 0 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    .download_qr_overlay.cur {
        opacity: 1;
        visibility: visible;
    }

.download_qr {
    position: fixed;
    _position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    z-index: 2700;
    visibility: hidden;
    margin: -150px 0 0 -170px;
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    -ms-perspective: 1300px;
    -o-perspective: 1300px;
    perspective: 1300px;
}

    .download_qr .qrWrap {
        width: 170px;
        height: auto;
        padding: 30px 30px 25px;
        background-color: #fff;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-transform: rotateX(-70deg);
        -moz-transform: rotateX(-70deg);
        -ms-transform: rotateX(-70deg);
        -o-transform: rotateX(-70deg);
        transform: rotateX(-70deg);
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        opacity: 0;
    }

    .download_qr.cur {
        visibility: visible;
    }

        .download_qr.cur .qrWrap {
            -webkit-transform: rotateX(0);
            -moz-transform: rotateX(0);
            -ms-transform: rotateX(0);
            -o-transform: rotateX(0);
            transform: rotateX(0);
            visibility: visible;
            opacity: 1;
        }
            .btn {
        
        float: left;
        left:50px;
        
        
        
        
    }
           
.qrWrap .qrColse {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

    .qrWrap .qrColse:hover {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

.qrWrap img {
    display: block;
}

.qrWrap .qrTxt {
    padding-top: 10px;
    text-align: center;
}

.mobileWrap {
    position: relative;
    height: 160px;
    background-color: #F6F6F6;
}

.mobile {
    position: absolute;
    top: -645px;
    left: 50%;
    z-index: 200;
    background: #F6F6F6;
    width: 363px;
    height: 708px;
    margin-left: -470px;
    background: url(https://clean.30.net/assets/img/ind/mobile_3f9f802.png) no-repeat 50% 0;
    background-size: contain;
}

.mobileBg {
    position: absolute;
    left: 50%;
    bottom: -36px;
    width: 360px;
    height: 36px;
    margin-left: -180px;
    background: url(https://clean.30.net/assets/img/ind/mobileBg_739068b.png) no-repeat 50% -10px;
    background-size: contain;
}

.mobileSwiper {
    overflow: hidden;
    position: absolute;
    top: 71px;
    left: 21px;
    width: 320px;
    height: 569px;
    border: 2px solid #ccc;
}

    .mobileSwiper .slideIndBan, .mobileSwiper .slidesjs-container {
        width: 100%;
        height: 100%;
    }

    .mobileSwiper .item {
        height: 100%;
    }

.slidesjs-navigation {
    display: none;
}

.swiper-container, .swiper-slide {
    width: 100%;
    height: 100%;
}

.main {
    width: 100%;
}

.indDes {
    overflow: hidden;
    width: 100%;
    background-color: #F6F6F6;
    text-align: center;
}

    .indDes .item {
        float: left;
        width: 300px;
        padding: 60px 0 80px;
    }

        .indDes .item .img {
            width: 126px;
            height: 126px;
            margin: 0 auto;
        }

        .indDes .item .img1 {
            background: url(https://clean.30.net/assets/img/ind/des01_46307f9.png) no-repeat 50% 50%;
            background-size: cover;
        }

        .indDes .item .img2 {
            background: url(https://clean.30.net/assets/img/ind/des02_7f3107a.png) no-repeat 50% 50%;
            background-size: cover;
        }

        .indDes .item .img3 {
            background: url(https://clean.30.net/assets/img/ind/des03_a0d6cb1.png) no-repeat 50% 50%;
            background-size: cover;
        }

        .indDes .item .img4 {
            background: url(https://clean.30.net/assets/img/ind/des04_159a0f2.png) no-repeat 50% 50%;
            background-size: cover;
        }

        .indDes .item .tit {
            font-size: 24px;
            padding: 25px 0 18px;
        }

        .indDes .item .con {
            width: 205px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 26px;
        }

.indBox {
    width: 100%;
    padding: 90px 0;
}

.indBox-preloaded, .indBox-lock {
    background-color: #F6F6F6;
}

.indBox .txt {
    float: left;
    color: #333;
    padding-left: 110px;
    padding-top: 105px;
    width: 395px;
}

    .indBox .txt h2 {
        font-size: 32px;
        padding: 24px 0;
        font-weight: 300;
    }

    .indBox .txt p {
        font-size: 18px;
        line-height: 26px;
    }

.indBox img {
    margin-left: 130px;
}

.indBox-preloaded img {
    margin-left: 148;
}

.indBox-preloaded .txt {
    padding-top: 190px;
}

.indBox-insulate .txt, .indBox-clean .txt {
    float: right;
    padding-left: 0;
}

.indBox-insulate .txt {
    padding-right: 130px;
}

.indBox-clean .txt {
    padding-right: 130px;
}

.indDesBot {
    overflow: hidden;
    padding-top: 40px;
}

    .indDesBot .item {
        float: left;
        width: 400px;
        height: 220px;
        padding: 40px 0;
        text-align: center;
    }

    .indDesBot .img {
        width: 65px;
        height: 60px;
        margin: 0 auto;
    }

    .indDesBot .img1 {
        background: url(https://clean.30.net/assets/img/ind/des11_d7055d4.png) no-repeat 50% 50%;
        background-size: contain;
    }

    .indDesBot .img2 {
        background: url(https://clean.30.net/assets/img/ind/des12_068a1c5.png) no-repeat 50% 50%;
        background-size: contain;
    }

    .indDesBot .img3 {
        background: url(https://clean.30.net/assets/img/ind/des13_fe4ea96.png) no-repeat 50% 50%;
        background-size: contain;
    }

    .indDesBot .img4 {
        background: url(https://clean.30.net/assets/img/ind/des14_e844308.png) no-repeat 50% 50%;
        background-size: contain;
    }

    .indDesBot .img5 {
        background: url(https://clean.30.net/assets/img/ind/des15_9030f1d.png) no-repeat 50% 50%;
        background-size: contain;
    }

    .indDesBot .img6 {
        background: url(https://clean.30.net/assets/img/ind/des16_2c51d7b.png) no-repeat 50% 50%;
        background-size: contain;
    }

    .indDesBot .tit {
        font-size: 24px;
        padding: 20px 0 10px;
    }

    .indDesBot .con {
        width: 250px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 26px;
    }

#backToTop {
    position: fixed;
    _position: absolute;
    bottom: 78px;
    right: 38px;
    z-index: 3000;
    width: 42px;
    height: 42px;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

    #backToTop.ie678 {
        display: none;
    }

    #backToTop.cur {
        display: block;
        opacity: 1;
    }

    #backToTop a {
        overflow: hidden;
        display: block;
        width: 100%;
        height: 100%;
        text-indent: -9999px;
        background: url(https://clean.30.net/assets/img/backToTop_53027e1.png) no-repeat 0 0;
    }

@media screen and (max-width:1199px) {
    .plane {
        margin-left: 260px;
    }
    .btn_download{
        top:40%;
    }
    .launchInfo {
        float: none;
        width: 380px;
        margin: 0 auto;
        padding-top: 125px;
    }

        .launchInfo h1 {
            height: 80px;
            margin-bottom: 10px;
        }

        .launchInfo .btn {
            float:left;
            
            height: 60px;
            margin-top:48%;
            
        }

        .launchInfo .i-android {
            height: 24px;
            background-size: contain;
        }

        .launchInfo .txtVer {
            width: 100%;
        }

        .launchInfo .code {
            margin-top:48%;
            height:16%;
            width:16%;
        
        }

    .mobileWrap {
        height: 180px;
    }

    .mobile {
        margin-left: -182px;
        top: -540px;
    }

    .mobileSwiper img {
        width: 100%;
        height: auto;
    }

    .indDes .item {
        width: 25%;
    }

    .indBox .txt {
        float: none;
        width: auto;
        text-align: center;
        margin: 0;
        padding: 0 0 30px;
    }

        .indBox .txt p {
            line-height: 1.6;
        }

    .indBox img {
        display: block;
        margin: 0 auto;
        padding-left: 0;
    }

    .indDesBot {
        padding-top: 0;
        padding-bottom: 20px;
    }

        .indDesBot .con {
            width: 80%;
        }

        .indDesBot .item {
            height: 130px;
            width: 33.333%;
        }

        .indDesBot .img {
            width: 30px;
        }

        .indDesBot .tit {
            font-size: 20px;
            padding: 0 0 5px;
        }

        .indDesBot .con {
            font-size: 14px;
        }
}

@media screen and (max-width:787px) {
    
    .launchInfo {
        
        
        width: 50%;
        margin: 0 auto;
        padding-top: 125px;
    }

        .launchInfo h1 {
            height: 80px;
            margin-bottom: 10px;
        }

        
            
            

        .launchInfo .i-android {
            height: 24px;
            background-size: contain;
        }

        .launchInfo .txtVer {
            width: 100%;
        }

        .launchInfo .code {
            margin-right:-3%;
            margin-top:45%;
            width:12%;
            height:12%;
      
        }

    .mobileWrap {
        height: 180px;
    }

    .mobile {
        margin-left: -182px;
        top: -540px;
    }

    .mobileSwiper img {
        width: 100%;
        height: auto;
    }

    .indDes .item {
        width: 25%;
    }

    .indBox .txt {
        float: none;
        width: auto;
        text-align: center;
        margin: 0;
        padding: 0 0 30px;
    }

        .indBox .txt p {
            line-height: 1.6;
        }

    .indBox img {
        display: block;
        margin: 0 auto;
        padding-left: 0;
    }

    .indDesBot {
        padding-top: 0;
        padding-bottom: 20px;
    }

        .indDesBot .con {
            width: 80%;
        }

        .indDesBot .item {
            height: 130px;
            width: 33.333%;
        }

        .indDesBot .img {
            width: 30px;
        }

        .indDesBot .tit {
            font-size: 20px;
            padding: 0 0 5px;
        }

        .indDesBot .con {
            font-size: 14px;
        }
}

@media screen and (max-width:992px) {
    .plane {
        top: 80px;
        margin-left: 240px;
    }

    .indDes .item .img {
        width: 80px;
        height: 80px;
    }

    .indDes .item {
        width: 50%;
        padding: 40px 0;
    }

        .indDes .item .tit {
            padding: 10px 0 5px;
        }

        .indDes .item .con {
            width: 100%;
        }

    .indBox {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 30px 10px;
    }

        .indBox .txt h2 {
            font-size: 24px;
            padding: 20px 0 10px;
        }

        .indBox .txt p {
            font-size: 14px;
        }

        .indBox img {
            width: 200px;
            height: auto;
        }

    .indBox-insulate img {
    }

    .indBox-preloaded img {
        width: 220px;
    }

    .indBox-clean img {
    }

    .indBox-lock img {
        width: 260px;
    }
}



@media screen and (max-width:768px) {
    .launchInfo {
        width: 280px;
        margin: 0 auto;
        padding-top: 140px;
    }
    .plane {
        top: 60px;
        margin-left: 190px;
    }

    .launchInfo .btn {
        float:left;
        margin-left:-10%;
        margin-top:47%;
        width:75%;
        height:115%;
        
    }

    .launchInfo .code {
        float:right;
        margin-top:45%;
        margin-right:-8%;
        width:20%;
        height:9%;
       
    }

    .banner {
        height: 720px;
    }

    

        .launchInfo h1 {
            height: 105px;
            margin-bottom: 10px;
        }

    .mobileWrap {
        height: 220px;
    }

    .mobile {
        width: 300px;
        height: 584px;
        margin-left: -150px;
        top: -410px;
    }

    .mobileBg {
        width: 300px;
        height: 27px;
        top: 584px;
        bottom: none;
        margin-left: -150px;
    }

    .mobileSwiper {
        top: 55px;
        left: 17px;
        width: 267px;
        height: 474px;
    }

        .mobileSwiper img {
            width: 100%;
            height: auto;
        }

    .indDes {
        text-align: left;
    }

        .indDes .item {
            width: 80%;
            padding: 20px 0;
            padding-left: 10%;
        }

            .indDes .item .img {
                float: left;
                width: 60px;
                height: 60px;
                margin-right: 18px;
            }

            .indDes .item .tit {
                font-size: 20px;
                padding: 2px 0 8px;
            }

            .indDes .item .con {
                width: 100%;
                font-size: 14px;
                line-height: 16px;
            }

    .indDesBot .item {
        height: 130px;
        width: 50%;
    }
}

@media screen and (max-width:480px) {
    .plane {
        top: -70px;
        margin-left: 120px;
    }

    .banner {
        height: 560px;
    }

    .launchInfo {
        width: 180px;
        padding-top: 88px;
    }

        .launchInfo h1 {
            height: 80px;
        }

        .launchInfo .btn {
            font-size: 14px;
        }

        .launchInfo .i-android {
            height: 16px;
            margin-right: 0;
        }

        .launchInfo .txtVer {
            display: none;
        }

    .mobileWrap {
        height: 120px;
    }

    .mobile {
        width: 200px;
        height: 390px;
        margin-left: -100px;
        top: -310px;
    }

    .mobileBg {
        top: 390px;
        width: 200px;
        height: 18px;
        margin-left: -100px;
    }

    .mobileSwiper {
        width: 178px;
        height: 316px;
        top: 36px;
        left: 11px;
        border: 1px solid #ccc;
    }

    .indDes .item {
        width: 90%;
        padding-left: 5%;
    }

        .indDes .item .tit {
            padding: 0 0 4px;
        }

        .indDes .item .con {
        }

    .indBox img {
        width: 160px;
        height: auto;
    }

    .indBox-insulate img {
    }

    .indBox-preloaded img {
    }

    .indBox-clean img {
        width: 150px;
    }

    .indBox-lock img {
        width: 200px;
    }

    .indDesBot .item {
        width: 100%;
        padding: 8px 0;
    }

    .indDesBot .con {
        width: 94%;
    }
}

.updateLogBody .header, .updateLogBody .header.cur {
    background-color: #3293f8;
    border: 0;
}

    .updateLogBody .header.cur .nav a {
        color: #386f16;
    }

    .updateLogBody .header.cur .nav li.cur a {
        color: #fff;
    }

.updateLogBody .main {
}

.updateLogBody #codeScan {
    display: none;
}

.update-log-wrap {
    margin: 0 auto;
    padding: 170px 0 0;
}

.update-log-item {
    position: relative;
    overflow: hidden;
    zoom: 1;
    margin-bottom: 90px;
    padding: 0 0 70px;
    border-bottom: dotted 2px #ececec;
}

    .update-log-item.first {
        margin-bottom: 0;
        border-bottom: 0;
    }

    .update-log-item .info {
        float: left;
        width: 168px;
    }

    .update-log-item h4 {
        margin: 0 0 25px;
        padding: 0;
        font-size: 20px;
        font-weight: 400;
        color: #444;
    }

    .update-log-item .date {
        font-size: 14px;
        color: #b2b2b2;
    }

    .update-log-item .con {
        float: left;
        width: 690px;
        line-height: 26px;
        font-size: 14px;
        word-wrap: break-word;
        overflow: hidden;
        text-align: justify;
        text-justify: inter-ideograph;
    }

    .update-log-item ul {
        float: left;
        width: 800px;
        list-style: decimal inside;
        line-height: 26px;
        font-size: 14px;
        color: #777;
    }

    .update-log-item li {
        margin-bottom:;
    }

    .update-log-item .btn {
        float: right;
        width: 126px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        margin-right: 110px;
        background-color: #61BA2A;
        color: #fff;
        font-size: 16px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

        .update-log-item .btn:hover, .update-log-item .btn.cur {
            background-color: #519A24;
        }

@media screen and (max-width:1199px) {
    .update-log-item .btn {
        margin-right: 0;
    }

    .update-log-item {
        padding: 0 20px 70px;
    }

        .update-log-item .con, .update-log-item ul {
            width: 600px;
        }
}

@media screen and (max-width:992px) {
    .update-log-item .con, .update-log-item ul {
        width: 400px;
    }
}

@media screen and (max-width:768px) {
    .update-log-wrap {
        padding-top: 120px;
    }

    .update-log-item {
        margin-bottom: 50px;
    }

        .update-log-item .info {
            display: block;
        }

        .update-log-item h4 {
            margin-bottom: 9px;
        }

        .update-log-item .con, .update-log-item ul {
            padding-top: 20px;
            width: 100%;
        }

        .update-log-item .btn {
            position: absolute;
            top: 0;
            right: 15px;
            width: 90px;
            height: 45px;
            line-height: 45px;
            font-size: 14px;
        }
}

@media screen and (max-width:480px) {
}

.sideScan {
    display: none;
    position: fixed;
    _position: absolute;
    right: 42px;
    top: 50%;
    z-index: 3000px;
    width: 41px;
    height: 194px;
    margin-top: -100px;
}

    .sideScan .code {
        position: relative;
        display: block;
        width: 41px;
        height: 41px;
        margin-bottom: 10px;
        cursor: pointer;
    }

        .sideScan .code:hover .panel {
            display: block;
        }

    .sideScan .panel .txt {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 103px;
        height: 25px;
        line-height: 23px;
        text-align: center;
        padding: 0 4px;
        font-size: 13px;
        color: #000;
    }

    .sideScan .panel {
        display: none;
        position: absolute;
        top: -100px;
        left: -118px;
        width: 118px;
        height: 132px;
        -webkit-animation: fadeUp .6s ease 0s;
        -moz-animation: fadeUp .6s ease 0s;
        -o-animation: fadeUp .6s ease 0s;
        animation: fadeUp .6s ease 0s;
    }

    .sideScan .panel-weixin {
        background-repeat: no-repeat;
    }

    .sideScan .panel-qq {
        background-repeat: no-repeat;
    }

    .sideScan .code-weibo {
        background-repeat: no-repeat;
    }

    .sideScan .code-weixin {
        background-repeat: no-repeat;
    }

    .sideScan .code-qq {
        background-repeat: no-repeat;
    }

    .sideScan .code-feedback {
        background-repeat: no-repeat;
    }

    .sideScan .code-weibo:hover {
        background-repeat: no-repeat;
    }

    .sideScan .code-weixin:hover {
        background-repeat: no-repeat;
    }

    .sideScan .code-qq:hover {
        background-repeat: no-repeat;
    }

    .sideScan .code-feedback:hover {
        background-repeat: no-repeat;
    }

@-webkit-keyframes fadeUp {
    from {
        -webkit-transform: translateY(20px);
        opacity: 0;
    }

    to {
        -webkit-transform: translatY(0);
        opacity: 1;
    }
}

@-o-keyframes fadeUp {
    from {
        -o-transform: translateY(20px);
        opacity: 0;
    }

    to {
        -o-transform: translatY(0);
        opacity: 1;
    }
}

@-moz-keyframes fadeUp {
    from {
        -moz-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        -moz-transform: translatY(0);
        transform: translatY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        -webkit-transform: translatY(0);
        -moz-transform: translatY(0);
        -ms-transform: translatY(0);
        -o-transform: translatY(0);
        transform: translatY(0);
        opacity: 1;
    }
}

@media screen and (max-width:768px) {
    .sideScan {
        display: none;
    }
}

.footer {
    width: 100%;
    background-color: #3E3E3E;
}

    .footer .foot {
        padding: 50px 0 30px;
        background-color: #3E3E3E;
    }

    .footer a {
        color: #9c9c9c;
    }

        .footer a:hover {
            color: #fff;
        }

    .footer .focus {
        overflow: hidden;
        width: 615px;
        margin: 0 auto;
        color: #9c9c9c;
    }

    .footer .cop {
        font-size: 14px;
        padding-top: 20px;
    }

    .footer .link {
        display: block;
    }

    .footer .link_deskTop, .footer .link_yz {
        position: relative;
        float: left;
        height: 37px;
        line-height: 37px;
        padding-left: 52px;
        margin-right: 30px;
        font-size: 14px;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .footer .link span {
        position: absolute;
        top: 0;
        left: 0;
        width: 37px;
        height: 37px;
    }

    .footer .link_deskTop span {
        background-repeat: no-repeat;
    }

    .footer .link_deskTop:hover span {
        background-repeat: no-repeat;
    }

    .footer .link_yz span {
        background-repeat: no-repeat;
    }

    .footer .link_yz:hover span {
        background-repeat: no-repeat;
    }

.footNav {
    float: right;
}

    .footNav a {
        display: inline-block;
        display: inline;
        height: 37px;
        line-height: 37px;
        padding: 0 13px;
        font-size: 14px;
    }

    .footNav span {
        overflow: hidden;
        display: inline-block;
        height: 17px;
        vertical-align: -2px;
    }

@media screen and (max-width:1199px) {
    .wrap {
        width: 100%;
    }
}

@media screen and (max-width:992px) {
}

@media screen and (max-width:768px) {
    .footer .focus {
        width: 100%;
        text-align: center;
    }

    .footer .link {
        display: block;
        float: none;
    }

    .footer .link_deskTop, .footer .link_yz {
        display: inline-block;
        float: none;
    }

    .footer .link_yz {
        margin-right: 0;
    }

    .footNav {
        display: block;
        float: none;
        padding-top: 20px;
    }
}

@media screen and (max-width:480px) {
}

.l {
    float: left;
}

.r {
    float: right;
}

.dn {
    display: none;
}

.db {
    display: block;
}

.por {
    position: relative;
}

.poa {
    position: absolute;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left !important;
}

.tar {
    text-align: right;
}

.seo {
    text-indent: -9999px;
}

.yahei {
    font-family: "Microsoft YaHei";
}

.oh {
    top:150px;
    float:left;
    
}

.f16 {
    font-size: 16px !important;
}

.orange {
    color: #f60;
}

.green {
    color: #50aa58;
}

.hide {
    display: none;
}

.mb10 {
    margin-bottom: 10px;
}

.mr10 {
    margin-right: 10px;
}

.mr40 {
    margin-right: 40px;
}

.mt133 {
    margin-top: 133px;
}

.hand {
    cursor: pointer;
}

.bn {
    margin: 0 !important;
}

.fix {
    *zoom: 1;
}

    .fix:after {
        display: table;
        content: '';
        clear: both;
    }

.break {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f15 {
    font-size: 15px;
}

.f16 {
    font-size: 16px;
}

.f17 {
    font-size: 17px;
}

.f18 {
    font-size: 18px;
}

.f19 {
    font-size: 19px;
}

.f20 {
    font-size: 20px;
}

.f22 {
    font-size: 22px;
}

.f24 {
    font-size: 24px;
}

.f26 {
    font-size: 26px;
}

.green {
    color: #5FB928;
}

.bgGreen {
    background-color: #5FB928;
}

.bgWhite {
    background-color: #fff;
}

.bgGrey {
    background-color: #F3F3F3;
}

.sideScan .panel-weixin {
    background-position: 0px 0px;
}

.sideScan .panel-qq {
    background-position: 0px -135px;
}

.sideScan .code-weibo {
    background-position: right -270px;
}

.sideScan .code-weixin {
    background-position: right -314px;
}

.sideScan .code-qq {
    background-position: right -358px;
}

.sideScan .code-feedback {
    background-position: right -402px;
}

.sideScan .code-weibo:hover {
    background-position: right -446px;
}

.sideScan .code-weixin:hover {
    background-position: right -490px;
}

.sideScan .code-qq:hover {
    background-position: right -534px;
}

.sideScan .code-feedback:hover {
    background-position: right -578px;
}

.footer .link_deskTop span {
    background-position: -81px -622px;
}

.footer .link_deskTop:hover span {
    background-position: -81px -662px;
}

.footer .link_yz span {
    background-position: -81px -702px;
}

.footer .link_yz:hover span {
    background-position: -81px -742px;
}

.sideScan .panel-weixin, .sideScan .panel-qq, .sideScan .code-weibo, .sideScan .code-weixin, .sideScan .code-qq, .sideScan .code-feedback, .sideScan .code-weibo:hover, .sideScan .code-weixin:hover, .sideScan .code-qq:hover, .sideScan .code-feedback:hover, .footer .link_deskTop span, .footer .link_deskTop:hover span, .footer .link_yz span, .footer .link_yz:hover span {
    background-image: url(https://clean.30.net/assets/css/css_z_edd2625.png);
}</pre></body></html>