/* Utility classes */

/* 去除下划线（链接等）*/
.no-underline {
  text-decoration: none !important;
  border-bottom: none !important;
}

.no-underline li {
  text-decoration: none !important;
  border-bottom: none !important;
  font-weight: 300 !important; /* 取消全局加粗 */
}

/* 将所有图片默认缩小到80% */
#main img {
    max-width: 60% !important;
    height: auto !important;
    display: block;
    margin: 15px 0 15px 0;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* 图片悬停效果 */
#main img:hover {
    transform: scale(0.98);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 图片画廊样式 */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.image-gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    max-width: 200px !important; /* 覆盖之前的80%规则 */
}



.feature-list {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.feature-list li {
    margin: 8px 0;
}

.docsify-pagination-container {
    margin-top: 30px;
}

/* 自定义提示框 */
.image-tip {
    background-color: #e7f3ff;
    border-left: 4px solid #42b983;
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 0 5px 5px 0;
}
