| 123456789101112131415161718192021222324252627282930313233 |
- .container {
- padding: 0 16px;
- .cell-item {
- margin-top: 16px;
- .cell-label {
- font-size: 14px;
- font-weight: 500;
- text-align: left;
- span {
- color: #ff0000;
- }
- }
- .cell-input {
- height: 44px;
- background: #f9f9f9;
- border-radius: 10px;
- margin-top: 12px;
- padding: 2px 10px;
- box-sizing: border-box;
- }
- }
- .submit {
- height: 50px;
- background: #05a9e2;
- border-radius: 25px;
- font-size: 16px;
- font-weight: 500;
- color: #ffffff;
- text-align: center;
- line-height: 50px;
- margin-top: 44px;
- }
- }
|