123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /* pages/tabber/news/index.wxss */
- page {
- width: 750rpx;
- min-height: 100vh;
- background: #F4F4F4;
- }
- .nav {
- position: fixed;
- left: 0;
- top: 0;
- }
- .topBox {
- padding: 24rpx 30rpx;
- background: #FFFFFF;
- }
- .topBox .input {
- width: 524rpx;
- height: 80rpx;
- background: #F6F6F6;
- border-radius: 8rpx;
- padding: 0 30rpx;
- }
- .topBox .input .icon {
- font-size: 24rpx;
- color: #666666;
- width: 110rpx;
- position: relative;
- }
- .topBox .input .icon::after {
- content: '';
- position: absolute;
- right: 0;
- top: 50%;
- transform: translate(-50%, 0%);
- width: 0;
- height: 0;
- display: block;
- border-top: 10rpx solid #9B9B9B;
- border-bottom: 10rpx solid transparent;
- border-left: 10rpx solid transparent;
- border-right: 10rpx solid transparent;
- }
- .topBox .btn {
- width: 136rpx;
- height: 68rpx;
- line-height: 68rpx;
- background: #52A1FF;
- border-radius: 8rpx;
- }
- .menu {
- background-color: #FFFFFF;
- }
- .menu .box {
- width: 250rpx;
- height: 88rpx;
- background: #FFFFFF;
- font-size: 28rpx;
- color: #333333;
- }
- .list {
- padding: 24rpx 32rpx;
- }
- .list .item {
- width: 686rpx;
- height: 274rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- padding: 32rpx 24rpx;
- }
- .list .item .top .le {
- font-size: 28rpx;
- font-weight: 500;
- color: #333333;
- }
- .list .item .top .lr {
- font-size: 24rpx;
- color: #999999;
- }
- .list .item .time {
- font-size: 26rpx;
- color: #666666;
- }
- .list .item .contioner .box {
- width: 196rpx;
- height: 116rpx;
- background: #F8F8F8;
- border-radius: 8rpx;
- flex-direction: column;
- }
- .list .item .contioner .box .num {
- font-size: 28rpx;
- font-weight: 500;
- color: #333333;
- }
- .list .item .contioner .box .tips {
- font-size: 24rpx;
- color: #999999;
- }
|