邹能昇 4 months ago
parent
commit
38d4f24fe4
27 changed files with 37 additions and 28 deletions
  1. 1 0
      nova-tourism/components/collect/index.less
  2. 0 0
      nova-tourism/components/collect/index.wxss
  3. 4 3
      nova-tourism/components/goods-list/index.less
  4. 2 2
      nova-tourism/components/goods-list/index.wxml
  5. 0 0
      nova-tourism/components/goods-list/index.wxss
  6. 1 0
      nova-tourism/components/homestay/index.less
  7. 0 0
      nova-tourism/components/homestay/index.wxss
  8. 1 0
      nova-tourism/components/my/index.less
  9. 0 0
      nova-tourism/components/my/index.wxss
  10. 1 0
      nova-tourism/pages/homestay/homestay-detail/index.less
  11. 0 0
      nova-tourism/pages/homestay/homestay-detail/index.wxss
  12. 3 1
      nova-tourism/pages/homestay/homestay-order2/index.less
  13. 1 1
      nova-tourism/pages/homestay/homestay-order2/index.wxss
  14. 1 1
      nova-tourism/pages/my/merchant/merchant-home/account/index.less
  15. 2 2
      nova-tourism/pages/my/merchant/merchant-home/account/index.wxml
  16. 1 1
      nova-tourism/pages/my/merchant/merchant-home/account/index.wxss
  17. 2 2
      nova-tourism/pages/my/merchant/merchant-home/account/password/index.less
  18. 1 1
      nova-tourism/pages/my/merchant/merchant-home/account/password/index.wxml
  19. 1 1
      nova-tourism/pages/my/merchant/merchant-home/account/password/index.wxss
  20. 3 3
      nova-tourism/pages/my/merchant/merchant-home/index.wxml
  21. 2 2
      nova-tourism/pages/my/merchant/merchant-home/order2-list/index.wxml
  22. 2 2
      nova-tourism/pages/my/merchant/merchant-home/order2-list/order-deils/index.wxml
  23. 2 2
      nova-tourism/pages/my/merchant/merchant-home/store-withdraw/index.wxml
  24. 2 2
      nova-tourism/pages/my/merchant/room-manage/index.wxml
  25. 2 0
      nova-tourism/pages/my/merchant/room-manage/room-edit/index.less
  26. 1 1
      nova-tourism/pages/my/merchant/room-manage/room-edit/index.wxml
  27. 1 1
      nova-tourism/pages/my/merchant/room-manage/room-edit/index.wxss

+ 1 - 0
nova-tourism/components/collect/index.less

@@ -3,6 +3,7 @@
     width: 100vw;
     overflow-y: scroll;
     padding-bottom: 30rpx;
+    color: #382E2E;
     .img2{
         width: 100%;
         height: 430rpx;

File diff suppressed because it is too large
+ 0 - 0
nova-tourism/components/collect/index.wxss


+ 4 - 3
nova-tourism/components/goods-list/index.less

@@ -3,7 +3,7 @@
 .title {
   font-weight: Medium;
   font-size: 36rpx; 
-  color: #222222;
+  color: #382E2E;
 }
 .text-large {
   font-size: 36rpx; 
@@ -48,7 +48,7 @@
           width: 100%;
           margin: 10rpx 0;
           font-size: 30rpx;
-          color:#222222; 
+          color:#382E2E; 
           overflow: hidden; //一定要写
           text-overflow: ellipsis; //超出省略号
           display: -webkit-box; //一定要写
@@ -98,6 +98,7 @@
               width: 180rpx;
             .btn-text {
               letter-spacing: 6rpx;
+              color:#382E2E; 
             }
           }
         }
@@ -146,7 +147,7 @@
           margin-top: 10rpx;
           min-height: 80rpx;
           font-size: 30rpx;
-          color:#222222;
+          color:#382E2E;
           overflow: hidden; //一定要写
           text-overflow: ellipsis; //超出省略号
           display: -webkit-box; //一定要写

+ 2 - 2
nova-tourism/components/goods-list/index.wxml

@@ -1,5 +1,5 @@
 <block wx:if="{{list.length}}">
-    <view class="wrapper horizontal" wx:if="{{mode=='horizontal'}}">
+    <view class="wrapper horizontal" style="color: #382E2E;" wx:if="{{mode=='horizontal'}}">
         <block wx:for="{{list}}" wx:key="index">
             <view class="goods" data-item="{{item}}" bindtap="toDetail">
                 <view class="goods-image-wrapper">
@@ -35,7 +35,7 @@
             </view>
         </block>
     </view>
-    <view class="wrapper vertical" wx:elif="{{mode=='vertical'}}">
+    <view class="wrapper vertical" style="color: #382E2E;" wx:elif="{{mode=='vertical'}}">
         <block wx:for="{{list}}" wx:key="index">
             <view class="goods" data-item="{{item}}" bindtap="toDetail">
                 <view class="goods-image-wrapper">

File diff suppressed because it is too large
+ 0 - 0
nova-tourism/components/goods-list/index.wxss


+ 1 - 0
nova-tourism/components/homestay/index.less

@@ -3,6 +3,7 @@
 .all{
     width: 100vw;
     height: 100vh;
+    color: #382E2E;
     .picturebox{
         width: 100%;
         height: 430rpx;

File diff suppressed because it is too large
+ 0 - 0
nova-tourism/components/homestay/index.wxss


+ 1 - 0
nova-tourism/components/my/index.less

@@ -8,6 +8,7 @@
     background-repeat: no-repeat; /* 不重复背景图片 */
     padding-left: 20rpx;
     padding-right: 20rpx;
+    color: #382E2E;
     .infobox{
         width: 100%;
         display: flex;

File diff suppressed because it is too large
+ 0 - 0
nova-tourism/components/my/index.wxss


+ 1 - 0
nova-tourism/pages/homestay/homestay-detail/index.less

@@ -5,6 +5,7 @@
     background-color: #ECECEC;
     position: relative;
     overflow-y: scroll;
+    color: #382E2E;
     .picturebox{
         width: 100%;
         height: 480rpx;

File diff suppressed because it is too large
+ 0 - 0
nova-tourism/pages/homestay/homestay-detail/index.wxss


+ 3 - 1
nova-tourism/pages/homestay/homestay-order2/index.less

@@ -4,6 +4,7 @@
     padding-left: 30rpx;
     padding-right: 30rpx;
     position: relative;
+    color: #382E2E;
     .timebox{
         width: 100%;
         height: 50rpx;
@@ -48,7 +49,7 @@
         }
     }
     .lable{
-        color: black;
+        color: #382E2E;
     }
     .benefitbox{
         width: 100%;
@@ -107,6 +108,7 @@
     height: 90rpx;
     display: flex;
     font-size: 30rpx;
+    color: #382E2E;
     .subbox1{
         width: 40%;
         display: flex;

+ 1 - 1
nova-tourism/pages/homestay/homestay-order2/index.wxss

@@ -1 +1 @@
-.all{width:100vw;padding-left:30rpx;padding-right:30rpx;position:relative}.all .timebox{width:100%;height:50rpx;margin-top:10rpx;font-size:30rpx;display:flex}.all .timebox .time1{margin-right:40rpx}.all .roombox{width:100%;display:flex;margin-top:40rpx}.all .roombox image{width:170rpx;height:170rpx;border-radius:10rpx}.all .roombox .room{height:100%;margin-left:20rpx}.all .roombox .room .room-name{font-size:28rpx;font-weight:600;margin-bottom:24rpx}.all .roombox .room .room-tag{font-size:26rpx;width:480rpx;height:auto;color:#F37B40;margin-bottom:10rpx}.all .roombox .room .room-text{width:480rpx;height:auto;font-size:26rpx;color:#737373}.all .lable{color:black}.all .benefitbox{width:100%;height:auto;font-size:28rpx}.all .benefitbox .benefitbox1{margin-bottom:40rpx}.all .benefitbox .benefitbox2{width:100%;display:flex;margin-bottom:40rpx}.all .benefitbox .benefitbox2 .benefitbox2-text{width:120rpx}.all .benefitbox .benefitbox2 .benefitbox2-text2{display:flex;margin-left:auto;color:#F37B40}.all .benefitbox .benefitbox2 .benefitbox2-text_2{display:flex;margin-left:auto;margin-right:30rpx;color:#F37B40}.all .benefitbox .benefitbox2 .benefitbox2-text_22{display:flex;margin-left:auto;margin-right:30rpx}.all .benefitbox2{width:100%;display:flex;margin-bottom:40rpx}.all .benefitbox2 .benefitbox2-text{width:120rpx}.all .benefitbox2 .benefitbox2-text_22{display:flex;margin-left:auto;margin-right:30rpx}.subbox{position:fixed;bottom:0;left:0;width:100%;height:90rpx;display:flex;font-size:30rpx}.subbox .subbox1{width:40%;display:flex;justify-content:center;align-items:center}.subbox .subbox2{width:60%;height:100%;background-color:#F89B7F;color:white;display:flex;justify-content:center;align-items:center}.subbox .subbox2 .subbox2_2{margin-left:10rpx}
+.all{width:100vw;padding-left:30rpx;padding-right:30rpx;position:relative;color:#382E2E}.all .timebox{width:100%;height:50rpx;margin-top:10rpx;font-size:30rpx;display:flex}.all .timebox .time1{margin-right:40rpx}.all .roombox{width:100%;display:flex;margin-top:40rpx}.all .roombox image{width:170rpx;height:170rpx;border-radius:10rpx}.all .roombox .room{height:100%;margin-left:20rpx}.all .roombox .room .room-name{font-size:28rpx;font-weight:600;margin-bottom:24rpx}.all .roombox .room .room-tag{font-size:26rpx;width:480rpx;height:auto;color:#F37B40;margin-bottom:10rpx}.all .roombox .room .room-text{width:480rpx;height:auto;font-size:26rpx;color:#737373}.all .lable{color:#382E2E}.all .benefitbox{width:100%;height:auto;font-size:28rpx}.all .benefitbox .benefitbox1{margin-bottom:40rpx}.all .benefitbox .benefitbox2{width:100%;display:flex;margin-bottom:40rpx}.all .benefitbox .benefitbox2 .benefitbox2-text{width:120rpx}.all .benefitbox .benefitbox2 .benefitbox2-text2{display:flex;margin-left:auto;color:#F37B40}.all .benefitbox .benefitbox2 .benefitbox2-text_2{display:flex;margin-left:auto;margin-right:30rpx;color:#F37B40}.all .benefitbox .benefitbox2 .benefitbox2-text_22{display:flex;margin-left:auto;margin-right:30rpx}.all .benefitbox2{width:100%;display:flex;margin-bottom:40rpx}.all .benefitbox2 .benefitbox2-text{width:120rpx}.all .benefitbox2 .benefitbox2-text_22{display:flex;margin-left:auto;margin-right:30rpx}.subbox{position:fixed;bottom:0;left:0;width:100%;height:90rpx;display:flex;font-size:30rpx;color:#382E2E}.subbox .subbox1{width:40%;display:flex;justify-content:center;align-items:center}.subbox .subbox2{width:60%;height:100%;background-color:#F89B7F;color:white;display:flex;justify-content:center;align-items:center}.subbox .subbox2 .subbox2_2{margin-left:10rpx}

+ 1 - 1
nova-tourism/pages/my/merchant/merchant-home/account/index.less

@@ -29,7 +29,7 @@
                 .input {
                     width: 500rpx;
                     text-align: right;
-    
+                    color: #382E2E;
                 }
     
                 .name {

+ 2 - 2
nova-tourism/pages/my/merchant/merchant-home/account/index.wxml

@@ -1,7 +1,7 @@
 <nav type="back" background-color="#46a9a4" title="账户管理" />
 
 
-<view class="top">
+<view class="top" style="color: #382E2E;">
     <view class="top-figure">店铺首图</view>
     <upload bind:onChangeFile="changeFile" fileList="{{imageList}}" accept="image" maxCount="1" uploadURL="{{uploadURL}}" domain="{{domain}}" uptokenURL="{{uptokenURL}}"></upload>
     <view class="top-deails">
@@ -73,6 +73,6 @@
 </view>
 <!-- <diy-editor width="100%" height="600rpx" insertPicture="{{true}}" placeholder="开始输入..." bind:Content="getHtml" bind:insertImage="insertImage" id="hf_editor" uploadURL="{{uploadURL}}" domain="{{domain}}" uptokenURL="{{uptokenURL}}" /> -->
 <!-- <diy-editor width="100%" height="600rpx" insertPicture="{{true}}" placeholder="编写文章..." data-field="{{field.key}}" bind:Content="getHtml" bind:insertImage="insertImage" id="editor{{field.key}}" /> -->
-<view class="bommon">
+<view class="bommon" style="color: #382E2E;">
     <view class="bommon-name" bindtap="determine">确定</view>
 </view>

+ 1 - 1
nova-tourism/pages/my/merchant/merchant-home/account/index.wxss

@@ -1 +1 @@
-page{background:#f6f6f6;padding-bottom:148rpx}.top{padding:20rpx 30rpx;background:#ffffff}.top .top-figure{margin:20rpx 0}.top .top-deails{display:flex;justify-content:space-between;border-bottom:1rpx solid #adabab}.top .top-deails .top-name{display:flex;justify-content:space-between;margin:30rpx 0 0 0;padding-bottom:30rpx;width:93%}.top .top-deails .top-name .input{width:500rpx;text-align:right}.top .top-deails .top-name .name{width:200rpx;margin:auto 0}.top .top-deails .top-name .content{text-align:right}.top .top-deails .top-names{margin:30rpx 0 0 0;padding-bottom:30rpx;width:93%}.top .top-deails .top-names .input{margin-top:20rpx}.top .top-deails .top-names .name{width:200rpx}.bommon{position:fixed;bottom:0;width:100%;background:#ffffff;text-align:center;z-index:999;padding:10rpx 0}.bommon .bommon-name{background:#46a9a4;padding:30rpx 60rpx;border-radius:30rpx;width:500rpx;margin:0 auto}
+page{background:#f6f6f6;padding-bottom:148rpx}.top{padding:20rpx 30rpx;background:#ffffff}.top .top-figure{margin:20rpx 0}.top .top-deails{display:flex;justify-content:space-between;border-bottom:1rpx solid #adabab}.top .top-deails .top-name{display:flex;justify-content:space-between;margin:30rpx 0 0 0;padding-bottom:30rpx;width:93%}.top .top-deails .top-name .input{width:500rpx;text-align:right;color:#382E2E}.top .top-deails .top-name .name{width:200rpx;margin:auto 0}.top .top-deails .top-name .content{text-align:right}.top .top-deails .top-names{margin:30rpx 0 0 0;padding-bottom:30rpx;width:93%}.top .top-deails .top-names .input{margin-top:20rpx}.top .top-deails .top-names .name{width:200rpx}.bommon{position:fixed;bottom:0;width:100%;background:#ffffff;text-align:center;z-index:999;padding:10rpx 0}.bommon .bommon-name{background:#46a9a4;padding:30rpx 60rpx;border-radius:30rpx;width:500rpx;margin:0 auto}

+ 2 - 2
nova-tourism/pages/my/merchant/merchant-home/account/password/index.less

@@ -10,7 +10,7 @@
 }
 
 .phone {
-    color: #333;
+    color: #382E2E;
     margin-right: 60rpx;
     font-size: 28rpx;
     width: 200rpx;
@@ -18,7 +18,7 @@
 }
 
 .number {
-    color: #333;
+    color: #382E2E;
     font-size: 28rpx;
     width: 200rpx;
 }

+ 1 - 1
nova-tourism/pages/my/merchant/merchant-home/account/password/index.wxml

@@ -1,5 +1,5 @@
 <nav type="back" background-color="#46a9a4" title="修改密码" />
-<form bindsubmit="formSubmit">
+<form bindsubmit="formSubmit" style="color: #382E2E;">
     <view class='phone-box'>
         <text class='phone'>验证码</text>
         <input name="phoneCode" placeholder="请输入验证码" class='number' placeholder-style='color:#bbb' bindinput="yanLoveInput" />

+ 1 - 1
nova-tourism/pages/my/merchant/merchant-home/account/password/index.wxss

@@ -1 +1 @@
-.phone-box{height:89rpx;border-bottom:1rpx solid #efefef;display:flex;flex-direction:row;justify-content:flex-start;align-items:center;margin:30rpx}.phone{color:#333;margin-right:60rpx;font-size:28rpx;width:200rpx;text-align:right}.number{color:#333;font-size:28rpx;width:200rpx}.getNum{width:210rpx;height:48rpx;background:#f87039;border-radius:8rpx;font-size:28rpx;font-family:PingFang-SC-Medium;color:#fff;line-height:48rpx;margin-right:36rpx;text-align:center}.submit{width:480rpx;height:80rpx;background:#f87039;border-radius:8rpx;margin-top:80rpx;color:#fff;font-size:32rpx}
+.phone-box{height:89rpx;border-bottom:1rpx solid #efefef;display:flex;flex-direction:row;justify-content:flex-start;align-items:center;margin:30rpx}.phone{color:#382E2E;margin-right:60rpx;font-size:28rpx;width:200rpx;text-align:right}.number{color:#382E2E;font-size:28rpx;width:200rpx}.getNum{width:210rpx;height:48rpx;background:#f87039;border-radius:8rpx;font-size:28rpx;font-family:PingFang-SC-Medium;color:#fff;line-height:48rpx;margin-right:36rpx;text-align:center}.submit{width:480rpx;height:80rpx;background:#f87039;border-radius:8rpx;margin-top:80rpx;color:#fff;font-size:32rpx}

+ 3 - 3
nova-tourism/pages/my/merchant/merchant-home/index.wxml

@@ -1,5 +1,5 @@
 <nav type="back" url="/nova-tourism/pages/index/index?active=4" background-color="#46a9a4" title="商户端" />
-<view class="box">
+<view class="box" style="color: #382E2E;">
     <view class="store">
         <image class="store-img" src="{{store.cover}}" />
         <view class="store-box">
@@ -147,8 +147,8 @@
         </block>
     </view>
 </view>
-<view class="bommon" bind:tap="codeVerify">扫码核销</view>
-<view class="bommon" bind:tap="logout">退出登录</view>
+<view class="bommon" bind:tap="codeVerify" style="color: #382E2E;">扫码核销</view>
+<view class="bommon" bind:tap="logout" style="color: #382E2E;">退出登录</view>
 <!-- <block wx:if="{{store.type=='catering'}}">
     <view class="bommon" bind:tap="code">扫码核销</view>
 </block> -->

+ 2 - 2
nova-tourism/pages/my/merchant/merchant-home/order2-list/index.wxml

@@ -1,6 +1,6 @@
 <nav type="back" background-color="#46a9a4" title="订单列表" />
-<block wx:for="{{list}}" wx:key="index">
-    <view class="box" data-item="{{item}}" bindtap="orderdeils">
+<block wx:for="{{list}}" wx:key="index" >
+    <view class="box" data-item="{{item}}" bindtap="orderdeils" style="color: #382E2E;">
         <view class="order-number">
             <view class="number">订单号:{{item.orderNum}}</view>
             <block wx:if="{{item.status==100}}">

+ 2 - 2
nova-tourism/pages/my/merchant/merchant-home/order2-list/order-deils/index.wxml

@@ -1,5 +1,5 @@
 <nav type="back" background-color="#46a9a4" title="订单详情" />
-<view class="box">
+<view class="box" style="color: #382E2E;">
     <view class="order-txt" data-item="{{item}}">
         <image class="order-image" src="{{order.shopStore.cover}}" />
         <view class="order-name">
@@ -9,7 +9,7 @@
         </view>
     </view>
 </view>
-<view class="box">
+<view class="box" style="color: #382E2E;">
  <view class="order-number">
         <view class="order-title">订单编号:</view>
         <view class="order-txts"bindtap="copywxtap">{{order.orderNum}} 复制</view>

+ 2 - 2
nova-tourism/pages/my/merchant/merchant-home/store-withdraw/index.wxml

@@ -1,13 +1,13 @@
 <nav type="back" background-color="#46a9a4" frontColor="{{titleColor ? titleColor : '#000000'}}" title="申请提现"></nav>
 <view class="earnings">¥{{earnings ? earnings:'0'}}</view>
-<view class="apply">
+<view class="apply" style="color: #382E2E;">
     <view class="title">提现金额</view>
     <view class="string">
         <input bindblur="blur" type="text" data-name="price" type="number" value="{{price}}" class="input" placeholder="请输入提现金额,最低1000起提现"></input>
     </view>
 </view>
-<view class="apply">
+<view class="apply" style="color: #382E2E;">
     <view class="way">提现方式</view>
     <view class='box'>
         <view class='box-container' wx:for="{{list}}" wx:key="list">

+ 2 - 2
nova-tourism/pages/my/merchant/room-manage/index.wxml

@@ -1,10 +1,10 @@
 <nav type="back" background-color="#46a9a4" title="房型管理" />
-<view class="page-section">
+<view class="page-section" >
     <view class="add-customer" bind:tap="addRoom">
         <van-icon class="add-icon" name="https://file-cloud.fmode.cn/sHNeVwSaAg/20220418/qn1d5i021341.png?imageView2/1/w/200/h/200" color="#3d88ff" />
         <text class="text" style="color:#3d88ff;">添加房型</text>
     </view>
 </view>
-<scroll-view scroll-y="true" style="height:calc(100% - {{navigationBarHeight}}rpx);" bindscrolltolower="loadMore">
+<scroll-view scroll-y="true" style="height:calc(100% - {{navigationBarHeight}}rpx); color: #382E2E;" bindscrolltolower="loadMore">
     <goods-list list="{{rooms}}" mode="horizontal" navigateBtn="编辑详情" btnModel="plain" bind:btnTap="edit"></goods-list>
 </scroll-view>

+ 2 - 0
nova-tourism/pages/my/merchant/room-manage/room-edit/index.less

@@ -12,6 +12,7 @@ page {
 .form-item {
     width: 100%;
     margin: 20rpx 0;
+    color:#382E2E;
     .form-label {
         font-size: 28rpx;
         margin:20rpx;
@@ -39,6 +40,7 @@ page {
 .tag-wrapper{
     display: flex;
     align-items: center;
+    color:#382E2E;
     .add-btn {
         width: auto;
     }

+ 1 - 1
nova-tourism/pages/my/merchant/room-manage/room-edit/index.wxml

@@ -1,5 +1,5 @@
 <nav type="back" background-color="#46a9a4" title="{{pageType == 'add'?'添加房型':'编辑详情'}}" />
-<view class="page-section form">
+<view class="page-section form" style="color:#382E2E; ">
     <block wx:for="{{route['editFields']}}" wx:key="index" wx:for-item="field">
         <!-- <block wx:if="{{route.editTabs}} " wx:key="index" wx:for-item="tab">{{tab==field['editTab']}} -->
             <!-- <block wx:if="{{tab==field['editTab']}}"> -->

+ 1 - 1
nova-tourism/pages/my/merchant/room-manage/room-edit/index.wxss

@@ -1 +1 @@
-.red{color:#F01740}.grey{color:#666666}.black{color:#000000}.title{font-weight:Medium;font-size:36rpx;color:#222222}.text-large{font-size:36rpx}.text{font-size:30rpx}.text-left{text-align:left}.text-center{text-align:center}.text-small{font-size:24rpx}.flex{display:flex}.justify-between{justify-content:space-between}.flex-aligin-center{display:flex;align-items:center}.flex-justify-between{display:flex;justify-content:space-between}.flex-1{flex:1}.flex-grow-1{flex-grow:1}.fixed-bottom{position:fixed;bottom:0;left:0;right:0}.w-100{width:100%}.h-100{height:100%}.page-section{margin:20rpx;border-radius:20rpx;background-color:#ffffff}.page-section-spacing{padding:20rpx}.spacing-small{padding:10rpx}.border-trans{border:1px solid transparent}.ellipsis{width:100%;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.ellipsis-2{width:100%;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.form{display:flex;flex-wrap:wrap}.form .col-12{width:50%}.form-item{width:100%;margin:20rpx 0}.form-item .form-label{font-size:28rpx;margin:20rpx;color:#666666}.form-item .form-label .required{font-size:40rpx;vertical-align:middle}.form-item .form-field{padding:10rpx}.form-item .form-field .form-input{padding:10rpx;border:.5px solid #eee;border-radius:10rpx}.form-item .form-field .form-input-num{width:200rpx}.tag-wrapper{display:flex;align-items:center}.tag-wrapper .add-btn{width:auto}.tag-wrapper .tags{flex:1;display:flex;flex-wrap:wrap}.tag-wrapper .tags .tag{margin:10rpx}.footer{margin-bottom:100rpx;padding:20rpx}
+.red{color:#F01740}.grey{color:#666666}.black{color:#000000}.title{font-weight:Medium;font-size:36rpx;color:#222222}.text-large{font-size:36rpx}.text{font-size:30rpx}.text-left{text-align:left}.text-center{text-align:center}.text-small{font-size:24rpx}.flex{display:flex}.justify-between{justify-content:space-between}.flex-aligin-center{display:flex;align-items:center}.flex-justify-between{display:flex;justify-content:space-between}.flex-1{flex:1}.flex-grow-1{flex-grow:1}.fixed-bottom{position:fixed;bottom:0;left:0;right:0}.w-100{width:100%}.h-100{height:100%}.page-section{margin:20rpx;border-radius:20rpx;background-color:#ffffff}.page-section-spacing{padding:20rpx}.spacing-small{padding:10rpx}.border-trans{border:1px solid transparent}.ellipsis{width:100%;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.ellipsis-2{width:100%;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.form{display:flex;flex-wrap:wrap}.form .col-12{width:50%}.form-item{width:100%;margin:20rpx 0;color:#382E2E}.form-item .form-label{font-size:28rpx;margin:20rpx;color:#666666}.form-item .form-label .required{font-size:40rpx;vertical-align:middle}.form-item .form-field{padding:10rpx}.form-item .form-field .form-input{padding:10rpx;border:.5px solid #eee;border-radius:10rpx}.form-item .form-field .form-input-num{width:200rpx}.tag-wrapper{display:flex;align-items:center;color:#382E2E}.tag-wrapper .add-btn{width:auto}.tag-wrapper .tags{flex:1;display:flex;flex-wrap:wrap}.tag-wrapper .tags .tag{margin:10rpx}.footer{margin-bottom:100rpx;padding:20rpx}

Some files were not shown because too many files changed in this diff