| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- .top-view {
- position: sticky;
- top: 0px;
- z-index: 999;
- .orderinfo {
- display: flex;
- flex-direction: column;
- margin: 5px 10px;
- .title_item {
- display: flex;
- flex-direction: row;
- justify-content: start;
- align-items: center;
- align-content: center;
- text {
- color: #333;
- font-size: 14px;
- }
- text:nth-child(3) {
- margin-left: 15px;
- }
- }
- .orderinfo_item {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- height: 25px;
- .orderinfo_left, .orderinfo_right {
- width: 50%;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- }
- .orderinfo_left {
- margin-right: 10px;
- }
- .orderinfo_right {
- margin-left: 10px;
- }
- text {
- font-size: 14px;
- }
- text:nth-child(1) {
- color: #666;
- }
- text:nth-child(2) {
- color: #333;
- }
- }
- }
- .title-view {
- margin: 5px;
- background-color: #f0f0f0;
- height: 70px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- align-content: center;
- flex-direction: column;
- padding: 5px 10px;
-
- .title-view-up, .title-view-mid, .title-view-down {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 50%;
- width: 100%;
- align-content: center;
-
- text {
- color: #666;
- font-size: 13px;
- }
- }
-
- .title-view-up {
- border-bottom: 1px solid #ddd;
- }
- }
- }
- .item-view {
- margin: 10px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- align-content: center;
- flex-direction: column;
- padding: 5px 10px;
- border: 1px solid #ddd;
- .item-view-up, .item-view-mid, .item-view-dwn {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 50%;
- width: 100%;
- align-content: center;
- height: 25px;
- text {
- color: #333;
- font-size: 13px;
- /*超出隐藏*/
- overflow: hidden;
- /*溢出不换行*/
- white-space: nowrap;
- /*溢出显示用省略号*/
- text-overflow: ellipsis;
- text-align: center;
- }
- :first-child {
- text-align: left;
- }
- :last-child {
- text-align: right;
- }
- }
- .item-view-up {
- border-bottom: 1px solid #ddd;
- padding-bottom: 5px;
- }
- }
- .ordertitle {
- color: #333;
- font-size: 18px;
- font-weight: bold;
- }
|