1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* pages/setName/setName.wxss */
- .set {
- position: relative;
- width: 100%;
- height: 100%;
- background: #eaeaea;
- }
- .set-head {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 50rpx 0 20rpx 0;
- }
- .set-head image {
- width: 348rpx;
- height: 348rpx;
- border-radius: 50%;
- background: red;
- }
- .set-head text {
- font-size: 32rxp;
- color: #808080;
- margin-top: 50rpx;
- }
- .set-name,
- .set-phone {
- width: 100%;
- padding: 0 37rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- margin-top: 50rpx;
- }
- .set-name input,
- .set-phone input {
- width: 75%;
- height: 110rpx;
- background: #fff;
- border-radius: 20rpx;
- padding-left: 20rpx;
- box-sizing: border-box;
- }
- .set-name input {
- margin-left: 20rpx;
- }
- .set-phone input {
- margin-left: 55rpx;
- }
- .set-name text,
- .set-phone text {
- font-size: 36rpx;
- color: #424242;
- }
- .explain {
- width: 100%;
- padding: 0 37rpx;
- box-sizing: border-box;
- margin-top: 67rpx;
- color: #727272;
- font-size: 32rpx;
- line-height: 46rpx;
- }
- .preservation {
- position: absolute;
- left: 50%;
- transform: translate(-50%);
- bottom: 30rpx;
- width: 247rpx;
- height: 108rpx;
- text-align: center;
- line-height: 108rpx;
- background: #feb500;
- color: #fff;
- font-size: 44rpx;
- border-radius: 20rpx;
- }
|