| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .registerModal {
- background: linear-gradient(180deg, #FFFFFF 0%, #FFDAB4 15%, #FFFFFF 100%);
- box-shadow: 0px 1px 6px 0px #DCC8F0;
- border-radius: 18px 18px 0px 0px;
- overflow: hidden;
- }
- .infoTitle {
- width: 315px;
- height: 31px;
- display: block;
- margin: 14px auto 10px;
- }
- .registerForm {
- background: #FFFFFF;
- box-shadow: 0px 1px 6px 0px #F0D8C8;
- border-radius: 18px;
- margin: 0 12px;
- overflow: hidden;
- .tips {
- padding-top: 4px;
- font-size: 12px;
- font-weight: 400;
- color: #FF5A56;
- line-height: 17px;
- }
- :global {
- .van-cell {
- padding: 16px 16px;
- }
- .van-field__label {
- font-size: 16px;
- font-weight: 600;
- color: #5B2C03;
- line-height: 22px;
- margin-bottom: 10px;
- }
- .van-field__control {
- font-size: 16px;
- }
- }
- .codeText {
- color: #DE801E;
- font-size: 14px;
- font-weight: 600;
- &.codeTextDisabled {
- color: #999;
- }
- }
- }
- .submitBtn {
- margin: 0px 12px 22px;
- width: calc(100% - 24px);
- height: 46px;
- border-radius: 12px;
- font-size: 16px;
- font-weight: 600;
- color: #5B2C03 !important;
- line-height: 22px;
- }
|