| 1234567891011121314151617181920212223242526272829303132 |
- .type {
- display: flex;
- flex-direction: row;
- height: 50px;
- align-content: center;
- align-items: center;
- justify-content: flex-start;
- padding-right: 10px;
- border-bottom: 1px solid #f8f8f8;
- .label {
- font-size: 14px;
- color: #666;
- width: 110px;
- padding-left: 15px;
- }
- .type-selsct {
- color: #666;
- font-size: 14px;
- width: 75%;
- }
- }
- .buttom_view {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-top: 20px;
- align-items: center;
- align-content: center;
- }
|