insert.scss 1.8 KB

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