12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* 模态框 */
- .modal {
- position: fixed;
- top: 50%;
- left: 16px;
- right: 16px;
- background-color: #fff;
- border-radius: 12px;
- transform: translateY(-50%);
- }
- .modal_title {
- padding: 32px 24px 16px;
- font-size: 17px;
- font-weight: 700;
- text-align: center;
- }
- .modal_input {
- display: block;
- padding: 5px;
- margin: 0 24px 32px 24px;
- font-size: 14px;
- border: 1px solid #dfe2e5;
- }
- .modal_foot {
- display: flex;
- line-height: 56px;
- font-weight: 700;
- border-top: 1px solid rgba(0, 0, 0, .1);
- }
- .modal_button {
- flex: 1;
- text-align: center;
- }
- /* 蒙版 */
- .mask {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background-color: black;
- opacity: 0.5;
- }
- .back {
- width: 150rpx;
- }
- /* 富文本功能编辑 */
- .editor_toolbox {
- position: absolute;
- top: 0;
- width: 100%;
- height: 90rpx;
- z-index: 999;
- background-color: #EDEDED;
- display: flex;
- justify-content: space-around;
- align-items: center;
- padding: 5px;
- box-sizing: border-box;
- line-height: 1.6;
- }
- .image {
- height: 35rpx !important;
- }
- .up {
- margin-top: 8rpx;
- }
|