1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* pages/register/register.wxss */
- @import "../login//login.wxss";
- .page {
- background-color: #F9F9F9;
- /* background-color: aquamarine; */
- height: 100%;
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: start;
- align-items: center;
- padding-top: 38rpx;
- }
- .item_input_bg {
- width: 674rpx;
- height: 80rpx;
- background-color: white;
- display: flex;
- flex-direction: row;
- margin-top: 12rpx;
- justify-content: space-between;
- align-items: center;
- }
- .item_input_title {
- height: auto;
- width: auto;
- margin-left: 43rpx;
- font-size: 30rpx;
- }
- .item_input_content {
- height: 100%;
- flex: 1;
- color: #999999;
- text-align: right;
- margin-right: 63rpx;
- }
- .item_picker_bg {
- flex: 1;
- align-items: center;
- justify-content: center;
- }
- .item_picker_content {
- color: #999999;
- text-align: right;
- }
- .item_picker_icon_layout {
- height: 100%;
- width: 63rpx;
- justify-content: center;
- align-items: center;
- display: flex;
- }
- .item_picker_icon {
- width: 20rpx;
- height: 12rpx;
- margin-top: 8rpx;
- }
- .phonenum_layout {
- height: 243rpx;
- width: 674rpx;
- margin-top: 30rpx;
- }
- .phonenum_getvcode {
- color: #FFAA12;
- font-size: 25rpx;
- margin-right: 26rpx;
- }
- .phonenum_pwd_icon {
- height: 100%;
- width: 50rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
|