index.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. page {
  2. background-color: #f5f5f5;
  3. }
  4. .coupon-card-wrap {
  5. background-color: #fff;
  6. padding: 32rpx 32rpx 1rpx;
  7. }
  8. .desc-wrap {
  9. margin-top: 24rpx;
  10. }
  11. .desc-wrap .button-wrap {
  12. margin: 50rpx 32rpx 0;
  13. }
  14. .desc-group-wrap .t-class-cell {
  15. align-items: flex-start;
  16. }
  17. .desc-group-wrap .t-class-title {
  18. font-size: 26rpx;
  19. width: 140rpx;
  20. flex: none;
  21. color: #888;
  22. }
  23. .desc-group-wrap .t-class-note {
  24. font-size: 26rpx;
  25. word-break: break-all;
  26. white-space: pre-line;
  27. justify-content: flex-start;
  28. color: #333;
  29. width: 440rpx;
  30. }
  31. .desc-group-wrap {
  32. border-radius: 8rpx;
  33. overflow: hidden;
  34. --cell-label-font-size: 26rpx;
  35. --cell-label-line-height: 36rpx;
  36. --cell-label-color: #999;
  37. }
  38. .desc-group-wrap.in-popup {
  39. border-radius: 0;
  40. overflow: auto;
  41. max-height: 828rpx;
  42. }
  43. .desc-group-wrap .wr-cell__title {
  44. color: #333;
  45. font-size: 28rpx;
  46. }
  47. /* .desc-group-wrap .max-width-cell {
  48. overflow: hidden;
  49. } */
  50. /* .desc-group-wrap .signal-line-label {
  51. word-break: keep-all;
  52. white-space: nowrap;
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. }
  56. .desc-group-wrap .multi-line-label {
  57. word-break: break-all;
  58. white-space: pre-line;
  59. } */
  60. .popup-content-wrap {
  61. background-color: #fff;
  62. border-top-left-radius: 20rpx;
  63. border-top-right-radius: 20rpx;
  64. }
  65. .popup-content-title {
  66. font-size: 32rpx;
  67. color: #333;
  68. text-align: center;
  69. height: 104rpx;
  70. line-height: 104rpx;
  71. position: relative;
  72. }
  73. .popup-content-title .close-icon {
  74. position: absolute;
  75. top: 24rpx;
  76. right: 24rpx;
  77. }