87 lines
1.3 KiB
Plaintext
87 lines
1.3 KiB
Plaintext
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
#FormDiv {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0 2%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#saveOrCancelBtn {
|
|
width: 100%;
|
|
height: 60px;
|
|
margin-top: 1%;
|
|
text-align: center;
|
|
}
|
|
|
|
.layui-form-item .layui-inline {
|
|
margin: 0;
|
|
}
|
|
|
|
.layui-form-label {
|
|
width: 120px;
|
|
font-size: 16px;
|
|
padding: 13px 15px;
|
|
}
|
|
|
|
#superEvaluation {
|
|
width: calc(100% - 200px);
|
|
}
|
|
|
|
.layui-input-block {
|
|
margin-left: 0;
|
|
}
|
|
|
|
#test1,
|
|
#test2,
|
|
#test3,
|
|
#test4 {
|
|
width: 300px;
|
|
}
|
|
|
|
#labelDiv {
|
|
width: calc(100% - 200px);
|
|
min-height: 100px;
|
|
border: 1px solid #d2d2d2;
|
|
}
|
|
|
|
.layui-badge {
|
|
font-size: 14px;
|
|
padding: 5px;
|
|
margin: 5px;
|
|
}
|
|
|
|
/*滚动条样式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*/ |