1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* pages/onlinePost/onlinePost.wxss */
- page{
- background: #F4F7F9;
- }
- .content{
-
- margin: 12px 0;
- }
- .step{
- padding: 12px;
- }
- .step1{
- line-height: 25px;
- min-height: 80vh;
- background: #fff;
- padding: 12px;
- }
- .step1 view{
- font-size: 32rpx;
- font-weight: 600;
- text-align: center;
- margin-bottom: 12px;
- }
- .step .btn{
- width:100%;
- height:48px;
- background:rgba(53,139,255,1);
- border-radius:4px;
- display: block;
- line-height: 48px;
- text-align: center;
- color: #fff;
- margin-top: 20px;
- }
- .step2 view{
- height: 110px;
- line-height: 110px;
- padding: 0 20px;
- background:rgba(255,255,255,1);
- border-radius:7px;
- margin-bottom: 20px;
- position: relative;
- font-weight: 600;
- }
- .step2 image{
- width: 100px;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 20px;
- margin: auto;
- }
|