redpackrule.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* pages/mine/wxml/redpackrule/redpackrule.wxss */
  2. page{
  3. background: #f2f2f2;
  4. font-size: 30rpx;
  5. }
  6. .head{
  7. background: #fff;
  8. text-align: center;
  9. padding: 40rpx;
  10. }
  11. .head .h1 text{
  12. font-weight: 600;
  13. font-size:50rpx;
  14. }
  15. .head .h6 text{
  16. font-size: 24rpx;
  17. }
  18. .body .type{
  19. padding: 0 10rpx;
  20. }
  21. .body .title{
  22. margin-left: 20rpx;
  23. padding: 20rpx 0;
  24. }
  25. .body .title text{
  26. border-left: 4rpx solid #ef2121;
  27. padding-left: 20rpx;
  28. }
  29. .list:after{
  30. content:'';
  31. display: block;
  32. clear: both;
  33. }
  34. .list{
  35. background: #fff;
  36. border-radius: 5rpx;
  37. margin-bottom: 10rpx;
  38. padding: 20rpx;
  39. }
  40. .list .type-left,.list .type-right{
  41. float: left;
  42. }
  43. .list .type-left{
  44. color: #ef2121;
  45. font-weight: 600;
  46. border-right: 2rpx solid #f2f2f2;
  47. width: 30%;
  48. box-sizing: border-box;
  49. text-align: center;
  50. }
  51. .list .type-left text {
  52. line-height: 100rpx;
  53. font-weight: 600;
  54. }
  55. .list .type-right{
  56. width: 70%;
  57. font-size: 24rpx;
  58. color: #666;
  59. padding: 20rpx 0rpx 20rpx 30rpx;
  60. box-sizing: border-box;
  61. }
  62. .rule{
  63. padding: 0 10rpx;
  64. }
  65. .rule .cont{
  66. background: #fff;
  67. border-radius: 5rpx;
  68. text-align: center;
  69. line-height: 100rpx;
  70. padding: 20rpx;
  71. font-size: 24rpx;
  72. color: #666;
  73. }
  74. .rule .cont text{
  75. display: block;
  76. line-height: 50rpx;
  77. }
  78. .foot{
  79. text-align: center;
  80. font-size: 24rpx;
  81. color: #999;
  82. padding: 30rpx;
  83. }