a {
    text-decoration: none;
}

/* 置顶插件 */
.to-top {
    display: none;
    padding: 10px 20px;
    margin-right: 10px;
    color: #fff;
    border-radius: 10px;
    background-color: rgb(66, 185, 131);
}

/* 增强版链接卡片 - 带封面图 */
.link-card {
    display: flex;
    /* 改为弹性布局 */
    align-items: center;
    /* 垂直居中 */
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ebeef5;
    border-radius: 10px;
    background-color: #fff;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #42b983;
}

/* 封面图容器 */
.link-card-cover {
    width: 80px;
    /* 固定宽度 */
    height: 80px;
    /* 固定高度 */
    margin-right: 16px;
    flex-shrink: 0;
    /* 防止图片被压缩 */
    border-radius: 6px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.link-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 自动裁剪填充，防止图片变形 */
}

/* 文字内容容器 */
.link-card-info {
    flex: 1;
    /* 自动占满剩余空间 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link-card-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    font-size: 1.1em;
    display: block;
}

.link-card-desc {
    font-size: 0.85em;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 最多显示两行描述，超出显示省略号 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 适配移动端 */
@media screen and (max-width: 600px) {
    .link-card-cover {
        width: 60px;
        height: 60px;
    }
}


/* 博客介绍页专用样式 */
.intro-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    color: #34495e;
}

.intro-header {
    text-align: center;
    margin-bottom: 30px;
}

.intro-title {
    font-size: 2.5em;
    font-weight: 800;
    background: linear-gradient(135deg, #42b983 0%, #35495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.intro-subtitle {
    font-style: italic;
    color: #7f8c8d;
    font-size: 1.1em;
}

.intro-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-left: 5px solid #42b983;
    border-radius: 4px 12px 12px 4px;
}

.intro-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.intro-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.intro-list li::before {
    content: "🚀";
    margin-right: 12px;
}

.intro-quote {
    text-align: center;
    font-weight: 600;
    color: #42b983;
    margin-top: 40px;
    border-top: 1px dashed #ddd;
    padding-top: 20px;
}

.highlight-text {
    color: #e67e22;
    font-weight: bold;
    font-size: 20px;
}