|
@@ -1 +1,67 @@
|
|
|
-/* salesperson/pages/commission/index.wxss */
|
|
|
+.container {
|
|
|
+ width: 100%;
|
|
|
+ min-height: 100vh;
|
|
|
+ padding: 50rpx 30rpx;
|
|
|
+ border-radius: 40rpx 40rpx 10rpx 10rpx;
|
|
|
+ background-color: white;
|
|
|
+}
|
|
|
+.container .title {
|
|
|
+ position: relative;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
+ margin-left: 30rpx;
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #0F0F0F;
|
|
|
+}
|
|
|
+.container .title:before {
|
|
|
+ position: absolute;
|
|
|
+ content: '';
|
|
|
+ left: -22rpx;
|
|
|
+ top: 14rpx;
|
|
|
+ width: 14rpx;
|
|
|
+ height: 14rpx;
|
|
|
+ background: #FF9D69;
|
|
|
+ border-radius: 50%;
|
|
|
+}
|
|
|
+.container .text {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #666666;
|
|
|
+ line-height: 50rpx;
|
|
|
+}
|
|
|
+.container .table {
|
|
|
+ width: 620rpx;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.container .table .header {
|
|
|
+ margin-top: 10px;
|
|
|
+ padding: 12rpx 0;
|
|
|
+ background: #FF9D69;
|
|
|
+ border: 1rpx solid #FF9D69;
|
|
|
+ color: white;
|
|
|
+ font-size: 22rpx;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.container .table .tr {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 22rpx;
|
|
|
+ color: #1A1A1A;
|
|
|
+ text-align: center;
|
|
|
+ border: 1rpx solid #F6CFBA;
|
|
|
+ border-top: none;
|
|
|
+}
|
|
|
+.container .table .tr view {
|
|
|
+ padding: 12rpx 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+.container .table .tr .td1 {
|
|
|
+ width: 170rpx;
|
|
|
+ border-right: 1rpx solid #F6CFBA;
|
|
|
+}
|
|
|
+.container .table .tr .td2 {
|
|
|
+ flex: 1;
|
|
|
+ border-right: 1rpx solid #F6CFBA;
|
|
|
+}
|
|
|
+.container .table .tr .td3 {
|
|
|
+ width: 200rpx;
|
|
|
+}
|