287 lines
4.5 KiB
CSS
287 lines
4.5 KiB
CSS
#search-app input {
|
|
width: 200px;
|
|
height: 30px;
|
|
border-radius: 20px;
|
|
border: none;
|
|
padding: 2px 0 2px 32px;
|
|
}
|
|
|
|
#search-app img {
|
|
width: 20px !important;
|
|
height: 20px !important;
|
|
position: absolute;
|
|
top: 20%;
|
|
}
|
|
|
|
#backMge {
|
|
background-color: #335F95;
|
|
padding: 7px 25px 7px 13px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
#system-index, #iframe-box {
|
|
width: 100%;
|
|
height: calc(100vh - 60px);
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Microsoft YaHei';
|
|
background-color: #F2F3F5;
|
|
position: fixed;
|
|
top: 6%;
|
|
}
|
|
|
|
.layout {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layui-panel {
|
|
color: #000 !important;
|
|
}
|
|
|
|
#content-box {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 10px 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
box-sizing: border-box;
|
|
font-family: "Alibaba PuHuiTi R";
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.child-box {
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#left {
|
|
width: 60%;
|
|
}
|
|
|
|
#right {
|
|
width: 38%;
|
|
}
|
|
|
|
.layui-panel-title {
|
|
height: 60px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 20px;
|
|
border-bottom: 1px solid #d5d5d5;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layui-panel-title p:nth-of-type(2) {
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
color: #104482;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.layui-panel-box {
|
|
width: 100%;
|
|
height: calc(100% - 60px);
|
|
}
|
|
|
|
/*左侧*/
|
|
#left-top {
|
|
width: 100%;
|
|
height: 40%;
|
|
}
|
|
|
|
#left-bottom {
|
|
width: 100%;
|
|
height: 58%;
|
|
}
|
|
|
|
/*左侧快捷应用*/
|
|
#quick-system {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
overflow-y: auto;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
max-height: calc(100% - 60px);
|
|
}
|
|
|
|
.quick-system-box,
|
|
#add-quick {
|
|
width: 18%;
|
|
height: 32%;
|
|
margin: 1%;
|
|
justify-content: space-evenly;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#add-quick {
|
|
padding: 0 4%;
|
|
}
|
|
|
|
.quick-system-box p {
|
|
padding: 5px 0;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.no-app {
|
|
width: 100%;
|
|
height: calc(100% - 60px);
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 20px;
|
|
}
|
|
|
|
/*左侧全部应用*/
|
|
#all-system {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
overflow-y: auto;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
max-height: calc(100% - 60px);
|
|
}
|
|
|
|
.system-box {
|
|
width: 23%;
|
|
height: 30%;
|
|
margin: 2% 1%;
|
|
flex-direction: row;
|
|
justify-content: start;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.system-box p {
|
|
padding: 0 0 0 10px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
/*右侧*/
|
|
#right-top {
|
|
width: 100%;
|
|
height: 40%;
|
|
}
|
|
|
|
#right-bottom {
|
|
width: 100%;
|
|
height: 58%;
|
|
}
|
|
|
|
/*右侧统一待办*/
|
|
#dealWith-ul {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 1% 2%;
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#dealWith-ul li {
|
|
width: 100%;
|
|
height: 70px;
|
|
flex-direction: row;
|
|
font-size: 16px;
|
|
border-bottom: 1px solid #d5d5d5;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dealWith-img {
|
|
width: 10%;
|
|
}
|
|
|
|
.dealWith-content {
|
|
width: 83%;
|
|
height: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.dealWith-arrow {
|
|
width: 7%;
|
|
}
|
|
|
|
.dealWith-content div {
|
|
width: 100%;
|
|
height: 45%;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: inherit;
|
|
}
|
|
|
|
.dealWith-content div:nth-of-type(1) p:nth-of-type(2) {
|
|
color: #48AB48;
|
|
}
|
|
|
|
.dealWith-content div:nth-of-type(2) {
|
|
color: #666768;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.dealWith-content div span {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
/*右侧通知公告*/
|
|
#notice-ul {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 1% 2%;
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#notice-ul li {
|
|
width: 100%;
|
|
height: 70px;
|
|
flex-direction: row;
|
|
font-size: 16px;
|
|
border-bottom: 1px solid #d5d5d5;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.notice-img {
|
|
width: 7%;
|
|
}
|
|
|
|
.notice-content {
|
|
width: 63%;
|
|
}
|
|
|
|
.notice-time {
|
|
width: 30%;
|
|
color: #a09d9d;
|
|
}
|
|
|
|
.admin-header-user i {
|
|
color: #fff !important;
|
|
}
|
|
|
|
/*滚动条样式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;
|
|
} |