/* 分隔符样式 */
.separator {
    display: flex;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* 免费注册按钮样式 */
.navbar-nav .btn {
    margin-left: 1rem;
}

/* 导航栏品牌图片样式 */
.navbar-brand img {
    height: 60px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

/* 主标题文字颜色 */
.page-title .start-text {
    color: black;
}
.page-title .end-text {
    color: #dc3545; /* 红色 */
}

/* 段落中等粗细 */
.medium-bold {
    font-weight: 400;
}

/* 红色文字样式 */
.red-text {
    color: #dc3545; /* 红色 */
    font-weight: bold;
}

.rounded {
    border-radius: 1rem !important;
}

/* 底部导航样式 */
.footer a {
    color: #6c757d; /* Bootstrap text-muted color */
    transition: color 0.2s ease-in-out;
}

.footer a:hover {
    color: #dc3545; /* 红色主题 */
    text-decoration: none;
}

.footer h5 {
    color: #343a40; /* Bootstrap dark color */
    font-weight: 600;
}

.footer ul {
    margin-bottom: 0;
}

.footer ul li {
    padding: 0;
}

.footer .border-top {
    border-top: 1px solid #e9ecef !important;
}

/* 底部导航logo样式 */
.footer-logo img {
    height: 60px;
    width: auto;
}

/* 右对齐样式增强 */
.text-md-end {
    text-align: right;
}

@media (max-width: 767.98px) {
    .text-md-end {
        text-align: left; /* 在小屏幕上恢复左对齐 */
    }
}

/* 容器右对齐样式 */
.ms-auto {
    margin-left: auto !important;
}

.d-flex {
    display: flex !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.footer img {
    height: 60px;
    width: auto;
}
