.common_function{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}
.common_function p{
    width: auto !important;
    padding-inline: 5px;
}
.common_function a{
    text-align: center;
    margin: 20px auto;
}
.common_function div{
    width: 33%;
}
.common_function_file {
    width: 891px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
    align-content: flex-start;
}

.file-item {
    width: 285px;
    box-sizing: border-box;
    text-align: center;
}
.file-item div{
    overflow: hidden;
}

.file-item img.paper_img {
    transition: opacity 0.5s ease;
}
.paper_img {
    transition: opacity 0.5s ease;
    opacity: 1;
}
.file-item img.em_img{
    transition: transform 0.3s ease;
    border-radius: 10px;
    will-change: transform;
}

.file-item img.em_img:hover{
    transform: scale(1.05);
    border-radius: 10px;
}
.products-container {
    width: 285px;
    height: 100px;
    display: flex;
    gap: 2px;
}

.product-item {
    height: 100px;
    overflow: hidden; /* È·±£ÄÚÈÝ²»»á³¬³ö±ß½ç */
    border-radius: 10px; /* ÔÚÈÝÆ÷ÉÏÉèÖÃÔ²½Ç */
    position: relative; /* ÎªÁË¸üºÃµØ¿ØÖÆ×ÓÔªËØ */
}

.product-item a {
    display: block;
    height: 100%;
    border-radius: 10px;
    overflow: hidden; /* È·±£Í¼Æ¬²»»á³¬³öÔ²½Ç±ß½ç */
}

.product-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    will-change: transform; /* ÓÅ»¯ÐÔÄÜ */
    backface-visibility: hidden; /* ·ÀÖ¹±ä»»Ê±µÄÉÁË¸ */
}

.product-item img:hover {
    transform: scale(1.05);
    border-radius: 10px; /* ±£³ÖÔ²½Ç */
}

.pagination {
    margin-top: 20px;
}

.pagination button {
    margin: 0 5px;
}