index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. @import '/app.wxss';
  2. .coupon-list-window {
  3. position: fixed;
  4. bottom: 0;
  5. left: 0;
  6. width: 100%;
  7. background-color: #f5f5f5;
  8. border-radius: 16rpx 16rpx 0 0;
  9. transform: translate3d(0, 100%, 0);
  10. transition: all .3s cubic-bezier(.25, .5, .5, .9);
  11. z-index: 1000
  12. }
  13. .coupon-list-window.on {
  14. transform: translate3d(0, 0, 0);
  15. }
  16. .coupon-list-window .title {
  17. height: 124rpx;
  18. width: 100%;
  19. text-align: center;
  20. line-height: 124rpx;
  21. font-size: 32rpx;
  22. font-weight: bold;
  23. position: relative;
  24. }
  25. .coupon-list-window .title .iconfont {
  26. position: absolute;
  27. right: 30rpx;
  28. top: 50%;
  29. transform: translateY(-50%);
  30. font-size: 35rpx;
  31. color: #8a8a8a;
  32. font-weight: normal;
  33. width: 100rpx;
  34. display: block;
  35. text-align: right;
  36. }
  37. .coupon-list-window .coupon-list {
  38. margin: 0 0 50rpx 0;
  39. height: 550rpx;
  40. overflow: auto;
  41. }
  42. .coupon-list-window .pictrue {
  43. width: 414rpx;
  44. height: 336rpx;
  45. margin: 0 auto 50rpx auto;
  46. }
  47. .coupon-list-window .pictrue image {
  48. width: 100%;
  49. height: 100%;
  50. }
  51. .pic-num {
  52. color: #fff;
  53. font-size: 24rpx;
  54. }
  55. .line-title {
  56. width: 90rpx;
  57. padding: 0 10rpx;
  58. box-sizing: border-box;
  59. background: rgba(255, 247, 247, 1);
  60. border: 1px solid rgba(232, 51, 35, 1);
  61. opacity: 1;
  62. border-radius: 20rpx;
  63. font-size: 20rpx;
  64. color: #E83323;
  65. margin-right: 12rpx;
  66. }
  67. .line-title.gray {
  68. border-color: #BBB;
  69. color: #bbb;
  70. background-color: #F5F5F5;
  71. }