/*
 * Base Styles - 全局基础样式
 * 包含：CSS Reset + 全局元素样式
 * 适用于整个网站的所有页面
 */

/*============================ CSS RESET ============================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
}

/*============================ 全局基础设置 ============================*/
html {
    font-size: 100.01%;
}

body {
    font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    border: 0;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* 列表样式 */
ul, ol {
    list-style: none;
}

/* 图片样式 */
img {
    display: block;
    border: none;
    max-width: 100%;
}

/* 清除浮动 */
.clear {
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
    overflow: hidden;
}

/* 链接样式 */
a, a:link, a:visited {
    color: #333;
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

a:hover {
    color: #027cdc;
    text-decoration: none;
}

/* 表单元素重置 */
input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
}

/* 表格样式 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 通用辅助类 */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

