signIn.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .map {
  2. width: 100vw;
  3. height: 400rpx;
  4. }
  5. .head {
  6. display: flex;
  7. width: 100vw;
  8. padding: 20rpx 30rpx;
  9. background-color: #fff;
  10. box-sizing: border-box;
  11. border-bottom: 1rpx solid #ddd;
  12. .main {
  13. flex: 1;
  14. .time {
  15. height: 40rpx;
  16. line-height: 40rpx;
  17. font-size: 28rpx;
  18. font-family: PingFang SC-Regular, PingFang SC;
  19. color: #333333;
  20. }
  21. .location {
  22. margin-top: 10rpx;
  23. .iconfont {
  24. margin-right: 4rpx;
  25. }
  26. line-height: 34rpx;
  27. font-size: 24rpx;
  28. color: #666666;
  29. }
  30. }
  31. navigator {
  32. text-align: center;
  33. margin-top: 4rpx;
  34. color: #666;
  35. .iconfont {
  36. font-size: 40rpx;
  37. }
  38. .font {
  39. font-size: 28rpx;
  40. margin-top: 6rpx;
  41. }
  42. }
  43. }
  44. .footer {
  45. display: flex;
  46. justify-content: space-between;
  47. padding: 0 30rpx;
  48. position: fixed;
  49. width: 100vw;
  50. height: 130rpx;
  51. background: #FFFFFF;
  52. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  53. bottom: 0;
  54. box-sizing: border-box;
  55. z-index: 9999;
  56. padding-top: 10rpx;
  57. .but-box {
  58. .but {
  59. min-width: 156rpx;
  60. height: 90rpx;
  61. background: #3874F6;
  62. border-radius: 8rpx;
  63. font-size: 28rpx;
  64. font-family: PingFang SC-Bold, PingFang SC;
  65. font-weight: bold;
  66. color: #FFFFFF;
  67. }
  68. .delete {
  69. background: var(--warning);
  70. }
  71. }
  72. }