index.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .item-box {
  2. width: 750rpx;
  3. height: 130rpx;
  4. background: #FFFFFF;
  5. padding: 20rpx 30rpx 0 30rpx;
  6. box-sizing: border-box;
  7. .item {
  8. display: flex;
  9. align-items: center;
  10. width: 100%;
  11. height: 100%;
  12. box-sizing: border-box;
  13. border-bottom: 2rpx solid #ddd;
  14. padding-bottom: 20rpx;
  15. .head-portrait {
  16. width: 64rpx;
  17. height: 64rpx;
  18. line-height: 64rpx;
  19. background: #3874F6;
  20. border-radius: 50%;
  21. text-align: center;
  22. font-size: 24rpx;
  23. color: #FFFFFF;
  24. margin-right: 30rpx;
  25. }
  26. .content {
  27. .name {
  28. height: 42rpx;
  29. line-height: 42rpx;
  30. font-size: 30rpx;
  31. font-family: PingFang SC, PingFang SC;
  32. color: #333333;
  33. text {
  34. font-size: 24rpx;
  35. font-family: PingFang SC, PingFang SC;
  36. color: #666666;
  37. margin-left: 20rpx;
  38. }
  39. }
  40. .tag-box {
  41. display: flex;
  42. height: 40rpx;
  43. margin-top: 8rpx;
  44. overflow: hidden;
  45. .tag {
  46. height: 40rpx;
  47. background: #FAAB16;
  48. border-radius: 20rpx;
  49. padding: 6rpx 10rpx;
  50. box-sizing: border-box;
  51. font-size: 20rpx;
  52. color: #FFFFFF;
  53. margin-right: 10rpx;
  54. }
  55. .tag:last-child {
  56. margin-right: 0;
  57. }
  58. }
  59. }
  60. }
  61. }
  62. .total {
  63. height: 64rpx;
  64. line-height: 64rpx;
  65. font-size: 24rpx;
  66. font-family: PingFang SC-Regular, PingFang SC;
  67. color: #666666;
  68. background: #F4F5F7;
  69. padding-left: 30rpx;
  70. }