visitor_make.acss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* pages/visitor_make/visitor_make.wxss */
  2. page {
  3. height: 100vh;
  4. }
  5. .top {
  6. display: flex;
  7. align-items: center;
  8. flex-direction: column;
  9. }
  10. .top-area {
  11. background-color: #2f6fd1;
  12. width: 1300rpx;
  13. height: 250rpx;
  14. border-bottom-left-radius: 80%;
  15. border-bottom-right-radius: 80%;
  16. }
  17. .top-item {
  18. position: absolute;
  19. width: 100%;
  20. top: 190rpx;
  21. }
  22. /* swiper区域 */
  23. .swiper {
  24. height: calc(100vh - 300rpx);
  25. }
  26. .scroll-area {
  27. height: calc(100vh - 300rpx - 150rpx);
  28. }
  29. /* 所在楼宇 */
  30. .card-cont {
  31. overflow: hidden;
  32. padding: 35rpx 0;
  33. }
  34. .card-cont > .title {
  35. margin-left: 24rpx;
  36. margin-bottom: 15rpx;
  37. font-size: 34rpx;
  38. font-weight: 500;
  39. }
  40. .label-sm .van-cell__title {
  41. flex: none;
  42. }
  43. .picker::after {
  44. content: "";
  45. display: inline-block;
  46. width: 16rpx;
  47. height: 16rpx;
  48. margin-left: 15rpx;
  49. border-top: 2rpx solid #333333;
  50. border-right: 2rpx solid #333333;
  51. transform: rotate(45deg);
  52. }
  53. /* 按钮区 */
  54. .btn-area-one {
  55. margin-left: 28rpx;
  56. /* margin-top: 1000rpx; */
  57. width: 694rpx;
  58. }
  59. .btn-area-one button {
  60. background: linear-gradient(180deg, #6eaaff 0%, #2f6fd1 100%);
  61. font-size: 30rpx;
  62. height: 110rpx;
  63. line-height: 110rpx;
  64. border-radius: 8rpx;
  65. color: #fff;
  66. }
  67. .btn-area-two {
  68. position: sticky;
  69. bottom: 28rpx;
  70. margin-left: 28rpx;
  71. /* margin-top: 1000rpx; */
  72. width: 694rpx;
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. }
  77. .btn-area-two button {
  78. font-size: 30rpx;
  79. height: 110rpx;
  80. line-height: 110rpx;
  81. border-radius: 8rpx;
  82. color: #fff;
  83. width: 322rpx;
  84. }
  85. .bg-grey {
  86. background: linear-gradient(180deg, #d1dded 0%, #9dadc6 100%) !important;
  87. color: #000 !important;
  88. }
  89. .bg-blue {
  90. background: linear-gradient(180deg, #6eaaff 0%, #2f6fd1 100%) !important;
  91. }