1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* pages/post/post.wxss */
- page{
- background: #F4F7F9;
- }
- form{
-
- margin-top: 12px;
- display: block;
- }
- .item{
- border-bottom: 1px solid #F2F3F4;
- padding:12px 15px;
- position: relative;
- background: #fff;
- }
- .item label{
- color: #222;
- display: inline-block;
- width: 60px;
- vertical-align: middle;
- text-align: right;
- font-weight:bold;
- }
- .item input,.item picker{
- display: inline-block;
- width: 70%;
- border: none;
- padding-left: 20px;
- vertical-align: middle;
- }
- .item image{
- position: absolute;
- right: 12px;
- width: 16px;
- top:20px;
- }
- .next_fee{
- position: fixed;
- bottom: 0rpx;
- }
- .fee{
- text-align: right;
- color: #E85546;
- margin-top:10px;
- padding: 0 12px;
- }
- .fee label{
- color: #222;
- margin-right: 20px;
- }
- .post{
- padding:20px 12px;
- }
- .post button{
- width: 100% !important;
- height:96rpx;
- background:rgba(53,139,255,1);
- border-radius:4px;
- color: #fff;
- line-height: 96rpx;
- padding: 0;
- }
- .intro{
- margin-top: 12px;
- color: #358BFF;
- font-size: 24rpx;
- }
|