delete.scss 1.2 KB

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