score-card.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. @import '/miniprogram_npm/@vant/weapp/common/index.wxss';
  2. .container {
  3. position: relative;
  4. margin: 25rpx 0;
  5. padding: 0 20rpx;
  6. }
  7. .card {
  8. height: 133rpx;
  9. margin: 0 0 0 55rpx;
  10. padding: 25rpx 0 25rpx 180rpx;
  11. display: flex;
  12. flex-direction: column;
  13. justify-content: space-between;
  14. }
  15. .card-img {
  16. position: absolute;
  17. left: 20rpx;
  18. top: 15rpx;
  19. }
  20. .card-title {
  21. width: 350rpx;
  22. font-size: 26rpx;
  23. font-weight: 600;
  24. color: #333333;
  25. }
  26. .ivlist_title {
  27. display: flex;
  28. align-items: center;
  29. justify-content: start;
  30. }
  31. .ivlist_subt {
  32. font-size: 19rpx;
  33. color: #989898;
  34. display: flex;
  35. align-items: center;
  36. justify-content: start;
  37. margin-top: 10rpx;
  38. }
  39. .sub-value {
  40. flex: 1;
  41. font-size: 19rpx;
  42. color: #666;
  43. }
  44. .sub-value2 {
  45. flex: 1;
  46. font-size: 22rpx;
  47. color: #FF4330;
  48. }
  49. .btn {
  50. width: 136rpx;
  51. height: 40rpx;
  52. box-shadow: 0 0 10rpx 0 rgba(255, 82, 61, 0.4);
  53. font-size: 24rpx;
  54. font-weight: 400;
  55. }
  56. .btn2 {
  57. width: 136rpx;
  58. height: 40rpx;
  59. display: flex;
  60. justify-content: center;
  61. align-items: center;
  62. border-radius: 20rpx;
  63. font-size: 24rpx;
  64. line-height: 24rpx;
  65. font-weight: 400;
  66. color: #FFFFFF;
  67. background: #E5E5E5;
  68. box-shadow: 0 0 10rpx 0 rgba(174, 174, 174, 0.4);
  69. }