shiming.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. .body{
  2. margin-left: 30px;
  3. }
  4. .title1{
  5. font-size: 25px;
  6. font-weight: 700;
  7. margin: 50px 0 30px 0;
  8. }
  9. .title2{
  10. margin-bottom: 50px;
  11. }
  12. .border{
  13. border: 1px solid black;
  14. width: 312px;
  15. height: 25px;
  16. border-radius: 6px;
  17. margin: 20px 0;
  18. font-size: 13px;
  19. padding: 2px;
  20. z-index: 0;
  21. }
  22. .but{
  23. font-size: 14px;
  24. font-weight: 400;
  25. color: white;
  26. border-radius: 20px;
  27. background-color: blue;
  28. margin-top: 100px;
  29. height: 40px;
  30. line-height: 25px;
  31. }
  32. /* 下拉框 省份 */
  33. .list-msg {
  34. background-color: #fff;
  35. position: relative;
  36. width: 32%;
  37. }
  38. .list-msg .list-msg1 {
  39. font-size: 26rpx;
  40. height: 40rpx;
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. border: 1px solid #000000;
  45. padding: 0 10rpx;
  46. border-radius: 10rpx;
  47. }
  48. .select_box {
  49. font-size: 26rpx;
  50. background-color: #eee;
  51. padding: 0 10rpx;
  52. width: 100%;
  53. position: absolute;
  54. top: 60rpx;
  55. overflow: hidden;
  56. pointer-events: none;
  57. animation: myfirst 0.5s;
  58. z-index: 2000;
  59. }
  60. @keyframes myfirst {
  61. from {
  62. height: 0rpx;
  63. }
  64. to {
  65. height: 210rpx;
  66. }
  67. }
  68. .select_one {
  69. height: 60rpx;
  70. line-height: 60rpx;
  71. border-bottom: 1px solid #ccc;
  72. z-index: 2000;
  73. pointer-events: auto;
  74. }
  75. /* 下拉框 地区 */
  76. .list-msg2 {
  77. float: right;
  78. background-color: #fff;
  79. position: relative;
  80. width: 32%;
  81. margin-top: -45rpx;
  82. margin-right: 180rpx;
  83. }
  84. .list-msg2 .list-msg3 {
  85. font-size: 26rpx;
  86. height: 40rpx;
  87. display: flex;
  88. align-items: center;
  89. justify-content: space-between;
  90. border: 1px solid #000000;
  91. padding: 0 10rpx;
  92. border-radius: 10rpx;
  93. }
  94. .select_box {
  95. font-size: 26rpx;
  96. background-color: #eee;
  97. /* padding: 0 10rpx; */
  98. width: 100%;
  99. position: absolute;
  100. top: 60rpx;
  101. z-index: 2000;
  102. overflow: hidden;
  103. animation: myfirst 0.5s;
  104. }
  105. @keyframes myfirst {
  106. from {
  107. height: 0rpx;
  108. }
  109. to {
  110. height: 210rpx;
  111. }
  112. }