html,
body,
#app {
    height: 100%;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #f2f2f2;
}

.d-modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    display: none;
    transition: all 0.3s ease;
}
.d-modal-mask.active {
    opacity: 1;
    display: block;
}
.d-modal-mask .modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    width: 30%;
    max-width: 300px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: all 0.4s ease;
}
.d-modal-mask.active .modal-container {
    opacity: 1;
}
.d-modal-mask .modal-container .update-title {
    font-size: 20px;
    padding: 10px 15px;
    font-weight: bold;
    text-align: center;
}
.d-modal-mask .modal-container .update-desc {
    font-size: 14px;
    padding: 20px 15px;
}
.d-modal-mask .modal-container .modal-buttons {
    display: flex;
    margin-top: 10px;
    justify-content: center;
}
.d-modal-mask .modal-container .modal-buttons .modal-btn {
    border: none;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: 0.1s;
    font-weight: 500;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 4px;
}

.d-modal-mask .modal-container .modal-buttons .update-btn {
    background: linear-gradient(to right, #409ee0, #409eff);
    color: white;
}
/*// 升级弹框*/
.update-v-dialog-wrapper {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-51%, -50%);
    padding: 20px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #f2f2f2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    width: 20%;
}
.update-v-dialog-wrapper::backdrop {
    background-color: rgba(0, 0, 0, 0.2);
}

.update-v-dialog-wrapper .update-title {
    font-size: 14px;
    padding: 10px 15px;
    font-weight: bold;
    border-bottom: 1px solid #f2f2f2;
}
.update-v-dialog-wrapper .update-desc {
    font-size: 14px;
    padding: 20px 15px;
}

.update-v-dialog-wrapper .update-form {
    text-align: right;
    padding: 0px 20px 20px 20px;
}

.update-v-dialog-wrapper .ensure-button {
    color: #fff;
    background-color: #409eff;
    border: none;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: 0.1s;
    font-weight: 500;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 4px;
}

.loading-fixed-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background-color: #f2f2f2;
}
.loading-fixed-wrapper .loading-fixed-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #4ea3fb;
    padding: 0.2em 0;
}

/* 适应缩放浏览器  fbz - 2020-11-23*/
body {
    width: 100%;
    /*min-width: 1900px;*/
    max-width: 100%;
}
// @media screen and (device-width: 1680px) {
//     body {
//         min-width: 1680px;
//     }
// }
// @media screen and (device-width: 1680px) {
//     body {
//         min-width: 1680px;
//     }
// }

@media screen and (device-width: 1600px) {
    body {
        min-width: 1600px;
    }
}
@media screen and (device-width: 1440px) {
    body {
        min-width: 1440px;
    }
}
@media screen and (device-width: 1400px) {
    body {
        min-width: 1400px;
    }
}
@media screen and (device-width: 1366px) {
    body {
        min-width: 1300px;
    }
}
@media screen and (device-width: 1360px) {
    body {
        min-width: 1300px;
    }
}
@media screen and (device-width: 1200px) {
    body {
        min-width: 1200px;
    }
}
@media screen and (device-width: 1024px) {
    body {
        min-width: 1024px;
    }
}
