| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* 搜索框 */
- .search {
- position: fixed;
- z-index: 2;
- height: 110rpx;
- width: 100%;
- padding: 0 30rpx 20rpx;
- top: 0;
- left: 0;
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .search_box {
- width: 100%;
- margin-top: 10rpx;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- position: relative;
- z-index: 10;
- }
- .search_input_none {
- width: 690rpx;
- height: 74rpx;
- border-radius: 50px;
- font-size: 28rpx;
- color: #333 !important;
- background: #f2f2f2;
- padding-left: 65rpx;
- text-align: center;
- }
- .search_input {
- width: 570rpx;
- height: 80rpx;
- border-radius: 50px;
- font-size: 28rpx;
- color: #333 !important;
- background: #F1F1F6;
- margin-right: 24rpx;
- padding-left: 65rpx;
- padding-right: 85rpx;
- }
- .search_icon {
- width: 26rpx;
- height: 26rpx;
- position: absolute;
- top: 33%;
- left: 36%;
- }
- .search_icon_none {
- left: 20rpx;
- }
- .remove_icon {
- width: 36rpx;
- height: 36rpx;
- position: absolute;
- top: 28%;
- right: 158rpx;
- z-index: 50;
- }
- .search_btn {
- display: inline-block;
- width: 100rpx;
- line-height: 56rpx;
- text-align: center;
- font-size: 30rpx;
- font-family: PingFang SC;
- margin-bottom: 28rpx;
- }
- .search_confirm {
- width: 0;
- height: 68rpx;
- border-radius: 50px;
- line-height: 68rpx;
- text-align: center;
- transition: all 0.3s;
- font-size: 0;
- }
- .search_confirm_active {
- width: 128rpx;
- font-size: 28rpx;
- }
|