| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .header1{
- height: 128px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #4D4D4D;
- font-size: 32px;
- }
- .body1{
- height: 698px;
- }
- .input_lb{
- background-color: #fff;
- margin-left: 40px;
- margin-right: 40px;
- height: 96px;
- // border: solid 2px #B2B2B2;
- border-radius: 24px;
- padding-left: 20px;
- padding-right: 20px;
- text-align: center;
- }
- .label_bg{
- display: flex;
- flex-direction: row;
- // flex-wrap: wrap;
- margin-left: 40px;
- margin-right: 40px;
- margin-top: 40px;
- }
- .label{
- margin-right: 16px;
- margin-bottom: 16px;
- height: 64px;
- border-radius: 32px;
- padding-left: 30px;
- padding-right: 30px;
- font-size: 28px;
- color: #000;
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- }
- .pop_footer{
- display: flex;
- height: 88px;
- border-radius: 44px;
- margin-left: 84px;
- margin-right: 84px;
- background-color: #FF751A;
- align-items: center;
- justify-content: center;
- color: #fff;
- font-size: 32px;
- font-weight: bold;
- margin-bottom: 116px;
- }
|