123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- .registerPage {
- .registerFormBox {
- width: 100%;
- margin-top: 20px;
- text-align: center;
- .van-form {
- .van-cell {
- width: 90%;
- height: 40px;
- padding: 0;
- margin: 0 auto;
- margin-top: 15px;
- overflow: visible;
- &::after {
- display: none;
- }
- .van-field__button button {
- background-color: #4d6add;
- color: #fff;
- }
- .van-button__text {
- padding: 5px;
- }
- .van-field__control {
- height: 40px;
- line-height: 30px;
- padding: 6px;
- border-radius: 2px;
- border: 0.5px solid rgba(185, 186, 208, 1);
- }
- .van-field__label {
- display: flex;
- height: 40px;
- align-items: center;
- width: 80px;
- }
- .radioBox {
- display: flex;
- .van-radio-group--horizontal {
- // width: 100%;
- justify-content: space-around;
- }
- .van-radio {
- overflow: visible;
- }
- .van-radio__icon--checked .van-icon-success {
- border-color: #4d6add;
- background: #4d6add;
- }
- .van-radio__icon .van-icon {
- font-size: 0.35rem;
-
- }
- // .van-icon-success::before {
- // content: '';
- // background: #fff;
- // width: 40%;
- // height: 40%;
- // position: absolute;
- // top: 30%;
- // left: 29%;
- // border-radius: 100%;
- // }
- .van-radio__icon--checked+.van-radio__label {
- color: #4d6add;
- }
- }
- }
- }
- }
- .van-tabs__nav {
- .van-tab--card {
- color: #4d6add;
- border-right: #4d6add
- }
- border-color: #4d6add;
- .van-tab--active {
- color: #fff;
- background-color: #4d6add;
- }
- }
- .register {
- background-color: #4d6add;
- border-radius: 17px;
- height: 34px;
- width: 220px;
- margin-top: 60px;
- font-size: 15px;
- font-family: PingFangSC-Medium;
- }
- }
|