signIn.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. .attachment {
  45. background-color: #fff;
  46. width: 100vw;
  47. padding: 20rpx 0rpx;
  48. box-sizing: border-box;
  49. .title {
  50. padding: 0 30rpx;
  51. box-sizing: border-box;
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. height: 40rpx;
  56. font-size: 28rpx;
  57. font-family: PingFang SC-Medium, PingFang SC;
  58. font-weight: 600;
  59. color: #333333;
  60. .text {
  61. font-size: 24rpx;
  62. font-family: PingFang SC-Regular, PingFang SC;
  63. color: #999999;
  64. font-weight: 400;
  65. }
  66. }
  67. .upload-but {
  68. width: 690rpx;
  69. height: 90rpx;
  70. text-align: center;
  71. line-height: 90rpx;
  72. border-radius: 8rpx;
  73. border: 1rpx dashed #3874F6;
  74. font-size: 24rpx;
  75. font-family: PingFang SC-Regular, PingFang SC;
  76. color: #3874F6;
  77. margin-left: 30rpx;
  78. }
  79. }
  80. .footer {
  81. display: flex;
  82. justify-content: space-between;
  83. padding: 0 30rpx;
  84. position: fixed;
  85. width: 100vw;
  86. height: 130rpx;
  87. background: #FFFFFF;
  88. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  89. bottom: 0;
  90. box-sizing: border-box;
  91. z-index: 9999;
  92. padding-top: 10rpx;
  93. .but-box {
  94. .but {
  95. min-width: 156rpx;
  96. height: 90rpx;
  97. background: #3874F6;
  98. border-radius: 8rpx;
  99. font-size: 28rpx;
  100. font-family: PingFang SC-Bold, PingFang SC;
  101. font-weight: bold;
  102. color: #FFFFFF;
  103. }
  104. .delete {
  105. background: var(--warning);
  106. }
  107. }
  108. }