header {
    z-index: -99;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #e52d67;
    text-align: left;
}

#div_pro_list {
    z-index: -99;
    width: 1200px;
    display: stretch;
    text-align: left;
    justify-content: space-between;
}

.div_pro_list_box {
    z-index: -99;
    width: 180px;
    overflow: hidden;
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 0 10px 10px 10px;
    display: inline-block;
    margin: 2px 2px;
}

.div_pro_list_box a {
    z-index: -99;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #535353;
    text-decoration: none;
}

.div_pro_list_box a:hover {
    z-index: -99;
    color: #e52d67;
}

.imgdiv_pro_list_box {
    width: 180px;
    overflow: hidden;
}

.imgdiv_pro_list_box img {
    z-index: -99;
    width: 100%;
    height: 100%;
    transition: all 0.6s linear;
}

.source {
    z-index: -99;
    border: 1px solid #535353;
    padding: 6px 10px;
    border-radius: 10px;
    margin: 15px;
    font-size: 10px;
    width: 160px;
}

.title {
    z-index: -99;
    margin-bottom: 20px;
    font-size: 10px;
}

.detail {
    z-index: -99;
    font-size: 10px;
    line-height: 160%;
    text-align: justify;
    width: 100%;
}


/*鼠标hover效果*/

.div_pro_list_box>a::after {
    z-index: -99;
    content: '';
    width: 180px;
    position: absolute;
    background: #5665e7;
    /** 产品列表 产品字地下横条 移动蓝 **/
    bottom: 0;
    height: 0px;
    transition: height 0.3s linear;
    /*利用伪类高度，实现动画效果*/
}

.div_pro_list_box>a:hover::after {
    z-index: -99;
    height: 10px;
}

.div_pro_list_box:hover img {
    z-index: -99;
    transform: scale(1.15);
}

.div_pro_list_box:hover .source {
    z-index: -99;
    background: #5665e7;
    /** 产品列表 产品字 移动蓝 **/
    border-color: #5665e7;
    color: #ffffff;
}