html {
    overflow: hidden;
}

.field_title {
    margin: 0 0px;
}

.change_user_layer .layui-layer-content {
    background: #f2f2f2;
}

.el_dialog__body {
    padding: 16px;
}

.change_user_search {
    padding-bottom: 10px;
    text-align: right;
}

.change_user_div {
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.05);
    height: 480px;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start

}

.change_user_item {
    width: 138px;
    text-align: center;
    padding: 7px;
    border: 1px solid #DCDFE6;
    margin: 0px 6px 10px;
    cursor: pointer;
    height: 65px;
    flex-shrink: 0;

}

.change_user_item_active {
    border-color: #49b19a;
}

.change_user_item_active .change_user_company {
    color: #49b19a;
}

.change_user_item_active .change_user_name {
    color: #49b19a;
}

.change_user_name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #959393;
    font-size: 12px;
}

.change_user_company {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.indexBar-content {
    display: flex;
    background: #49b19a;
    padding: 0 20px;
}

.indexBar-item {
    padding: 5px 10px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
}

.indexBar-body {
    flex: 1;
}

.indexBar-body-item {
    display: flex;
}

.indexBar-body-item .title {
    width: 30px;
    text-align: center;
    height: 65px;
    color: #49b19a;
}

.indexBar-body-item .center {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.indexBar-active {
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
}

.dialog {
    width: 850px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px #cfcfcf;
    display: flex;
}

.dialog-content {
    display: flex;
    flex: 1;
}

.dialog-left {
    width: 240px;
    padding: 20px;
    background: #fff;
    position: relative;
}

.dialog-left-title {
    font-size: 20px;
    font-weight: 700;
}

.dialog-left-list {
    margin-left: 30px;
    margin-top: 20px;
    list-style-type: disc;
}

.dialog-left-list > li {
    margin-bottom: 20px;
    color: #2dc995;
    font-weight: 700;
}

.dialog-left > button {
    padding: 6px 20px;
    background: #02a581;
    border: none;
    color: #fff;
    border-radius: 4px;
    position: absolute;
    left: 20px;
    bottom: 30px;
}

.dialog-right {
    flex: 1;
    background: linear-gradient(to right, #f5fffd, #ddfff8);
    position: relative;
}

.dialog-right-img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80%;
    width: 80%;
    transform: translate(-50%, -50%);
}

.dialog-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

/* 自定义圆角样式 */
.my-layer-round {
    border-radius: 10px; /* 设置圆角大小 */
    overflow: hidden;
    /*background-color: transparent !important;box-shadow: 0 0 0 rgba(0,0,0,0) !important;*/
}