qrCode.wxss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* StepPage/pages/qrCode/qrCode.wxss */
  2. .title{
  3. border-radius: 8pt;
  4. height: 30pt;
  5. line-height: 30pt;
  6. letter-spacing: 3pt;
  7. text-align: center;
  8. width: 90%;
  9. margin: 10pt auto;
  10. background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
  11. }
  12. .btn{
  13. text-align: center;
  14. margin-top: 60rpx;
  15. padding-bottom: 40rpx;
  16. }
  17. .btn_item{
  18. display: block;
  19. margin: 40rpx;
  20. }
  21. .font_item{
  22. display: inline-block;
  23. width: 300rpx;
  24. color: black;
  25. }
  26. .show_box{
  27. width: 100%;
  28. height: 90%;
  29. position: absolute;
  30. bottom: 0;
  31. background-color: #fff;
  32. }
  33. .show_item{
  34. height: auto;
  35. padding: 15rpx;
  36. font-size: 40rpx;
  37. margin:0 20rpx;
  38. color: rgb(97, 92, 92);
  39. text-align: center;
  40. border-bottom:1rpx solid rgb(167, 163, 163)
  41. }
  42. .item_content{
  43. width: 90%;
  44. margin:0 auto;
  45. display: flex;
  46. flex-wrap: wrap;
  47. }
  48. .item_content_shop{
  49. background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
  50. width: 44%;
  51. text-align: center;
  52. height: auto;
  53. padding: 4pt;
  54. /* line-height: 30pt; */
  55. border-radius: 10pt;
  56. margin: 15rpx 0;
  57. }
  58. .item_content_shop:nth-child(2n+1){
  59. margin-right: 30rpx;
  60. }
  61. .chooseItem{
  62. border: 1rpx solid rgb(161, 161, 161);
  63. border-radius: 36rpx;
  64. margin:10rpx;
  65. padding-bottom: 60rpx;
  66. position: relative;
  67. }
  68. .add{
  69. bottom: 0;
  70. left: 0;
  71. font-size: 60rpx;
  72. line-height: .9;
  73. text-align: center;
  74. color: rgb(57, 97, 231);
  75. }
  76. .delete{
  77. display: flex;
  78. justify-content: center;
  79. align-items: center;
  80. bottom: 0;
  81. right: 0;
  82. color: red;
  83. }
  84. .btn1{
  85. position: absolute;
  86. width: 60rpx;
  87. height: 60rpx;
  88. border: 1rpx solid;
  89. border-radius: 50%;
  90. z-index: 2;
  91. }
  92. .show_title{
  93. display: flex;
  94. justify-content: space-between;
  95. align-items: center;
  96. }