pull/18/head
parent
6cb9ded875
commit
924a4b57eb
2 changed files with 128 additions and 79 deletions
@ -1,93 +1,100 @@ |
|||||||
.flex { |
.flex { |
||||||
display: flex; |
display: flex; |
||||||
} |
} |
||||||
|
|
||||||
.column { |
.column { |
||||||
flex-direction: column; |
flex-direction: column; |
||||||
} |
} |
||||||
|
|
||||||
.ac { |
.ac { |
||||||
align-items: center; |
align-items: center; |
||||||
|
} |
||||||
|
.ae { |
||||||
|
align-items: flex-end; |
||||||
} |
} |
||||||
|
|
||||||
.jc { |
.jc { |
||||||
justify-content: center; |
justify-content: center; |
||||||
} |
} |
||||||
|
|
||||||
.oneflex { |
.oneflex { |
||||||
flex: 1; |
flex: 1; |
||||||
} |
} |
||||||
|
|
||||||
.jw { |
.jw { |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
} |
} |
||||||
|
|
||||||
.js { |
.js { |
||||||
justify-content: space-around; |
justify-content: space-around; |
||||||
} |
} |
||||||
|
|
||||||
.number { |
.number { |
||||||
color: red; |
color: red; |
||||||
font-size: 25px; |
font-size: 25px; |
||||||
} |
} |
||||||
|
|
||||||
.product-card { |
.product-card { |
||||||
.product-card-item {} |
height: 100px; |
||||||
|
text-align: center; |
||||||
|
.product-card-item { |
||||||
|
} |
||||||
} |
} |
||||||
|
|
||||||
.orderData { |
.orderData { |
||||||
width: 100%; |
width: 100%; |
||||||
|
|
||||||
.orderData-right { |
|
||||||
margin-left: 50px; |
|
||||||
flex-wrap: wrap; |
|
||||||
|
|
||||||
.orderData-right-item { |
.orderData-right { |
||||||
width: calc(50% - 20px); |
margin-left: 50px; |
||||||
box-sizing: border-box; |
flex-wrap: wrap; |
||||||
text-align: center; |
height: 100px; |
||||||
padding: 10px 20px; |
.orderData-right-item { |
||||||
border-bottom: #ececec solid 1px; |
width: calc(50% - 20px); |
||||||
|
box-sizing: border-box; |
||||||
} |
text-align: center; |
||||||
|
padding: 10px 20px; |
||||||
|
border-bottom: #ececec solid 1px; |
||||||
} |
} |
||||||
|
} |
||||||
|
|
||||||
.orderData-left { |
.orderData-left { |
||||||
padding: 10px 20px; |
padding: 20px 10px; |
||||||
box-sizing: border-box; |
box-sizing: border-box; |
||||||
border: solid 1px #bbbbbb; |
border: solid 1px #ececec; |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
.orderStatistics-card { |
.orderStatistics-card { |
||||||
.orderStatistics-card-right{ |
.orderStatistics-card-right { |
||||||
|
} |
||||||
|
.orderStatistics-card-left { |
||||||
|
flex-shrink: 0; |
||||||
|
padding: 10px 50px; |
||||||
|
border-right: solid 1px #ececec; |
||||||
|
.orderStatistics-card-left-item { |
||||||
|
.orderStatistics-card-left-item-title { |
||||||
|
color: #bbbbbb; |
||||||
|
} |
||||||
|
.orderStatistics-card-left-item-number { |
||||||
|
font-size: 25px; |
||||||
|
} |
||||||
} |
} |
||||||
.orderStatistics-card-left { |
} |
||||||
flex-shrink: 0; |
} |
||||||
padding: 10px 50px; |
.box-card { |
||||||
border-right: solid 1px #ececec; |
margin-bottom: 30px; |
||||||
.orderStatistics-card-left-item{ |
|
||||||
.orderStatistics-card-left-item-title{ |
|
||||||
color: #bbbbbb; |
|
||||||
} |
|
||||||
.orderStatistics-card-left-item-number{ |
|
||||||
font-size: 25px; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
} |
} |
||||||
.box-card{ |
.card-title { |
||||||
margin-bottom: 30px; |
font-size: 20px; |
||||||
|
font-weight: 500; |
||||||
} |
} |
||||||
.card-title{ |
.fs { |
||||||
font-size: 20px; |
font-size: 16px; |
||||||
font-weight: 600; |
|
||||||
} |
} |
||||||
.mt{ |
.mt { |
||||||
margin-top: 30px; |
margin-top: 30px; |
||||||
} |
} |
||||||
// .page{ |
// .page{ |
||||||
// height:calc(100vh - 144px); |
// height:calc(100vh - 144px); |
||||||
// box-sizing: border-box; |
// box-sizing: border-box; |
||||||
// } |
// } |
||||||
|
Loading…
Reference in new issue