| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* pages/plan/plan.wxss */
- page{
- background: #F4F7F9;
- }
- .section{
- display: flex;
- justify-content: space-between;
- padding: 12px;
- background: #fff;
- }
- .section image{
- width: 32rpx;
- }
- .content{
- padding: 12px;
- }
- .list{
- background: #fff;
- box-shadow:0px 2px 12px 0px rgba(0,0,0,0.08);
- border-radius:4px;
- margin-bottom: 12px;
-
- }
- .title{
- color: #222;
- font-size: 32rpx;
- padding: 12px;
- font-weight: 600;
- border-bottom: 1px solid #F2F3F4;
- }
- .kc{
- color: #222;
- font-size: 28rpx;
- border-bottom: 1px solid #F2F3F4;
- padding: 12px;
- position: relative;
- }
- .kc>text{
- display: block;
- line-height: 23px;
- }
- .price{
- float: right;
- color: #E85546;
- font-size: 28rpx;
- }
- .apply{
- width:88px;
- height:32px;
- background:rgba(53,139,255,1);
- border-radius:16px;
- position: absolute;
- text-align: center;
- color: #fff;
- right: 12px;
- bottom: 12px;
- line-height: 32px;
- }
|