238 lines
4.3 KiB
CSS
238 lines
4.3 KiB
CSS
|
|
body, html {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
float: left;
|
||
|
|
background-color: #F0F2F5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
height: 100px;
|
||
|
|
background-color: #ffffff;
|
||
|
|
margin-bottom: 14px;
|
||
|
|
height: 16.4%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title > div {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title > div:nth-child(1) {
|
||
|
|
margin-left: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#planName {
|
||
|
|
color: #666666;
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: 800;
|
||
|
|
margin-left: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#subComName {
|
||
|
|
margin-left: 20px;
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title > div:nth-child(2) {
|
||
|
|
margin-right: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.overview {
|
||
|
|
display: flex;
|
||
|
|
/*justify-content: center;*/
|
||
|
|
align-items: center;
|
||
|
|
background-color: #ffffff;
|
||
|
|
border-radius: 10px;
|
||
|
|
padding: 15px 0 15px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.overview > div:nth-child(1),
|
||
|
|
.overview > div:nth-child(3),
|
||
|
|
.overview > div:nth-child(5) {
|
||
|
|
width: 158px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.planAuditStatus1,
|
||
|
|
.planAuditStatus2,
|
||
|
|
.planAuditStatus3 {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.chargePersonIcon1,
|
||
|
|
.chargePersonIcon2,
|
||
|
|
.chargePersonIcon3 {
|
||
|
|
margin-top: 10px;
|
||
|
|
width: 45px;
|
||
|
|
height: 45px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.chargePerson1,
|
||
|
|
.chargePerson2,
|
||
|
|
.chargePerson3 {
|
||
|
|
margin-top: 10px;
|
||
|
|
color: #666666;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.planStatus1,
|
||
|
|
.planStatus2,
|
||
|
|
.planStatus3 {
|
||
|
|
margin-top: 15px;
|
||
|
|
color: #999999;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.comAuditLine {
|
||
|
|
width: 200px;
|
||
|
|
text-align: center;
|
||
|
|
border-bottom: 4px solid #19BE6B;
|
||
|
|
padding-bottom: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.totalAuditLine {
|
||
|
|
width: 200px;
|
||
|
|
text-align: center;
|
||
|
|
border-bottom: 4px solid #409EFF;
|
||
|
|
padding-bottom: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar {
|
||
|
|
width: 10px;
|
||
|
|
height: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 滚动槽 */
|
||
|
|
|
||
|
|
::-webkit-scrollbar-track {
|
||
|
|
-webkit-box-shadow: inset 0 0 5px #e8eceb;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 滚动条滑块 */
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb {
|
||
|
|
border-radius: 10px;
|
||
|
|
background: #ffffff;
|
||
|
|
-webkit-box-shadow: inset 0 0 6px #cbb7b7;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb:window-inactive {
|
||
|
|
background: #e8eceb;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-corner {
|
||
|
|
background-color: #e8eceb;
|
||
|
|
/ / 颜色
|
||
|
|
}
|
||
|
|
|
||
|
|
.planAuditStatus1 {
|
||
|
|
color: #ffffff;
|
||
|
|
height: 30px;
|
||
|
|
padding-top: 5px;
|
||
|
|
background: url(../../../img/dialog_blue.png) no-repeat;
|
||
|
|
background-size: 60% 100%;
|
||
|
|
background-position: center;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.planAuditStatus2 {
|
||
|
|
color: #ffffff;
|
||
|
|
height: 30px;
|
||
|
|
padding-top: 5px;
|
||
|
|
background: url(../../../img/dialog_green.png) no-repeat;
|
||
|
|
background-size: 60% 100%;
|
||
|
|
background-position: center;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.planAuditStatus3 {
|
||
|
|
color: #ffffff;
|
||
|
|
height: 30px;
|
||
|
|
padding-top: 5px;
|
||
|
|
background: url(../../../img/dialog_grey.png) no-repeat;
|
||
|
|
background-size: 60% 100%;
|
||
|
|
background-position: center;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.planAuditStatus4 {
|
||
|
|
color: #ffffff;
|
||
|
|
height: 30px;
|
||
|
|
padding-top: 5px;
|
||
|
|
background: url(../../../img/dialog_pink.png) no-repeat;
|
||
|
|
background-size: 60% 100%;
|
||
|
|
background-position: center;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.planAuditStatusGreen {
|
||
|
|
color: #ffffff;
|
||
|
|
height: 30px;
|
||
|
|
padding-top: 5px;
|
||
|
|
background: url(../../../img/dialog_green.png) no-repeat;
|
||
|
|
background-size: 60% 100%;
|
||
|
|
background-position: center;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.planAuditStatusBlue {
|
||
|
|
color: #ffffff;
|
||
|
|
height: 30px;
|
||
|
|
padding-top: 5px;
|
||
|
|
background: url(../../../img/dialog_blue.png) no-repeat;
|
||
|
|
background-size: 60% 100%;
|
||
|
|
background-position: center;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.planAuditStatusPink {
|
||
|
|
color: #ffffff;
|
||
|
|
height: 30px;
|
||
|
|
padding-top: 5px;
|
||
|
|
background: url(../../../img/dialog_pink.png) no-repeat;
|
||
|
|
background-size: 60% 100%;
|
||
|
|
background-position: center;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.grey{
|
||
|
|
background-color: #F0F2F5 !important;
|
||
|
|
height: 57px;
|
||
|
|
}
|
||
|
|
.grey>th{
|
||
|
|
color: #666666;
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
.white{
|
||
|
|
background-color: #ffffff !important;
|
||
|
|
height: 57px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.borders>th{
|
||
|
|
border-width:0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.borders>td{
|
||
|
|
border-width:0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-btn{
|
||
|
|
background-color: transparent !important;
|
||
|
|
color: #409EFF !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 自定义 CSS 规则 */
|
||
|
|
.layui-table tbody .layui-table-even > td {
|
||
|
|
background-color: #f2f2f2; /* 更改背景颜色 */
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-timeline-axis{
|
||
|
|
color: #94C9FF;
|
||
|
|
font-weight: bolder;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-timeline-title{
|
||
|
|
color: #999999 !important;
|
||
|
|
font-size: 14px !important;
|
||
|
|
}
|