1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /* pages/pay/pay.wxss */
- page{
- background: #F4F7F9;
- }
- form{
- margin-top: 12px;
- display: block;
- padding-bottom: 70px;
- }
- .item{
- border-bottom: 1px solid #F2F3F4;
- padding: 15px;
- position: relative;
- background: #fff;
- }
- .item label{
- color: #222;
- display: inline-block;
- width: 60px;
- vertical-align: middle;
- text-align: right;
- font-weight: 800;
- }
- .item .blue{
- /* font-weight: 1000; */
- color: #358BFF;
- }
- .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;
- }
- .fee{
- border: none;
- }
- .item text{
- padding-left: 20px;
- position: relative;
- top: 1px;
- color: #333;
- }
- .fee text{
- float: right;
- color: #E85546;
- font-weight: 600;
- }
- .bottom{
- position: fixed;
- width: 100%;
- padding: 16px;
- background: #fff;
- z-index: 99;
- color: #222;
- font-size: 32rpx;
- left: 0;
- bottom: 0;
- }
- .bottom text{
- color: #E85546;
- margin-left: 12px;
- font-weight: 600;
- }
- .bottom button{
- width:100px !important;
- height:40px;
- background:rgba(232,85,70,1);
- border-radius:20px;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 16px;
- margin: auto;
- color: #fff;
- text-align: center;
- line-height: 40px;
- font-size: 32rpx;
- padding: 0;
- }
|