﻿.product-list-wrapper {
}

.product-list-category {
    margin-bottom: 50px;
    font-size: 0;
    text-align: center;
}

    .product-list-category a {
        display: inline-block;
        margin: 0 5px;
        padding: 0 25px;
        height: 41px;
        line-height: 39px;
        border: 1px solid #1e83c7;
        color: #1e83c7;
        font-size: 14px;
        transition: all .1s linear 0s;
    }

        .product-list-category a:hover,
        .product-list-category a.active {
            background-color: #1e83c7;
            color: #fff;
        }

.product-list-block {
    overflow: hidden;
}

.product-list-item {
    float: left;
    margin: 0 30px 30px 0;
    width: 460px;
    border: 1px solid #ddd;
}

    .product-list-item:nth-child(3n) {
        margin-right: 0;
    }

    .product-list-item .block {
        position: relative;
        height: 460px;
        overflow: hidden;
    }

    .product-list-item .image {
        height: 100%;
    }

        .product-list-item .image i {
            display: block;
            height: 100%;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            transition: all .3s linear 0s;
        }

    .product-list-item .box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, .8);
        opacity: 0;
        transition: all .3s linear 0s;
    }

        .product-list-item .box .ani {
            position: relative;
            padding: 50px 50px 85px;
            height: 100%;
            transform: translateY(10%);
            transition: all .3s linear 0s;
        }

        .product-list-item .box .tit {
            margin-bottom: 20px;
            color: #333;
            font-size: 18px;
            text-align: center;
        }

        .product-list-item .box .txt {
            overflow: hidden;
        }

            .product-list-item .box .txt i,
            .product-list-item .box .txt span {
                display: block;
                float: left;
                color: #555;
                line-height: 30px;
            }

            .product-list-item .box .txt i {
                width: 75px;
                transition: all .3s linear 0s;
            }



        .product-list-item .box .arrow {
            position: absolute;
            left: 50%;
            bottom: 20px;
            width: 45px;
            height: 45px;
            border-radius: 45px;
            background: #1679bc url('../images/icon-arrow-2.png') no-repeat center center / 12px;
            transform: translateX(-50%);
        }

    .product-list-item .line {
        height: 2px;
        background-color: #ddd;
    }

        .product-list-item .line i {
            display: block;
            width: 0%;
            height: 100%;
            background-color: #1679bc;
            transition: all .3s linear 0s;
        }

    .product-list-item .footer {
        position: relative;
        background-color: #f9f9f9;
    }

        .product-list-item .footer span,
        .product-list-item .footer i {
            display: block;
        }

        .product-list-item .footer span {
            padding: 0 20px;
            height: 71px;
            line-height: 71px;
            color: #333;
            font-size: 18px;
            font-weight: 550;
        }

        .product-list-item .footer i {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 110px;
            font-size: 18px;
            height: 35px;
            line-height: 32px;
            border: 1px solid #ddd;
            color: #454545;
            text-align: center;
            transition: all .3s linear 0s;
        }

    .product-list-item:hover {
        -webkit-box-shadow: 0 0 12.48px .52px rgba(40,40,40,.46);
        box-shadow: 0 0 12.48px .52px rgba(40,40,40,.46)
    }

        .product-list-item:hover .image i {
            transform: scale(1.1);
        }

        .product-list-item:hover .box {
            opacity: 1;
        }

            .product-list-item:hover .box .ani {
                transform: translateY(0%);
            }

        .product-list-item:hover .line i {
            width: 100%;
        }

        .product-list-item:hover .footer i {
            border-color: #1679bc;
            color: #1679bc;
        }

.product-list-page {
    margin-bottom: 30px;
}

    .product-list-page ul {
        font-size: 0;
        text-align: center;
    }

    .product-list-page li {
        display: inline-block;
        font-size: 14px;
    }

        .product-list-page li a {
            display: block;
            margin: 0 5px;
            padding: 0 10px;
            height: 31px;
            line-height: 29px;
            border: 1px solid #ddd;
            color: #666;
            font-size: 14px;
            transition: all .1s linear 0s;
        }

            .product-list-page li a:hover {
                border-color: #1e83c7;
                color: #1e83c7;
            }

        .product-list-page li.active a {
            background-color: #1e83c7;
            border-color: #1e83c7;
            color: #fff;
        }
