index.scss 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .box {
  2. width: 100vw;
  3. background-color: #ffffff;
  4. box-sizing: border-box;
  5. padding: 20rpx 0 20rpx 30rpx;
  6. .head {
  7. display: flex;
  8. .portrait {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. width: 80rpx;
  13. height: 80rpx;
  14. background: #3874F6;
  15. border-radius: 50%;
  16. font-size: 28rpx;
  17. font-family: PingFang SC-Regular, PingFang SC;
  18. color: #FFFFFF;
  19. margin-right: 20rpx;
  20. flex-shrink: 0;
  21. }
  22. .content {
  23. .title {
  24. font-size: 30rpx;
  25. font-family: PingFang SC-Regular, PingFang SC;
  26. color: #333333;
  27. text {
  28. font-size: 24rpx;
  29. font-family: PingFang SC-Regular, PingFang SC;
  30. color: #999999;
  31. margin-left: 20rpx;
  32. }
  33. }
  34. .time {
  35. font-size: 24rpx;
  36. font-family: PingFang SC-Regular, PingFang SC;
  37. color: #999999;
  38. margin-top: 8rpx;
  39. }
  40. }
  41. }
  42. .main {
  43. margin-top: 34rpx;
  44. padding-bottom: 20rpx;
  45. border-bottom: 1px solid #ddd;
  46. padding-right: 30rpx;
  47. box-sizing: border-box;
  48. .title {
  49. font-size: 24rpx;
  50. font-family: PingFang SC-Regular, PingFang SC;
  51. color: #999999;
  52. }
  53. .content {
  54. font-size: 28rpx;
  55. font-family: PingFang SC-Regular, PingFang SC;
  56. color: #666666;
  57. margin-top: 20rpx;
  58. word-break: break-all;
  59. }
  60. }
  61. .bottom {
  62. display: flex;
  63. >view {
  64. flex: 1;
  65. .label {
  66. font-size: 24rpx;
  67. font-family: PingFang SC-Regular, PingFang SC;
  68. color: #999999;
  69. margin-top: 20rpx;
  70. }
  71. .con {
  72. font-size: 28rpx;
  73. font-family: PingFang SC-Regular, PingFang SC;
  74. color: #333333;
  75. margin-top: 10rpx;
  76. .iconfont {
  77. margin-left: 20rpx;
  78. color: #FA8C16;
  79. }
  80. }
  81. }
  82. }
  83. }