index.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .grld {
  2. width: 100vw;
  3. background-color: #fff;
  4. box-sizing: border-box;
  5. padding-top: 30rpx;
  6. .group {
  7. margin-bottom: 30rpx;
  8. .label {
  9. height: 36rpx;
  10. font-size: 30rpx;
  11. font-family: AppleSystemUIFont-Bold, AppleSystemUIFont;
  12. font-weight: bold;
  13. color: #333333;
  14. margin-bottom: 10rpx;
  15. text {
  16. margin: 0 20rpx 0 30rpx;
  17. }
  18. }
  19. .main {
  20. display: flex;
  21. flex-wrap: wrap;
  22. .item {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. padding: 20rpx 0;
  27. width: 20%;
  28. border-radius: 16rpx;
  29. .icon-box {
  30. width: 80rpx;
  31. border-radius: 16rpx;
  32. line-height: 80rpx;
  33. text-align: center;
  34. text {
  35. font-size: 40rpx;
  36. }
  37. }
  38. .name {
  39. width: 80%;
  40. line-height: 30rpx;
  41. font-size: 24rpx;
  42. font-family: AppleSystemUIFont-Regular, AppleSystemUIFont;
  43. color: #333333;
  44. margin-top: 16rpx;
  45. text-align: center;
  46. }
  47. }
  48. }
  49. }
  50. }
  51. .msg-box {
  52. width: 690rpx;
  53. background-color: #fff;
  54. margin: 20rpx auto;
  55. border-radius: 16rpx;
  56. box-sizing: border-box;
  57. padding-bottom: 10rpx;
  58. >.title {
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. padding: 20rpx 30rpx;
  63. border-bottom: 1px solid #999;
  64. font-weight: 600;
  65. margin-bottom: 10rpx;
  66. text {
  67. font-weight: normal;
  68. font-size: 24rpx;
  69. color: #999;
  70. }
  71. }
  72. .msg-mian {
  73. padding: 18rpx 30rpx;
  74. .name {
  75. font-size: 26rpx;
  76. color: #000;
  77. text {
  78. margin-left: 10rpx;
  79. font-size: 20rpx;
  80. color: #999;
  81. font-weight: normal;
  82. }
  83. }
  84. .message{
  85. margin-top: 10rpx;
  86. font-size: 24rpx;
  87. }
  88. }
  89. }