/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */
{
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
}


/** 设置默认字体 **/
body,
button, input, select, textarea /* for ie */
{
    font-size: 18px;
    line-height: 36px;
    color: #333333 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

address, cite, dfn, em, var {
    font-style: normal;
}

/* 将斜体扶正 */
code, kbd, pre, samp {
    font-family: courier new, courier, monospace;
}

/* 统一等宽字体 */
small {
    font-size: 12px;
}

/* 小于 12px 的中文很难阅读, 让 small 正常化 */
/** 重置列表元素 **/
ul, ol {
    list-style: none;
}

/** 重置文本格式元素 **/
a {
    text-decoration: none !important;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

legend {
    color: #000;
}

fieldset, img {
    border: 0;
}

button, input, select, textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    display: block;
    margin: 0;
    padding: 0;
}

mark {
    background: #ff0;
}

:-moz-placeholder {
    color: #ddd;
    opacity: 1;
}

::-moz-placeholder {
    color: #ddd;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: #ddd;
    opacity: 1;
}

input::-webkit-input-placeholder {
    color: #ddd;
    opacity: 1;
}

a {
    text-decoration: none;
    color: #333;
}

input {
    border: none;
    appearance: none;
    -moz-appearance: none;
    outline: none;
}

input:focus {
    outline: none;
}

.min-width-1200 {
    width: var(--min-width);
    margin: auto;
}
.main-body{
    min-width: var(--min-width);
}
.point {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    margin-right: 10px;
    margin-bottom: 5px;
    display: inline-block;
    background-color: var(--bg-color);
}

.m-banner {
    width: 100%;
    height: 285px;
    background-image: url("../image/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.m-logo {
    background-image: url("../image/logo.png");
    width: 380px;
    height: 97px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.m-nav {
    width: 100%;
    min-width: var(--min-width);
    height: 70px;
    background: var(--bg-color);
    box-shadow: 0 -6.5px 32px #86050080;
    display: flex;
    justify-content: center;
}

.m-nav .search {
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: end;
}

.nav {
    /*min-width: var(--min-width);*/
    display: flex;
    justify-content: space-between;
    line-height: 70px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 300;
}

.nav li {
    width: 100%;
    text-align: center;
}
.nav li a{
    display: block;
    color: #ffffff;
}

.nav .cur {
    background-color: #ffffff;
    font-weight: bold;
    box-shadow: 3px 3px 14px rgb(15 14 14 / 9%);
    border-radius: 4px;
}

.nav .cur a {
    color: var(--bg-color) !important;
    display: block;
}

.footer {
    width: 100%;
    background-color: #f7f7f7;
}

.footer .link-hd {
    display: flex;
    width: calc(1320px - 20px);
    padding: 10px;

}

.footer span {
    display: block;
    font-weight: bold;
    margin-right: 20px;
    font-size: 20px;
    cursor: pointer;
}

.footer .cur {
    color: #D31811;
}

.footer li {
    display: inline-block;
    margin: 10px 0;
    text-align: center;
    width: 11.8%;
    line-height: 18px;
    border-right: 2px solid #676767;
    font-size: 16px
}
.footer li:nth-child(8n){
    border-right: none;
}
.footer .main a{
    color: #ffffff;
}
.footer .main {
    width: 100%;
    height: 200px;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 36px;
}

.position {
    padding: 20px 0;
    width: var(--min-width);
    border-bottom: 5px solid #f7f7f7;
    margin: auto;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

.position:after {
    content: " ";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 6px;
    width: 120px;
    border-radius: 10px;
    background-color: var(--bg-color);
}

.iconfont {
    font-size: 26px !important;
    margin-right: 10px;
}

.icon-color {
    color: #ffffff
}

.base-color {
    color: var(--bg-color) !important;

}

:root {
    --bg-color: #CF0710;
    --min-width: 1320px;
}


.pagination {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination a {
    display: block;
    color: var(--bg-color);
}

.pagination .disabled {
    color: rgb(134, 17, 12);
}

.pagination .disabled {
    color: rgb(134, 17, 12);
}

.pagination .active {
    background-color: var(--bg-color);
    color: #ffffff;
}

.pagination li {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--bg-color);
    text-align: center;
    line-height: 40px;
    border-radius: 4px;
}
.line-1{
    display: block;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#preview-box{
    width: 100%;
    position: fixed;
    text-align: center;
    z-index:9999;
    top: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 24px;
    line-height: 60px;
    font-weight: 700;
}