| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- .search {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 80rpx;
- padding-left: 20rpx;
- padding-right: 20rpx;
- left: 0rpx;
- right: 0rpx;
- }
- .search-inside {
- border-radius: 20rpx;
- }
- .search-input {
- font-size: 30rpx;
- }
- .cancel-button {
- height: 80rpx;
- width: 100rpx;
- line-height: 80rpx;
- font-size: 30rpx;
- text-align: center;
- opacity: 0;
- }
- .hot-tag-block {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- width: 100%;
- margin-top: 10rpx;
- }
- .hot-tag-title {
- font-size: 30rpx;
- margin-top: 10rpx;
- margin-left: 40rpx;
- }
- .hot-tags {
- margin: 10rpx 40rpx;
- }
- .hot-tag {
- font-size: 24rpx;
- display: inline-block;
- margin-bottom: 10rpx;
- margin: 10rpx 10rpx;
- }
- .hot-bar-block {
- background-color: #ffffff;
- border-radius: 24rpx;
- margin: 60rpx 40rpx 0rpx 40rpx;
- box-shadow: 5rpx 5rpx 8rpx 0rpx rgba(0, 0, 0, 0.16);
- padding-bottom: 10rpx;
- }
- .hot-bar-title {
- font-size: 30rpx;
- border-radius: 24rpx;
- position: relative;
- top: -25rpx;
- margin: 20rpx 20rpx 0rpx 20rpx;
- padding: 8rpx 30rpx 8rpx 30rpx;
- box-shadow: 5rpx 5rpx 8rpx 0rpx rgba(0, 0, 0, 0.16);
- }
- .hot-bar {
- height: 50rpx;
- margin: 10rpx 40rpx;
- font-size: 24rpx;
- display: flex;
- justify-content: space-between;
- }
- .hot-block {
- position: absolute;
- top: 80rpx;
- bottom: 0rpx;
- width: 100%;
- }
- .search-block {
- position: absolute;
- top: 80rpx;
- bottom: 0rpx;
- width: 100%;
- opacity: 0;
- }
- .result-bar {
- padding: 15rpx 20rpx;
- border-style: solid;
- border-width: 1rpx;
- border-color: #F0F0F0;
- }
- .search-history {
- display: flex;
- justify-content: space-between;
- font-size: 35rpx;
- padding: 25rpx 40rpx;
- }
- .more {
- width: 30rpx;
- height: 30rpx;
- }
|