| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* pages/search/search.wxss */
- .container {
- display: flex;
- flex-direction: column;
- width: 100%;
- }
- .tab-view {
- position: sticky;
- top: 0;
- z-index: 999;
- }
- .cell-view {
- display: flex;
- border-bottom: 1px solid #f0f0f0;
- align-items: center;
- margin: 0px 10px;
- text {
- width: 90px;
- text-align: left;
- color: #333;
- font-size: 26rpx;
- }
- view {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- width: 100%;
- button {
- margin: 5px;
- height: 36px;
- color: #333;
- width: 21.3%;
- }
- }
- button {
- color: #000;
- font-size: 24rpx;
- }
- }
- .totalweight view, .weight view, .ctweight view {
- flex-wrap: nowrap;
- text-align: center;
- }
- .shape, .color {
- height: 150px;
- }
- .neatness, .certificate {
- height: 100px;
- }
- .qiegong, .duicheng, .polishing, .yingguang, .warehouse, .currency, .weight, .totalweight, .ctweight, .product {
- height: 60px;
- }
- .buttom_view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-top: 20px;
- button {
- width: 45%;
- color: white;
- }
- button:nth-child(1) {
- background-color: red;
- }
-
- button:nth-child(2) {
- background-color: purple;
- }
- }
- num-range {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: row;
- align-items: center;
- align-content: center;
- }
|