| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- /* pages/voyageManage/myBills/myLab.wxss */
- page {
- background: #fff;
- }
- .df {
- display: flex;
- }
- .jcsb {
- justify-content: space-between;
- }
- .jcc {
- justify-content: center;
- }
- .jcfe {
- justify-content: flex-end;
- }
- .jcsa {
- justify-content: space-around;
- }
- .aic {
- align-items: center;
- }
- .search {
- border: 1rpx solid grey;
- width: 80%;
- background: #fff;
- }
- .tabs {
- width: 100%;
- height: 100rpx;
- background: #fff;
- box-shadow: rgb(209, 206, 206) 5rpx 5rpx 10rpx;
- border-bottom: 2rpx solid grey;
- }
- .tabsview {
- width: 130rpx;
- height: 50rpx;
- font-size: 28rpx;
- text-align: center;
- color: #333;
- }
- .line {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 30rpx;
- color: #333;
- }
- .line-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 45%;
- }
- .line-full-item {
- width: 100%;
- display: flex;
- align-items: center;
- }
- .line-full-title {
- width: 25%;
- }
- .line-title,
- .line-text {
- width: 50%;
- }
- .line-title,
- .line-full-title {
- color: #444;
- }
- .type2 .line-full-title {
- width: 50%;
- }
- .ship-discharge-list>view:first-child {
- font-size: 26rpx;
- }
- .ship-discharge-list>view>view {
- width: 160rpx;
- text-align: center;
- color: #444;
- }
- .truck-load-list>view:first-child {
- font-size: 26rpx;
- }
- .truck-load-list>view>view {
- width: 160rpx;
- text-align: center;
- color: #444;
- }
- .bottom-text {
- text-align: center;
- padding-top: 30rpx;
- padding-bottom: 50rpx;
- font-size: 22rpx;
- color: #777;
- }
- .port-btns {
- width: 180rpx !important;
- height: 70rpx;
- line-height: 70rpx;
- text-align: center;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- border: 1rpx solid grey;
- display: inline-block;
- }
- .current-port-btn {
- color: #fff;
- background: #008ebd;
- border: none;
- }
- .voyage-btn {
- height: 70rpx;
- line-height: 70rpx;
- border-radius: 10rpx;
- padding: 0 30rpx;
- margin-right: 20rpx;
- color: #fff;
- font-size: 30rpx;
- }
- .line {
- width: 80%;
- margin: 30rpx auto;
- font-size: 28rpx;
- position: relative;
- }
- .next {
- text-align: center;
- color: #fff;
- background: #0094FE;
- border-radius: 10rpx;
- margin: 20rpx auto;
- height: 70rpx;
- line-height: 70rpx;
- border-radius: 10rpx;
- padding: 0 30rpx;
- font-size: 30rpx;
- }
- .delete {
- position: absolute;
- right: 10rpx;
- top: 14rpx;
- width: 52rpx;
- height: 52rpx;
- z-index: 5;
- }
- .mask {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 5;
- }
- .mask>view {
- width: 80vw;
- height: 35vw;
- border-radius: 3vw;
- box-shadow: 2rpx 2rpx 10rpx 1rpx rgb(175, 172, 172);
- position: fixed;
- bottom: 400rpx;
- left: 10vw;
- background: #fff;
- }
- picker,
- .d-input {
- border: 1rpx solid grey;
- padding: 0rpx 10rpx;
- }
- .upload {
- width: 60%;
- height: 100rpx;
- text-align: center;
- line-height: 100rpx;
- border: 1px solid grey;
- margin: 3vw auto;
- }
- .upload-bill-visable {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: #fff;
- }
- .col-1 {
- width: 29vw;
- }
- .col-2 {
- width: 29vw;
- }
- .col-3 {
- width: 15vw;
- }
- .col-4 {
- width: 15vw;
- }
- .list {
- padding: 20rpx;
- font-size: 28rpx;
- }
|