170 lines
3.2 KiB
CSS
170 lines
3.2 KiB
CSS
page {
|
|
background-color: #f6f6f6 !important;
|
|
min-height: 100% !important;
|
|
height: 100% !important;
|
|
}
|
|
uni-page-body {
|
|
background-color: #f6f6f6 !important;
|
|
min-height: 100% !important;
|
|
height: 100% !important;
|
|
}
|
|
uni-button:after {
|
|
border: none;
|
|
}
|
|
/** iconfont */
|
|
@font-face {
|
|
font-family: 'iconfont';
|
|
src: url('@/static/iconfont/iconfont.woff2') format('woff2'),
|
|
url('@/static/iconfont/iconfont.woff') format('woff'),
|
|
url('@/static/iconfont/iconfont.ttf') format('truetype');
|
|
}
|
|
.iconfont {
|
|
font-family: "iconfont" !important;
|
|
font-style: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
.delete_icon {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
font-size: 40rpx;
|
|
line-height: 40rpx;
|
|
color: #bbb;
|
|
}
|
|
.delete_icon::after {
|
|
content: '\e632';
|
|
}
|
|
.eye_colse_icon {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
font-size: 40rpx;
|
|
line-height: 40rpx;
|
|
color: #bbb;
|
|
}
|
|
.eye_colse_icon::after {
|
|
content: '\e7b2';
|
|
}
|
|
.eye_open_icon {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
font-size: 40rpx;
|
|
line-height: 40rpx;
|
|
color: #bbb;
|
|
}
|
|
.eye_open_icon::after {
|
|
content: '\e7b2';
|
|
}
|
|
.scan_icon {
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
font-size: 70rpx;
|
|
line-height: 80rpx;
|
|
color: #D7592F;
|
|
}
|
|
.scan_icon::after {
|
|
content: '\e607';
|
|
}
|
|
|
|
.content{
|
|
/* display: flex; */
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #fff;/*
|
|
justify-content: space-between;
|
|
align-items: flex-start; */
|
|
}
|
|
.search-wrap{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding: 0 30rpx;
|
|
}
|
|
.search-item{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 48%;
|
|
margin-top: 30rpx;
|
|
}
|
|
.search-label{
|
|
width: 160rpx;
|
|
height: 90rpx;
|
|
font-size: 32rpx;
|
|
line-height: 90rpx;
|
|
color: #323232;
|
|
text-align: justify;
|
|
text-align-last: justify;
|
|
}
|
|
.search-label::after {
|
|
display: inline-block;
|
|
content: '';
|
|
width: 100%;
|
|
height: 0;
|
|
visibility: hidden;
|
|
}
|
|
.search-input{
|
|
width: calc(100% - 200rpx);
|
|
height: 86rpx;
|
|
line-height: 86rpx;
|
|
font-size: 32rpx;
|
|
color: #606266;
|
|
border: 1px solid #d1d1d1;
|
|
border-radius: 8rpx;
|
|
text-indent: 40rpx;
|
|
}
|
|
.confirm-button-wrap{
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
height: 86rpx;
|
|
line-height: 86rpx;
|
|
margin-top: 30rpx;
|
|
padding: 0 30rpx;
|
|
}
|
|
.confirm-button{
|
|
margin-left: 30rpx !important;
|
|
margin-right: 0 !important;
|
|
background-color: #D7592F;
|
|
color: #fff;
|
|
line-height: 86rpx;
|
|
}
|
|
.grid-wrap{
|
|
width: 100%;
|
|
height: calc(100% - 324rpx); /** 88+ 30+ 90 + 30+ 86*/
|
|
padding: 30rpx;
|
|
overflow-y: scroll;
|
|
}
|
|
.grid-table{
|
|
width: 100%;
|
|
border-collapse: separate;
|
|
border-spacing: 0;
|
|
border: 1px #e1e1e1;
|
|
text-align: center;
|
|
}
|
|
.grid-table thead tr th{
|
|
font-size: 26rpx;
|
|
line-height: 86rpx;
|
|
padding: 0 10rpx;
|
|
background-color: #e1e1e1;
|
|
}
|
|
.grid-table thead tr th:first-child{
|
|
border-top-left-radius: 12rpx;
|
|
}
|
|
.grid-table thead tr th:last-child{
|
|
border-top-right-radius: 12rpx;
|
|
}
|
|
.grid-table th, .grid-table td {
|
|
color: #464646;
|
|
background-color: #fff;
|
|
border-right: 2rpx solid #e1e1e1;
|
|
border-bottom: 2rpx solid #e1e1e1;
|
|
}
|
|
.grid-table th:first-child, .grid-table td:first-child{
|
|
border-left: 2rpx solid #e1e1e1;
|
|
}
|
|
.grid-table td {
|
|
height: 88rpx;
|
|
line-height: 44rpx;
|
|
font-size: 24rpx;
|
|
padding: 0 10rpx;
|
|
} |