学员端小程序
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.

108 lines
1.5 KiB

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(250, 149, 25, 0.1);
  14. border-radius: 8rpx;
  15. text-align: center;
  16. font-size: 28rpx;
  17. color: #FA7919;
  18. margin-right: 24rpx;
  19. padding: 10rpx 18rpx;
  20. }
  21. .schoolName {
  22. font-size: 28rpx;
  23. color: #333;
  24. margin-left: 20rpx;
  25. }
  26. .status {
  27. display: flex;
  28. align-items: center;
  29. .text {
  30. font-size: 28rpx;
  31. color: $themC;
  32. }
  33. }
  34. }
  35. .target {
  36. border-bottom: 2rpx dashed #E8E9EC;
  37. }
  38. .row {
  39. display: flex;
  40. justify-content: space-between;
  41. padding: 24rpx 0;
  42. .leftLab {
  43. display: flex;
  44. align-items: center;
  45. .icon {
  46. width: 30rpx;
  47. height: 30rpx;
  48. }
  49. .lab {
  50. margin-left: 10rpx;
  51. font-size: 28rpx;
  52. color: #ADADAD;
  53. }
  54. }
  55. .name {
  56. font-size: 28rpx;
  57. color: #333;
  58. }
  59. }
  60. .border_bottom {
  61. border-top: 2rpx dashed #E8E9EC;
  62. padding: 10rpx 10rpx 16rpx 0;
  63. .dateBox {
  64. .date {
  65. font-size: 28rpx;
  66. color: #ADADAD;
  67. margin-bottom: 16rpx;
  68. }
  69. }
  70. .btnBg {
  71. width: 212rpx;
  72. margin: 30rpx auto;
  73. }
  74. }
  75. }
  76. .rows {
  77. display: flex;
  78. justify-content: space-between;
  79. padding: 16rpx 0;
  80. font-size: 28rpx;
  81. color: #ADADAD;
  82. .label {
  83. &.hui {
  84. color: #686B73;
  85. }
  86. }
  87. .value {
  88. &.blue {
  89. color: $themC;
  90. font-weight: 500;
  91. }
  92. }
  93. }