.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;
}

/* 修复导航菜单样式 */
.sidebar-menu .main-menu a {
    color: #979898;
    transition: color 0.2s ease;
}

.sidebar-menu .main-menu a:hover {
    color: #fff;
}

.sidebar-menu .main-menu a.active {
    color: #fff;
    background-color: rgba(69, 74, 84, 0.3);
}

/* 修复移动设备导航样式 */
@media screen and (max-width: 767px) {
    .sidebar-menu-inner {
        overflow-y: auto;
    }
    
    .sidebar-mobile-open .sidebar-menu {
        display: block !important;
    }
}

/* 修复内容区域样式 */
.main-content {
    padding: 30px;
}

/* 修复当点击导航时的样式问题 */
.sidebar-menu li.active > a {
    color: #fff;
    background-color: rgba(69, 74, 84, 0.3);
}

.sidebar-menu .main-menu > li ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-menu .main-menu > li.active ul,
.sidebar-menu .main-menu > li.opened ul {
    max-height: 500px;
}

/* 语言选择菜单的样式 */
.dropdown-toggle .fa-angle-down {
    transition: transform 0.3s ease;
}

.opened > .dropdown-toggle .fa-angle-down {
    transform: rotate(180deg);
}

.sidebar-menu .main-menu > li ul li a {
    padding-left: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.sidebar-menu .main-menu > li ul li a:hover {
    background-color: rgba(69, 74, 84, 0.2);
}

/* 修复页脚样式 */
.main-footer {
    margin-top: 30px;
}

/* 确保主内容区域有足够空间 */
.page-container .main-content {
    display: block;
    min-height: 100vh;
}