123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- .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;
- }
- }
- }
- }
- }
- .msg-box {
- width: 690rpx;
- background-color: #fff;
- margin: 20rpx auto;
- border-radius: 16rpx;
- box-sizing: border-box;
- padding-bottom: 10rpx;
- >.title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx 30rpx;
- border-bottom: 1px solid #999;
- font-weight: 600;
- margin-bottom: 10rpx;
- text {
- font-weight: normal;
- font-size: 24rpx;
- color: #999;
- }
- }
- .msg-mian {
- padding: 18rpx 30rpx;
- .name {
- font-size: 26rpx;
- color: #000;
- text {
- margin-left: 10rpx;
- font-size: 20rpx;
- color: #999;
- font-weight: normal;
- }
- }
- .message{
- margin-top: 10rpx;
- font-size: 24rpx;
- }
- }
- }
|