/* 通用样式 */
.member-center {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Microsoft YaHei UI', sans-serif;
}

.member-center:hover {
    color: #555555;
}

.todaytopics {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    font-family: 'Microsoft YaHei UI', sans-serif;
}

/* 主内容区域 */
.main-content {
    padding: 20px 3%;  /* 使用百分比左右padding */
    overflow-x: hidden;  /* 防止横向溢出 */
}

/* 进度条样式 */
.custom-progress-bar {
    background-color: #f8f9fa;
}

.custom-progress-bar .progress-bar {
    background-color: #6c757d;
}

.custom-progress-bar .progress-bar.bg-success {
    background-color: #28a745;
}

.progress-text {
    display: block;
    color: white;
    font-weight: bold;
    margin-top: 5px;
}

/* 卡片样式 */
.card {
    background-color: #EFF6FF;
    border-radius: 10px;
    margin-bottom: 40px; /* 增加底部间距 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 增加卡片阴影 */
	padding: 5px;
}

.card-title, .card-text {
    color: #555; /* 修改文本颜色为 #555 */
	font-size: 13px; 
}

/* 进度条样式 */
.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease;
}

/* 布局和间距 */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.row::before, .row::after {
    content: " ";
    display: table;
}

.col-md-4 {
    padding-right: 10px;
    padding-left: 10px;
    box-sizing: border-box;
}

.mb-3, .my-3 {
    margin-bottom: 20px !important;
}

/* 按钮样式 */
.btn {
    color: #fff;
    background-color: #3388E4;
    border-color: #007bff;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
	margin-top: 5px;
}

.btn:hover {
    background-color: #0056b3;
    border-color: #004085;
}


/* 响应式布局 */
@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 10px;
        padding-left: 10px;
        box-sizing: border-box;
    }
}

/* 信息字体样式 */
.info-text {
    font-size: 13px; /* 调整字体大小 */
    color: #555; /* 确保字体颜色与标题一致 */
    font-weight: normal; /* 确保字体不是粗体 */
    font-family: 'Microsoft YaHei UI', sans-serif; /* 字体堆叠 */
}
