/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. 在所有浏览器中更正线条高度。
 * 2. 防止在iOS中更改方向后调整字体大小。
 */

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * 删除所有浏览器中的边距。
 */

body {
    margin: 0;
}

/**
 * 在IE中始终呈现“main”元素。
 */

main {
    display: block;
}

/**
 * 更正“section”和中“h1”元素的字体大小和边距
 * Chrome、Firefox和Safari中的“文章”上下文。
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. 在Firefox中添加正确的框大小。
 * 2. 在Edge和IE中显示溢出。
 */

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
 * 1. 更正所有浏览器中字体大小的继承和缩放。
 * 2. 更正所有浏览器中奇怪的`em`字体大小。
 */

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* 文本级语义
   ========================================================================== */

/**
 * 删除IE 10中活动链接的灰色背景。
 */

a {
    background-color: transparent;
    color: #333;
}
ul li a {
    color: #333;
}
/**
 * 1. 删除Chrome 57中的底部边框-
 * 2. 在Chrome、Edge、IE、Opera和Safari中添加正确的文本装饰。
 */

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

/**
 * 在Chrome、Edge和Safari中添加正确的字体粗细。
 */

b,
strong {
    font-weight: bolder;
}

/**
 * 1. 更正所有浏览器中字体大小的继承和缩放。
 * 2. 更正所有浏览器中奇怪的`em`字体大小。
 */

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
 * 在所有浏览器中添加正确的字体大小。
 */

small {
    font-size: 80%;
}

/**
 * 防止“sub”和“sup”元素影响
 * 所有浏览器。
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * 删除IE 10中链接内图像的边框。
 */

img {
    border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. 更改所有浏览器中的字体样式。
 * 2. 删除Firefox和Safari中的边距。
 */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
 * 在IE中显示溢出。
 * 1. 在Edge中显示溢出。
 */

button,
input { /* 1 */
    overflow: visible;
}

/**
 * 删除Edge、Firefox和IE中文本转换的继承。
 * 1. 删除Firefox中文本转换的继承。
 */

button,
select { /* 1 */
    text-transform: none;
}

/**
 * 更正无法在iOS和Safari中设置可点击类型的样式。
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * 删除Firefox中的内边框和填充。
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * 恢复先前规则未设置的焦点样式。
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * 更正Firefox中的填充。
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3.删除填充，这样开发者在归零时不会被抓到
 *   所有浏览器中的“字段集”元素。
 *
 */

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
 * 在Chrome、Firefox和Opera中添加正确的垂直对齐。
 */

progress {
    vertical-align: baseline;
}

/**
 * 删除IE 10+中的默认垂直滚动条。
 */

textarea {
    overflow: auto;
}

/**
 * 1. 在IE 10中添加正确的框大小。
 * 2. 删除IE 10中的填充。
 */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 更正Chrome中递增和递减按钮的光标样式。
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. 纠正Chrome和Safari中的奇怪外观。
 * 2. 更正Safari中的轮廓样式。
 */

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
 * 在macOS上移除Chrome和Safari中的内部填充。
 */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. 更正无法在iOS和Safari中设置可点击类型的样式。
 * 2. 在Safari中将字体属性更改为“inherit”。
 */

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * 在Edge、IE 10+和Firefox中添加正确的显示。
 */

details {
    display: block;
}

/*
 * 在所有浏览器中添加正确的显示。
 */

summary {
    display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * 在IE 10+中添加正确的显示。
 */

template {
    display: none;
}

/**
 * 在IE 10中添加正确的显示。
 */

[hidden] {
    display: none;
}


@media screen and (min-width:750px) {
    html{
        font-size:75px !important;
    }
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing:border-box;
    color: #333;
}
input[type="radio"],input[type="checkbox"] {
    margin: 0 5px 0 0 !important;
    border-radius: 50% !important;
    -webkit-appearance: radio !important;
}
label {
    margin: 0px !important;
    font-weight: 500 !important;
}
.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}
body {
    width: 100%;
    min-width: 1387px;
    margin:0 auto;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
}
button,input {
    border: none;
    outline: none;
}
a {
    display: inline-block;
    text-decoration: none;
}
a:hover {
    text-decoration:none !important;
}
span {
    display: inline-block;
}
ul,li,ol {
    list-style: none;
}
.tc {
    text-align: center;
}
.tr {
    text-align: right;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.text_hide {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.text_hide2 {
    width: 100%;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.clearfix:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.flex {
    display: flex !important;
}
.flex_col {
    display: flex;
    flex-direction: column;
}
.flex_jsb {
    justify-content: space-between;
}
.flex_jsa {
    justify-content: space-around;
}
.flex_jr {
    justify-content: flex-end;
}
.flex_jc {
    justify-content: center;
}
.flex_jl {
    justify-content: flex-start;
}
.flex_al {
    align-items: flex-start;
}
.flex_ac {
    align-items: center;
}
.flex_ar {
    align-items: flex-end;
}
.flex_nowrap {
    flex-wrap: nowrap;
}
.flex_wrap {
    flex-wrap: wrap;
}
.f12 {
    font-size: 12px !important;
}
.f13 {
    font-size: 13px !important;
}
.f14 {
    font-size: 14px !important;
}
.f15 {
    font-size: 15px !important;
}
.f16 {
    font-size: 16px !important;
}
.f17 {
    font-size: 17px !important;
}
.f18 {
    font-size: 18px !important;
}
.f19 {
    font-size: 19px !important;
}
.f20 {
    font-size: 20px !important;
}
.f21 {
    font-size: 21px !important;
}
.f22 {
    font-size: 22px !important;
}
.f23 {
    font-size: 23px !important;
}
.f24 {
    font-size: 24px !important;
}

.nav_hover li:hover {
    background: linear-gradient(0deg, rgba(225,60,54,1) 0%, rgba(227,82,75,1) 100%) !important;
}
.color_red {
    background: linear-gradient(0deg, rgba(225,60,54,1) 0%, rgba(227,82,75,1) 100%) !important;
    color: #fff !important;
}
.color_green {
    background: #357F0E !important;
    color: #fff !important;
}
.color_blue {
    background: #02488E !important;
    color: #fff !important;
}
.content {
    width: 100%;
    margin: 0 auto;
}
.content_main {
    width: 1387px;
    margin: 0 auto;
}
/* 头部公共样式 */
@keyframes announcement{
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.header{
    height: 54px;
    line-height: 54px;
    background: #E34842;
    color: #fff;
    display: flex;
    align-items: center;
}
.header .header_left {
    width: 220px;
    font-size: 34px;
    color: #fff;
    padding-left: 14px;
}
.header .header_box {
    width: 727px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.header_box .announcement {
    width: 100%;
    font-size: 13px;
    position: absolute;
    transform: translateX(0%);
    /* animation: announcement 10s linear infinite; */
}
.announcement span {
    margin:0 5px;
    color: #fff;
}
.header_right {
    width: 440px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.header_right .avater {
    display: flex;
    align-items: center;
}
.header_right .avater img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 4px;
}
.header_right .avater span {
    width: 120px;
    font-size: 14px;
    color: #fff;
}
.header_right .text {
    width: 169px;
    color: #fff;
}
.header_right .time {
    width: 105px;
    color: #fff;
    text-align: center;
}
.nav_list {
    width: 100%;
    height: 52px;
    line-height: 52px;
    background: rgb(84,84,84);
    background: linear-gradient(0deg, rgba(84,84,84,1) 0%, rgba(58,58,58,1) 100%);
    overflow: hidden;
}
.nav_list .content_main {
    display: flex;
    align-items: center;
}
.nav_list .content_main li {
    flex: 1;
    text-align: center;
}
.nav_list .content_main li a {
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
}
/* 复选框样式 */
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-checkbox + label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-checkbox + label::before {
    content: '';
    display: inline-block;
    width: 15px;
    height:  15px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #c3c3c3;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    margin-bottom: 3px;
    background: #EBEBEB;
}
.custom-checkbox:checked + label::before {
    border-color: #E34842;
    background-color: #E34842;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: 2px 2px;
}

/* 下拉选项 */
.select {
    width: 105px;
    height: 25px;
    line-height: 25px;
    font-weight: 600;
    display: flex;
    border-radius: 20px;
    position: relative;
    background: rgb(219,219,219);
    background: linear-gradient(185deg, rgba(219,219,219,1) 0%, rgba(238,238,238,1) 100%);
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
}
.select:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top-color: #fff;
    top: 14px;
    right: 10px;
    cursor: pointer;
    z-index: -2;
}
.select select {
    width: 100%;
    height: 100%;
    font-size: 12px;
    text-align: center;
    padding-right: 25px;
    cursor: pointer;
    border: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select select:focus {
    outline: none;
}
.select .icon {
    position: absolute;
    right: 20px;
    top: 8px;
    border: 50%;
    overflow: hidden;
}

.flex_center {
    display:flex;
    justify-content: center;
    align-items:center;
}
.ballBgColor_red {
    background: linear-gradient(0deg, rgba(245,122,117,1) 0%,rgba(220,67,63,1) 50%, rgba(214,52,42,1) 100%);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px !important;
    color: #fff;
}

.ballBgColor_blue {
    background: linear-gradient(0deg, rgba(109,179,242,1) 0%,rgba(77,146,213,1) 50%, rgba(48,130,198,1) 100%);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px !important;
    color: #fff;
}

.ballBgColor_green {
    background: linear-gradient(0deg, rgba(67,205,112,1) 0%,rgba(46,176,89,1) 50%, rgba(30,147,70,1) 100%);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px !important;
    color: #fff;
}

.active_red {
    color: #E65C56 !important;
}
.active_green {
    color: #0CAF46 !important;
}

/* 隐藏原来的单选框 */
input[type='radio'] {
    display: none;
}

/* 选择单选框后面所有的 rad */
input[type='radio'] ~ .rad {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #E13D36;
    position: relative;
    top: 2px;
}

/* 选择 已勾选的单选框 后面所有的rad 后面after伪元素 */
input[type='radio']:checked ~ .rad::after {
    content:'';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.active {
    background: #E13D36;
    position: relative;
}
.active span,.active a {
    color: #fff !important;
}
.active::after{
    content:'';
    position:absolute;
    /* 给高亮元素定位，在这之前要给statusItem元素设置position:relative定位 */
    left:50%;
    bottom:-13px;
    transform: translate(-50%,0);
    /* 居中显示 */
    border:0.1rem solid transparent;
    border-top-color:#E13D36;
    z-index: 10;
}


.title-list li:hover {
    background-color: #E3534B;
    cursor: pointer;
}
.title-list li:hover a {
    color: #fff;
}
