128 lines
2.0 KiB
Plaintext
128 lines
2.0 KiB
Plaintext
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Microsoft YaHei';
|
|
color: #262626;
|
|
}
|
|
|
|
.layout {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: start;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#main-box {
|
|
width: 100%;
|
|
height: calc(100% - 80px);
|
|
}
|
|
|
|
#left-box, #right-box {
|
|
width: 50%;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.title {
|
|
padding: 10px 20px;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.layui-input-inline input,
|
|
.layui-input-inline textarea {
|
|
width: 190px;
|
|
}
|
|
|
|
.layui-input-inline img {
|
|
width: 30px;
|
|
height: 30px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.layui-textarea {
|
|
min-height: 70px;
|
|
}
|
|
|
|
.layui-form-item:first-child {
|
|
margin-top: 2%;
|
|
}
|
|
|
|
.btn-box {
|
|
width: 100%;
|
|
height: 80px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.layui-form-label {
|
|
width: 60px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.layui-input,
|
|
.layui-select,
|
|
.layui-textarea {
|
|
color: #000 !important;
|
|
border: 1px solid #d9d9d9 !important;
|
|
height: 40px;
|
|
font-size: 13px;
|
|
background-color: transparent;
|
|
padding: 3px 6px;
|
|
}
|
|
|
|
.layui-input:hover,
|
|
.layui-select:hover,
|
|
.layui-textarea:hover {
|
|
border: 1px solid #595959 !important;
|
|
}
|
|
|
|
.layui-input:focus,
|
|
.layui-select:focus,
|
|
.layui-textarea:focus {
|
|
border: 1px solid #595959 !important;
|
|
}
|
|
|
|
.layui-form-item .layui-input-inline {
|
|
width: auto;
|
|
margin: 0 0 0 20px;
|
|
}
|
|
|
|
.save {
|
|
background-color: #1698d5;
|
|
}
|
|
|
|
|
|
/*滚动条样式start*/
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
height: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #e7e7f1 !important;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(94, 96, 97, 0.43) !important;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(94, 96, 97, 0.43) !important;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
background: rgba(94, 96, 97, 0.43) !important;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
/*滚动条样式end*/
|