1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* miniprogram/signup/signup.wxss */
- .viewMask {
- width: 100vw;
- height: 100vh;
- position: fixed;
- top: 0rpx;
- left: 0rpx;
- background-color: rgba(0, 0, 0, 0.4);
- z-index: 99999;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .viewBlock {
- width: 80%;
- height: 500rpx;
- background-color: #fff;
- border-radius: 20rpx;
- position: relative;
- box-sizing: border-box;
- overflow: hidden;
- padding: 80rpx 0rpx;
- }
- .viewTitle {
- width: 100%;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- font-size: 30rpx;
- color: #333333;
- font-weight: 600;
- border-bottom: 1rpx solid #f2f2f2;
- position: absolute;
- top: 0rpx;
- left: 0rpx;
- }
- .viewButton {
- width: 100%;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- position: absolute;
- bottom: 0rpx;
- left: 0rpx;
- font-size: 30rpx;
- background-color: #F96400;
- border-radius: 0rpx;
- color: #fff;
- }
- .viewContent {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- padding: 20rpx;
- }
- .viewInput {
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- border: 2rpx solid #f2f2f2;
- border-radius: 10rpx;
- box-sizing: border-box;
- padding: 0rpx 20rpx;
- margin-bottom: 20rpx;
- }
- .viewInput > view {
- font-size: 28rpx;
- margin-right: 20rpx;
- color: #999999;
- }
- .viewInput > view > text {
- color: red;
- }
- .viewInput > input {
- flex: 1;
- font-size: 28rpx;
- }
|