exam-card.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. @import '/miniprogram_npm/@vant/weapp/common/index.wxss';
  2. .card {
  3. background: #FFFFFF;
  4. box-shadow: 0 6rpx 24rpx 0 rgba(0, 0, 0, 0.1);
  5. border-radius: 20rpx;
  6. margin: 25rpx;
  7. }
  8. .top {
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: space-between;
  12. align-items: center;
  13. }
  14. .space {
  15. flex: 1;
  16. }
  17. .tag {
  18. font-size: 24rpx;
  19. font-weight: 400;
  20. border-radius: 20rpx;
  21. width: 104rpx;
  22. height: 40rpx;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. margin-right: 20rpx;
  27. }
  28. .tag-start {
  29. border: 1rpx solid #FF4330;
  30. color: #FF4330;
  31. }
  32. .tag-end {
  33. border: 1px solid #D2D2D2;
  34. color: #999999;
  35. }
  36. .line {
  37. padding: 0 24rpx;
  38. }
  39. .content {
  40. padding: 10rpx 24rpx 30rpx 30rpx;
  41. }
  42. .title {
  43. font-size: 24rpx;
  44. font-weight: 400;
  45. display: flex;
  46. margin-top: 15rpx;
  47. align-items: center;
  48. }
  49. .key {
  50. color: #0B0B0B;
  51. }
  52. .key-bold {
  53. font-weight: bold;
  54. }
  55. .txt {
  56. width: 550rpx;
  57. }
  58. .unit {
  59. color: #0B0B0B;
  60. margin-left: 10rpx;
  61. }
  62. .value {
  63. color: #FF4330;
  64. font-weight: bold;
  65. }
  66. .half {
  67. flex: 1;
  68. display: flex;
  69. flex-direction: row;
  70. align-items: center;
  71. }
  72. .flex-bw {
  73. justify-content: space-between;
  74. }
  75. .time {
  76. font-size: 24rpx;
  77. font-weight: 400;
  78. color: #999999;
  79. }
  80. .btn {
  81. font-size: 20rpx;
  82. font-weight: 400;
  83. width: 120rpx;
  84. height: 48rpx;
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. }
  89. .btn-end {
  90. opacity: 0.4;
  91. }