Files
pad-hl-hcx-new/common/style/layout.css

210 lines
3.8 KiB
CSS
Raw Normal View History

2023-03-21 10:52:37 +08:00
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;
}
2023-03-22 14:32:30 +08:00
.content{
width: 100%;
height: 100%;
2023-03-22 18:57:35 +08:00
background-color: #f5f5f5;
}
.search-confirm-wrap {
width: calc(100% - 60rpx);
background-color: #fff;
margin: 30rpx auto;
border-radius: 12rpx;
padding-bottom: 30rpx;
2023-03-22 14:32:30 +08:00
}
.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;
2023-03-23 11:08:31 +08:00
height: 86rpx;
2023-03-22 14:32:30 +08:00
font-size: 32rpx;
2023-03-23 11:08:31 +08:00
line-height: 86rpx;
2023-03-22 14:32:30 +08:00
color: #323232;
text-align: justify;
text-align-last: justify;
}
.search-label::after {
display: inline-block;
content: '';
width: 100%;
height: 0;
visibility: hidden;
}
2023-03-22 16:18:48 +08:00
.filter_input_wraper {
width: calc(100% - 200rpx);
height: 86rpx;
line-height: 86rpx;
}
.uni-select {
font-size: 32rpx !important;
height: 86rpx !important;
}
.uni-select__input-placeholder {
font-size: 32rpx !important;
}
2023-03-22 14:32:30 +08:00
.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%;
2023-03-23 11:08:31 +08:00
height: calc(100% - 410rpx); /** 88+ 30*5+ 86*2 */
2023-03-22 18:57:35 +08:00
padding: 0 30rpx 30rpx 30rpx;
2023-03-22 14:32:30 +08:00
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;
2023-03-23 11:08:31 +08:00
}
.status-wrap {
width: 48%;
height: 86rpx;
padding: 0 30rpx;
display: flex;
justify-content: flex-end;
align-items: center;
margin-top: 30rpx;
}
.status-item {
display: flex;
align-items: center;
margin-left: 20rpx;
}
.status-icon {
width: 40rpx;
height: 40rpx;
border-radius: 4rpx;
margin-right: 10rpx;
}
.status-txt {
font-size: 32rpx;
line-height: 86rpx;
color: #323232;
}
.bg-gray {
background-color: #c9c9c9;
}
.bg-green {
background-color: #6CBE8B;
}
.bg-yellow {
background-color: #E9B451;
}
.bg-red {
background-color: #ff6a00;
}
.material-wrap {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-content: flex-start;
align-items: flex-start;
width: calc(100% - 60rpx);
height: calc(100% - 324rpx);/** 88+30*4+86 */
margin: 30rpx auto;
padding: 30rpx 30rpx 0 30rpx;
overflow-y: auto;
background-color: #fff;
border-radius: 12rpx;
}
.material-item {
width: 8.2%;
margin-right: 2%;
margin-bottom: 30rpx;
padding: 15rpx 15rpx;
border-radius: 12rpx;
}
.material-item:nth-child(10n) {
margin-right: 0;
}
.material-title {
font-size: 32rpx;
line-height: 45rpx;
height: 45rpx;
text-align: center;
color: #fff;
overflow: hidden;
}
.material-spec {
font-size: 32rpx;
line-height: 45rpx;
height: 90rpx;
text-align: center;
color: #fff;
overflow: hidden;
2023-03-21 10:52:37 +08:00
}