@charset "UTF-8";

.download-box {
    background: #F7F8FC;
}
.download-box .wrap {
    padding-top: 20px;
}
.download-box form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 27px 72px;
    background: #ffffff;
    position: relative;
}
.download-box form.disabled:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.download-box form .input-wrap {
    position: relative;
    height: 36px;
    flex: 1;
}
.download-box form .input-wrap img {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.download-box form input {
    width: 100%;
    height: 100%;
    padding: 0 15px 0 30px;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    outline: 0;
}
.download-box form button {
    margin-left: 15px;
    width: 52px;
    height: 36px;
    background: #0039C8;
    border-radius: 2px;
    color: #ffffff;
    border: none;
}

/*登录弹窗*/
.dialog {
    display: none;
}
.dialog-mast {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.dialog {
    position: fixed;
    z-index: 1001;
}
.dialog-wrap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #ffffff;
    border-radius: 10px;
    width: 526px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.dialog-head {
    position: relative;
    padding: 15px 20px;
    height: 54px;
    box-sizing: border-box;
}
.dialog-head .close {
    position: absolute;
    right: 12px;
    top: 15px;
}
.dialog-head .close img {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.dialog-head .title {
    text-align: center;
}
.dialog-login .dialog-body {
    padding: 0 53px;
    flex: 1;
    overflow-y: auto;
}
.dialog-login .dialog-body .title {
    text-align: center;
}
.dialog-login .dialog-body .title img {
    margin-bottom: 20px;
}
.dialog-login .form {
    margin-top: 30px;
    display: none;
}
.dialog-login .form .form-item {
    display: flex;
    margin-bottom: 20px;
}

.dialog-login .form .form-item input {
    border: none;
    outline: 0;
}

.dialog-login .form .phone-code-btn {
    border: none;
    white-space: nowrap;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    background: #0039C8;
    padding: 0 17px;
    cursor: pointer;
}
.dialog-login .form .form-submit {
    width: 100%;
    background-color: #0039c8;
    color: #ffffff;
}
.dialog-login .form button[disabled] {
    background: #9b9b9b;
    cursor: no-drop;
}
.dialog-login .form .other {
    margin: 20px 0;
    text-align: center;
}
.dialog-login .form .other a {
    color: #0039C8;
}

.dialog-login .form .tips {
    margin-top: 20px;
    color: #FF0600;
}

@media(max-width: 768px) {
    .dialog-wrap {
        width: 90%;
    }
    .dialog-login .dialog-body {
        padding: 0 20px;
    }
}


/*列表*/
.download-box .main {
    margin-top: 28px;
    padding-bottom: 50px;
    background: #ffffff;
}
.download-box .main .head {
    height: 63px;
    line-height: 63px;
    background: #0039C8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 0 40px;
    color: #ffffff;
}
.download-box .main .body .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    margin: 0 40px;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    box-sizing: border-box;
}
.download-box .main .body .item .title {
    line-height: 1.6;
    flex: 1;
}

.download-box .main .body .item .action a {
    display: inline-block;
    margin-left: 20px;
}
.download-box .main .body .item .action img {
    width: 18px;
    height: 18px;
}
.download-box .main .body .item .action a:hover {
    opacity: .7;
}

.download-box .main .body .empty, .un-login {
    text-align: center;
    padding: 80px 0 40px;
    color: #999999;
}
.un-login a {
    color: #0039C8;
    margin: 0 5px;
}

@media(max-width: 640px) {
    .download-box form {
        padding: 15px 20px;
    }
    .download-box .main .head {
        padding: 0 20px;
    }
    .download-box .main .body .item {
        margin: 0 20px;
    }
}