index.scss 847 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .box {
  2. width: 100vw;
  3. background-color: #ffffff;
  4. box-sizing: border-box;
  5. padding: 20rpx 0 0rpx 30rpx;
  6. .head {
  7. display: flex;
  8. .portrait {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. width: 96rpx;
  13. height: 96rpx;
  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. }
  28. .tag {
  29. margin-top: 16rpx;
  30. }
  31. }
  32. }
  33. }