| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page,
- .content {
- height: 100%;
- margin: 0;
- padding: 0;
- }
- .box {
- margin: 20rpx 0 100rpx 0;
- width: 100%;
- background: #FFFFFF;
- }
- .box .wx {
- border-bottom: #F0F0F0 solid 1rpx;
- padding: 20rpx 0 30rpx 0;
- display: flex;
- }
- .box .wx text {
- width: 150rpx;
- margin: 0 30rpx;
- }
- .box .wx input {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 100rpx;
- }
- .box .erweima {
- padding: 30rpx 0;
- display: flex;
- }
- .box .erweima text {
- margin: 0 30rpx;
- width: 150rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- .box .erweima .img {
- width: 160rpx;
- height: 160rpx;
- }
- .box .erweima .img image {
- width: 100%;
- height: 100%;
- }
- .button {
- margin: 0 auto;
- width: 560rpx;
- height: 80rpx;
- background: #FD3B39;
- border-radius: 40rpx;
- font-size: 30rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 80rpx;
- text-align: center;
- }
|