12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* 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%;
- }
- .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;
- }
|