html {
    width: 100%;
    height: 100%;
    font-size: 10px;
}

@media screen and (max-width: 1400px) {
    html {
        font-size: 9px;
    }
}

@media screen and (max-width: 1200px) {
    html {
        font-size: 8px;
    }
}

@media screen and (max-width: 1000px) {
    html {
        font-size: 7px;
    }
}

@media screen and (max-width: 800px) {
    html {
        font-size: 6px;
    }
}

@media screen and (max-width: 600px) {
    html {
        font-size: 5px;
    }
}

body {
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
}

* {
    padding: 0px;
    margin: 0px;
    border: none;
}

.app-main {
    background-color: #ECEFF8;
}

img {
    max-width: 100% !important;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* btn mini自定义样式 */
.mini-btn {
    padding: 3px 5px !important;
    margin-left: 0px !important;
    margin-right: 5px;
}

/* btn small自定义样式 */
.small-btn {
    padding: 6px 6px !important;
}

/* 侧边小区列表 */
.content {
    width: 100%;
    height: 100%;
    display: flex;
}

/* 小区树列表选中节点层级 */
.navigation {
    color: #666;
    line-height: 30px;
    height: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}


/* 修改分页器样式 */
.pagination-container {
    padding: 8px 16px 0px !important;
}

/* 修改input、textarea disabled样式 */
div::v-deep.el-input.is-disabled .el-input__inner,
div::v-deep.el-textarea.is-disabled .el-textarea__inner {
    background-color: #f9f9f9 !important;
    color: #666666 !important;
    border-color: #DDDDDD;
}

/*  */
div::v-deep.el-form-item {
    margin-bottom: 18px !important;
}

/* 引入的svg图标的外壳 */
.svg-box {
    display: inline-block;
    width: 29px;
    height: 29px;
    color: #fff;
    border-radius: 50%;
    line-height: 29px;
    text-align: center;
    cursor: pointer;
}

/* 上传材料资质及展示框 */
.upload-box {
    box-sizing: border-box;
    border: 1px dashed #cdcdcd;
    background-color: #fafafa;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-box:hover {
    border-color: #1890ff;
}

.upload-box .icon {
    font-size: 40px;
}

.upload-box .upload {
    font-size: 22px;
    color: #808080;
}

.upload-box .upload-info {
    font-size: 12px;
    color: #808080;
}

.upload-box:hover .upload,
.upload-box:hover .upload-info {
    color: #1890ff;
}

.idcard-box {
    width: 156px;
    height: 88px;
    float: left;
    margin: 5px 10px 5px 0px;
}

.image-box {
    width: 100px;
    height: 100px;
    float: left;
    margin: 5px 10px 5px 0px;
}

/* 提示太长 */
.el-tooltip__popper {
    max-width: 500px;
    max-height: 500px;
}

/* 自定义提示消息 */
.zj-tips {
    font-size: 12px;
    color: #999999;
    margin: 5px 0px 5px 50px;
}

/* 高亮行颜色 */
.el-table--striped .el-table__body tr.el-table__row--striped.current-row td,
.el-table__body tr.current-row>td {
    background-color: #dae8ff !important;
}

/* 图表组件通用样式 */
.echart-component {
    max-width: 100%;
    max-height: 100%;
}