html {
    height: 100%;
}

body {
    min-height: 100%;
    background: url(../images/home_bg.png) no-repeat;
    background-color: #61d88c;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding-top: 120px;
    padding-bottom: 36px;
}

body * {
    box-sizing: border-box;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.content_l {
    width: 446px;
}

.content_l .img-txt img {
    width: 420px;
}

.down-box {
    margin-top: 40px;
}

.down-box .btn {
    width: 420px;
    height: 100px;
    border-radius: 45px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 5px rgba(000, 000, 000, .2);
    background: #fff;
    cursor: pointer;
}

.down-box .btn .icon {
    width: 40px;
}

.down-box .btn .center {
    padding-left: 10px;
    line-height: 1;
}

.down-box .btn .center .h1 {
    font-size: 24px;
}

.down-box .btn .center .h2 {
    font-size: 36px;
    font-weight: bold;
}

.content_r {
    width: 650px;
}

.content_r img {
    width: 100%;
}

.agrement {
    text-align: center;
    margin-top: 78px;
}

.agrement a {
    font-size: 28px;
    color: #0b9616;
    margin: 0 120px;
    text-decoration: underline;
}

.m-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: rgba(000, 000, 000, .5);
    display: none;
    align-items: center;
    padding: 0 15px;
}

.m-footer .icon {
    width: 42px;
}

.m-footer .center {
    flex: 1;
    padding: 0 6px;
    color: #fff;
}

.m-footer .center .h1 {
    font-size: 14px;
    font-weight: bold;
}

.m-footer .center .h2 {
    font-size: 10px;
    margin-top: 4px;
}

.m-footer .btn {
    width: 123px;
    height: 44px;
    background: url(../images/down-btn.png) no-repeat;
    background-size: 100% 100%;
}

.m-footer .btn:active {
    opacity: .9;
}

@media (max-width: 560px) {
    body {
        padding-top: 30px;
    }

    .content {
        display: block;
        padding: 0 30px;
    }

    .content_l {
        width: 100%;
    }

    .content_l .img-txt img {
        width: 100%;
    }

    .content_l .down-box {
        display: none;
    }

    .content_r {
        width: 100%;
    }

    .agrement {
        display: none;
    }

    .m-footer {
        display: flex;
    }
}