index copy.wxss 1.9 KB

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