/* 按钮颜色 */
.top .top_right ul li:nth-child(1) a{
    color: #fa6d1b;
}
/*main start*/
.main {
    padding-top: 80px;
    position: relative;
    left: 0;
    top: 0;
}
.main .main_left {
    width: 65%;
    height: 475px;
    position: relative;
    left: 0;
    top: 0;
}
.main .main_left .mq_2 {
    position: absolute;
    width: 139px;
    height: 182px;
    top: 27px;
    left: 50%;
    margin-left: -85px;
    z-index: 2;
    -webkit-transform: rotate(360deg) scale(1);
    -moz-transform: rotate(360deg) scale(1);
    -ms-transform: rotate(360deg) scale(1);
    -o-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-animation: maque 1s;
    -o-animation: maque 1s;
    animation: maque 1s;
}
.main .main_left .mq_3 {
    position: absolute;
    width: 421px;
    height: 350px;
    top: 54px;
    left: 50%;
    margin-left: -210px;
}
.main .main_left .mq_4 {
    position: absolute;
    width: 98px;
    height: 47px;
    bottom: 65px;
    left: 60px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-animation: cloud1 1s;
    -o-animation: cloud1 1s;
    animation: cloud1 1s;
}
.main .main_left .mq_5 {
    position: absolute;
    width: 65px;
    height: 32px;
    bottom: 140px;
    right: 142px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-animation: cloud2 1s;
    -o-animation: cloud2 1s;
    animation: cloud2 1s;
}
.main .main_right {
    width: 35%;
    position: absolute;
    right: 0;
    top: 80px;
}
.main .main_right .slogan {
    width: 288px;
    height: 102px;
    margin: 0px auto;
}
.main .main_right .download {
    position: absolute;
    right: 0;
    top: 150px;
    width: 100%;
    height: 235px;
}
.main .main_right .download .scan {
    width: 110px;
    height: 110px;
    margin: 60px 0 0 40px;
}
.main .main_right .download .scan p {
    width: 110%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #3A2B0C;
    text-align: center;
    margin-left: -5px;
}

/* 下载按钮 */
.main .main_right .download .d_button {
    position: absolute;
    right: 20px;
    top: 40px;
}
.main .main_right .download .d_button ul li a {
    display: block;
    width: 132px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    background-color: #3A2C09;
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    margin: 10px 0 0 16px;
}

/* PC暂时改为灰色, 上线后直接删除即可 */
.main .main_right .download .d_button ul > li:nth-child(3) a {
    box-sizing: border-box;
    border: 1px solid #AAAAAA;
    background-color: rgba(255, 255, 255, 0);
    color: #AAAAAA;
}
/*main end */


.footer {
    background-color: #4AB9FF;
}

/* 自定义动画 */
@keyframes maque {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
@-webkit-keyframes maque {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes cloud1 {
    from {
        left: 0px;
    }
    to {
        left: 60px;
    }
}
@-webkit-keyframes cloud1 {
    from {
        left: 0px;
    }
    to {
        left: 60px;
    }
}
@keyframes cloud2 {
    from {
        right: 0px;
    }
    to {
        right: 142px;
    }
}
@-webkit-keyframes cloud2 {
    from {
        right: 0px;
    }
    to {
        right: 142px;
    }
}
