/* 设置字符编码为 UTF-8 */
@charset "UTF-8";

/* 引入 Font Awesome 字体图标库的 CSS 文件 */
@import url(font-awesome.min.css);

/* 从 Google Fonts 引入 Lato 字体，包含 300 和 400 两种字重 */
@import url("//fonts.googleapis.com/css?family=Lato:300,400");

/* Basic 部分，设置页面的基本样式 */
/* 全局样式，设置页面背景颜色为白色 */
body {
    background: #fff;
}

/* 定义一个类名为 image.fit 的样式，当图片使用该类时，图片宽度自适应父元素宽度，高度按比例自适应 */
.image.fit img {
    width: 100%;
    height: auto;
}

/* 设置 body、input、select 和 textarea 元素的文本颜色、字体、字号、字重和行高 */
body, input, select, textarea {
    color: #444;
    font-family: "Lato", Helvetica, sans-serif;
    font-size: 15pt;
    font-weight: 300;
    line-height: 1.65em;
}

/* 设置链接的颜色和下划线样式 */
a {
    color: #4dac71;
    text-decoration: underline;
}

/* 当鼠标悬停在链接上时，取消下划线 */
a:hover {
    text-decoration: none;
}

/* 设置 strong 和 b 标签的文本颜色和字重 */
strong, b {
    color: #666;
    font-weight: 400;
}

/* 设置 em 和 i 标签为斜体样式 */
em, i {
    font-style: italic;
}

/* 设置段落元素的底部外边距 */
p {
    margin: 0 0 2em 0;
}

/* 设置标题元素（h1 - h6）的文本颜色、字重、行高和底部外边距 */
h1, h2, h3, h4, h5, h6 {
    color: #666;
    font-weight: 300;
    line-height: 1em;
    margin: 0 0 1em 0;
}

/* 设置标题元素内的链接颜色和去除下划线 */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
    text-decoration: none;
}

/* 设置 h2 标题的字号和行高 */
h2 {
    font-size: 1.75em;
    line-height: 1.5em;
}

/* 设置 h3 标题的字号和行高 */
h3 {
    font-size: 1.35em;
    line-height: 1.5em;
}

/* 设置 h4 标题的字号和行高 */
h4 {
    font-size: 1.1em;
    line-height: 1.5em;
}

/* 设置 h5 标题的字号和行高 */
h5 {
    font-size: 0.9em;
    line-height: 1.5em;
}

/* 设置 h6 标题的字号和行高 */
h6 {
    font-size: 0.7em;
    line-height: 1.5em;
}

/* 设置 sub 标签的字号和垂直位置 */
sub {
    font-size: 0.8em;
    position: relative;
    top: 0.5em;
}

/* 设置 sup 标签的字号和垂直位置 */
sup {
    font-size: 0.8em;
    position: relative;
    top: -0.5em;
}

/* 设置水平分割线的样式，去除默认边框，添加底部边框 */
hr {
    border: 0;
    border-bottom: medium 1px rgba(144, 144, 144, 0.25);
    margin: 2em 0;
}

/* 设置带有 major 类的水平分割线的底部外边距 */
hr.major {
    margin: 3em 0;
}

/* 设置块引用元素的样式，添加左边框，设置为斜体，添加内边距 */
blockquote {
    border-left: solid 4px rgba(144, 144, 144, 0.25);
    font-style: italic;
    margin: 0 0 2em 0;
    padding: 0.5em 0 0.5em 2em;
}

/* 设置代码块的样式，添加背景色、圆角、边框，设置字体和内边距 */
code {
    background: rgba(144, 144, 144, 0.075);
    border-radius: 4px;
    border: solid 1px rgba(144, 144, 144, 0.25);
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    margin: 0 0.25em;
    padding: 0.25em 0.65em;
}

/* 设置 pre 元素的样式，允许水平滚动，设置字体和底部外边距 */
pre {
    -webkit-overflow-scrolling: touch;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    margin: 0 0 2em 0;
}

/* 设置 pre 元素内的 code 元素的样式，设置为块级元素，添加行高和内边距，允许水平滚动 */
pre code {
    display: block;
    line-height: 1.75em;
    padding: 1em 1.5em;
    overflow-x: auto;
}

/* 设置文本左对齐的类 */
.align-left {
    text-align: left;
}

/* 设置文本居中对齐的类 */
.align-center {
    text-align: center;
}

/* 设置文本右对齐的类 */
.align-right {
    text-align: right;
}

/* 设置带有 special 类的 section 和 article 元素文本居中 */
section.special, article.special {
    text-align: center;
}

/* 设置头部元素内的段落样式，添加相对定位和底部外边距 */
header p {
    position: relative;
    margin: 0 0 1.5em 0;
}

/* 设置 h2 标题后面的段落样式，设置字号、顶部外边距和行高 */
header h2 + p {
    font-size: 1.25em;
    margin-top: -1em;
    line-height: 1.5em;
}

/* 设置 h3 标题后面的段落样式，设置字号、顶部外边距和行高 */
header h3 + p {
    font-size: 1.1em;
    margin-top: -0.8em;
    line-height: 1.5em;
}

/* 设置 h4、h5、h6 标题后面的段落样式，设置字号、顶部外边距和行高 */
header h4 + p,
header h5 + p,
header h6 + p {
    font-size: 0.9em;
    margin-top: -0.6em;
    line-height: 1.5em;
}

/* 设置带有 major 类的头部元素样式，文本居中，添加底部外边距 */
header.major {
    text-align: center;
    margin-bottom: 3em;
}

/* 设置带有 major 类的头部元素内的 h2 标题的字号 */
header.major h2 {
    font-size: 3em;
}

/* 设置带有 major 类的头部元素内的段落样式，添加顶部边框，设置为内联块元素，添加内边距 */
header.major p {
    border-top: medium double rgba(144, 144, 144, 0.25);
    display: inline-block;
    padding: 2em 2em 0 2em;
}

/* Form 部分，设置表单元素的样式 */
/* 设置表单元素的底部外边距 */
form {
    margin: 0 0 2em 0;
}

/* 设置标签元素的文本颜色、显示方式、字号、字重和底部外边距 */
label {
    color: #666;
    display: block;
    font-size: 0.9em;
    font-weight: 400;
    margin: 0 0 1em 0;
}

/* 设置输入框、选择框和文本域的样式，去除浏览器默认样式，添加背景色、圆角、边框等 */
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    /* 移除浏览器默认样式 */
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    /* 背景色、边框、圆角等样式 */
    background: rgba(144, 144, 144, 0.075);
    border-radius: 4px;
    border: none;
    border: solid 1px rgba(144, 144, 144, 0.25);
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
}

/* 当输入框、选择框和文本域内容无效时，取消默认的红色边框提示 */
input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
    box-shadow: none;
}

/* 当输入框、选择框和文本域获得焦点时，改变边框颜色并添加阴影 */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #4dac71;
    box-shadow: 0 0 0 1px #4dac71;
}

/* 设置选择框包装器的样式，设置为块级元素，添加相对定位 */
.select-wrapper {
    text-decoration: none;
    display: block;
    position: relative;
}

/* 在选择框包装器前添加下拉箭头图标 */
.select-wrapper:before {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

/* 设置下拉箭头图标的颜色、高度、行高、位置等 */
.select-wrapper:before {
    color: rgba(144, 144, 144, 0.25);
    display: block;
    height: 2.75em;
    line-height: 2.75em;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 2.75em;
}

/* 隐藏 IE 浏览器下选择框的默认下拉箭头 */
.select-wrapper select::-ms-expand {
    display: none;
}

/* 设置输入框和选择框的高度 */
input[type="text"],
input[type="password"],
input[type="email"],
select {
    height: 2.75em;
}

/* 设置文本域的内边距 */
textarea {
    padding: 0.75em 1em;
}

/* 隐藏复选框和单选框的默认样式 */
input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}

/* 设置复选框和单选框后面的标签样式，添加文本颜色、光标样式、显示方式、内边距和相对定位 */
input[type="checkbox"] + label,
input[type="radio"] + label {
    text-decoration: none;
    color: #444;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 300;
    padding-left: 2.4em;
    padding-right: 0.75em;
    position: relative;
}

/* 在复选框和单选框后面的标签前添加自定义样式 */
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

/* 设置复选框和单选框后面的标签前的自定义样式，添加背景色、圆角、边框等 */
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    background: rgba(144, 144, 144, 0.075);
    border-radius: 4px;
    border: solid 1px rgba(144, 144, 144, 0.25);
    content: '';
    display: inline-block;
    height: 1.65em;
    left: 0;
    line-height: 1.58125em;
    position: absolute;
    text-align: center;
    top: 0;
    width: 1.65em;
}

/* 当复选框和单选框被选中时，改变前面自定义样式的背景色、边框颜色和内容 */
input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
    background: #3ba666;
    border-color: #3ba666;
    color: #ffffff;
    content: '\f00c';
}

/* 当复选框和单选框获得焦点时，改变前面自定义样式的边框颜色并添加阴影 */
input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
    border-color: #4dac71;
    box-shadow: 0 0 0 1px #4dac71;
}

/* 设置复选框前面自定义样式的圆角 */
input[type="checkbox"] + label:before {
    border-radius: 4px;
}

/* 设置单选框前面自定义样式的圆角为圆形 */
input[type="radio"] + label:before {
    border-radius: 100%;
}

/* 设置输入框占位符的颜色和透明度 */
::-webkit-input-placeholder {
    color: #888 !important;
    opacity: 1.0;
}

:-moz-placeholder {
    color: #888 !important;
    opacity: 1.0;
}

::-moz-placeholder {
    color: #888 !important;
    opacity: 1.0;
}

:-ms-input-placeholder {
    color: #888 !important;
    opacity: 1.0;
}

/* 设置旧版浏览器输入框占位符的颜色和透明度 */
.formerize-placeholder {
    color: #888 !important;
    opacity: 1.0;
}

/* Box 部分，设置盒子元素的样式 */
/* 设置盒子元素的圆角、边框和底部外边距，添加内边距 */
.box {
    border-radius: 4px;
    border: solid 1px rgba(144, 144, 144, 0.25);
    margin-bottom: 2em;
    padding: 1.5em;
}

/* 设置盒子元素内最后一个子元素、最后一个子元素的最后一个子元素等的底部外边距为 0 */
.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
    margin-bottom: 0;
}

/* 设置带有 alt 类的盒子元素的样式，去除边框和圆角，去除内边距 */
.box.alt {
    border: 0;
    border-radius: 0;
    padding: 0;
}

/* Icon 部分，设置图标元素的样式 */
/* 设置图标元素的文本装饰和相对定位 */
.icon {
    text-decoration: none;
    border-bottom: none;
    position: relative;
}

/* 在图标元素前添加 Font Awesome 图标 */
.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

/* 隐藏图标元素的标签 */
.icon > .label {
    display: none;
}

/* 设置带有 rounded 类的图标元素的样式，添加圆形边框，设置宽度、高度、行高和文本居中 */
.icon.rounded {
    border-radius: 100%;
    border: 1px solid #4dac71;
    display: inline-block;
    height: 2em;
    line-height: 2em;
    text-align: center;
    width: 2em;
}

/* 设置带有 rounded 和 big 类的图标元素的字号 */
.icon.rounded.big {
    font-size: 3.5em;
}

/* Image 部分，设置图片元素的样式 */
/* 设置图片元素的圆角、边框和显示方式，添加相对定位 */
.image {
    border-radius: 4px;
    border: 0;
    display: inline-block;
    position: relative;
}

/* 设置图片元素内图片的圆角和显示方式 */
.image img {
    border-radius: 4px;
    display: block;
}

/* 设置带有 left 类的图片元素的浮动方向、内边距和垂直位置 */
.image.left {
    float: left;
    padding: 0 1.5em 1em 0;
    top: 0.25em;
}

/* 设置带有 right 类的图片元素的浮动方向、内边距和垂直位置 */
.image.right {
    float: right;
    padding: 0 0 1em 1.5em;
    top: 0.25em;
}

/* 设置带有 left 和 right 类的图片元素的最大宽度 */
.image.left, .image.right {
    max-width: 40%;
}

/* 设置带有 left 和 right 类的图片元素内图片的宽度 */
.image.left img, .image.right img {
    width: 100%;
}

/* 设置带有 fit 类的图片元素的显示方式、底部外边距和宽度 */
.image.fit {
    display: block;
    margin: 0 0 2em 0;
    width: 100%;
}

/* 设置带有 fit 类的图片元素内图片的宽度 */
.image.fit img {
    width: 100%;
}

/* List 部分，设置列表元素的样式 */
/* 设置有序列表的样式，添加列表类型和内边距 */
ol {
    /* 设置有序列表的列表项标记为十进制数字，如 1, 2, 3... */
    list-style: decimal;
    /* 设置有序列表的外边距，上、右、下、左分别为 0、0、2em、0，底部外边距为 2em 用于与下方元素隔开 */
    margin: 0 0 2em 0;
    /* 设置有序列表的左侧内边距为 1.25em，使列表内容有缩进效果 */
    padding-left: 1.25em;
}

/* 设置有序列表项的内边距 */
ol li {
    /* 设置有序列表中每个列表项的左侧内边距为 0.25em，进一步调整列表项内容的缩进 */
    padding-left: 0.25em;
}

/* 设置无序列表的样式 */
ul {
    /* 设置无序列表的列表项标记为实心圆点 */
    list-style: disc;
    /* 设置无序列表的外边距，上、右、下、左分别为 0、0、2em、0，底部外边距为 2em 用于与下方元素隔开 */
    margin: 0 0 2em 0;
    /* 设置无序列表的左侧内边距为 1em，使列表内容有缩进效果 */
    padding-left: 1em;
}

/* 设置无序列表项的内边距 */
ul li {
    /* 设置无序列表中每个列表项的左侧内边距为 0.5em，进一步调整列表项内容的缩进 */
    padding-left: 0.5em;
}

/* 设置带有 'alt' 类的无序列表的样式 */
ul.alt {
    /* 移除带有 'alt' 类的无序列表的默认列表项标记 */
    list-style: none;
    /* 将带有 'alt' 类的无序列表的左侧内边距设置为 0 */
    padding-left: 0;
}

/* 设置带有 'alt' 类的无序列表项的样式 */
ul.alt li {
    /* 为带有 'alt' 类的无序列表的每个列表项添加顶部边框，边框为 1px 宽的浅灰色实线 */
    border-top: solid 1px rgba(144, 144, 144, 0.25);
    /* 设置带有 'alt' 类的无序列表的每个列表项的上下内边距为 0.8em，左右内边距为 0 */
    padding: 0.8em 0;
}

/* 设置带有 'alt' 类的无序列表的第一个列表项的样式 */
ul.alt li:first-child {
    /* 移除带有 'alt' 类的无序列表的第一个列表项的顶部边框 */
    border-top: 0;
    /* 将带有 'alt' 类的无序列表的第一个列表项的顶部内边距设置为 0 */
    padding-top: 0;
}

/* 设置带有 'icons' 类的无序列表的样式，通常用于图标列表 */
ul.icons {
    /* 设置鼠标指针样式为默认样式，避免鼠标悬停时有特殊样式 */
    cursor: default;
    /* 移除带有 'icons' 类的无序列表的默认列表项标记 */
    list-style: none;
    /* 将带有 'icons' 类的无序列表的左侧内边距设置为 0 */
    padding-left: 0;
}

/* 设置带有 'icons' 类的无序列表项的样式 */
ul.icons li {
    /* 将带有 'icons' 类的无序列表的每个列表项设置为行内块元素，使其可以水平排列 */
    display: inline-block;
    /* 设置带有 'icons' 类的无序列表的每个列表项的右侧内边距为 1em，用于分隔图标 */
    padding: 0 1em 0 0;
}

/* 设置带有 'icons' 类的无序列表的最后一个列表项的样式 */
ul.icons li:last-child {
    /* 将带有 'icons' 类的无序列表的最后一个列表项的右侧内边距设置为 0，避免右侧出现多余的间距 */
    padding-right: 0;
}

/* 设置带有 'actions' 类的无序列表的样式，通常用于操作按钮列表 */
ul.actions {
    /* 设置鼠标指针样式为默认样式，避免鼠标悬停时有特殊样式 */
    cursor: default;
    /* 移除带有 'actions' 类的无序列表的默认列表项标记 */
    list-style: none;
    /* 将带有 'actions' 类的无序列表的左侧内边距设置为 0 */
    padding-left: 0;
}

/* 设置带有 'actions' 类的无序列表项的样式 */
ul.actions li {
    /* 将带有 'actions' 类的无序列表的每个列表项设置为行内块元素，使其可以水平排列 */
    display: inline-block;
    /* 设置带有 'actions' 类的无序列表的每个列表项的右侧内边距为 1em，用于分隔操作按钮 */
    padding: 0 1em 0 0;
    /* 设置带有 'actions' 类的无序列表的每个列表项的垂直对齐方式为居中 */
    vertical-align: middle;
}

/* 设置带有 'actions' 类的无序列表的最后一个列表项的样式 */
ul.actions li:last-child {
    /* 将带有 'actions' 类的无序列表的最后一个列表项的右侧内边距设置为 0，避免右侧出现多余的间距 */
    padding-right: 0;
}

/* 设置带有 'actions' 和 'small' 类的无序列表项的样式，小尺寸操作按钮列表 */
ul.actions.small li {
    /* 设置带有 'actions' 和 'small' 类的无序列表的每个列表项的右侧内边距为 0.5em，缩小间距 */
    padding: 0 0.5em 0 0;
}

/* 设置带有 'actions' 和 'vertical' 类的无序列表项的样式，垂直排列的操作按钮列表 */
ul.actions.vertical li {
    /* 将带有 'actions' 和 'vertical' 类的无序列表的每个列表项设置为块级元素，使其垂直排列 */
    display: block;
    /* 设置带有 'actions' 和 'vertical' 类的无序列表的每个列表项的顶部内边距为 1em，用于分隔操作按钮 */
    padding: 1em 0 0 0;
}

/* 设置带有 'actions' 和 'vertical' 类的无序列表的第一个列表项的样式 */
ul.actions.vertical li:first-child {
    /* 将带有 'actions' 和 'vertical' 类的无序列表的第一个列表项的顶部内边距设置为 0，避免顶部出现多余的间距 */
    padding-top: 0;
}

/* 设置带有 'actions' 和 'vertical' 类的无序列表项内子元素的样式 */
ul.actions.vertical li > * {
    /* 将带有 'actions' 和 'vertical' 类的无序列表的每个列表项内子元素的底部外边距设置为 0，避免出现多余的间距 */
    margin-bottom: 0;
}

/* 设置带有 'actions'、'vertical' 和 'small' 类的无序列表项的样式，小尺寸垂直排列的操作按钮列表 */
ul.actions.vertical.small li {
    /* 设置带有 'actions'、'vertical' 和 'small' 类的无序列表的每个列表项的顶部内边距为 0.5em，缩小间距 */
    padding: 0.5em 0 0 0;
}

/* 设置带有 'actions'、'vertical' 和 'small' 类的无序列表的第一个列表项的样式 */
ul.actions.vertical.small li:first-child {
    /* 将带有 'actions'、'vertical' 和 'small' 类的无序列表的第一个列表项的顶部内边距设置为 0，避免顶部出现多余的间距 */
    padding-top: 0;
}

/* 设置带有 'actions' 和 'fit' 类的无序列表的样式，自适应宽度的操作按钮列表 */
ul.actions.fit {
    /* 将带有 'actions' 和 'fit' 类的无序列表设置为表格显示方式，使列表项可以自适应宽度 */
    display: table;
    /* 设置带有 'actions' 和 'fit' 类的无序列表的左侧外边距为 -1em，用于调整整体布局 */
    margin-left: -1em;
    /* 将带有 'actions' 和 'fit' 类的无序列表的内边距设置为 0 */
    padding: 0;
    /* 设置表格的布局方式为固定宽度，使每个列表项宽度均匀分配 */
    table-layout: fixed;
    /* 设置带有 'actions' 和 'fit' 类的无序列表的宽度为父元素宽度加上 1em */
    width: calc(100% + 1em);
}

/* 设置带有 'actions' 和 'fit' 类的无序列表项的样式 */
ul.actions.fit li {
    /* 将带有 'actions' 和 'fit' 类的无序列表的每个列表项设置为表格单元格显示方式 */
    display: table-cell;
    /* 设置带有 'actions' 和 'fit' 类的无序列表的每个列表项的左侧内边距为 1em，用于分隔操作按钮 */
    padding: 0 0 0 1em;
}

/* 设置带有 'actions' 和 'fit' 类的无序列表项内子元素的样式 */
ul.actions.fit li > * {
    /* 将带有 'actions' 和 'fit' 类的无序列表的每个列表项内子元素的底部外边距设置为 0，避免出现多余的间距 */
    margin-bottom: 0;
}

/* 设置带有 'actions'、'fit' 和 'small' 类的无序列表的样式，小尺寸自适应宽度的操作按钮列表 */
ul.actions.fit.small {
    /* 设置带有 'actions'、'fit' 和 'small' 类的无序列表的左侧外边距为 -0.5em，缩小间距 */
    margin-left: -0.5em;
    /* 设置带有 'actions'、'fit' 和 'small' 类的无序列表的宽度为父元素宽度加上 0.5em */
    width: calc(100% + 0.5em);
}

/* 设置带有 'actions'、'fit' 和 'small' 类的无序列表项的样式 */
ul.actions.fit.small li {
    /* 设置带有 'actions'、'fit' 和 'small' 类的无序列表的每个列表项的左侧内边距为 0.5em，缩小间距 */
    padding: 0 0 0 0.5em;
}

/* 设置带有 'tabular' 类的无序列表的样式，通常用于表格形式的列表 */
ul.tabular {
    /* 移除带有 'tabular' 类的无序列表的默认列表项标记 */
    list-style: outside none none;
    /* 将带有 'tabular' 类的无序列表的内边距设置为 0 */
    padding: 0px;
}

/* 设置带有 'tabular' 类的无序列表项的样式 */
ul.tabular li {
    /* 为带有 'tabular' 类的无序列表的每个列表项添加顶部边框，边框为 1px 宽的浅灰色实线 */
    border-top: solid 1px rgba(144, 144, 144, 0.25);
    /* 设置带有 'tabular' 类的无序列表的每个列表项的行高为 1.75em */
    line-height: 1.75em;
    /* 设置带有 'tabular' 类的无序列表的每个列表项的顶部外边距为 1.5em，用于分隔列表项 */
    margin: 1.5em 0px 0px;
    /* 设置带有 'tabular' 类的无序列表的每个列表项的左侧内边距为 7em，用于留出左侧空间放置标题等内容 */
    padding-left: 7em;
    /* 设置带有 'tabular' 类的无序列表的每个列表项的顶部内边距为 12px */
    padding-top: 12px;
    /* 将带有 'tabular' 类的无序列表的每个列表项的定位方式设置为相对定位，以便子元素进行绝对定位 */
    position: relative;
}

/* 设置带有 'tabular' 类的无序列表的第一个列表项的样式 */
ul.tabular li:first-child {
    /* 移除带有 'tabular' 类的无序列表的第一个列表项的顶部边框 */
    border-top: 0;
    /* 将带有 'tabular' 类的无序列表的第一个列表项的顶部外边距设置为 0，避免顶部出现多余的间距 */
    margin-top: 0;
}

/* 设置带有 'tabular' 类的无序列表项内 h3 标题的样式 */
ul.tabular li h3 {
    /* 将带有 'tabular' 类的无序列表的每个列表项内 h3 标题的左侧位置设置为 0 */
    left: 0px;
    /* 将带有 'tabular' 类的无序列表的每个列表项内 h3 标题的定位方式设置为绝对定位，相对于列表项进行定位 */
    position: absolute;
    /* 设置带有 'tabular' 类的无序列表的每个列表项内 h3 标题的文本对齐方式为居中 */
    text-align: center;
    /* 将带有 'tabular' 类的无序列表的每个列表项内 h3 标题的顶部位置设置为 12px */
    top: 12px;
    /* 设置带有 'tabular' 类的无序列表的每个列表项内 h3 标题的垂直对齐方式为顶部对齐 */
    vertical-align: top;
    /* 设置带有 'tabular' 类的无序列表的每个列表项内 h3 标题的宽度为 1em */
    width: 1em;
}

/* 设置定义列表的样式 */
dl {
    /* 设置定义列表的外边距，上、右、下、左分别为 0、0、2em、0，底部外边距为 2em 用于与下方元素隔开 */
    margin: 0 0 2em 0;
}

/* Table 部分，设置表格元素的样式 */

/* 设置带有 'table-wrapper' 类的元素的样式，通常用于包裹表格以实现滚动效果 */
.table-wrapper {
    /* 为带有 'table-wrapper' 类的元素添加在 iOS 设备上的平滑滚动效果 */
    -webkit-overflow-scrolling: touch;
    /* 当表格宽度超出容器宽度时，允许水平滚动 */
    overflow-x: auto;
}

/* 设置表格的样式 */
table {
    /* 设置表格的外边距，上、右、下、左分别为 0、0、2em、0，底部外边距为 2em 用于与下方元素隔开 */
    margin: 0 0 2em 0;
    /* 设置表格的宽度为 100%，使其自适应父容器宽度 */
    width: 100%;
}

/* 设置表格主体中每行的样式 */
table tbody tr {
    /* 为表格主体中的每行添加边框，边框为 1px 宽的浅灰色实线，左右边框设置为 0 */
    border: solid 1px rgba(144, 144, 144, 0.25);
    border-left: 0;
    border-right: 0;
}

/* 设置表格主体中奇数行的样式（从第 1 行开始计数） */
table tbody tr:nth-child(2n + 1) {
    /* 为表格主体中的奇数行添加背景颜色，颜色为浅灰色的半透明色，增加表格的可读性 */
    background-color: rgba(144, 144, 144, 0.075);
}

/* 设置表格单元格的样式 */
table td {
    /* 设置表格单元格的内边距，上下、左右均为 0.75em */
    padding: 0.75em 0.75em;
}

/* 设置表格表头单元格的样式 */
table th {
    /* 设置表格表头单元格的文本颜色为灰色 */
    color: #666;
    /* 设置表格表头单元格的字体大小为 0.9em */
    font-size: 0.9em;
    /* 设置表格表头单元格的字体粗细为 400（正常粗细） */
    font-weight: 400;
    /* 设置表格表头单元格的内边距，上、右、下、左分别为 0、0.75em、0.75em、0.75em */
    padding: 0 0.75em 0.75em 0.75em;
    /* 设置表格表头单元格的文本对齐方式为左对齐 */
    text-align: left;
}

		/* 设置表格表头（<thead>）的样式 */
table thead {
    /* 为表格表头添加底部边框，边框为 2px 宽的半透明浅灰色实线，用于分隔表头和表格主体 */
    border-bottom: solid 2px rgba(144, 144, 144, 0.25);
}

/* 设置表格表尾（<tfoot>）的样式 */
table tfoot {
    /* 为表格表尾添加顶部边框，边框为 2px 宽的半透明浅灰色实线，用于分隔表尾和表格主体 */
    border-top: solid 2px rgba(144, 144, 144, 0.25);
}

/* 设置带有 'alt' 类的表格的样式，这是一种备用样式的表格 */
table.alt {
    /* 设置表格的边框合并模式为分隔，即每个单元格都有独立的边框 */
    border-collapse: separate;
}

/* 设置带有 'alt' 类的表格主体中每行单元格的样式 */
table.alt tbody tr td {
    /* 为单元格添加 1px 宽的半透明浅灰色实线边框 */
    border: solid 1px rgba(144, 144, 144, 0.25);
    /* 取消单元格左侧边框的宽度，即不显示左侧边框 */
    border-left-width: 0;
    /* 取消单元格顶部边框的宽度，即不显示顶部边框 */
    border-top-width: 0;
}

/* 设置带有 'alt' 类的表格主体中每行的第一个单元格的样式 */
table.alt tbody tr td:first-child {
    /* 为每行的第一个单元格添加 1px 宽的左侧边框，使其显示出来 */
    border-left-width: 1px;
}

/* 设置带有 'alt' 类的表格主体中第一行单元格的样式 */
table.alt tbody tr:first-child td {
    /* 为第一行的单元格添加 1px 宽的顶部边框，使其显示出来 */
    border-top-width: 1px;
}

/* 设置带有 'alt' 类的表格表头的样式 */
table.alt thead {
    /* 取消带有 'alt' 类的表格表头的底部边框，即不显示底部边框 */
    border-bottom: 0;
}

/* 设置带有 'alt' 类的表格表尾的样式 */
table.alt tfoot {
    /* 取消带有 'alt' 类的表格表尾的顶部边框，即不显示顶部边框 */
    border-top: 0;
}

/* Button 部分，设置按钮元素的样式 */

/* 为提交按钮、重置按钮、普通按钮以及带有 'button' 类的元素设置通用样式 */
input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
    /* 移除这些元素在不同浏览器中的默认外观，以实现自定义样式 */
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    /* 设置背景颜色和文字颜色在 0.2 秒内以平滑过渡的方式变化，增强交互效果 */
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    /* 设置按钮的背景颜色为深绿色 */
    background-color: #3ba666;
    /* 设置按钮的圆角半径为 4px，使按钮具有圆角效果 */
    border-radius: 4px;
    /* 取消按钮的边框 */
    border: 0;
    /* 设置按钮的文字颜色为白色，并且使用 !important 确保该颜色设置优先级最高 */
    color: #ffffff !important;
    /* 设置鼠标悬停在按钮上时的指针样式为手型，表示可点击 */
    cursor: pointer;
    /* 将按钮显示为内联块元素，使其可以在一行内显示，同时可以设置宽度和高度 */
    display: inline-block;
    /* 设置按钮的字体粗细为 400，即正常粗细 */
    font-weight: 400;
    /* 设置按钮的高度为 2.85em */
    height: 2.85em;
    /* 设置按钮内文字的行高为 2.8em，使文字在垂直方向上居中显示 */
    line-height: 2.8em;
    /* 设置按钮的左右内边距为 2em，用于调整按钮内文字与边框的间距 */
    padding: 0 2em;
    /* 设置按钮内文字的对齐方式为居中 */
    text-align: center;
    /* 取消按钮内文字的下划线等装饰效果 */
    text-decoration: none;
    /* 禁止按钮内的文字换行，确保文字在一行内显示 */
    white-space: nowrap;
}

/* 设置按钮在鼠标悬停时的样式 */
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:hover {
    /* 当鼠标悬停在按钮上时，将按钮的背景颜色变为稍浅的绿色 */
    background-color: #42b972;
}

/* 设置按钮在被点击（激活）时的样式 */
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.button:active {
    /* 当按钮被点击时，将按钮的背景颜色变为更深的绿色 */
    background-color: #34935a;
}

/* 设置带有 'icon' 类的按钮的样式，这类按钮通常带有图标 */
input[type="submit"].icon,
input[type="reset"].icon,
input[type="button"].icon,
.button.icon {
    /* 增加带有图标的按钮的左侧内边距为 1.35em，为图标留出空间 */
    padding-left: 1.35em;
}

/* 设置带有 'icon' 类的按钮内图标（伪元素）的样式 */
input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
.button.icon:before {
    /* 设置图标与按钮文字之间的右侧外边距为 0.5em，用于分隔图标和文字 */
    margin-right: 0.5em;
}

/* 设置带有 'fit' 类的按钮的样式，这类按钮通常用于填充父容器宽度 */
input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
.button.fit {
    /* 将带有 'fit' 类的按钮显示为块级元素，使其独占一行 */
    display: block;
    /* 设置带有 'fit' 类的按钮的底部外边距为 1em，用于与下方元素隔开 */
    margin: 0 0 1em 0;
    /* 设置带有 'fit' 类的按钮的宽度为 100%，使其填充父容器宽度 */
    width: 100%;
}

/* 设置小尺寸按钮的样式 */
input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
.button.small {
    /* 将小尺寸按钮的字体大小设置为 0.8em，使其看起来更小 */
    font-size: 0.8em;
}

/* 设置大尺寸按钮的样式 */
input[type="submit"].big,
input[type="reset"].big,
input[type="button"].big,
.button.big {
    /* 将大尺寸按钮的字体大小设置为 1.35em，使其看起来更大 */
    font-size: 1.35em;
}

/* 设置带有 'alt' 类的按钮的样式，这是一种备用样式的按钮 */
input[type="submit"].alt,
input[type="reset"].alt,
input[type="button"].alt,
.button.alt {
    /* 将带有 'alt' 类的按钮的背景颜色设置为透明 */
    background-color: transparent;
    /* 为带有 'alt' 类的按钮添加内阴影边框，边框为 2px 宽的半透明浅灰色 */
    box-shadow: inset 0 0 0 2px rgba(144, 144, 144, 0.25);
    /* 设置带有 'alt' 类的按钮的文字颜色为灰色，并且使用 !important 确保该颜色设置优先级最高 */
    color: #666 !important;
}

/* 设置带有 'alt' 类的按钮在鼠标悬停时的样式 */
input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
input[type="button"].alt:hover,
.button.alt:hover {
    /* 当鼠标悬停在带有 'alt' 类的按钮上时，将按钮的背景颜色变为半透明浅灰色 */
    background-color: rgba(144, 144, 144, 0.075);
}

/* 设置带有 'alt' 类的按钮在被点击（激活）时的样式 */
input[type="submit"].alt:active,
input[type="reset"].alt:active,
input[type="button"].alt:active,
.button.alt:active {
    /* 当带有 'alt' 类的按钮被点击时，将按钮的背景颜色变为稍深的半透明浅灰色 */
    background-color: rgba(144, 144, 144, 0.2);
}

/* 设置带有 'alt' 类且带有图标的按钮内图标（伪元素）的样式 */
input[type="submit"].alt.icon:before,
input[type="reset"].alt.icon:before,
input[type="button"].alt.icon:before,
.button.alt.icon:before {
    /* 将带有 'alt' 类且带有图标的按钮内图标的颜色设置为浅灰色 */
    color: #888;
}

/* 定义带有'special' 类的提交按钮、重置按钮、普通按钮以及.button 类元素的样式 */
input[type="submit"].special,
input[type="reset"].special,
input[type="button"].special,
.button.special {
    /* 设置背景颜色为特定的绿色，通常用于突出显示这些特殊按钮 */
    background-color: #4dac71;
    /* 设置文字颜色为白色，并使用!important 确保该颜色设置优先级最高，不被其他样式覆盖 */
    color: #ffffff !important;
}

/* 定义带有'special' 类的按钮在鼠标悬停时的样式 */
input[type="submit"].special:hover,
input[type="reset"].special:hover,
input[type="button"].special:hover,
.button.special:hover {
    /* 鼠标悬停时，将背景颜色变为稍亮的绿色，提供视觉反馈 */
    background-color: #5cb67e;
}

/* 定义带有'special' 类的按钮在被点击（激活）时的样式 */
input[type="submit"].special:active,
input[type="reset"].special:active,
input[type="button"].special:active,
.button.special:active {
    /* 按钮被点击时，将背景颜色变为稍暗的绿色，提供点击反馈 */
    background-color: #459a65;
}

/* 定义禁用状态的提交按钮、重置按钮、普通按钮以及.button 类元素的样式 */
input[type="submit"].disabled, input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
.button.disabled,
.button:disabled {
    /* 设置背景颜色为深灰色，并使用!important 确保该颜色设置优先级最高 */
    background-color: #444 !important;
    /* 为按钮添加内阴影，模拟凹陷效果，从底部向上 0.15em 开始，颜色为半透明黑色 */
    box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
    /* 设置文字颜色为白色，并使用!important 确保该颜色设置优先级最高 */
    color: #fff !important;
    /* 设置鼠标指针样式为默认样式，表明该按钮不可点击 */
    cursor: default;
    /* 设置按钮的不透明度为 0.25，使其看起来暗淡，提示用户不可用 */
    opacity: 0.25;
}

/* Header 部分，定义页面头部的样式 */

/* 当页面主体有 'landing' 类时，设置头部的样式 */
body.landing #header {
    /* 设置头部背景颜色为透明，通常用于着陆页的头部样式 */
    background-color: transparent;
    /* 将头部元素定位在页面左侧边缘 */
    left: 0;
    /* 设置头部元素的定位方式为绝对定位，相对于页面的初始包含块 */
    position: absolute;
    /* 将头部元素定位在页面顶部边缘 */
    top: 0;
}

/* 定义通用的头部样式 */
#header {
    /* 设置头部背景颜色为深灰色 */
    background-color: #202222;
    /* 设置头部文字颜色为白色 */
    color: #ffffff;
    /* 设置鼠标指针样式为默认样式，避免出现特殊指针效果 */
    cursor: default;
    /* 设置头部的高度为 4.75em */
    height: 4.75em;
    /* 设置头部内文字的行高为 4.75em，使文字在垂直方向上居中显示 */
    line-height: 4.75em;
    /* 设置头部的宽度为 100%，使其填充整个页面宽度 */
    width: 100%;
    /* 设置头部元素的层叠顺序为 10000，确保它显示在其他元素之上 */
    z-index: 10000;
}

/* 定义头部内 h1 标题的样式 */
#header h1 {
    /* 设置 h1 标题的文字颜色为白色 */
    color: #ffffff;
    /* 设置 h1 标题的高度与头部高度相同 */
    height: inherit;
    /* 将 h1 标题定位在距离头部左侧 2.5em 的位置 */
    left: 2.5em;
    /* 设置 h1 标题内文字的行高与头部行高相同，使文字在垂直方向上居中显示 */
    line-height: inherit;
    /* 取消 h1 标题的外边距 */
    margin: 0;
    /* 取消 h1 标题的内边距 */
    padding: 0;
    /* 设置 h1 标题的定位方式为绝对定位，相对于头部元素 */
    position: absolute;
    /* 将 h1 标题定位在头部顶部边缘 */
    top: 0;
}

/* 定义头部内 h1 标题中链接的样式 */
#header h1 a {
    /* 设置 h1 标题中链接的字体大小为 1.25em */
    font-size: 1.25em;
}

/* 定义头部内导航栏的样式 */
#header nav {
    /* 设置导航栏的高度与头部高度相同 */
    height: inherit;
    /* 设置导航栏内文字的行高与头部行高相同，使文字在垂直方向上居中显示 */
    line-height: inherit;
    /* 设置导航栏的定位方式为绝对定位，相对于头部元素 */
    position: absolute;
    /* 将导航栏定位在距离头部右侧 2.75em 的位置 */
    right: 2.75em;
    /* 将导航栏定位在头部顶部边缘 */
    top: 0;
    /* 设置导航栏的垂直对齐方式为居中 */
    vertical-align: middle;
}

/* 定义头部内导航栏中无序列表的样式 */
#header nav > ul {
    /* 移除无序列表的默认列表项标记 */
    list-style: none;
    /* 取消无序列表的外边距 */
    margin: 0;
    /* 取消无序列表的左侧内边距 */
    padding-left: 0;
}

/* 定义头部内导航栏中无序列表项的样式 */
#header nav > ul > li {
    /* 为列表项添加 4px 的圆角边框 */
    border-radius: 4px;
    /* 将列表项显示为行内块元素，使其可以水平排列 */
    display: inline-block;
    /* 设置列表项之间的左侧外边距为 1.5em，用于分隔导航项 */
    margin-left: 1.5em;
    /* 取消列表项的左侧内边距 */
    padding-left: 0;
}

/* 定义头部内导航栏中列表项内链接的样式 */
#header nav > ul > li a {
    /* 设置链接的颜色在 0.2 秒内以平滑过渡的方式变化，增强交互效果 */
    -moz-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    /* 设置链接的文字颜色为淡绿色 */
    color: #cee8d8;
    /* 将链接显示为行内块元素 */
    display: inline-block;
    /* 取消链接的下划线等装饰效果 */
    text-decoration: none;
}

/* 定义头部内导航栏中列表项内链接在鼠标悬停时的样式 */
#header nav > ul > li a:hover {
    /* 鼠标悬停时，将链接的文字颜色变为白色，提供视觉反馈 */
    color: #ffffff;
}

/* 定义头部内导航栏中第一个列表项的样式 */
#header nav > ul > li:first-child {
    /* 取消第一个列表项的左侧外边距，避免出现多余的间距 */
    margin-left: 0;
}

/* 定义头部内导航栏中列表项内按钮的样式 */
#header nav > ul > li .button {
    /* 设置按钮的高度为 2.25em */
    height: 2.25em;
    /* 设置按钮内文字的行高为 2.25em，使文字在垂直方向上居中显示 */
    line-height: 2.25em;
    /* 取消按钮的底部外边距 */
    margin-bottom: 0;
    /* 设置按钮的左右内边距为 1em */
    padding: 0 1em;
    /* 设置按钮的定位方式为相对定位，相对于列表项 */
    position: relative;
    /* 将按钮向上偏移 0.075em，微调垂直位置 */
    top: -0.075em;
    /* 设置按钮的垂直对齐方式为居中 */
    vertical-align: middle;
}

/* 定义头部内.container 类元素的样式 */
#header .container {
    /* 设置.container 类元素的定位方式为相对定位，为其子元素提供定位参考 */
    position: relative;
}

/* 定义头部内.container 类元素中 h1 标题的样式 */
#header .container h1 {
    /* 将.container 类元素中 h1 标题的左侧位置设置为 0，使其与.container 元素左侧对齐 */
    left: 0;
}

/* 定义头部内.container 类元素中导航栏的样式 */
#header .container nav {
    /* 将.container 类元素中导航栏的右侧位置设置为 0，使其与.container 元素右侧对齐 */
    right: 0;
}

/* Banner 部分，用于设置页面横幅区域的样式 */

/* 定义横幅区域的样式 */
#banner {
    /* 设置背景图像，叠加使用两张图片。一张是半透明的覆盖层图片，另一张是主横幅图片 */
    background: url("images/overlay.png"), url("../images/banner.jpg");
    /* 设置背景图像的位置为居中 */
    background-position: center;
    /* 设置背景图像不重复显示 */
    background-repeat: no-repeat;
    /* 设置背景图像覆盖整个横幅区域 */
    background-size: cover;
    /* 设置横幅区域内文字的颜色为白色 */
    color: #ffffff;
    /* 设置横幅区域的内边距，上内边距为 16em，下内边距为 14em，左右内边距为 0 */
    padding: 16em 0em 14em;
    /* 设置横幅区域内文字的对齐方式为居中 */
    text-align: center;
}

/* 定义横幅区域内 h2 标题的样式 */
#banner h2 {
    /* 设置 h2 标题的文字颜色为白色 */
    color: #ffffff;
    /* 设置 h2 标题的字体大小为 3em */
    font-size: 3em;
    /* 设置 h2 标题的行高为 1em，使文字紧密排列 */
    line-height: 1em;
    /* 设置 h2 标题的底部外边距为 0.5em */
    margin: 0 0 0.5em 0;
    /* 取消 h2 标题的内边距 */
    padding: 0;
}

/* 定义横幅区域内段落的样式 */
#banner p {
    /* 设置段落的字体大小为 1.5em */
    font-size: 1.5em;
    /* 设置段落的顶部外边距为 1.5em */
    margin: 1.5em 0 0 0;
}

/* 定义横幅区域内操作按钮列表的样式 */
#banner .actions {
    /* 设置操作按钮列表的顶部外边距为 3em */
    margin: 3em 0 0 0;
}

/* 定义横幅区域内按钮的样式 */
#banner .button {
    /* 设置按钮的背景颜色为透明 */
    background-color: transparent;
    /* 为按钮添加 1px 宽的白色边框 */
    border: 1px solid #ffffff;
    /* 设置按钮的字体粗细为 300，使文字更细 */
    font-weight: 300;
}

/* 定义横幅区域内按钮在鼠标悬停时的样式 */
#banner .button:hover {
    /* 鼠标悬停时，将按钮的背景颜色变为半透明的白色，提供视觉反馈 */
    background-color: rgba(255, 255, 255, 0.2);
}

/* Wrapper 部分，用于设置页面包装器的样式 */

/* 定义通用包装器的样式 */
.wrapper {
    /* 设置包装器的内边距，上内边距为 6em，下内边距为 4em，左右内边距为 0 */
    padding: 6em 0em 4em;
}

/* 定义带有 style1 类的包装器的样式 */
.wrapper.style1 {
    /* 设置包装器的背景颜色为特定的绿色 */
    background-color: #3ba666;
    /* 设置包装器的背景图像为线性渐变，从 60 度方向，50% 处由一种绿色过渡到另一种绿色 */
    -moz-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
    -webkit-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
    -o-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
    -ms-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
    background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
    /* 设置包装器内文字的颜色为白色 */
    color: #ffffff;
}

/* 定义带有 style1 类的包装器内头部的样式 */
.wrapper.style1 header {
    /* 设置头部的底部外边距为 4em */
    margin-bottom: 4em;
}

/* 定义带有 style1 类的包装器内 h2 标题的样式 */
.wrapper.style1 h2 {
    /* 设置 h2 标题的文字颜色为白色 */
    color: #ffffff;
}

/* 定义带有 style1 类的包装器内大图标（带有.icon.big 类）的样式 */
.wrapper.style1 .icon.big {
    /* 设置大图标边框的颜色为白色 */
    border-color: #ffffff;
    /* 设置大图标底部外边距为 0.5em */
    margin-bottom: 0.5em;
}

/* 定义带有 style2 类的包装器内标题和头部的样式 */
.wrapper.style2 .title, .wrapper.style2 header {
    /* 为标题和头部添加底部边框，边框为中等宽度的双实线，颜色为半透明浅灰色 */
    border-bottom: medium double rgba(144, 144, 144, 0.25);
    /* 设置标题和头部的底部内边距为 1em */
    padding-bottom: 1em;
}

/* 定义带有 style2 类的包装器内头部的样式 */
.wrapper.style2 header {
    /* 设置头部的底部外边距为 4em */
    margin-bottom: 4em;
}

/* 定义带有 style2 类的包装器内特色元素（带有.feature 类）的样式 */
.wrapper.style2 .feature {
    /* 设置特色元素的底部外边距为 2em */
    margin: 0 0 2em 0;
}

/* Footer 部分，用于设置页面底部区域的样式 */

/* 定义底部区域的样式 */
#footer {
    /* 设置底部区域的背景颜色为深灰色 */
    background: #202222;
    /* 设置底部区域内文字的颜色为浅灰色 */
    color: #888;
    /* 设置底部区域的内边距，上内边距为 6em，下内边距为 4em，左右内边距为 0 */
    padding: 6em 0em 4em;
}

/* 定义底部区域内 h2、h3、h4 标题的样式 */
#footer h2, #footer h3, #footer h4 {
    /* 设置底部区域内 h2、h3、h4 标题的文字颜色为白色 */
    color: #ffffff;
}

/* 定义底部区域内链接的样式 */
#footer a {
    /* 设置链接的所有属性（如颜色、大小等）在 0.2 秒内以平滑过渡的方式变化，增强交互效果 */
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    /* 设置链接的文字颜色为浅灰色 */
    color: #888;
}

/* 定义底部区域内链接在被点击（激活）和鼠标悬停时的样式 */
#footer a:active, #footer a:hover {
    /* 链接被点击或鼠标悬停时，将文字颜色变为白色，提供视觉反馈 */
    color: #ffffff;
}

/* 定义底部区域内图标列表中圆形图标（带有.rounded 类）的样式 */
#footer .icons .rounded {
    /* 设置圆形图标的边框颜色为浅灰色 */
    border-color: #888;
    /* 设置圆形图标的字体大小为 1.5em */
    font-size: 1.5em;
}

/* 定义底部区域内图标列表中圆形图标在被点击（激活）和鼠标悬停时的样式 */
#footer .icons .rounded:active, #footer .icons .rounded:hover {
    /* 圆形图标被点击或鼠标悬停时，将边框颜色变为白色，提供视觉反馈 */
    border-color: #ffffff;
}

/* 定义版权信息区域的样式 */
.copyright {
    /* 设置版权信息的字体大小为 0.9em */
    font-size: 0.9em;
    /* 设置版权信息的顶部外边距为 2em */
    margin: 2em 0 0 0;
    /* 取消版权信息的内边距 */
    padding: 0;
    /* 设置版权信息的文字对齐方式为居中 */
    text-align: center;
    /* 设置版权信息区域的宽度为 100% */
    width: 100%;
}

/* 这部分重复的.copyright 选择器代码可能存在错误，推测原本是想给某个特定的版权信息项设置样式，但这里重复定义了，按逻辑添加注释说明 */
.copyright {
    /* 为版权信息项添加左侧边框，边框为 1px 宽的半透明浅灰色实线 */
    border-left: solid 1px rgba(144, 144, 144, 0.25);
    /* 将版权信息项显示为行内块元素 */
    display: inline-block;
    /* 移除版权信息项的默认列表项标记（如果是列表元素） */
    list-style: none;
    /* 设置版权信息项的左侧外边距为 1.5em */
    margin-left: 1.5em;
    /* 设置版权信息项的左侧内边距为 1.5em */
    padding-left: 1.5em;
}

/* 再次重复的.copyright 选择器，同样推测是为特定情况设置样式，这里注释说明 */
.copyright{
    /* 取消版权信息项的左侧边框 */
    border-left: 0;
    /* 取消版权信息项的左侧外边距 */
    margin-left: 0;
    /* 取消版权信息项的左侧内边距 */
    padding-left: 0;
    /* 设置版权信息项的顶部外边距为 15px */
    margin-top: 15px;
    /* 设置版权信息项的底部外边距为 15px */
    margin-bottom: 15px;
}