123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .search{
- padding: 20rpx;
- display: flex;
- justify-content: space-between;
- background: #ffffff;
- }
- .search input,.searchButton{
- height: 60rpx;
- border-radius: 10rpx;
- text-align: center;
- font-size: 28rpx;
- }
- .search input{
- background:#F4F4F4;
- width: 600rpx;
- }
- .searchButton{
- width:100rpx;
- background:linear-gradient(90deg,#ff7439,#ff261f);
- line-height: 60rpx;
- color: #ffffff;
- }
- .searchRecommend{
- padding: 20rpx;
- }
- .searchList{
- border-bottom: 2rpx solid #F4F4F4;
- font-size: 30rpx;
- color: #333;
- }
- .searchList text{
- line-height: 60rpx;
- }
- .searchcion{
- margin-right: 20rpx;
- vertical-align: middle;
- }
- .hotSearchKeys {
- width: 100%;
- display: flex;
- flex-flow: wrap;
- margin: 0 20rpx 0 20rpx;
- }
- .searchKey,.seartActive {
- padding: 0 20rpx;
- border-radius: 20rpx;
- line-height: 40rpx;
- border: 2rpx solid #eeeeee;
- margin: 10rpx;
- font-size: 24rpx;
- color: #333;
- }
- /* 回到顶部 */
- .goTop{
- width: 80rpx;
- height: 80rpx;
- position: fixed;
- z-index: 9;
- bottom: 120rpx;
- right: 20rpx;
- }
- .hot{
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333;
- margin: 8rpx 22rpx;
- }
- .seartActive{
- color: #FF1E00;
- }
|