| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- page {
- height: 100vh;
- overflow: hidden;
- }
- .list-box {
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin: 20rpx auto 0;
- padding: 30rpx 20rpx;
- .title {
- line-height: 38rpx;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 28rpx;
- color: #333333;
- }
- .row {
- line-height: 32rpx;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-size: 24rpx;
- color: #999999;
- margin-top: 10rpx;
- }
- }
- .iconfont {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- padding: 0 10rpx;
- }
- /* 未读 */
- .unread {
- width: 750rpx;
- height: 34rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin: 12rpx 0 -5rpx 0;
- }
- .footer {
- display: flex;
- justify-content: center;
- position: fixed;
- bottom: 0;
- width: 100vw;
- min-height: 130rpx;
- background-color: #fff;
- box-shadow: 0px -2px 6px 1px rgba(0, 0, 0, 0.16);
- .but {
- width: 690rpx;
- height: 90rpx;
- background: #FA8C16;
- border-radius: 16rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #FFFFFF;
- margin-top: 10rpx;
- }
- }
|