second.wxss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* StepPage/pages/second/second.wxss *//* StepPage/pages/first/first.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. .item_content{
  13. width: 90%;
  14. margin:0 auto;
  15. display: flex;
  16. justify-content: space-between;
  17. }
  18. .item_content_shop{
  19. letter-spacing: 2pt;
  20. background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
  21. width: 100%;
  22. text-align: center;
  23. height: 30pt;
  24. line-height: 30pt;
  25. border-radius: 10pt;
  26. margin: 5pt 0;
  27. }
  28. .item_content_shop:nth-child(2n+1){
  29. margin-right: 20pt;
  30. }
  31. .item_content_shop_child{
  32. letter-spacing: 1pt;
  33. background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
  34. width: 100%;
  35. text-align: center;
  36. height: auto;
  37. line-height: 30pt;
  38. border-radius: 10pt;
  39. margin: 5pt 0;
  40. }
  41. .choose{
  42. color: rgb(170, 165, 165);
  43. }
  44. .unchoose{
  45. color: black;
  46. }
  47. .btn{
  48. text-align: center;
  49. margin-top: 10pt;
  50. }
  51. .btn_item{
  52. margin:0 20pt;
  53. border-radius: 10pt !important;
  54. }
  55. .font_item{
  56. color: black;
  57. }
  58. .show_box{
  59. width: 100%;
  60. height: 90%;
  61. position: absolute;
  62. bottom: 0;
  63. background-color: #fff;
  64. }
  65. .show_item{
  66. height: 60rpx;
  67. padding: 15rpx;
  68. margin: 0 20rpx;
  69. font-size: 40rpx;
  70. color: rgb(97, 92, 92);
  71. text-align: center;
  72. border-bottom:1rpx solid rgb(167, 163, 163)
  73. }
  74. .show_title{
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. }