123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- @import "../../../utils/iconfont.wxss";
-
- .container {
- height: 72vh;
- font-size: 28rpx;
- }
-
- .editor-content {
- display: block;
- position: relative;
- box-sizing: border-box;
- -webkit-user-select: text;
- user-select: text;
- outline: 0;
- overflow: hidden;
- width: 100%;
- height: 100%;
- color: #000000;
- }
-
- .active {
- color: #2a9f93;
- }
-
- .iconfont {
- display: inline-block;
- width: 10%;
- height: 30px;
- cursor: pointer;
- font-size: 20px;
- }
-
-
-
- .toolBar {
- box-sizing: border-box;
- padding: 0 10px;
- height: 12%;
- width: 100%;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- /* justify-content: space-between; */
- border: 1px solid #ECECEC;
- border-left: none;
- border-right: none;
- background-color: #fff;
- }
-
- .form {
- font-size: 28rpx;
- }
-
- .form-label {
- width: 300rpx;
- font-size: 28rpx;
- line-height: 36rpx;
- color: gray;
- }
-
- .form-value {
- width: 450rpx;
- font-size: 28rpx;
- }
-
- .form-label::before {
- display: inline-block;
- margin-right: 6rpx;
- color: #ef473a;
- font-size: 28rpx;
- font-family: SimSun,sans-serif;
- line-height: 1;
- content: "*"
- }
-
- .footer {
- position: fixed;
- bottom: 0;
- z-index: 99;
- box-sizing: border-box;
- width: 750rpx;
- padding: 20rpx 20rpx;
- }
-
- .left {
- width: 210rpx;
- padding: 20rpx 20rpx;
- border-radius: 50rpx;
- background-color: gray;
- color: #ffffff;
- }
-
- .right {
- width: 400rpx;
- padding: 20rpx 20rpx;
- border-radius: 50rpx;
- background-color: forestgreen;
- color: #ffffff;
- }
-
-
- /*
- .container {
- position: absolute;
- top: 80rpx;
- left: 0;
- width: 100%;
- }
-
- .editor-title {
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- font-size: 16px;
- line-height: 1.5;
- overflow: auto;
- padding: 10px 10px 20px 10px;
- border: 1px solid #ECECEC;
- }
-
- .ql-active {
- color: #22C704;
- }
-
- .iconfont {
- display: inline-block;
- width: 30px;
- height: 30px;
- cursor: pointer;
- font-size: 20px;
- }
-
- .toolbar {
- box-sizing: border-box;
- padding: 0 10px;
- height: 50px;
- width: 100%;
- position: fixed;
- left: 0;
- right: 100%;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border: 1px solid #ECECEC;
- border-left: none;
- border-right: none;
- }
- */
|