.rounded-circle {
    border-radius: 25%!important;/* 头像圆角 */
}

/* 苹果版提示标签 */
.appleNotice {
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: center; /* 添加这一行来使文本居中 */
}

/* 视频弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    max-width: 800px; /* 限制最大宽度 */
    max-height: 90%; /* 限制最大高度 */
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 确保视频完整显示 */
    background-color: black;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: white;
    background-color: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.close-btn:hover {
    background-color: rgba(200, 0, 0, 1);
    transform: scale(1.1);
}

.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1001;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.fullscreen-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}
/* 视频弹窗样式-结束 */

/* 调整页脚图标 */
.icon {
    width: 1em; /* 设置图标宽度与字体一致 */
    height: 1em; /* 设置图标高度与字体一致 */
    margin-right: 0.2em; /* 图标和文字的间距 */
    vertical-align: middle; /* 垂直对齐 */
    position: relative; /* 相对定位用于精确调整 */
    top: -0.1em; /* 根据实际情况微调，确保图标完全居中 */
}
/* 调整页脚标题 */
.small {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 确保子元素垂直居中 */
    line-height: 1; /* 防止字体行高影响 */
}
/* 调整图片框 */
.table-responsive-xl {
    overflow-x: auto; /* 允许水平滚动，但避免超出容器宽度 */
    white-space: nowrap; /* 强制让内容不自动换行 */
    margin-bottom: 1.1rem;  /* 增大下方外部间距 */
}