| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* pages/search/index.wxss */
- .header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 70rpx;
- font-size: 28rpx;
- padding-left: 35rpx;
- box-sizing: border-box;
- }
- .icon-search {
- flex: 0 0 auto;
- }
- .cancel {
- padding-left: 30rpx;
- padding-right: 30rpx;
- color: #222;
- }
- .header .search {
- display: flex;
- flex-grow: 1;
- align-items: center;
- height: 60rpx;
- background: #eee;
- border-radius: 30rpx;
- line-height: 60rpx;
- font-size: 24rpx;
- padding-left: 10rpx;
- color: #999;
- box-sizing: border-box;
- }
- .search .i_search {
- width: 24rpx;
- height: 27rpx;
- display: flex;
- align-items: center;
- margin-left: 26rpx;
- }
- .search .i_search image {
- width: 100%;
- height: 100%;
- }
- .search .search-input {
- flex-grow: 1;
- color: #333;
- margin-left: 13rpx;
- }
- /* 搜索历史 */
- .topic {
- padding: 0 30rpx;
- color: #333;
- font-size: 28rpx;
- margin-top: 60rpx;
- box-sizing: border-box;
- }
- .topic .topic-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 80rpx;
- }
- .topic-header .history-title {
- font-family: SourceHanSansCN-Normal;
- font-weight: 400;
- color: rgba(34, 34, 34, 1);
- font-size: 32rpx;
- }
- .topic-header image {
- width: 23rpx;
- height: 31rpx;
- }
- .record {
- display: inline-block;
- height: 65rpx;
- line-height: 65rpx;
- text-align: center;
- padding: 0 20rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- font-size: 26rpx;
- color: #222;
- background-color: #eee;
- border-radius: 6rpx;
- }
|