微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bottomUserSQ.wxss 1.4 KiB

3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .black_view
  2. {
  3. background-color: black;
  4. opacity: 0.3;
  5. width: 100vw;
  6. height: 100vh;
  7. position:fixed;
  8. left: 0rpx;
  9. top: 0rpx;
  10. z-index: 99999;
  11. }
  12. .white_view
  13. {
  14. z-index: 99999;
  15. position:absolute;
  16. bottom: 0rpx;
  17. left: 0rpx;
  18. width: 100vw;
  19. height: 500rpx;
  20. display: block;
  21. background-color:#f5f4f7;
  22. border-top-left-radius: 15rpx;
  23. border-top-right-radius: 15rpx;
  24. }
  25. .title_tv
  26. {
  27. font-size: 29rpx;
  28. color: #444;
  29. margin-top: 60rpx;
  30. margin-left: 5%;
  31. }
  32. .tv1
  33. {
  34. font-size: 30rpx;
  35. color: black;
  36. margin-top: 60rpx;
  37. margin-left: 5%;
  38. }
  39. .tv2
  40. {
  41. font-size: 28rpx;
  42. margin-top: 15rpx;
  43. margin-left: 5%;
  44. }
  45. .view_button
  46. {
  47. display: flex;
  48. margin-left: 5%;
  49. margin-top: 80rpx;
  50. margin-right: 5%;
  51. width: auto;
  52. justify-content: space-between;
  53. }
  54. .no_btn
  55. {
  56. background-color: white;
  57. color: mediumseagreen;
  58. height: 80rpx;
  59. line-height: 80rpx;
  60. padding: 0rpx;
  61. border-radius: 10rpx;
  62. border-color: #e6e6e6;
  63. border-width: 1rpx;
  64. font-size: 28rpx;
  65. width: auto;
  66. }
  67. .ok_btn
  68. {
  69. background-color: mediumseagreen;
  70. color: white;
  71. height: 80rpx;
  72. line-height: 80rpx;
  73. padding: 0rpx;
  74. border-radius: 10rpx;
  75. font-size: 28rpx;
  76. width: auto;
  77. margin-left: 50rpx;
  78. }