/* 产品列表 */

.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 100%;
    padding: 4px 0;
}

.pics ul a {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #04287e;
}

.pics a i {
    display: block;
    overflow: hidden;
}

.pics a i img {
    width: 100%;
}

.pics a p {
    padding: 0 0.1rem;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    background: #04287e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pic-li-layer {
    display: none;
}

@media (min-width: 1200px) {
    article {
        background: repeat 0 0;
    }
    .pics {
        padding: 1vw 0 0;
    }
    .pics ul {
        display: flex;
        flex-wrap: wrap;
    }
    .pics ul li {
        width: 33.3%;
        padding: 0.5vw;
    }
    .pics ul a {
        display: block;
        position: relative;
        overflow: hidden;
        border: 2px solid #04287e;
    }
    .pics a i {
        display: block;
        overflow: hidden;
    }
    .pics a i img {
        width: 100%;
        transition: 0.3s;
    }
    .pics a p {
        padding: 0 0.5vw;
        font-size: 0.9vw;
        line-height: 2.4vw;
        color: #fff;
        text-align: center;
        background: #04287e;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .pic-li-layer {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 10;
        right: 0;
        top: 0;
        width: 6.2vw;
        height: 5.2vw;
        background: url(../images/part3_three.png) no-repeat right 0/100%;
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
        transition: 0.3s;
    }
    .pic-li-layer span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3.7vw;
        height: 3.7vw;
        border: 2px solid #000;
        background: #04287e;
        border-radius: 50%;
    }
    .pic-li-layer img {
        width: 100%;
    }
    .pics ul a:hover i img {
        transform: scale(1.2);
    }
    .pics ul a:hover .pic-li-layer {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    .pages {
        padding: 2.5vw 0.5vw;
    }
}


/* 产品详情 */

.pic-er {}

.pic-er-name {
    margin: 0 0 0.2rem;
    padding-left: 0.36rem;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    background: url(../images/pic_er_icon1.png) no-repeat 0 center/0.3rem;
}

.pic-er-img {
    position: relative;
    padding-right: 1.8rem;
}

#gallery {
    margin: 0;
}

#gallery .swiper-slide img {
    width: 100%;
    border: 2px solid #04287e;
}

#thumbs {
    position: absolute;
    right: 0;
    top: 0;
    width: 1.7rem;
    height: 100%;
    margin: 0;
    padding: 0.5rem 0;
}

#thumbs .swiper-slide {
    display: flex;
    align-items: center;
}

#thumbs .swiper-slide img {
    width: 100%;
    border: 2px solid #000;
}

#thumbs .swiper-slide-thumb-active img {
    border-color: #04287e;
}

.pic-er-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 99;
    left: 0;
    width: 100%;
    height: 0.45rem;
    background: #cccccc;
    cursor: pointer;
}

.pic-er-prev {
    top: 0;
}

.pic-er-next {
    bottom: 0;
}

.pic-er-btn img {
    width: 0.32rem;
}


/*  */

.pic-er-info {
    margin: 0.2rem 0;
    padding: 0.1rem 0;
    border-bottom: 1px solid #e6e6e6;
    background: url(../images/pic_er_line.png) no-repeat 0 bottom/1.7rem;
}

.pic-er-info p {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.pic-er-info span {
    padding-left: 0.36rem;
    color: #04287e;
    background: url(../images/pic_er_icon2.png) no-repeat 0 center/0.3rem;
}

.pic-er-p {
    font-size: 14px;
    line-height: 24px;
    color: #000;
}

.pic-er-p p img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 2.4vw 0 6vw;
    }
    .pic-er-name {
        margin: 0 0 2.4vw 0;
        padding-left: 1.8vw;
        font-size: 1.2vw;
        line-height: 1.6vw;
        color: #000;
        background: url(../images/pic_er_icon1.png) no-repeat 0 center/1vw;
    }
    .pic-er-img {
        position: relative;
        padding-right: 15.5vw;
    }
    #gallery {
        width: 45vw;
        margin: 0;
    }
    #gallery .swiper-slide img {
        width: 100%;
        border: 4px solid #04287e;
    }
    #thumbs {
        position: absolute;
        right: 0;
        top: 0;
        width: 16.8vw;
        height: 100%;
        margin: 0;
        padding: 3.4vw 0;
    }
    #thumbs .swiper-slide {
        display: flex;
        align-items: center;
    }
    #thumbs .swiper-slide img {
        width: 100%;
        border: 4px solid #000;
    }
    #thumbs .swiper-slide-thumb-active img {
        border-color: #04287e;
    }
    .pic-er-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        z-index: 99;
        left: 0;
        width: 100%;
        height: 3.4vw;
        background: #cccccc;
        cursor: pointer;
    }
    .pic-er-prev {
        top: 0;
    }
    .pic-er-next {
        bottom: 0;
    }
    .pic-er-btn img {
        width: 1.6vw;
    }
    .pic-er-btn:hover {
        background: #04287e;
    }
    /*  */
    .pic-er-info {
        margin: 1vw 0;
        padding: 0.5vw 0;
        border-bottom: 1px solid #e6e6e6;
        background: url(../images/pic_er_line.png) no-repeat 0 bottom/6.4vw;
    }
    .pic-er-info p {
        font-weight: bold;
        font-size: 1.2vw;
        line-height: 1.6vw;
        color: #000;
    }
    .pic-er-info span {
        padding-left: 1vw;
        color: #04287e;
        background: url(../images/pic_er_icon2.png) no-repeat 0 center;
    }
    .pic-er-p {
        font-size: 16px;
        line-height: 30px;
        color: #000;
    }
}