.piclist {
    width: 97%;
    margin: 0 auto;
    margin-top: 12px;
}

.piclist ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.piclist ul .piclistitem02 {
    width: calc(100% / 3 - 35px);
    margin-bottom: 4px;
    position: relative;
    margin-right: 20px;
    margin-left: 15px;
}

.piclist ul .piclistitem02:hover .piclistitem_pic img {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.align-items-start {
    align-items: flex-start;
}

.piclist ul .piclistitem02::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 12px;
    width: 100%;
    height: 185px;
    background: #ccddec;
    z-index: 0;
}

.piclist ul .piclistitem02 .piclistitem_pic {
    height: 185px;
    width: 100%;
    position: relative;
    z-index: 5;
    margin-bottom: 0.37rem;
    overflow: hidden;
    margin-top: 20px;
}

.piclist ul .piclistitem02 .piclistitem_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
}

.pic img {
    padding: 0;
    border: none;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    max-height: 100%;
}

.piclist ul .piclistitem02 .txt {
    width: 100%;
}

.piclist ul .piclistitem02:hover .txt a {
    color: #0f467f;
}

.piclist ul .piclistitem02 .txt h3 {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #222;
    letter-spacing: 0.5px;
}

.text-center {
    text-align: center;
}