input[type="radio"], input[type="checkbox"] {
    margin: 0;
}

label {
    margin-bottom: 0;
    font-weight: normal;
}

.agreement-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 30px;
}

.agreement-wrapper input {
    width: unset !important;
}

.readme-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1999;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
}

.readme-txt {
    width: 500px;
    min-height: 300px;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 24px;
    position: relative;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.readme-txt .txt-title {
    overflow: hidden;
    position: relative;
}

.readme-txt .txt-title .img-wrap {
    width: 160px;
    height: 48px;
    float: left;
}

.readme-txt .txt-title .img-wrap img {
    object-fit: contain;
}

.readme-txt .txt-title h2 {
    font-size: 18px;
    color: #0090ff;
    width: 100%;
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.readme-txt .txt-main {
    max-height: 60vh;
    overflow-y: auto;
    margin: 24px 0 0;
    /*box-shadow: 5px 5px 12px #eaeaea;*/
}

/*滚动条凹槽的颜色，还可以设置边框属性*/
.readme-txt .txt-main::-webkit-scrollbar-track-piece {
    background-color: #f8f8f8;
}

/*滚动条的宽度*/
.readme-txt .txt-main::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

/*滚动条的设置*/
.readme-txt .txt-main::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    background-clip: padding-box;
    min-height: 28px;
}

.readme-txt .txt-main::-webkit-scrollbar-thumb:hover {
    background-color: #bbb;
}

.form-handled {
    padding-top: 24px;
    border-top: 1px solid #eeeeee;
}

.readme-txt .txt-main > p {
    font-size: 16px;
    text-align: justify;
    text-indent: 2em;
    margin: 12px 0;
    color: #444444;
    line-height: 26px;
}

.readme-txt .user-ctrl {
    overflow: hidden;
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.readme-txt .user-ctrl a {
    display: block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #222222;
    float: right;
    margin-left: 24px;
}

.readme-txt .user-ctrl .__agree {
    color: #222222;
    border: 1px solid #dddddd;
}

.readme-txt .user-ctrl .__black:hover {
    color: #1dbdf9;
}

.readme-txt .user-ctrl .__agree:hover {
    color: #1dbdf9;
    border-color: #1dbdf9;
}

/*兼容1366x768*/
@media screen and (max-width: 1366px) {
    .readme-txt {
        width: 98%;
        min-height: 80vh;
        padding: 12px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 400px) {
    .readme-txt .txt-title .img-wrap {
        width: 67px;
        height: 36px;
    }
    .readme-txt .txt-title h2 {
        font-size: 14px;
        color: #0090ff;
        width: 100%;
        font-weight: bold;
        padding-bottom: 12px;
        border-bottom: 1px solid #eeeeee;
        box-sizing: border-box;
    }
    .readme-txt .txt-main {
        max-height: 70vh;
        overflow-y: auto;
        margin: 14px 0 50px;
    }
    .readme-txt .user-ctrl a {
        display: block;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        color: #222222;
        float: right;
        margin-left: 24px;
    }
}
