| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* mMine/pages/myorders/myorders.wxss */
- .title-view {
- background-color: #f0f0f0;
- }
- .title-view, .order-list-item-row {
- padding: 12px 0px;
- display: flex;
- justify-content: space-around;
- align-items: center;
- border-bottom: 1px solid #f0f0f0;
- }
- .order-list-item {
- display: grid;
- }
- .order-list-item-btn {
- padding: 7.5px 0px;
- display: flex;
- justify-content: end;
- width: 190px;
- position: relative;
- right: -235px;
- height: 30px;
- button {
- font-size: 12px;
- color: white;
- width: 80px;
- }
- .goods-detail {
- background-color: rebeccapurple;
- }
- .listing-detail {
- background-color: yellowgreen;
- }
- }
- .title-view text {
- font-size: 12px;
- color: #666;
- text-align: center;
- border-right: 1px solid #f0f0f0;
- }
- .order-list-item text {
- font-size: 14px;
- color: #333;
- text-align: center;
- border-right: 1px solid #f0f0f0;
- }
|