123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- page {
- height: 100vw;
- overflow: hidden;
- }
- .switch {
- display: flex;
- align-items: center;
- height: 90rpx;
- width: 650rpx;
- box-sizing: border-box;
- padding-right: 30rpx;
- justify-content: flex-end;
- background: #ffffff;
- }
- .sheet-header {
- display: flex;
- align-items: center;
- width: 750rpx;
- height: 120rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- image {
- width: 58rpx;
- height: 58rpx;
- margin-right: 20rpx;
- }
- .line-1 {
- width: 100%;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- }
- .option {
- display: flex;
- align-items: center;
- width: 750rpx;
- height: 90rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- color: #333333;
- .icon {
- font-size: 40rpx;
- margin-right: 20rpx;
- margin-top: -2rpx;
- }
- .star {
- color: #FADB14;
- }
- }
- /* 未读 */
- .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;
- }
|