You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
279 lines
4.6 KiB
279 lines
4.6 KiB
2 years ago
|
.recordsboxadmin {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.search {
|
||
|
box-sizing: border-box;
|
||
|
padding: 0 36px;
|
||
|
width: 100%;
|
||
|
min-height: 32px;
|
||
|
margin-bottom: 4px;
|
||
|
|
||
|
form {
|
||
|
width: 100%;
|
||
|
min-height: 32px;
|
||
|
display: flex;
|
||
|
justify-content: flex-start;
|
||
|
flex-wrap: wrap;
|
||
|
|
||
|
.searchParams,
|
||
|
.btn {
|
||
|
margin: 0 3px;
|
||
|
margin-bottom: 12px;
|
||
|
}
|
||
|
|
||
|
.searchParams {
|
||
|
// flex: 5;
|
||
|
margin-bottom: 12px;
|
||
|
width: 150px;
|
||
|
}
|
||
|
|
||
|
.searchParamsLong {
|
||
|
width: 250px;
|
||
|
margin-bottom: 12px;
|
||
|
}
|
||
|
|
||
|
.searchParams2 {
|
||
|
width: 220px;
|
||
|
margin-bottom: 12px;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
// flex: 1;
|
||
|
}
|
||
|
|
||
|
nz-select {
|
||
|
color: rgba(145, 204, 255, 0.95);
|
||
|
}
|
||
|
|
||
|
nz-tree-select {
|
||
|
color: rgba(145, 204, 255, 0.95);
|
||
|
}
|
||
|
|
||
|
nz-range-picker {
|
||
|
background-color: rgba(0, 0, 0, 0);
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
flex: 1;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
overflow: hidden;
|
||
|
|
||
|
.title {
|
||
|
width: 100%;
|
||
|
height: 64px;
|
||
|
box-sizing: border-box;
|
||
|
padding: 0 28px;
|
||
|
margin: 13px 0;
|
||
|
position: relative;
|
||
|
|
||
|
.titlebox {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
img {
|
||
|
width: 65px;
|
||
|
height: 65px;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
flex: 1;
|
||
|
height: 48px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
// background-image: linear-gradient(to right, #002147, #033565, #064e8e, #064e8e, #033565, #002147);
|
||
|
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.32) 50%, rgba(35, 153, 255, 0) 100%);
|
||
|
|
||
|
.contentitem {
|
||
|
width: 100%;
|
||
|
height: 32px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
// background-image: linear-gradient(to right, #002147, #0f5ca0, #1c88e6, #1c88e6, #0f5ca0, #002147);
|
||
|
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.8) 50%, rgba(35, 153, 255, 0) 100%);
|
||
|
|
||
|
span {
|
||
|
margin-left: 10px;
|
||
|
color: #bce0ff;
|
||
|
font-size: 20px;
|
||
|
font-family: titlefont;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
span:nth-child(1) {
|
||
|
margin-left: 12px;
|
||
|
}
|
||
|
|
||
|
.grey {
|
||
|
color: #68829F;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.packup {
|
||
|
position: absolute;
|
||
|
right: 33px;
|
||
|
top: 16px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.tablebox {
|
||
|
flex: 1;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
overflow: hidden;
|
||
|
box-sizing: border-box;
|
||
|
padding: 0 38px;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
// 适配125%
|
||
|
@media screen and (max-height: 750px) {
|
||
|
.search {
|
||
|
box-sizing: border-box;
|
||
|
padding: 0 30px;
|
||
|
height: 32px;
|
||
|
margin-bottom: 12px;
|
||
|
|
||
|
form {
|
||
|
width: 100%;
|
||
|
height: 32px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
flex: 1;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
overflow: hidden;
|
||
|
|
||
|
.title {
|
||
|
height: 42px;
|
||
|
padding: 0 20px;
|
||
|
margin: 8px 0;
|
||
|
|
||
|
.titlebox {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
img {
|
||
|
width: 46px;
|
||
|
height: 46px;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
height: 36px;
|
||
|
|
||
|
.contentitem {
|
||
|
width: 100%;
|
||
|
height: 25px;
|
||
|
|
||
|
span {
|
||
|
margin-left: 6px;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
span:nth-child(1) {
|
||
|
margin-left: 8px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.packup {
|
||
|
position: absolute;
|
||
|
right: 33px;
|
||
|
top: 4px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 适配150%
|
||
|
@media screen and (max-height: 600px) {
|
||
|
.search {
|
||
|
box-sizing: border-box;
|
||
|
padding: 0 22px;
|
||
|
height: 32px;
|
||
|
margin-bottom: 6px;
|
||
|
|
||
|
form {
|
||
|
width: 100%;
|
||
|
height: 32px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
.title {
|
||
|
height: 36px;
|
||
|
padding: 0 20px;
|
||
|
margin: 3px 0;
|
||
|
|
||
|
.titlebox {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
img {
|
||
|
width: 36px;
|
||
|
height: 36px;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
height: 30px;
|
||
|
|
||
|
.contentitem {
|
||
|
width: 100%;
|
||
|
height: 22px;
|
||
|
|
||
|
span {
|
||
|
margin-left: 6px;
|
||
|
font-size: 13px;
|
||
|
}
|
||
|
|
||
|
span:nth-child(1) {
|
||
|
margin-left: 12px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.packup {
|
||
|
position: absolute;
|
||
|
right: 33px;
|
||
|
top: 2px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|