insert.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .box {
  2. width: 100vw;
  3. box-sizing: border-box;
  4. background-color: #fff;
  5. padding-bottom: 0;
  6. .content {
  7. border-radius: 8rpx;
  8. padding: 0 30rpx;
  9. box-sizing: border-box;
  10. .upload {
  11. display: flex;
  12. align-items: center;
  13. width: 100%;
  14. height: 88rpx;
  15. box-sizing: border-box;
  16. .title {
  17. flex: 1;
  18. font-size: 28rpx;
  19. font-family: PingFang SC-Regular, PingFang SC;
  20. color: #333333;
  21. font-weight: bold;
  22. }
  23. navigator {
  24. width: 100rpx;
  25. height: 80rpx;
  26. line-height: 80rpx;
  27. text-align: center;
  28. padding: 0;
  29. }
  30. }
  31. }
  32. }
  33. .footer {
  34. display: flex;
  35. align-items: center;
  36. justify-content: flex-end;
  37. position: fixed;
  38. width: 750rpx;
  39. height: 130rpx;
  40. background: #FFFFFF;
  41. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  42. bottom: 0;
  43. .but {
  44. width: 156rpx;
  45. height: 90rpx;
  46. background: #3874F6;
  47. border-radius: 8rpx;
  48. font-size: 28rpx;
  49. font-family: PingFang SC-Bold, PingFang SC;
  50. font-weight: bold;
  51. color: #FFFFFF;
  52. margin-right: 30rpx;
  53. }
  54. }