1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* pages/order_search/order_search.wxss */
- /* .search-table{
- width: 100%;
- border: 1rpx solid;
- } */
- page {
- background: #eff0f5;
- }
- .search-box {
- padding-top: 10rpx;
- padding-bottom: 10rpx;
- width: 100%;
- background-color: #ffffff;
- }
- .search-top {
- width: 700rpx;
- height: 80rpx;
- border: 1px solid #e1e1e1;
- border-radius: 50rpx;
- margin: 3%;
- }
- .search-ipt {
- width: 474rpx;
- height: 80rpx;
- border: none;
- float: left;
- font-size: 29rpx;
- /* 去掉获取焦点的蓝边 */
- outline: none;
- /* text-indent: 20rpx; */
- padding-left: 30rpx;
- }
- .search-btn {
- border-radius: 50rpx;
- width: 151rpx;
- height: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- float: right;
- background: #ff8e0b;
- color: #fff;
- font-size: 29rpx;
- }
- .item-box {
- width: 100%;
- background-color: #ffffff;
- box-sizing: border-box;
- padding: 20rpx;
- border-radius: 20rpx;
- margin-bottom: 30rpx;
- }
- .item-btn {
- background-color: #ff8e0b;
- font-size: 20rpx;
- color: #fff8f3;
- height: 60rpx;
- margin-bottom: 20rpx;
- }
- .mini-btn {
- background-color: #ff8e0b;
- font-size: 10rpx;
- color: #fff8f3;
- margin-left: 20rpx;
- float: right;
- }
- .card1 {
- display: flex;
- justify-content: space-between;
- color: #696969;
- }
- .card2 {
- display: flex;
- justify-content: space-between;
- color: #696969;
- margin-bottom: -10rpx;
- }
|