﻿html {
    touch-action: none;
    touch-action: pan-y;
    overflow-x: hidden;
    overflow-y: scroll;
}
.head {
    width: 100%;
    height:200px;
    overflow-x: hidden;
    background: url(../imgs/bg.jpg?v=1.11) top left no-repeat;
    background-size: 100%;
}

.type {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
}

    .type ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .type ul li {
            width: 100%;
            text-align: center;
            font-size: 24px;
            color: #333333;
            position: relative;
        }

            .type ul li.on {
                color: #48ACA7;
                font-weight: 600;
            }

                .type ul li.on::after {
                    content: "";
                    position: absolute;
                    display: block;
                    width: 75px;
                    height: 3px;
                    background: #48ACA7;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                }

form .item span {
    background: #48ACA7;
}

form .submit button {
    box-shadow: 0 7.5px 7.5px rgba(206,55,28,.2);
    background: #48ACA7;
    font-size: 19px;
}

form .submit {
    padding: 10px 0;
}

#username {
    font-size: 15px;
}

#loginPass {
    font-size: 15px;
}

.agreement {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top:2.5px;
    margin-bottom: 35px;
    font-size: 12px;
    color: #333333;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

    .agreement span {
        height: 15px;
        line-height: 15px;
        width: 50%;
    }


    .agreement i {
        font-size: 15px;
        margin-right: 5px;
        color: #bbb;
    }

        .agreement i.on {
            color: #48ACA7;
        }
