| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /* 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;
- }
- .content {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- width: 100%;
- align-content: center;
- button {
- margin: 5px;
- height: 35px;
- color: #333;
- width: 21.3%;
- border-radius: 5px;
- }
- /* 选中时添加这个 样式 */
- .active {
- background: #dae9fd;
- }
-
- /* 三角形 */
- .active::before {
- content: '';
- display: inline-block;
- position: absolute;
- right: 0;
- bottom: 0;
- width: 0;
- height: 0;
- border-bottom: 15px solid rebeccapurple;
- border-left: 14px solid transparent;
- }
- }
- 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;
- }
- .warehouse {
- button {
- border: 1rpx solid #f0f0f0;
- }
- }
- .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;
- }
|