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