1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .main {
- height: 88.8vh;
- .one {
- width: 96vw;
- .content {
- background-color: #ffffff;
- border-bottom: 1px solid #cccccc;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 2vw;
- width: 92vw;
- .label {
- text-align: left;
- font-size: 16px;
- }
- .value {
- width: 65vw;
- text-align: right;
- font-size: 16px;
- textarea {
- width: 65vw;
- }
- .personList {
- float: left;
- margin: 1vw;
- width: 26vw;
- padding: 2vw;
- text-align: center;
- border: 1px solid #ff0000;
- .name {
- font-size: 15px;
- padding: 0 2vw 0;
- }
- }
- .personList:nth-child(2n) {
- margin: 1vw 0 1vw 1vw;
- }
- }
- }
- .btn {
- margin: 2vw 0 0 0;
- text-align: center;
- }
- }
- }
|