add.scss 1.6 KB

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