12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .search-container .nav {
- height: 100%;
- background: #fff;
- width: 100%;
- display: flex;
- align-items: center;
- }
- .search-container .nav .nav-back {
- padding-left: 10rpx;
- }
- .search-container .nav .nav-search {
- flex: 1;
- width: 0;
- border: 1px solid #d9d9d9;
- line-height: 1;
- padding-left: 30rpx;
- margin: 0 20rpx;
- box-sizing: border-box;
- margin-bottom: 4rpx;
- font-weight: 200;
- height: 64rpx;
- border-radius: 64rpx;
- line-height: 60rpx;
- }
- .search-container .nav .wx-operation {
- margin-right: 8px;
- margin-bottom: 4rpx;
- }
- .search-container .search-tag {
- background: #fff;
- padding: 30rpx 0 0 30rpx;
- }
- .search-container .search-tag .tag-title {
- font-size: 24rpx;
- font-weight: bold;
- color: #434343;
- margin-bottom: 20rpx;
- }
- .search-container .search-tag .tag-list {
- display: flex;
- flex-wrap: wrap;
- }
- .search-container .search-tag .tag-item {
- background: #f2f2f2;
- padding: 10rpx 20rpx;
- color: #434343;
- font-weight: 300;
- margin-right: 30rpx;
- margin-bottom: 30rpx;
- font-size: 24rpx;
- border-radius: 8rpx;
- }
|