123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .search_box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 60rpx;
- width: 100vw;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .searc {
- flex: 1;
- display: flex;
- align-items: center;
- height: 100%;
- opacity: 0.37;
- padding-left: 20rpx;
- }
- .box-flexd {
- position: absolute;
- top: 0;
- left: 0;
- }
- input {
- flex: 1;
- text-align: left;
- padding-left: 5rpx;
- }
- .clear {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 50rpx;
- height: 100%;
- line-height: 100%;
- z-index: 999;
- }
- .bot-but {
- display: flex;
- align-items: center;
- justify-content: center;
- position: fixed;
- height: 128rpx;
- width: 100vw;
- background: #FFFFFF;
- bottom: 0;
- box-shadow: 0px -4rpx 16rpx 0px rgba(0, 0, 0, 0.05);
- }
- .searc_but {
- width: 160rpx;
- height: 60rpx;
- line-height: 60rpx;
- text-align: center;
- background: #FFB600;
- box-shadow: 0px 6rpx 6rpx 0px rgba(0, 0, 0, 0.1);
- border-radius: 10rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- color: #FFFFFF;
- }
|