approval-item.module.less 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .itemWrap {
  2. padding: 12px 15px 15px;
  3. border-radius: 10px;
  4. background-color: #fff;
  5. margin: 0 13px 12px;
  6. .itemWrapTop {
  7. display: flex;
  8. flex-direction: row;
  9. align-items: center;
  10. justify-content: space-between;
  11. padding-bottom: 12px;
  12. border-bottom: 1px solid #f2f2f2;
  13. .itemWrapTopLeft {
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. .clockWrap {
  18. width: 18px;
  19. height: 18px;
  20. margin-right: 6px;
  21. img {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. }
  26. .leftTimer {
  27. font-size: 14px;
  28. font-weight: 500;
  29. color: #333333;
  30. line-height: 20px;
  31. }
  32. }
  33. .itemWrapTopRight {
  34. font-size: 12px;
  35. color: #777;
  36. }
  37. }
  38. .itemWrapBottom {
  39. padding-top: 15px;
  40. .courseInfo {
  41. display: flex;
  42. flex-direction: row;
  43. align-items: center;
  44. padding-bottom: 15px;
  45. .headImgs {
  46. width: 42px;
  47. height: 42px;
  48. border-radius: 50%;
  49. overflow: hidden;
  50. margin-right: 12px;
  51. }
  52. .infoMsg {
  53. .infoMsgMain {
  54. font-size: 16px;
  55. font-weight: 600;
  56. color: #333333;
  57. line-height: 22px;
  58. }
  59. .infoMsgSub {
  60. font-size: 12px;
  61. font-weight: 400;
  62. color: #777777;
  63. line-height: 17px;
  64. }
  65. }
  66. }
  67. }
  68. }