discount-view.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. @import "../public-view.wxss";
  2. Page {
  3. background-color: white;
  4. }
  5. .bg-view {
  6. width: 200%;
  7. height: 100%;
  8. display: flex;
  9. }
  10. .bg-scroll-view {
  11. background-color: white;
  12. }
  13. /* header */
  14. .header {
  15. width: 100%;
  16. height: 100rpx;
  17. background-color: #F1F8FF;
  18. }
  19. .header text {
  20. font-size: 24rpx;
  21. line-height: 100rpx;
  22. color: #666666;
  23. }
  24. .header>text:first-child {
  25. margin-left: 30rpx;
  26. }
  27. .header>text:nth-child(2) {
  28. color: #FF5E5E;
  29. }
  30. /* no-discount */
  31. .no-discount {
  32. width: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. }
  36. .no-discount>view {
  37. width: 100%;
  38. height: 340rpx;
  39. }
  40. .no-discount>text {
  41. width: 100%;
  42. font-size: 28rpx;
  43. text-align: center;
  44. color: #999999;
  45. }
  46. /* tab-view */
  47. .tab-view {
  48. width: 750rpx;
  49. height: 100rpx;
  50. background-color: white;
  51. position: fixed;
  52. top: 0;
  53. display: flex;
  54. flex-direction: column;
  55. }
  56. .tab-view>view:first-child {
  57. width: 100%;
  58. height: 100rpx;
  59. display: flex;
  60. }
  61. .tab-view>view:first-child>view {
  62. font-size: 32rpx;
  63. line-height: 100rpx;
  64. width: 50%;
  65. text-align: center;
  66. }
  67. .tab-view>view:last-child>view {
  68. width: 50%;
  69. height: 4rpx;
  70. display: flex;
  71. }
  72. .tab-view>view:last-child>view>view {
  73. width: 120rpx;
  74. height: 4rpx;
  75. margin: 0 auto;
  76. background-color: #3296FB;
  77. }
  78. .tab-text-s {
  79. color: #3296FB;
  80. }
  81. .tab-text-n {
  82. color: #666666;
  83. }