学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
1.7 KiB

1 year ago
10 months ago
1 year ago
10 months ago
1 year ago
10 months ago
1 year ago
10 months ago
1 year ago
10 months ago
1 year ago
  1. .consultItem {
  2. width: 100%;
  3. .top_row {
  4. display: flex;
  5. width: 100%;
  6. height: 116rpx;
  7. border-bottom: 2rpx dashed #E8E9EC;
  8. justify-content: space-between;
  9. align-items: center;
  10. .tag {
  11. // width: 176rpx;
  12. height: 60rpx;
  13. background: rgba(233, 243, 230, 1.0);
  14. border-radius: 8rpx;
  15. text-align: center;
  16. font-size: 28rpx;
  17. color: #6cbc9f;
  18. margin-right: 24rpx;
  19. padding: 10rpx 18rpx;
  20. white-space: nowrap;
  21. &.yellow {
  22. color: #FA7919;
  23. background: rgba(250, 149, 25, 0.1);
  24. }
  25. }
  26. .schoolName {
  27. font-size: 28rpx;
  28. color: #333;
  29. margin-left: 20rpx;
  30. }
  31. .status {
  32. display: flex;
  33. align-items: center;
  34. white-space: nowrap;
  35. .text {
  36. font-size: 28rpx;
  37. color: $themC;
  38. }
  39. }
  40. }
  41. .target {
  42. border-bottom: 2rpx dashed #E8E9EC;
  43. }
  44. .row {
  45. display: flex;
  46. justify-content: space-between;
  47. padding: 24rpx 0;
  48. .leftLab {
  49. display: flex;
  50. align-items: center;
  51. .icon {
  52. width: 30rpx;
  53. height: 30rpx;
  54. }
  55. .lab {
  56. margin-left: 10rpx;
  57. font-size: 28rpx;
  58. color: #ADADAD;
  59. }
  60. }
  61. .name {
  62. font-size: 28rpx;
  63. color: #333;
  64. }
  65. }
  66. .border_bottom {
  67. border-top: 2rpx dashed #E8E9EC;
  68. padding: 10rpx 10rpx 16rpx 0;
  69. .dateBox {
  70. .date {
  71. font-size: 28rpx;
  72. color: #ADADAD;
  73. margin-bottom: 16rpx;
  74. }
  75. }
  76. .btnBg {
  77. width: 212rpx;
  78. margin: 30rpx auto;
  79. }
  80. }
  81. }
  82. .rows {
  83. display: flex;
  84. justify-content: space-between;
  85. padding: 16rpx 0;
  86. font-size: 28rpx;
  87. color: #ADADAD;
  88. .label {
  89. &.hui {
  90. color: #686B73;
  91. }
  92. }
  93. .value {
  94. &.blue {
  95. color: $themC;
  96. font-weight: 500;
  97. }
  98. }
  99. }