微信

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .mainPage{
  2. padding: .3rem .16rem .45rem;
  3. box-sizing: border-box;
  4. .title{
  5. font-size: .18rem;
  6. font-weight: bold;
  7. padding-bottom: .14rem;
  8. padding-left: .2rem;
  9. }
  10. .content{
  11. background:#fff;
  12. box-shadow:0px .08rem .37rem 0px rgba(202,202,202,0.42);
  13. border-radius:.1rem;
  14. padding: .12rem 0;
  15. &.opacity {
  16. opacity: .5;
  17. }
  18. &.gray {
  19. filter: grayscale(100%);
  20. }
  21. .list-item{
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: flex-start;
  25. padding: 0 .22rem;
  26. margin-bottom: .1rem;
  27. span{
  28. display: block;
  29. color: #666;
  30. }
  31. span:nth-of-type(2){
  32. width: 60%;
  33. text-align: right;
  34. color: #000;
  35. .coupon-name{
  36. color: #FF2B00;
  37. font-size: .12rem;
  38. }
  39. }
  40. }
  41. .half-cic{
  42. height: .25rem;
  43. display: flex;
  44. justify-content: space-between;
  45. overflow: hidden;
  46. span{
  47. display: block;
  48. width: .25rem;
  49. height: .25rem;
  50. border-radius: 50%;
  51. background: rgba(202,202,202,0.2);
  52. }
  53. span:nth-of-type(1){
  54. transform: translateX(-50%);
  55. }
  56. span:nth-of-type(2){
  57. transform: translateX(50%);
  58. }
  59. }
  60. .number{
  61. text-align: center;
  62. color:rgba(143,143,143,1);
  63. margin-top: .2rem;
  64. }
  65. }
  66. .useType{
  67. position: absolute;
  68. bottom: 1.6rem;
  69. right: .8rem;
  70. width: .76rem;
  71. height: .76rem;
  72. }
  73. }