@media (min-width: 768px) {
    .news-input {
        width: 50%;
    }
}

body::before {
    display: block;
    content: '';
    height: 56px;
}

.logo_img {
    width: 150px;
    height: 150px;
    margin-right: 300px;
}

/* #region导航 */
.nav-link {
    padding: 0 10px;
    border-right: 1px solid #666;
    height: 26px;
    line-height: 26px;
    text-align: center;
}

.nav-item:first-child .nav-link {
    padding-left: 0;
}

.nav-item:last-child .nav-link {
    border: 0;
    padding-right: 0;
}

.custom-avatar {
    border-radius: 50%;
    /* 设置圆形头像 */
    width: 25px;
    /* 设置头像的宽度 */
    height: 25px;
    /* 设置头像的高度 */
    border: 2px solid #ccc;
    /* 设置边框 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* 添加阴影效果 */
}

.userInfo {
    display: none;
}

/* #endregion导航end */


.image-container {
    display: inline-block;
    /* 确保容器大小适应图片 */
    overflow: hidden;
    /* 隐藏超出容器的部分 */
}

.image-container img {
    transition: transform 0.3s ease;
    /* 添加过渡效果，使放大平滑过渡 */
}

.image-container:hover img {
    transform: scale(1.2);
    /* 鼠标悬停时将图像放大 1.2 倍 */
}

/* itemList */
.card-title,
.linefeed {
    text-overflow: ellipsis;
    /* 溢出的内容将它隐藏 */
    overflow: hidden;
    /* 主要控制父元素容器里面子元素的排列方式 */
    display: -webkit-box;
    /* 实现限制文字显示多少行,也就是说要多少行是出现省略号,我这里设置两行就让文本出现省略号 */
    -webkit-line-clamp: 1;
    /* 属性规定框的子元素应该被水平或垂直排列 */
    -webkit-box-orient: vertical;

}

a {
    text-decoration: none;
    color: #2c2b2b;
}

/* #region footer */

.footer-split {
    margin: 0 25px;
}

.footer-applet {
    width: 100px;
    height: 100px;
}

.footer-accounts {
    width: 100px;
    height: 100px;
}

.records {
    font-size: 12px;
}

/* #endregion footer */

/* start 右侧悬浮按钮 */
.float-button {
    border-radius: 6px;
    width: 96px;
    height: 38px;
    background-color: #FE8B18;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition-duration: 0.4s;
    user-select: none;
}

.float-button:hover {
    background-color: #FE8B18;
}

.float-button::before {
    content: '+';
}

.d-inline-flex {
    width: 100%;
    display: inline-flex;
    align-items: center;
}

.justify-end {
    justify-content: space-between;
}

/* 已认证/未认证 */
.notCertified,
.certified {
    width: 62px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 4px;
    color: #ff5757;
    background: rgba(255, 87, 87, .3);
    margin: 0 6px 0;
    font-size: 13px;
    cursor: pointer;
}

.certified {
    background-color: #FC6428;
    color: #ffffff;
}