| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /* pages/trade/trade.wxss */
- .tab-view {
- position: sticky;
- top: 0px;
- z-index: 999;
- }
- .title-view {
- background-color: #f0f0f0;
- height: 35px;
- }
- .list-item {
- display: grid;
- }
- .title-view, .list-item-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .title-view text {
- font-size: 12px;
- color: #666;
- text-align: center;
- }
- .list-item-row {
- height: 45px;
- border-bottom: 1px solid #f0f0f0;
- text {
- font-size: 14px;
- color: #333;
- text-align: center;
- }
- }
- .list-item-btn {
- padding: 10px 0px;
- display: flex;
- justify-content: space-around;
- height: 30px;
- width: 430px;
- button {
- font-size: 12px;
- color: white;
- width: 80px;
- }
- .goods-info {
- background-color: rebeccapurple;
- }
-
- .listing-detail {
- background-color: goldenrod;
- }
- .delisting {
- background-color: seagreen;
- }
- .buy-ask {
- background-color: chocolate;
- }
- .favitore {
- background-color: blueviolet;
- }
- }
|