.box2 {
    height: 86px;
    cursor: pointer;
    border-radius: 4px;
    padding: 0px 30px 0px 30px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e4ecf3;
    margin: 20px 0 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box2:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.xe-comment-entry img {
    float: left;
    display: block;
    margin-right: 10px;
}

.xe-comment {
    transform: translateY(-50%);
    position: absolute;
    margin-left: 50px;
    top: 50%;
}

.xe-comment p {
    margin-bottom: 0px;
    margin-right: 15px;
}

.overflowClip_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.overflowClip_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.submit-tag {
    margin-top: 50px;

}

.img-circle {
    padding: 7px 0;
}

.item-logo {
    width: 40px;
    height: 54px;
}

/* 导航页通用链接样式 */
.about a {
    color: #FF9800;
    /* 橙色主题色，比 'orange' 更柔和 */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

/* 鼠标悬停效果 */
.about a:hover {
    color: #FF5722;
    /* 悬停时加深颜色 */
    text-decoration: underline;
}

/* 重点强调文本（如项目名称） */
.about strong {
    font-weight: 700;
    color: #333;
    /* 深色文字确保可读性 */
}

/* 为GitHub和邮箱链接添加特定图标（可选） */
.about a[href*="github.com"]::before {
    content: "\f09b";
    font-family: 'FontAwesome';
    font-size: 0.95em;
    margin-right: 5px;
    /* 增加右边距，调整图标与文字间距 */
    display: inline-block;
    /* 确保margin生效 */
}

.about a[href^="mailto:"]::before {
    content: "✉ ";
    font-size: 0.95em;
}

.footer-text {
    font-size: 16px;
    font-weight: 500;
    color: #979898;
}

.footer-text a {
    color: orange !important;
    text-decoration: none;
}