123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /* pages/user/user.wxss */
- page{
- background: #F4F7F9;
- }
- form{
- background: #fff;
- /* margin-top: 12px; */
- display: block;
- }
- form .item{
- border-bottom: 1px solid #F2F3F4;
- padding: 15px;
- position: relative;
- }
- form .item label{
- color: #222;
- display: inline-block;
- width: 60px;
- vertical-align: middle;
- text-align: right;
- }
- form .item input,form .item picker{
- display: inline-block;
- width: 70%;
- border: none;
- padding-left: 20px;
- vertical-align: middle;
- }
- form .item image{
- position: absolute;
- right: 12px;
- width: 16px;
- top:20px;
- }
- .content{
- background: #fff;
- margin-top: 12px;
- padding: 10px 12px;
- }
- .content .item{
- padding:10px 200rpx;
- position: relative;
- padding-right: 0;
- }
- .content .item image{
- width: 160rpx;
- height: 160rpx;
- position: absolute;
- left: 20rpx;
- top: 0;
- bottom: 0;
- margin: auto;
-
- }
- .content .title{
- color: #333;
- }
- .content .item text{
- color: #E85546;
- font-size: 24rpx;
- }
- .tips{
- color: #358BFF;
- margin-top: 36rpx;
- }
- .post{
- width: calc(100% - 24px);
- height:96rpx;
- background:rgba(53,139,255,1);
- border-radius:4px;
- color: #fff;
- line-height: 96rpx;
- margin: 20px auto;
- text-align: center;
- }
- .model{
- position: fixed;
- z-index: 9;
- background: rgba(0,0,0);
- width: 100%;
- height: 100vh;
- top: 0;
- left: 0;
- display: none;
- }
- .show{
- display: block;
- }
- .model image{
- width: 100%;
- position: absolute;
- top:0;
- left: 0;
- bottom: 0;
- right: 0;
- margin: auto;
- }
- form .xs image{
- position: static;
- width: 100px;
- margin-left: 30px;
- }
- form .xs label{
- vertical-align: top;
- }
|