| 12345678910111213141516171819202122 |
- .search{padding: 20rpx;display: flex;align-items: center;background-color: #fff;width: calc(95% - 60rpx);margin: 20rpx auto;border-radius: 60rpx;}
- .search image{width: 50rpx;height: 46rpx;}
- .search .search-input{border-radius: 30rpx;font-size: 28rpx;height: 60rpx;margin-left: 20rpx;}
- .store-item{background-color: #fff;width: calc(95% - 40rpx);padding: 20rpx;border-radius: 20rpx;display: flex;align-items: center;justify-content: space-between;margin: 20rpx auto;position: relative;}
- .store-item.active{border: 2rpx solid #fe2c56;}
- .store-item .check{display: none;position: absolute;top: 0;right: 0;background-color: #fe2c56;width: 40rpx;height: 40rpx;border-radius: 0 20rpx 0 20rpx;}
- .store-item .check image{width: 30rpx;height: 30rpx;display: flex;align-items: center;justify-content: center;padding: 5rpx;}
- .store-item.active .check{display: block;}
- .store-item .item-left{flex: 1;}
- .store-item .name{font-size: 32rpx;color: #333;line-height: 48rpx;font-weight: bold;}
- .store-item .desc{font-size: 24rpx;color: #666;line-height: 36rpx;margin-top: 10rpx;}
- .store-item .item-right{text-align: center;margin-left: 20rpx;border-left: 2rpx solid #f8f8f8;padding-left: 20rpx;}
- .store-item .item-right .footer{font-size: 24rpx;color: #666;}
- .store-item .item-right .top{display: flex;align-items: center;gap: 20rpx;margin-bottom: 20rpx;}
- .store-item .item-right .top .icon-img{width: 60rpx;height: 60rpx;background-color: #f8f8f8;border-radius: 60rpx;display: flex;align-items: center;justify-content: center;}
- .store-item .item-right .top .icon-img image{width: 40rpx;height: 40rpx;}
- .flx-footer{position: fixed;bottom: 0;background-color: #fff;padding: 20rpx;border-top: 2rpx solid #f8f8f8;left: 0;right: 0;}
- .flx-footer .footer-safe {height: env(safe-area-inset-bottom);width: 100%;}
- .flx-footer .btn{font-size: 28rpx;height: 80rpx;border-radius: 10rpx;line-height: 80rpx;text-align: center;width: 100%;color: #333;background-color: #fe2c56;color: #fff;border:2rpx solid #fe2c56;}
- .flx-footer .btn[disabled],.flx-footer .btn.disabled{background-color: rgba(34, 77, 122, 0.3);}
|