123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /*每个页面公共css */
- .commons-title {
- font-weight: bold;
- font-size: 32rpx;
- color: #333;
- line-height: 60rpx;
- }
- .commons-line-box {
- height: 1px;
- background: #dcdcdc;
- }
- .commons-no-data {
- height: 80rpx;
- line-height: 80rpx;
- font-size: 24rpx;
- text-align: center;
- }
- .color-bl {
- color: #007AFF;
- }
- .color-red {
- color: red;
- }
- .text-center {
- text-align: center;
- }
- .commons-title {
- margin: 30rpx 0;
- padding: 0 40rpx;
- display: flex;
- justify-content: space-between;
- position: relative;
- }
- .commons-title::before{
- content:"";
- display: block;
- height: 30rpx;
- width: 4rpx;
- position: absolute;
- left: 20rpx;
- top: 18rpx;
- background-color: #007AFF;
- }
- .warehousingDtl,.total{
- padding-bottom: 200rpx;
- }
- .uni-table-td,.uni-table-th{
- position: relative;
- }
- .uni-table-td .pa-bg,.uni-table-th .pa-bg{
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- padding: 16rpx 20rpx;
- align-items: center;
- background-color: #edf8ff;
-
-
-
- }
- .uni-table-td .pa-bg-2,.uni-table-th .pa-bg-2{
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- padding: 16rpx 20rpx;
- align-items: center;
- background-color: #e5e9ff;
- }
- .uni-table-td .pa-bg-3,.uni-table-th .pa-bg-3{
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- padding: 16rpx 20rpx;
- align-items: center;
-
- }
|