12345678910111213141516171819202122 |
- .vip{
- width: 100%;
- vertical-align:bottom
- }
- .footer{
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background: #232d48;
- padding: 10rpx;
- /* border-top: 1px solid #f1f1f1; */
- box-sizing: border-box;
- }
- .footer view{
- border-radius: 50rpx;
- background-image: linear-gradient(to bottom, #ffeab2 0%, #e1bf66 100%);
- color: #232d48;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- }
|