index.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .main {
  2. position: relative;
  3. width: 100%;
  4. background-color: #d4d4d4;
  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. height: 20px;
  19. }
  20. .text3 {
  21. width: 50%;
  22. float: left;
  23. font-size: 12px;
  24. color: #999;
  25. }
  26. .text4 {
  27. width: 50%;
  28. float: left;
  29. text-align: right;
  30. font-size: 12px;
  31. color: #999;
  32. }
  33. .two_shop {
  34. /* background-color: #fff; */
  35. width: 100%;
  36. }
  37. .photo1 {
  38. width: 45%;
  39. float: left;
  40. }
  41. .shop {
  42. width: 145px;
  43. height: 80px;
  44. margin: 0px 5px 10px 0;
  45. }
  46. .check {
  47. position: relative;
  48. left: -145px;
  49. top: -74px;
  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: -66px;
  69. left: -54px;
  70. background-color: #ffffff;
  71. border-radius: 10px
  72. }
  73. /* 重写 checkbox 样式 */
  74. /* 未选中的 背景样式 */
  75. checkbox .wx-checkbox-input {
  76. border-radius: 50%;
  77. /* 圆角 */
  78. width: 17px;
  79. /* 背景的宽 */
  80. height: 17px;
  81. /* 背景的高 */
  82. }
  83. /* 选中后的 背景样式*/
  84. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  85. border: 1rpx solid #17c911;
  86. background: #17c911;
  87. }
  88. /* 选中后的 对勾样式 */
  89. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  90. border-radius: 50%;
  91. width: 40rpx;
  92. /* 选中后对勾大小,不要超过背景的尺寸 */
  93. height: 40rpx;
  94. /* 选中后对勾大小,不要超过背景的尺寸 */
  95. line-height: 40rpx;
  96. text-align: center;
  97. font-size: 30rpx;
  98. /* 对勾大小 30rpx */
  99. color: #fff;
  100. /* 对勾颜色 白色 */
  101. background: transparent;
  102. transform: translate(-50%, -50%) scale(1);
  103. -webkit-transform: translate(-50%, -50%) scale(1);
  104. }