123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /* pages/plan/plan.wxss */
- page{
- background: #F4F7F9;
- }
- .section{
- display: flex;
- justify-content: space-between;
- padding: 12px;
- background: #fff;
- }
- .section picker{
- width: 33%;
- position: relative;
-
- }
- .section .picker{
- padding-right: 32rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- text-align: center;
- font-size: 24rpx;
- }
- .section image{
- width: 32rpx;
- position: absolute;
- right: 0;
- top:2px;
- }
- .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;
- }
|