|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /* pages/payee/add/add.wxss */
- .main-box{
- background: #ffffff;
- padding: 20px;
- width: 94%;
- margin: 0 auto;
- border-radius: 10px;
- box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.16);
- }
- .table-box van-field van-cell .van-cell{
- margin-bottom: 15px;
- }
- .table-box van-field:last-child van-cell .van-cell{
- margin-bottom: 0px;
- }
- .van-cell{
- padding: 0!important;
- margin-bottom: 15px;
- }
- .van-cell__value {
- display: flex;
- justify-content: flex-end;
- }
- .van-radio--horizontal {
- margin-right: 0!important;
- margin-left: var(--padding-sm,12px)
- }
- .van-cell--required:before {
- left: 0!important;
- }
-
- .van-field__label {
- padding-left: 10px;
- }
-
- .bottom{
- width: 100%;
- margin: 0 auto;
- text-align: center;
- margin-top: 30px;
- margin-bottom: 30px;
- display: flex;
- position: absolute;
- bottom: 10%;
- }
-
- .bottom view {
- width: 47%;
- margin: 0 auto;
- border-radius: 30px;
- display: inline-block;
- }
-
- .bottom .btn2{
- border: 1px solid transparent;
- padding: 8px 0px;
- background-image: linear-gradient(to right, #2C8E68, #5CAE77);
- color: #fff;
- }
- .table-boxs>view{
- display: flex;
- justify-content: space-between;
- line-height: 100rpx;
- }
- .ql-container {
- box-sizing: border-box;
- width: 100%;
- height: 400px;
- 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: absolute;
- left: 0;
- right: 100%;
- top: 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border: 1px solid #ECECEC;
- border-left: none;
- border-right: none;
- }
|