/**
 * @file base.css
 * @description 存放全局重置样式、通用布局组件和颜色变量
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Source Han Sans;
    background-color: #FFFFFF;;
}

.container {
    margin: 0 auto;
}

/* 通用标题组件 */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-top: -30px;
    margin-bottom: 50px;
}

/* 尾部 */
.footer {
    height: 240px;
    background-color: rgb(48, 46, 46);
    color: #fff;
    text-align: center;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 版权信息，垂直居中并与SSL内容保持间距 */
.Copyright {
    margin-bottom: 20px;
}

/* SSL证书内容，居中显示 */
.ssl-content {
    width: 160px;
    height: 50px;
    margin-bottom: 20px;
    margin-top: 20px;
}