123456789101112131415161718192021222324252627 |
- .noticeBox .notice {
- padding: 30rpx 20rpx;
- box-sizing: border-box;
- }
- .noticeBox .notice .date {
- width: 285rpx;
- padding: 6rpx 0rpx;
- margin: 0rpx auto;
- background-color: #D2DAE7;
- border-radius: 30rpx;
- text-align: center;
- }
- .noticeBox .notice .content {
- margin-top: 24rpx;
- padding: 28rpx 22rpx;
- border-radius: 20rpx;
- background: #FFFFFF;
- font-size: 32rpx;
- }
- .noticeBox .notice .content .title {
- font-weight: bold;
- margin-bottom: 20rpx;
- }
- .noticeBox .notice .content .row {
- line-height: 48rpx;
- margin-bottom: 10rpx;
- }
|