﻿/*跳进购物车*/
.fly_item {
    width: 38px;
    height: 38px;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
    opacity: .5;
    filter: alpha(opacity=60);
}
    .fly_item img{
        width:40px;
        height:40px;
    }
    #shopCart {
        position: relative;
    }
    #shopCart .cart_num {
        position: absolute;
        display: inline-block;
        height: auto;
        min-width: 10px;
        padding: 3px 5px;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        border-radius: 10px;
        margin-right: 5px;
        margin-top: -10px;
        color: #fff;
        background: #f46266;
        top: 0;
        right: -18px;
    }
/*跳进购物车结束*/
.phone_nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 990;
}
    .phone_nav .wave-wrap {
        position: relative;
        width: 100%;
        height: 33px;
        overflow: hidden;
        margin-bottom: 0;
    }

        .phone_nav .wave-wrap #wave {
            position: absolute;
            width: 88px;
            transform-origin: bottom;
            transform: scaleY(0.8);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            bottom: 0;
            opacity: 0.6;
            left: 50%;
            margin-left: -44px;
        }

            .phone_nav .wave-wrap #wave .path {
                fill: #2f3542;
            }

    .phone_nav .list-wrap {
        display: flex;
        width: 100%;
        height: 50px;
        background: rgba(0,0,0,0.5);
        list-style: none;
        justify-content: space-around;
        padding: 0 20px;
        margin: 0;
        position: relative;
        z-index: -2;
    }

        .phone_nav .list-wrap li {
            cursor: pointer;
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            text-align: center;
            line-height:16px;
        }
            .phone_nav .list-wrap li text {
                display: inline-block;
                width: 100%;
                color: white;
                font-size: 12px;
            }

            .phone_nav .list-wrap li i {
                position: relative;
                font-size: 1.5em;
                color: white;
                z-index: 5;
                transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .phone_nav .list-wrap li:before {
                content: "";
                position: absolute;
                background: green;
                height: 40px;
                width: 40px;
                left: 50%;
                border-radius: 50%;
                z-index: 0;
                transform: scale(0);
                transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
                margin-left: -20px;
                z-index: -1;
            }

            /*.list-wrap li.active {
            margin-top: -10px;
        }*/

            .phone_nav .list-wrap li.active i {
                color: #2f3542;
            }

            .phone_nav .list-wrap li.active:before {
                transform: scale(1);
            }

            .phone_nav .list-wrap li:nth-child(1):before {
                background: #eccc68;
            }

            .phone_nav .list-wrap li:nth-child(2):before {
                background: rgba(255, 166, 179,0.6);
            }

            .phone_nav .list-wrap li:nth-child(3):before {
                background: rgba(249, 30, 6, 0.6);
            }

            .phone_nav .list-wrap li:nth-child(4):before {
                background: rgba(167, 196, 254,0.6);
            }
                         .phone_nav .list-wrap li:nth-child(5):before {
                background: rgba(167, 196, 254,0.6);
            }
