12345678910111213141516171819202122232425262728293031323334 |
- .main {
- height: 88.8vh;
- }
- .main .one {
- width: 96vw;
- }
- .main .one .content {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin: 0 10px;
- padding: 10px 5px;
- border-bottom: 1px solid #cccccc;
- }
- .main .one .content .label {
- font-size: 15px;
- }
- .main .one .content .value {
- color: #666;
- font-size: 16px;
- text-align: right;
- }
- .main .one .content .value textarea {
- max-width: 220px;
- }
- .main .one .btn {
- width: 96vw;
- margin: 2vw 0 0 0;
- text-align: center;
- }
- .main .one .btn button {
- font-size: 14px;
- }
|