179 lines
2.9 KiB
Plaintext
179 lines
2.9 KiB
Plaintext
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Microsoft YaHei';
|
|
font-size: 18px;
|
|
}
|
|
|
|
.layout {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: start;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.close {
|
|
width: 100%;
|
|
height: 60px;
|
|
justify-content: space-between;
|
|
padding: 0 1%;
|
|
}
|
|
|
|
.close p {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.status-p{
|
|
width: 100%;
|
|
height: 40px;
|
|
padding: 0 1%;
|
|
}
|
|
|
|
.content{
|
|
width: 100%;
|
|
height: calc(100% - 100px);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.model-title {
|
|
width: 100%;
|
|
height: 40px;
|
|
}
|
|
|
|
.model-title p:nth-child(1) {
|
|
width: 14px;
|
|
height: 8px;
|
|
border: 1px solid #2F82FB;
|
|
background-color: #2F82FB;
|
|
border-radius: 14px 14px 0 0;
|
|
-webkit-transform: rotate(90deg);
|
|
margin: 2px 0 0 -3px;
|
|
-webkit-border-radius: 14px 14px 0 0;
|
|
-moz-border-radius: 14px 14px 0 0;
|
|
-ms-border-radius: 14px 14px 0 0;
|
|
-o-border-radius: 14px 14px 0 0;
|
|
}
|
|
|
|
.model-title p:nth-child(2){
|
|
color: #262626;
|
|
font-size: 18px;
|
|
margin: 0 0 0 3px;
|
|
}
|
|
|
|
hr {
|
|
height: 0;
|
|
line-height: 0;
|
|
margin: 10px 0;
|
|
padding: 0;
|
|
border: none !important;
|
|
border-bottom: 1px solid #c0c4cc !important;
|
|
clear: both;
|
|
overflow: hidden;
|
|
background: 0 0;
|
|
}
|
|
|
|
.vio-content,.zg-content{
|
|
width: 100%;
|
|
min-height: 400px;
|
|
}
|
|
.basic-content{
|
|
width: 100%;
|
|
padding: 0 1%;
|
|
}
|
|
.content-p{
|
|
width: 33.333%;
|
|
font-size: 16px;
|
|
}
|
|
.content-p:nth-of-type(2),
|
|
.content-p:nth-of-type(3){
|
|
justify-content: start;
|
|
}
|
|
|
|
.content-textarea{
|
|
width: 100%;
|
|
padding: 0 1%;
|
|
margin-bottom: 20px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.content-textarea textarea{
|
|
width: 300px;
|
|
height: 80px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.supervision,.zg{
|
|
width: 100%;
|
|
padding: 0 1%;
|
|
}
|
|
|
|
.supervision p,.zg p{
|
|
width: 11%;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.supervision-img,.zg-img{
|
|
width: 89%;
|
|
}
|
|
|
|
.supervision-img img,.zg-img img{
|
|
width: 210px;
|
|
height: 150px;
|
|
margin: 0 5px 5px 0;
|
|
}
|
|
|
|
.zg{
|
|
margin: 20px 0 20px 0;
|
|
}
|
|
|
|
.check-p{
|
|
width: 100%;
|
|
padding: 0 1%;
|
|
font-size: 16px;
|
|
}
|
|
img {
|
|
image-rendering: -moz-crisp-edges;
|
|
/* Firefox */
|
|
image-rendering: -o-crisp-edges;
|
|
/* Opera */
|
|
image-rendering: -webkit-optimize-contrast;
|
|
/*Webkit (non-standard naming) */
|
|
image-rendering: crisp-edges;
|
|
-ms-interpolation-mode: nearest-neighbor;
|
|
/* IE (non-standard property) */
|
|
}
|
|
|
|
textarea{
|
|
font-family: "Alibaba PuHuiTi R";
|
|
}
|
|
|
|
/*滚动条样式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*/ |