1234567891011121314151617181920212223242526272829303132 |
- .main {
- height: 88vh;
- background: #ffffff;
- .one {
- width: 96vw;
- .content {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin: 0 10px;
- padding: 10px 5px;
- border-bottom: 1px solid #cccccc;
- .label {
- font-size: 14px;
- }
- .value {
- color: #666;
- font-size: 12px;
- .img {
- height: 10vw;
- width: 10vw;
- // border-radius: 5px;
- }
- }
- }
- }
- }
|