|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .footer-container {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background: #fff;
- display: flex;
- align-items: stretch;
- z-index: 9999;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- }
-
- .footer-container .footer-item-container {
- flex: 1;
- height: 112rpx;
- padding: 80rpx 0 0;
- border-top: 1rpx solid #ededed;
- display: flex;
- justify-content: center;
- align-items: center;
- background: url("https://shgm.jjyyx.com/m/images/group/icon_home.png") no-repeat center 14rpx;
- background-size: 48rpx;
- position: relative;
- }
- .footer-container .footer-item-container.f-home.active {
- background: url("https://shgm.jjyyx.com/m/images/group/icon_home_active.png") no-repeat center 14rpx;
- background-size: 48rpx;
- }
-
- .footer-container .footer-item-container .nav-msg {
- font-size: 20rpx;
- color: var(--blueLight);
- line-height: 1;
- }
- .footer-container .footer-item-container.f-cate {
- background: url("https://shgm.jjyyx.com/m/images/group/icon_cate.png") no-repeat center 14rpx;
- background-size: 48rpx;
- }
-
- .footer-container .footer-item-container.f-cate.active {
- background: url("https://shgm.jjyyx.com/m/images/group/icon_cate_active.png") no-repeat center 14rpx;
- background-size: 48rpx;
- }
- .footer-container .footer-item-container.f-cart {
- background: url("https://shgm.jjyyx.com/m/images/group/icon_cart.png") no-repeat center 14rpx;
- background-size: 48rpx;
- }
-
- .footer-container .footer-item-container.f-cart.active {
- background: url("https://shgm.jjyyx.com/m/images/group/icon_cart_active.png") no-repeat center 14rpx;
- background-size: 48rpx;
- }
-
- .footer-container .footer-item-container.f-user.active {
- background: url("https://shgm.jjyyx.com/m/images/group/icon_user_active.png") no-repeat center 14rpx;
- background-size: 48rpx;
- }
- .footer-container .footer-item-container.f-user {
- background: url("https://shgm.jjyyx.com/m/images/group/icon_user.png") no-repeat center 14rpx;
- background-size: 48rpx;
- }
- .footer-container .footer-item-container .scan-jump{
- position: absolute;
- top: -12rpx;
- left: 50%;
- transform: translateX(-50%);
- width: 112rpx;
- height: 112rpx;
- border-radius: 50%;
- background: var(--blue) url("https://shgm.jjyyx.com/m/images/group/icon_scan.png") no-repeat center center;
- background-size: 64rpx 64rpx;
- border: 6rpx solid var(--white);
- box-sizing: border-box;
- }
- .nav-cart-num{
- position: absolute;
- top: 8rpx;
- left: 50%;
- margin-left: 24rpx;
- transform: translate3d(-50%, 0, 0) scale(.5);
- transform-origin: center top;
- min-width: 48rpx;
- padding: 24rpx 16rpx;
- font-size: 36rpx;
- text-align: center;
- line-height: 0rpx;
- border: 2rpx solid #fff;
- border-radius: 48rpx;
- background: #FF4752;
- color: #fff;
- }
- .footer-container.iphone-x-patcher-container {
- flex-wrap: wrap;
- height: auto;
- }
-
|