12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* pages/setPassword/setPassword.wxss */
- .set-container {
- padding: 20rpx 28rpx;
- }
- .form-item {
- position: relative;
- border-bottom: solid 1px #e5e5e5;
- margin: 17rpx 26rpx;
- padding: 29rpx 113rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .macid-item {
- position: relative;
- margin: 0 26rpx;
- margin-bottom: 20rpx;
- padding: 29rpx 0;
- padding-right: 113rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .form-input {
- width: 100%;
- }
- .form-img {
- position: absolute;
- left: 14rpx;
- width: 48rpx;
- height: 48rpx;
- }
- .form-img-right {
- position: absolute;
- right: 14rpx;
- width: 48rpx;
- height: 48rpx;
- }
- .form-btn {
- margin-top: 60rpx;
- text-align: center;
- }
- .form-btn {
- margin-top: 60rpx;
- text-align: center;
- }
- .login-btn {
- width: 100%;
- height: 90rpx;
- line-height: 86rpx;
- background: #11bf96;
- border-radius: 43rpx;
- font-size: 32rpx;
- font-family: PingFangSC-Medium;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- text-align: center;
- margin: 0 auto;
- }
- .code-button {
- position: absolute;
- right: 14rpx;
- width: auto;
- padding: 0 12rpx;
- height: 50rpx;
- border: 1rpx solid rgba(15, 191, 149, 1);
- border-radius: 10rpx;
- }
- .code-text {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(15, 191, 149, 1);
- }
- .code-form {
- padding-right: 209rpx;
- }
|