| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .container {
- display: flex;
- flex-direction: column;
- .attribute-info {
- border-top: 10px solid #f0f0f0;
- }
- .attribute-info, .seller-info {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- margin-bottom: 10px;
- .title {
- padding: 10px 5px;
- width: 100%;
- color: #333;
- font-size: 20px;
- }
- .attribute-info__item, .content__item {
- width: 100%;
- padding-left: 15px;
- height: 50px;
- border-bottom: 1px solid #f0f0f0;
- display: flex;
- flex-direction: row;
- justify-content: start;
- align-items: center;
- align-content: center;
- &__step {
- display: flex;
- flex-direction: row;
- justify-content: start;
- align-items: center;
- align-content: center;
- width: 100%;
- margin: 5px 0px;
-
- &__item {
- display: flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- padding-top: 10px;
- margin-bottom: 5px;
-
- text {
- font-size: 12px;
- padding: 2.5px 5px;
- text-align: center;
- }
- }
- }
- .title {
- font-size: 14px;
- width: 80px;
- color: #666;
- }
- .value {
- font-size: 14px;
- color: #333;
- }
- }
- .content {
- width: 95%;
- background-color: #f0f0f0;
- border-radius: 10px;
- padding: 10px 0px;
-
- &__item {
- height: 30px;
- padding-left: 5px;
- }
- &__item:nth-last-child(1) {
- height: 50px;
- }
- .title {
- font-size: 14px;
- width: 70px;
- color: #666;
- }
- .value {
- font-size: 14px;
- color: #333;
- }
- }
- }
- .button-view {
- display: flex;
- justify-content: space-between;
- margin: 10px;
- justify-content: center;
- justify-items: center;
- van-button {
- height: 40px;
- width: 95%;
- }
- }
- }
|