@charset "UTF-8";
/* 定义变量 根伪类 :root 下，这样就可以在 HTML 文档的任何地方访问到它*/
:root {
    --main-theme-color: #c42925;
    --main-red-color-deep:#b20000;
    --main-yellow-color: #fffbed;
    --main-yellow-color-light:#f9f2e7;
    --main-yellow-color-lighter:#f2eadf;
    --main-yellow-color-deep:#c9923c;
    --main-gray-color: #c8c8c8;
    --main-gray-color-light:#e2e2e2;
    --main-gray-color-lighter:#f7f7f7;
    --font-red-color:#c42925;
    --font-yellow-color:#fdcd8f;
    --font-gray-color:#707070;
    --font-gray-color-deep:#424242;
    --font-gray-color-deeper:#3f3f3f;
    --font-black-color:#000000;
    --font-white-color: #fff;
    --font-size-small: 14px;/*用于二级标题下的摘要字体大小*/
    --font-size-normal: 16px;/*正文默认字体大小*/
    --font-size-big: 18px;/*导航下拉菜单字体大小*/
    --font-size-bigger: 20px;/*用于二级标题下的小标题*/
    --font-size-biggest: 22px; /*用于二级标题*/
    --font-size-biggester: 24px;/*机构设置标题*/
    --font-size-biggestest: 26px;/*列表页导航标题*/
    --font-size-biggestestest: 35px;/*二级页*/
}
body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
    margin: 0;
    padding: 0
}

body {
    font: 16px "Microsoft YaHei", "Arial Narrow";
    background: #fff;
    -webkit-text-size-adjust: 100%;
    color: #333
}

a {
    color: var(--font-yellow-color);
    text-decoration: none;
    transition: color .34s
}

a:hover {
    color: var(--font-red-color);
}

em,
strong,
i {
    font-weight: normal;
    font-style: normal
}

li {
    list-style: none
}

h3,
h4,
h5 {
    font-weight: normal;
}

img {
    border: 0;
    vertical-align: middle
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

p {
    word-wrap: break-word
}

input,
select,
button,
textarea {
    outline: none;
    font-family: "Microsoft YaHei UI Light";
    border: none;
}

button,
input[type="submit"],
input[type="button"] {
    cursor: pointer;
}

.f-l {
    float: left;
}

.f-r {
    float: right;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 1px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #d61618;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: #fff;
}

.clear {
    clear: both;
    zoom: 1;
}

.clear::after {
    content:"";
    display:block;
    height:0;
    line-height:0;
    clear:both;
    visibility:hidden;
}

.f_none {
    float: unset
}
.w580{
    width: 580px;
    float: left;
}
.w700{
    width: 700px;
    float: left;
}
.w1280 {
    width: 1280px;
    margin: 0 auto;
}
.mr50{
    margin-right: 50px;
}
.mr40{
    margin-right: 40px;
}
.mr30{
    margin-right: 30px;
}
.mb22{
    margin-bottom: 22px;
}
.mb45{
    margin-bottom: 45px;
}
.mb35{
    margin-bottom: 35px;
}
.mb30{
    margin-bottom: 30px;
}
.mb20{
    margin-bottom: 20px;
}
.mt40{
    margin-top: 40px;
}