1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/yuezhan/search/index.wxss */
- .container{
- background: #fff;
- }
- .search-wrapper{
- display: flex;
- height: 100%;
- border: 1px solid #888888;
- padding-left: 30rpx;
- border-radius: 15rpx;
- align-items: center;
- }
- .hot-search{
- margin-top: 14rpx;
- }
- .hot-search-title-txt{
- font-size: 34rpx;
- font-weight: bold;
- }
- .hot-tag{
- display: flex;
- flex-wrap: wrap;
- margin-top: 33rpx;
- }
- .hot-tag-item{
- text-align: center;
- font-size: 28rpx;
- background: #EEEEEE;
- color: #575757;
- border-radius: 15rpx;
- padding: 10rpx 15rpx;
- margin:0 30rpx 33rpx 0;
- }
|