@charset "UTF-8";
/*网址导航页面模块*/
.links-module {
    padding: 24px;
    background: #ffffff;
    /*margin-bottom: 16px;*/
}

.links-module .pic-fl {
    width: 200px;
    height: 200px;
    background: #f1f5f8;
    position: relative;
    overflow: hidden;
    border-radius: 16px 5px 16px 5px;
}


.links-module .page-speeder {
    background: linear-gradient(45deg, #e3b2ff, #5672c5, #8fd372);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: inherit;
    height: inherit;
    opacity: .2;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    animation: rotateBackground 10s infinite linear;
}

.links-module .link-img {
    height: 80px;
    width: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: #fff;
}

.links-module .entry-header {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.links-module .meta-list {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.entry-header .entry-meta {
    padding-top: 10px;
}

.entry-header .entry-meta a {
   color: #5f7acb;
}

.links-module .post-btn {
    margin: 24px 0 0 0;
    background: #3cb457;
    height: 38px;
    color: #ffffff;
}

.links-module .post-btn:hover {
    background: #58c170;
}


.links-module .post-tags {
    display: flex;
    flex-wrap: wrap;
}

.links-module .post-tags a{
   margin-right: 8px;
}


/* 创建背景旋转的动画 */
@keyframes rotateBackground {
    0% {
        transform: rotate(0deg); /* 初始角度 */
    }
    100% {
        transform: rotate(360deg); /* 最终角度 */
    }
}

/* --------------------响应式-------------------------------- */
@media screen and (max-width: 768px) {
    .links-module .pic-fl {
        width: 100%;
        height: 100px;
    }
    .links-module .post-btn {
        width: 100%;
    }
}