.media-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.media-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33.33% - 14px);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.media-img {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.media-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.media-name {
    text-align: center;
    font-size: 14px;
}

.media-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .media-link {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .media-link {
        width: 100%;
    }
}




/*二次补充*/


.absolute,
[absolute] {
    position: absolute;
}

/*图片在div居中*/
.m-pic,
[m-pic] {
    position: relative;
    text-align: center;
    font-size: 0;
    line-height: 1;
    background: url() no-repeat center / contain;
}


.m-pic svg,
[m-pic] svg,
.m-pic img,
[m-pic] img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

.m-pic svg[absolute],
[m-pic] svg[absolute],
.m-pic svg.absolute,
[m-pic] svg.absolute,
.m-pic img[absolute],
[m-pic] img[absolute],
.m-pic img.absolute,
[m-pic] img.absolute {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


a {
text-decoration: none;
}


.noimg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: center;
    margin: -30% auto;
    font-size: 40px;
}


@media screen and (max-width: 750px) {
  .noimg {
    margin: -35% auto;
    font-size: 22px;
} 

   .post-page .post-title {
        font-size: 23px!important;
    }
}


@media screen and (max-height: 450px) {
  .noimg {
    margin: -35% auto;
    font-size: 22px;
} 
}

    
@media screen and (min-width: 768px)and (max-width:991px) {
  .noimg {
    margin: -31% auto;
    font-size: 32px;
} 
}

    
@media screen and (min-width: 576px)and (max-width:767px) {
  .noimg {
    margin: -34% auto;
    font-size: 24px;
} 
}

@media screen and (max-width: 575px) {
  .noimg {
    margin: -36% auto;
    font-size: 20px;
} 
}


