index.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* 模态框 */
  2. .modal {
  3. position: fixed;
  4. top: 50%;
  5. left: 16px;
  6. right: 16px;
  7. background-color: #fff;
  8. border-radius: 12px;
  9. transform: translateY(-50%);
  10. }
  11. .modal_title {
  12. padding: 32px 24px 16px;
  13. font-size: 17px;
  14. font-weight: 700;
  15. text-align: center;
  16. }
  17. .modal_input {
  18. display: block;
  19. padding: 5px;
  20. margin: 0 24px 32px 24px;
  21. font-size: 14px;
  22. border: 1px solid #dfe2e5;
  23. }
  24. .modal_foot {
  25. display: flex;
  26. line-height: 56px;
  27. font-weight: 700;
  28. border-top: 1px solid rgba(0, 0, 0, .1);
  29. }
  30. .modal_button {
  31. flex: 1;
  32. text-align: center;
  33. }
  34. /* 蒙版 */
  35. .mask {
  36. position: fixed;
  37. top: 0;
  38. right: 0;
  39. bottom: 0;
  40. left: 0;
  41. background-color: black;
  42. opacity: 0.5;
  43. }
  44. .back {
  45. width: 150rpx;
  46. }
  47. /* 富文本功能编辑 */
  48. .editor_toolbox {
  49. position: absolute;
  50. top: 0;
  51. width: 100%;
  52. height: 90rpx;
  53. z-index: 999;
  54. background-color: #EDEDED;
  55. display: flex;
  56. justify-content: space-around;
  57. align-items: center;
  58. padding: 5px;
  59. box-sizing: border-box;
  60. line-height: 1.6;
  61. }
  62. .image {
  63. height: 35rpx !important;
  64. }
  65. .up {
  66. margin-top: 8rpx;
  67. }