12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /* 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 {
- width:120rpx;
- color: #FFAA12;
- text-align: center;
- font-size: 25rpx;
- margin-right: 26rpx;
- }
- .phonenum_pwd_icon {
- height: 100%;
- width: 50rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
|