| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .top-view {
- position: sticky;
- top: 0;
- z-index: 999;
- background-color: white;
- .image-view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- margin-top: 10px;
- border-bottom: 1px solid #f0f0f0;
- .item-image-view {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 150px;
- .goodsno {
- height: 30px;
- margin-top: 5px;
- color: #333;
- font-size: 14px;
- text-align: center;
- width: 100%;
- }
- }
- }
- }
- .container {
- display: flex;
- flex-direction: column;
- width: 100%;
- align-content: center;
- align-items: center;
- .item {
- width: 95%;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- height: 45px;
- border-bottom: 1px solid #f0f0f0;
- text {
- font-size: 14px;
- color: #333;
- text-align: center;
- width: 150px;
- }
- text:nth-child(1) {
- width: 80px;
- text-align: left;
- }
- }
- }
|