123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* 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;
- height: 80vh;
- overflow:scroll;
- }
- .step1 view{
- font-size: 30rpx;
- font-weight: 600;
- text-align: center;
- margin-bottom: 12rpx;
- }
- .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;
- font-size:34rpx;
- }
- .step2 .item{
- height: 80px;
- /* line-height: 80px; */
- padding: 0 20px;
- background:rgba(255,255,255,1);
- border-radius:7rpx;
- margin-bottom: 20px;
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .step2 .item .item-title{
- font-size:32rpx;
- font-weight:bold;
- }
- .step2 image{
- width: 100px;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 20px;
- margin: auto;
- }
|