.con {
    padding-top: 0.5rem;
    padding-bottom: 0.6rem;
}


/* 获奖成果 */
.achievement .pubModule2 {
    margin-top: 0.34rem;
}


/* 论文论著 */
.topTreatise {
    display: flex;
    align-items: center;
    background: #EBF2F9;
    margin: 0.3rem 0rem 0.5rem 0rem;
}

.topTreatise>img {
    display: block;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
}

.topTreatise .txt {
    padding: 0rem 0.4rem;
    color: #666;
}

.topTreatise h3 {
    font-weight: bold;
    margin-bottom: 0.28rem;
    color: #333;
}

.topTreatise span {
    display: block;
    color: #005BAC;
    font-weight: bold;
    margin-bottom: 0.18rem;
}

/* 列表 */
.treatiseList {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.treatiseList li {
    width: 30%;
    margin-right: 5%;
}

.treatiseList li:nth-child(3n) {
    margin-right: 0rem;
}

.treatiseList li:nth-child(n+4) {
    margin-top: 0.7rem;
}

.treatiseList div {
    width: 100%;
    padding-top: 96%;
    overflow: hidden;
    position: relative;
    background: #f7f7f7a3;
    margin-bottom: 0.22rem;
}

.treatiseList img {
    position: absolute;
    top: 0rem;
    left: 0rem;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.8);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.treatiseList li:hover img {
    transform: scale(0.85);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 800px) {
    .topTreatise {
        padding: 0.6rem 4%;
        flex-wrap: wrap;
    }

    .topTreatise>img {
        width: 100%;
        height: auto;
        margin-bottom: 0.5rem;
    }

    .topTreatise .txt {
        padding: 0rem;
    }

    .treatiseList li {
        width: 100%;
        margin: 0rem 0rem 0.8rem 0rem;
    }

    .treatiseList div {
        margin-bottom: 0.4rem;
    }
}