123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- align-content: center;
- flex-wrap: nowrap;
- height: 100vh;
- }
- .header,
- .data,
- .order-other {
- width: 100%;
- display: flex;
- flex-direction: column;
- flex-wrap: nowrap;
- justify-content: center;
- background-color: #fff;
- border-bottom: 6px solid #eee;
- padding-left: 20px;
- }
- .header .address {
- font-size: 20px;
- color: #333;
- }
- .header .detail {
- font-size: 16px;
- margin-top: 5px;
- color: rgb(151, 151, 151);
- }
- .header.no-address {
- justify-content: space-between;
- flex-direction: row;
- padding-bottom: 20px;
- padding: 0 10px 20px;
- }
- .header.no-address .address {
- margin-left: 20px;
- }
- .header.no-address .detail {
- margin-right: 20px;
- }
- .with-line {
- padding-top: 10px;
- padding-bottom: 10px;
- border-bottom: 2px solid #eee;
- }
- .content {
- display: flex;
- flex-direction: column;
- flex-wrap: nowrap;
- justify-content: center;
- width: calc(100% - 40px);
- }
- .shop-name {
- font-size: 16px;
- color: #333;
- }
- .item {
- display: flex;
- justify-content: space-between;
- align-content: space-between;
- width: 100%;
- }
- .item .item-detail {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-content: center;
- }
- .color-grey {
- color: rgb(151, 151, 151);
- }
- .color-red {
- color: rgba(255, 0, 0, 0.575);
- }
- .item .item-detail .pic {
- width: 80px;
- height: 48px;
- margin-right: 10px;
- }
- .item .item-detail .bug-detail {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-content: center;
- align-items: flex-start;
- }
- .item .item-detail .bug-detail .num,
- .item-price .price-old {
- font-size: 14px;
- }
- .item .item-price {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-content: center;
- align-items: flex-end;
- }
- .package,
- .pay,
- .data-detail {
- display: flex;
- justify-content: space-between;
- align-content: space-between;
- position: relative;
- }
- .data-detail .name {
- width: 50px;
- }
- .counter {
- position: absolute;
- right: 10px;
- bottom: 10px;
- }
- .data-detail textarea {
- background-color: #f6f6f6;
- height: 70px;
- }
- .content {
- padding-bottom: 40px;
- }
- .total {
- margin: 10px 0 -30px;
- text-align: right;
- }
- .data {
- border-top: 6px solid #eee;
- height: unset;
- width: calc(100% - 40px);
- padding: 10px 20px;
- border-bottom: unset;
- }
- .order-other {
- height: unset;
- width: calc(100% - 40px);
- padding: 10px 20px;
- }
- .order-other .other-detail {
- display: flex;
- justify-content: flex-start;
- align-content: space-between;
- margin: 10px 0;
- }
- .bottom-total {
- position: fixed;
- bottom: 0;
- display: flex;
- align-content: space-between;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- width: calc(100% );
- margin: 5px 0;
- padding-top: 5px;
- box-shadow: 0px -10px 24px 0px rgba(0, 0, 0, 0.08);
- }
- .bottom-total .name{
- margin-left: 10px;
- }
- .bottom-total button {
- margin: 0;
- background: #ff8700;
- border-radius: 50rpx;
- padding: 0 30px;
- margin-right: 10px;
- }
|