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

247 lines
4.3 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 {
2023-03-24 17:18:00 +08:00
width: calc(100% - 30px);
2023-03-22 18:57:35 +08:00
background-color: #fff;
2023-03-24 17:18:00 +08:00
margin: 15px auto;
border-radius: 12px;
padding-bottom: 15px;
2023-03-22 14:32:30 +08:00
}
.search-wrap{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
2023-03-24 17:18:00 +08:00
padding: 0 15px;
2023-03-22 14:32:30 +08:00
}
.search-item{
display: flex;
justify-content: space-between;
width: 48%;
2023-03-24 17:18:00 +08:00
margin-top: 15px;
2023-03-22 14:32:30 +08:00
}
2023-03-29 11:26:08 +08:00
.search-item-btns {
justify-content: flex-end;
}
2023-03-22 14:32:30 +08:00
.search-label{
2023-03-30 15:03:58 +08:00
width: 80px;
2023-03-24 17:18:00 +08:00
height: 35px;
font-size: 16px;
line-height: 35px;
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 {
2023-03-24 17:18:00 +08:00
width: calc(100% - 100px);
height: 35px;
line-height: 35px;
2023-03-22 16:18:48 +08:00
}
2023-03-22 14:32:30 +08:00
.search-input{
2023-03-24 17:18:00 +08:00
width: calc(100% - 10px);
height: 35px;
line-height: 35px;
font-size: 14px;
2023-03-22 14:32:30 +08:00
color: #606266;
border: 1px solid #d1d1d1;
2023-03-24 17:18:00 +08:00
border-radius: 4px;
text-indent: 10px;
2023-03-22 14:32:30 +08:00
}
2023-03-23 11:22:29 +08:00
.search-input-l {
width: 100%;
2023-03-24 17:18:00 +08:00
height: 35px;
line-height: 35px;
font-size: 14px;
2023-03-23 11:22:29 +08:00
color: #606266;
border: 1px solid #d1d1d1;
2023-03-24 17:18:00 +08:00
border-radius: 4px;
text-indent: 10px;
2023-03-29 11:26:08 +08:00
}
.search-input-l .uni-input-input {
2023-03-24 17:18:00 +08:00
padding-right: 10px;
2023-03-23 11:22:29 +08:00
}
2023-03-29 11:26:08 +08:00
.search-input-l .uni-input-input:disabled {
background-color: #e1e1e1;
}
2023-03-22 14:32:30 +08:00
.confirm-button-wrap{
display: flex;
justify-content: flex-end;
width: 100%;
2023-03-24 17:18:00 +08:00
height: 35px;
line-height: 35px;
margin-top: 15px;
padding: 0 15px;
2023-03-22 14:32:30 +08:00
}
.confirm-button{
2023-03-24 17:18:00 +08:00
margin-left: 15px !important;
2023-03-22 14:32:30 +08:00
margin-right: 0 !important;
background-color: #D7592F;
color: #fff;
2023-03-24 17:18:00 +08:00
line-height: 35px;
2023-03-22 14:32:30 +08:00
}
2023-03-29 11:26:08 +08:00
.confirm-button_disabled {
background-color: #c9c9c9;
}
2023-03-22 14:32:30 +08:00
.grid-wrap{
width: 100%;
2023-03-24 17:18:00 +08:00
height: calc(100% - 187px); /** 42+ 15*5+ 35*2 */
padding: 0 15px 15px 15px;
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{
2023-03-24 17:18:00 +08:00
font-size: 15px;
2023-04-12 20:07:02 +08:00
line-height: 18px;
padding: 5px 5px;
2023-03-22 14:32:30 +08:00
background-color: #e1e1e1;
}
.grid-table thead tr th:first-child{
2023-03-24 17:18:00 +08:00
border-top-left-radius: 12px;
2023-03-22 14:32:30 +08:00
}
.grid-table thead tr th:last-child{
2023-03-24 17:18:00 +08:00
border-top-right-radius: 12px;
2023-03-22 14:32:30 +08:00
}
.grid-table th, .grid-table td {
color: #464646;
background-color: #fff;
2023-03-24 17:18:00 +08:00
border-right: 1px solid #e1e1e1;
border-bottom: 1px solid #e1e1e1;
2023-03-22 14:32:30 +08:00
}
.grid-table th:first-child, .grid-table td:first-child{
2023-03-24 17:18:00 +08:00
border-left: 1px solid #e1e1e1;
2023-03-22 14:32:30 +08:00
}
.grid-table td {
2023-04-12 20:07:02 +08:00
/* height: 35px; */
line-height: 18px;
2023-03-24 17:18:00 +08:00
font-size: 15px;
2023-04-12 20:07:02 +08:00
padding: 5px 5px;
2023-03-23 11:08:31 +08:00
}
.status-wrap {
2023-03-29 11:26:08 +08:00
width: 100%;
2023-03-24 17:18:00 +08:00
height: 35px;
2023-03-23 11:08:31 +08:00
display: flex;
align-items: center;
2023-03-29 11:26:08 +08:00
margin-bottom: 15px;
2023-03-23 11:08:31 +08:00
}
.status-item {
display: flex;
align-items: center;
2023-03-24 17:18:00 +08:00
margin-left: 10px;
2023-03-23 11:08:31 +08:00
}
.status-icon {
2023-03-24 17:18:00 +08:00
width: 20px;
height: 20px;
border-radius: 4px;
margin-right: 10px;
2023-03-23 11:08:31 +08:00
}
.status-txt {
2023-03-24 17:18:00 +08:00
font-size: 16px;
line-height: 35px;
2023-03-23 11:08:31 +08:00
color: #323232;
}
.bg-gray {
background-color: #c9c9c9;
}
.bg-green {
background-color: #6CBE8B;
}
.bg-yellow {
background-color: #E9B451;
}
.bg-red {
background-color: #ff6a00;
}
2023-03-30 10:45:00 +08:00
.bg-none {
display: none;
}
2023-03-23 11:08:31 +08:00
.material-wrap {
2023-03-24 17:18:00 +08:00
width: calc(100% - 30px);
2023-03-28 08:47:03 +08:00
height: calc(100% - 152px);/** 42+15*5+35 */
2023-03-24 17:18:00 +08:00
margin: 15px auto;
padding: 15px 15px 0 15px;
2023-03-23 11:08:31 +08:00
background-color: #fff;
2023-03-24 17:18:00 +08:00
border-radius: 12px;
2023-03-23 11:08:31 +08:00
}
2023-03-29 11:26:08 +08:00
.material-item-wrap {
width: 100%;
height: calc(100% - 50px);
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-content: flex-start;
align-items: flex-start;
overflow-y: auto;
}
2023-03-23 11:08:31 +08:00
.material-item {
width: 8.2%;
margin-right: 2%;
2023-03-24 17:18:00 +08:00
margin-bottom: 15px;
padding: 5px;
border-radius: 12px;
2023-03-23 11:08:31 +08:00
}
.material-item:nth-child(10n) {
margin-right: 0;
}
.material-title {
2023-03-24 17:18:00 +08:00
font-size: 16px;
line-height: 35px;
height: 35px;
2023-03-23 11:08:31 +08:00
text-align: center;
color: #fff;
overflow: hidden;
}
.material-spec {
2023-03-24 17:18:00 +08:00
font-size: 16px;
line-height: 26px;
height: 52px;
2023-03-23 11:08:31 +08:00
text-align: center;
color: #fff;
overflow: hidden;
2023-04-12 20:07:02 +08:00
}
.icon_unchecked {
color: #fff;
width: 24px;
height: 24px;
background-color: #fff;
font-size: 20px;
line-height: 24px;
text-align: center;
border: 1px solid #bbb;
}
.icon_checked {
color: #ff6a00;
border: 1px solid #ff6a00;
}
.bgr{
border-color: #ff6a00;
2023-03-21 10:52:37 +08:00
}