﻿.hide {
    display: none;
}

.agree-mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0,0,0,.75);
    transition: all .4s;
}

.agree-pop {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px 10px 0 0;
    overflow: auto;
    z-index: 1001;
}

.agreebox {
    position: fixed;
    z-index: 9999999;
    overflow: hidden;
    border-radius: 2px;
    background: #fff;
    height: 80%;
    display: flex;
    flex-direction: column;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    bottom: 0;
    width: 100%;
}

.agree-top-box {
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    background: #fff;
    border-radius: 10px 10px 0 0;
}

    .agree-top-box span {
        display: inline-block;
        width: 60%;
        line-height: 1.2rem;
        font-size: 1.2rem;
        padding-top: 10px;
    }

    .agree-top-box i {
        position: absolute;
        display: inline-block;
        right: 20px;
        font-size: 1.5rem;
    }

.agree {
    padding: 1rem 0;
}

.input-check input[type="radio"], input[type="checkbox"] {
    display: none;
}

.input-check > label > input[type="radio"] + i, .input-check > label > input[type="checkbox"] + i, .input-switch > input[type="checkbox"] + i {
    position: relative;
    width: 1.125rem;
    height: 1.125rem;
    display: inline-block;
    vertical-align: text-bottom;
    border: solid 1px #ddd;
    border-radius: 100%;
}

.input-check > label > input:checked + i {
    background-color: rgb(238, 90, 5);
    border-color: transparent;
    transition: all 1s cubic-bezier(0.175,0.885,0.32,1) 0s;
}

    .input-check > label > input:checked + i::after {
        content: "";
        position: absolute;
        width: 6px;
        height: 10px;
        top: 2px;
        left: 5px;
        border-right: 1.5px solid #fff;
        border-bottom: 1.5px solid #fff;
        transform: rotate(45deg);
    }

.input-check > label > input[type="checkbox"] + i {
    border-radius: .125rem;
}
