1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /**index.wxss**/
- page {
- /* background: #f3f3f3; */
- background:#F4F2F2;
- }
- .container{
- padding-top:20rpx;
- padding-bottom:80rpx;
- }
- view{
- font-size: 28rpx;
- }
- .edit-btn{
- width: 686rpx;
- height: 80rpx;
- background: #09AFFF;
- border-radius: 200rpx;
- line-height: 80rpx;
- /* position: fixed;
- left:28rpx;
- right:28rpx;
- bottom:94rpx; */
- color: #fff;
- text-align: center;
- margin:94rpx 28rpx 0;
- }
- .title{
- color: #323233;
- height:40rpx;
- line-height: 40rpx;
- font-weight: bold;
- padding:0 32rpx;
- margin:40rpx 0 16rpx;
- }
- .tips{
- color: #969799;
- line-height: 32rpx;
- font-size:24rpx;
- line-height: 32rpx;
- padding:0 32rpx;
- margin-bottom:16rpx;
- }
- .common-module{
- width: 750rpx;
- background: #FFFFFF;
- padding:0 32rpx;
- box-sizing: border-box;
- }
- .input-block{
- height: 88rpx;
- display: flex;
- align-items: center;
- border-bottom:1rpx solid #EBEDF0;
- }
- .input-label{
- line-height: 88rpx;
- color: #646566;
- width:200rpx;
- }
- .input-value{
- flex:1;
- padding-left:20rpx;
- height: 88rpx;
- line-height: 88rpx;
- }
- .input-placeholder{
- color: #C8C9CC;
- }
- .select-block{
- height: 88rpx;
- display: flex;
- align-items: center;
- border-bottom:1rpx solid #EBEDF0;
- }
- .no-border{
- border-bottom:none;
- }
- .select-label{
- line-height: 88rpx;
- color: #646566;
- width:200rpx;
- }
- .select-value{
- flex:1;
- padding-left:20rpx;
- height: 88rpx;
- line-height: 88rpx;
- }
- .select-value.default-value{
- color: #C8C9CC;
- }
- .special-tips{
- height: 48rpx;
- line-height: 32rpx;
- color: #969799;
- font-size: 24rpx;
- padding:12rpx 20rpx 0 32rpx;
- }
|