index.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .main {
  2. position: relative;
  3. width: 100%;
  4. background-color: #f8f8f8;
  5. }
  6. .one {
  7. background-color: #ffffff;
  8. padding: 10px 20px;
  9. }
  10. .text2 {
  11. position: relative;
  12. left: 270px;
  13. }
  14. .two {
  15. padding: 5px 20px;
  16. }
  17. .two_text {
  18. margin: 0 0 10px 0;
  19. }
  20. .text3 {
  21. font-size: 12px;
  22. color: #999;
  23. }
  24. .text4 {
  25. position: relative;
  26. left: 150px;
  27. font-size: 12px;
  28. color: #999;
  29. }
  30. .two_shop {
  31. width: 100%;
  32. background-color: #ffffff;
  33. padding: 10px 0;
  34. height: 170px;
  35. }
  36. .photo1 {
  37. width: 50%;
  38. float: left;
  39. height: 90px;
  40. }
  41. .shop {
  42. width: 162px;
  43. height: 80px;
  44. margin: 0px 5px 10px 0;
  45. }
  46. .check {
  47. position: relative;
  48. left: 0px;
  49. top: -97px;
  50. z-index: 99999;
  51. }
  52. .btn-area {
  53. position: relative;
  54. top: 20px;
  55. }
  56. .button {
  57. width: 300px !important;
  58. background-image: linear-gradient(to right, #fd3c1e, #c74df0);
  59. border-radius: 30px;
  60. color: #ffffff;
  61. text-align: center;
  62. font-size: small;
  63. }
  64. .del {
  65. width: 20px;
  66. height: 20px;
  67. position: relative;
  68. top: -92px;
  69. left: 112px;
  70. background-color: #ffffff;
  71. border-radius: 10px
  72. }
  73. /* 重写 checkbox 样式 */
  74. /* 未选中的 背景样式 */
  75. checkbox .wx-checkbox-input{
  76. border-radius: 50%;/* 圆角 */
  77. width: 46rpx; /* 背景的宽 */
  78. height: 46rpx; /* 背景的高 */
  79. }
  80. /* 选中后的 背景样式*/
  81. checkbox .wx-checkbox-input.wx-checkbox-input-checked{
  82. border: 1rpx solid #17c911;
  83. background: #17c911;
  84. }
  85. /* 选中后的 对勾样式 */
  86. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
  87. border-radius: 50%;
  88. width: 40rpx;/* 选中后对勾大小,不要超过背景的尺寸 */
  89. height: 40rpx;/* 选中后对勾大小,不要超过背景的尺寸 */
  90. line-height: 40rpx;
  91. text-align: center;
  92. font-size:30rpx; /* 对勾大小 30rpx */
  93. color:#fff; /* 对勾颜色 白色 */
  94. background: transparent;
  95. transform:translate(-50%, -50%) scale(1);
  96. -webkit-transform:translate(-50%, -50%) scale(1);
  97. }