postageDetail.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /* pages/addAddress/addAddress.wxss */
  2. @import "../address/address.wxss";
  3. @import "../components/template/loadAnimation/loadAnimation.wxss";
  4. .info_cell-wrap {
  5. padding-left: 40rpx;
  6. }
  7. .info_cell {
  8. display: -webkit-flex;
  9. display: flex;
  10. align-items: center;
  11. line-height: 112rpx;
  12. font-size: 28rpx;
  13. }
  14. .info_cell_lable {
  15. width: 154rpx;
  16. }
  17. .info_cell_content {
  18. -webkit-flex: 1;
  19. flex: 1;
  20. }
  21. .checkbtn {
  22. display: -webkit-flex;
  23. display: flex;
  24. align-items: center;
  25. padding: 40rpx;
  26. font-size: 24rpx;
  27. }
  28. .no_checked_icon {
  29. width: 36rpx;
  30. height: 36rpx;
  31. border-radius: 50%;
  32. border: 1rpx solid #666;
  33. }
  34. .check_icon-box {
  35. display: -webkit-flex;
  36. display: flex;
  37. align-items: center;
  38. width: 42rpx;
  39. height: 42rpx;
  40. margin-right: 4rpx;
  41. }
  42. .common_cell_arrow {
  43. position: relative;
  44. }
  45. .common_cell_arrow::after {
  46. content: " ";
  47. display: inline-block;
  48. height: 12rpx;
  49. width: 12rpx;
  50. border-width: 2rpx 2rpx 0 0;
  51. border-color: #c8c8cd;
  52. border-style: solid;
  53. -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  54. transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  55. position: absolute;
  56. top: 50%;
  57. margin-top: -8rpx;
  58. right: 40rpx;
  59. }
  60. .area_flex {
  61. display: inline-block;
  62. width: 33%;
  63. }
  64. .picker_mask {
  65. position: fixed;
  66. left: 0;
  67. top:0;
  68. height: 100%;
  69. width: 100%;
  70. background-color: rgba(0, 0, 0, 0.6);
  71. z-index: -1;
  72. opacity: 0;
  73. }
  74. .picker_mask.show_popup {
  75. z-index: 99;
  76. opacity: 1;
  77. }
  78. .picker_container {
  79. position: fixed;
  80. left: 0;
  81. right: 0;
  82. bottom: 0;
  83. z-index: 100;
  84. -webkit-transition: all 0.1s;
  85. transition: all 0.1s;
  86. -webkit-transform: translateY(110%);
  87. transform: translateY(110%);
  88. }
  89. .show_animation {
  90. -webkit-transform: translateY(0);
  91. transform: translateY(0);
  92. }
  93. .picker_header {
  94. display: -webkit-flex;
  95. display: flex;
  96. justify-content: space-between;
  97. padding: 0 30rpx;
  98. line-height: 88rpx;
  99. font-size: 32rpx;
  100. color: #333;
  101. background: #fbf9fe;
  102. }
  103. .picker_header .picker_cancel {
  104. color: #828282;
  105. }
  106. .animation-element {
  107. display: flex;
  108. position: fixed;
  109. width: 100%;
  110. height: 470rpx;
  111. bottom: 0;
  112. background-color: rgba(255, 255, 255, 1);
  113. }
  114. .animation-button {
  115. top:20rpx;
  116. width: 290rpx;
  117. height: 100rpx;
  118. align-items:center;
  119. }
  120. .left-bt{
  121. left: 30rpx;
  122. }
  123. .right-bt {
  124. right: 30rpx;
  125. }
  126. .line{
  127. display: block;
  128. position: fixed;
  129. height: 1rpx;
  130. width: 100%;
  131. margin-top: 89rpx;
  132. background-color: #eeeeee;
  133. }
  134. .postage_input {
  135. width: 440rpx;
  136. }
  137. .add_postage_btn{
  138. width: 80%;
  139. margin: 45rpx auto ;
  140. background-color: #fe7124;
  141. background: linear-gradient(to right, #ff7a21 0%,#feb25a 100%);
  142. text-align: center;
  143. color: #fff;
  144. border-radius: 10rpx;
  145. }
  146. .add_postage_btn:active{
  147. opacity: .8;
  148. }
  149. .tips{
  150. text-align: center;
  151. color: #848799;
  152. font-size: 26rpx;
  153. }
  154. .form-control{
  155. padding: 0 25rpx;
  156. /* margin: 10rpx auto */
  157. }
  158. .form-control-flex{
  159. display: flex;
  160. align-items: center;
  161. width: 87%;
  162. margin: 20rpx auto;
  163. background-color: #fff;
  164. border-radius: 10rpx;
  165. }
  166. .form-control .title{
  167. padding: 20rpx 0;
  168. color: #2b2b2b;
  169. font-weight: bold;
  170. }
  171. .form-control .input-control{
  172. /* font-size: 26rpx; */
  173. padding: 25rpx;
  174. background-color: #fff;
  175. }
  176. .form-label{
  177. color: #2b2b2b;
  178. }
  179. .radiobox{
  180. display: flex;
  181. align-items: center;
  182. /* width: 85%; */
  183. background-color: #fff;
  184. border-radius: 10rpx;
  185. margin: 0 auto 25rpx;
  186. padding: 20rpx;
  187. box-shadow: 5rpx 5rpx 5rpx #eee;
  188. }
  189. .radiobox-image{
  190. width: 100rpx;
  191. height: 100rpx;
  192. margin-right: 50rpx;
  193. }
  194. .radiobox-text{
  195. flex: 1;
  196. }
  197. .radiobox-title{
  198. padding: 0 40rpx;
  199. color: #5e5e5e;
  200. }