|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* pages/getMerchant/index.wxss */
- .top{
- position: fixed;
- top: 0;
- left: 0;
- opacity: 1;
- background: #fff;
- }
- .footer {
- width: 710rpx;
- height: 126rpx;
- line-height: 126rpx;
- display: flex;
- background: #fff;
- border-radius: 20rpx;
- margin-top: 40rpx;
- margin-left: 20rpx;
- align-self: center;
- box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
- }
-
- .footer text {
- margin-left: 31rpx;
- font-size: 30rpx;
- }
-
- .footer input {
- width: 450rpx;
- margin-right: 19rpx;
- height: 126rpx;
- line-height: 126rpx;
- font-size: 30rpx;
- text-align: right;
- }
- .merchant-list{
- width: 690rpx;
- margin: 230rpx auto;
- border-top: 1px solid #EAEAEA;
- }
- .lists{
- height: 84rpx;
- line-height: 84rpx;
- border-bottom: 1px dashed #EAEAEA;
- font-size:30rpx;
- }
- .sub-button{
- position: fixed;
- bottom: 30rpx;
- left: 20rpx;
- width:710rpx;
- height:94rpx;
- background:rgba(82,160,253,1);
- box-shadow:0px 10rpx 22rpx 2rpx rgba(82,160,253,0.51);
- border-radius:10rpx;
- color: #fff;
- line-height: 94rpx;
- }
|