123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- page {
- background: #fff;
- height: 100%;
- }
- .search .wux-search-bar {
- /* background-color: transparent; */
- background-color: #FA7D22;
- }
- .search .wux-search-bar .wux-search-bar__form {
- height: 72rpx;
- box-sizing: border-box;
- overflow: hidden;
- background: rgba(255, 255, 255, 0.8);
- border-radius: 36rpx;
- border: 2rpx solid #FA7D22;
- }
- .search .wux-search-bar .wux-search-bar__label {
- background-color: transparent;
- }
- .search .wux-search-bar .wux-search-bar__input {
- height: 72rpx;
- line-height: 72rpx;
- margin-top: -2rpx;
- }
- .search .wux-search-bar .wux-search-bar__search {
- top: 22rpx;
- }
- .search .wux-search-bar .index--wux-search-bar__clear {
- top: 22rpx;
- }
- .tabs {
- /* padding: 30rpx; */
- }
- .tabs-bgc {
- padding: 30rpx;
- }
- .tabs-wrap {
- /* height: 96rpx; */
- /* background: #fff; */
- /* justify-content: space-around; */
- /* width: 100%; */
- white-space: nowrap;
- display: flex;
- /* overflow-x: auto; */
- }
- .tabs-wrap .item {
- /* width: 33.33%; */
- height: 100%;
- box-sizing: border-box;
- display: inline-block;
- font-size: 28rpx;
- color: #666666;
- position: relative;
- margin-right: 48rpx;
- }
- .tabs-wrap .item.active {
- font-size: 36rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- border-bottom: 4rpx solid #FA7D22;
- }
- /* 美丽秘籍瀑布流布局 */
- .main {
- display: flex;
- align-items: flex-start;
- background: linear-gradient(180deg, #FFFFFF 0%, #f7f8fa 100%);
- }
- .column {
- /* width: 50%; */
- }
- .column_item {
- margin-left: 30rpx;
- margin-top: 20rpx;
- }
- .column_pic {
- display: block;
- width: 330rpx;
- height: 330rpx;
- border-radius: 10px 10px 0 0;
- }
- .hide {
- display: none;
- }
- .main-content {
- height: 172rpx;
- width: 330rpx;
- background-color: #FFFFFF;
- border-radius: 0 0 10px 10px;
- padding: 20rpx;
- box-sizing: border-box;
- }
- .main-title {
- color: #222222;
- font-size: 28rpx;
- height: 80rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .main-bottom {
- margin-top: 20rpx;
- display: flex;
- justify-content: space-between;
- font-size: 24rpx;
- color: #666;
- }
|