123456789101112131415161718192021222324252627282930 |
- .main {
- height: 88.8vh;
- }
- .main .one {
- width: 96vw;
- }
- .main .one .content {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- padding: 10px 0;
- 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 .btn {
- width: 96vw;
- margin: 2vw 0 0 0;
- text-align: center;
- }
- .main .one .btn button {
- font-size: 14px;
- }
|