12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .grld {
- width: 100vw;
- background-color: #fff;
- box-sizing: border-box;
- padding-top: 30rpx;
- .group {
- margin-bottom: 30rpx;
- .label {
- height: 36rpx;
- font-size: 30rpx;
- font-family: AppleSystemUIFont-Bold, AppleSystemUIFont;
- font-weight: bold;
- color: #333333;
- margin-bottom: 10rpx;
- text {
- margin: 0 20rpx 0 30rpx;
- }
- }
- .main {
- display: flex;
- flex-wrap: wrap;
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx 0;
- width: 20%;
- border-radius: 16rpx;
- .icon-box {
- width: 80rpx;
- border-radius: 16rpx;
- line-height: 80rpx;
- text-align: center;
- text {
- font-size: 40rpx;
- }
- }
- .name {
- width: 80%;
- line-height: 30rpx;
- font-size: 24rpx;
- font-family: AppleSystemUIFont-Regular, AppleSystemUIFont;
- color: #333333;
- margin-top: 16rpx;
- text-align: center;
- }
- }
- }
- }
- /* 最新通告和最新消息使用 */
- .newest {
- .label {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .route {
- font-weight: normal;
- font-size: 26rpx;
- }
- }
- .annunciate {
- font-size: 28rpx;
- padding: 10rpx 30rpx;
- padding-left: 50rpx;
- color: rgb(82, 80, 80);
- }
- }
- }
- .msg-mian {
- padding: 10rpx 30rpx;
- .name {
- text {
- font-weight: normal;
- font-size: 24rpx;
- color: #999;
- margin-left: 10rpx;
- }
- }
- .message {
- margin-top: 8rpx;
- }
- }
|