| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .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;
- .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;
- }
- .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: 80%;
- }
- }
- }
|