message.wxss 743 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @charset "UTF-8";
  2. /* 需要放到文件最上面 */
  3. /* 水平间距 */
  4. /* 水平间距 */
  5. /*
  6. 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
  7. */
  8. /* 水平间距 */
  9. .message-index {
  10. padding-top: 20rpx;
  11. }
  12. .message-index .message-item {
  13. display: flex;
  14. align-items: center;
  15. padding: 20rpx 30rpx;
  16. background: #ffffff;
  17. }
  18. .message-index .message-icon {
  19. background: #55bc9c;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. width: 100rpx;
  24. height: 100rpx;
  25. border-radius: 20rpx;
  26. margin-right: 20rpx;
  27. }
  28. .message-index .message-title {
  29. font-size: 32rpx;
  30. font-weight: 500;
  31. }
  32. .message-index .message-sub-label {
  33. color: #c7c7c7;
  34. font-size: 24rpx;
  35. margin-top: 10rpx;
  36. }