﻿
.product-wrap .swiper-slide {
        width: 45%;
        line-height: 0;
        padding-bottom: 1rem;
    }
    .product-wrap img{width:100%}
    .product-wrap {
        padding: 0px 0%;
       /* background: #fff;
        padding-bottom:25rem;*/

    }
    .more-explore {
        position: absolute;
        left: 50%;
        margin-left: -4rem;
        z-index: 30;
        background: red;
        color: #fff;
        padding: 10px 1.3rem;
        cursor: pointer;
        bottom: -1rem;
    }
.more-explore > span{
    vertical-align: middle
}
.more-explore:hover .arrow-line {
    width: 20px
}
.explore:hover {
    background: #fff;
    color: red
}
.more-explore .arrow-line {
    background: #fff
}
.arrow-line {
    height: 2px;
    width: 0;
    display: inline-block;
    background: #fff;
    margin-right: -11px;
    margin-left: 10px;
    transition: width 0.3s ease-in-out;
    -webkit-transition: width 0.3s ease-in-out;
}
.arrow-right {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
    .product-box {
        position: absolute;
        height: calc(100% - 1rem);
        width: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        opacity: 0;
    }
    .product-box p{
        font-size:1.25rem; line-height: 30px;  width: 70%;
    }
    .swiper-slide.swiper-slide-active .product-box{opacity:1}
.product-wrap .cover {
    background: rgba(255,255,255,0.5);
    opacity: 1
}
    .swiper-slide.swiper-slide-active .cover{display:none;}
.cover {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 96%;
    background: #000;
    top: 0;
    left: 0;
    z-index: 2;
}


@media (max-width: 768px){
.product-box p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    white-space: normal;
}
}

