| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- .map {
- width: 100vw;
- height: 400rpx;
- }
- .head {
- display: flex;
- width: 100vw;
- padding: 20rpx 30rpx;
- background-color: #fff;
- box-sizing: border-box;
- border-bottom: 1rpx solid #ddd;
- .main {
- flex: 1;
- .time {
- height: 40rpx;
- line-height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .location {
- margin-top: 10rpx;
- .iconfont {
- margin-right: 4rpx;
- }
- line-height: 34rpx;
- font-size: 24rpx;
- color: #666666;
- }
- }
- navigator {
- text-align: center;
- margin-top: 4rpx;
- color: #666;
- .iconfont {
- font-size: 40rpx;
- }
- .font {
- font-size: 28rpx;
- margin-top: 6rpx;
- }
- }
- }
- .attachment {
- background-color: #fff;
- width: 100vw;
- padding: 20rpx 0rpx;
- box-sizing: border-box;
- .title {
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 600;
- color: #333333;
- .text {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- font-weight: 400;
- }
- }
- .upload-but {
- width: 690rpx;
- height: 90rpx;
- text-align: center;
- line-height: 90rpx;
- border-radius: 8rpx;
- border: 1rpx dashed #3874F6;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #3874F6;
- margin-left: 30rpx;
- }
- }
- .footer {
- display: flex;
- justify-content: space-between;
- padding: 0 30rpx;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- box-sizing: border-box;
- z-index: 9999;
- padding-top: 10rpx;
- .but-box {
- .but {
- min-width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- .delete {
- background: var(--warning);
- }
- }
- }
|