/* 基础样式重置 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* 解决中文标点符号溢出问题 */
  overflow-wrap: break-word;
  word-wrap: break-word;
}
html, body{min-width: 1400px;}
/* 文档基础设置 - 针对中文优化 */
html {
  line-height: 1.6; /* 中文最佳行高，提升可读性 */
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-size: 16px; /* 基础字体大小，便于rem计算 */
}

/* 中文主体样式 */
body {
  margin: 0;
  /* 中文字体栈，兼顾不同系统 */
  font-family: "PingFang SC", "Helvetica Neue", Helvetica, "Microsoft YaHei", "WenQuanYi Micro Hei", Arial, sans-serif;
  color: #333; /* 中文常用文本颜色 */
  background-color: #fff;
  -webkit-font-smoothing: antialiased; /* 字体抗锯齿，使中文更清晰 */
  -moz-osx-font-smoothing: grayscale;
}

/* 段落样式优化 */
p {
  margin-bottom: 1em; /* 段落间距 */
}

/* 标题样式重置 */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal; /* 中文标题常用字重 */
}

/* 列表样式 - 保留中文常用列表样式 */
ul {
  list-style-type: none;
}

ol {
  list-style-type: decimal;
}

/* 中文引用样式 */
blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 3px solid #e5e7eb;
  color: #6b7280;
  font-style: normal; /* 中文引用通常不需要斜体 */
}

/* 链接样式 - 中文网站常见样式 */
a {
  color: #333; /* 中文网站常用链接蓝色 */
  text-decoration: none;transition: all 0.3s;
}

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

/* 表格样式 - 中文表格常用样式 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 1em;
}

th, td {
  padding: 0.75em;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  font-weight: 600;
  background-color: #f9fafb;
}

/* 表单元素优化 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}

/* 按钮样式重置 */
button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.375em 0.75em;
}

/* 图片和媒体元素 */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    max-width: 100%;
}

/* 移除图片底部间隙 */
img,
svg,
video {
    vertical-align: middle;
}

/* 水平分隔线 */
hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 1.5em 0;
}

/* 代码样式 - 针对中文环境 */
code,
kbd,
samp,
pre {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.9375em;
    background-color: #f9fafb;
    padding: 0.2em 0.4em;
    border-radius: 3px;
}

pre {
    padding: 1em;
    overflow-x: auto;
    margin-bottom: 1em;
}

pre code {
    padding: 0;
    background: none;
}

/* 强调文本 */
strong {
    font-weight: 600;
}

/* 解决上标下标影响行高问题 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
     bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* 焦点样式 - 提升可访问性 */
:focus-visible {
    outline: 2px solid #165DFF;
    outline-offset: 2px;
}

/* 输入框 placeholder 样式 */
::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* 文本选择样式 */
::selection {
    background-color: #e6f7ff;
    color: #1890ff;
}


.banner{width: 100%;height: 388px;background: url('../images/banner.jpg') no-repeat center top;overflow: hidden;}

.search{width: 1400px;margin: 0 auto;height: 388px;position: relative;}
.searchbox{width: 400px;height: 60px;position: absolute;right: 0;bottom: 36px;}
#search {
    align-items: center;
    border-radius: 5px;
    border: 1px solid #f8c09f;
    display: flex;
    justify-content: space-between;
    transition: all 0.5s;
    padding: 0 10px;
    width: 400px;
    height: 50px;
}
#search:hover, #search:focus {
    background: #f8c09f;
    cursor: pointer;
}
.fa{color: white; font-size: 24px;display: block;}
#search button,
#search input {
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    outline: 0;
    height: 50px;
    
}
#search button {
    cursor: pointer;
}
#search input {
    flex: 1;
}
#search input::-moz-placeholder {
    color: #fff;
}
#search input:-ms-input-placeholder {
    color: #fff;
}
#search input::placeholder {
    color: #fff;
}
#search input::placeholder {
    color: #fff;
}
#search .spinner {
    -webkit-animation: spinner 1s infinite linear;
            animation: spinner 1s infinite linear;
    display: none;
}

#search.loading button {
    display: none;
}
#search.loading .spinner {
    display: block;
}

@-webkit-keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}




/* 基础定位和隐藏设置 */ 
.menu{height:82px;position:relative;z-index: 10;}
.menu ul{width:1400px;height:82px;margin:0 auto;display:flex;align-items: center}
.menu li{margin-right: 50px;}
.menu li > a{display:block;color:#c82423;font-size: 24px;line-height:82px;}
.menu li.active > a{font-weight:bold;}
/* .menu li.active .smenu{display: block;} */
.menu li.active .smenu > a{font-weight: bold;}
/* subbox */

.smenu{height:70px;background-color:#f6f6f6;display: none;width: 100%;position: absolute;left: 0;right:0;top: 82px}
.smenu > div{width: 1400px;margin: 0 auto;overflow: hidden;}
.smenu > div > a{font-size: 18px;line-height: 70px;margin-right: 30px;color:#c82423;}


.menu li:hover > a{font-weight:bold;}
.menu li:hover .smenu{display: block;}
.menu li:hover .smenu > a{font-weight: bold;}
.menu li.active .smenu .act{font-weight: bold;}



.main{width: 1400px;margin: 0 auto;overflow: hidden;}

.ad1{margin: 0 auto 35px;overflow: hidden;}
.topnew{width: 100%;height: 455px;overflow: hidden;margin:0 auto 35px;}

.topnew .swiper{width: 755px;height: 455px;float: left;overflow: hidden;}
.topnew .swiper img{width: 755px;height: 455px}
.topnew .swiper-pagination{width: auto!important;right: 10px;left: auto!important;}
.topnew .swiper-pagination-bullet{background: #e8c49b;}
.topnew .swiper a{display: block;width: 100%;height: 100%;}
.topnew .swiper a p{position: absolute;left:0;right: 0;bottom: -18px;font-size: 18px;padding: 15px 100px 15px 15px;background: url('../images/bad.png');color: white;}



.toplist{width:615px;float: right;}
.hd{width:100%;height: 56px;background-color: #f6f6f6;position: relative;}
.hd h3{font-size: 24px;line-height: 56px;background-color: #c82423;color: white;padding: 0 20px;float: left;}
.minnav{margin-left: 15px;}
.minnav,.minnav li{float: left;}
.minnav li{line-height: 56px;height: 56px;}
.minnav li a{font-size: 20px;padding: 0 13px;}
.bd{width: 100%;height: 92px;display: flex;align-items: center;}
.bd a{display: block;font-weight: bold;font-size: 22px;}

.tnlist{width: 100%;overflow: hidden;}
.tnlist li{width: 100%;float: left;position: relative;white-space: nowrap; overflow: hidden;  text-overflow: ellipsis;}
.tnlist li::before{position: absolute;left: 0;top: 23px;width: 5px;height: 5px;background-color: #333;border-radius: 50rem;content: '';}

.dongtai{overflow: hidden;}
.tnlist li a{ width: 100%;  padding:0 5px 0 15px; height: 51px;line-height: 51px;font-size: 20px;}
.dongtailist{overflow: hidden;margin: 25px auto;}
.dongtailist ul{margin-left:-32px;overflow: hidden;}
.dongtailist li{width: 326px;height: 280px;float: left;overflow: hidden;margin-left:32px;}
.dongtailist li img{width: 326px;height: 200px;display: block;}
.dongtailist li h3{
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制文本为2行 */
    overflow: hidden;
    margin-top: 9px;
}
.listnew{overflow: hidden;margin-bottom: 35px;}
.listnew > div{float: left;width: 680px;height: auto;}
.listnew > div:last-child{float: right;}

.group{width: 100%;overflow: hidden;margin-top: 20px;}
.group li{width: 100%;float: left;position: relative;white-space: nowrap; overflow: hidden;  text-overflow: ellipsis;}
.group li::before{position: absolute;left: 0;top: 18px;width: 5px;height: 5px;background-color: #333;border-radius: 50rem;content: '';}

.group li a{ width: 100%;  padding:0 5px 0 15px; height: 41px;line-height: 41px;font-size: 18px;}


.imglist{overflow: hidden;}
.imglistleft{width: 910px;height: 574px;float: left;}
.notice{width: 450px;height: 574px;float: right;}

.imggroup{margin: 30px auto 0;overflow: hidden;}
.imggroup ul{margin-left:-32px;overflow: hidden;}
.imggroup li{width: 282px;height: 250px;float: left;overflow: hidden;margin-left:32px;}
.imggroup li img{width: 282px;height: 170px;display: block;}
/* .imggroup li h3{display: flex;align-items: center;height: 80px;font-size: 18px;} */
.imggroup li h3{
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制文本为2行 */
    overflow: hidden;
    margin-top: 9px;
}


.hdnoti{width:100%;height: 56px;background-color: #c82423;position: relative;}
.hdnoti h3{font-size: 24px;line-height: 56px;color: white;padding: 0 20px;float: left;}


.noticegroup{height: 518px;width: 100%;overflow: hidden;padding:17px 25px;background-color:#f6f6f6;}
.noticegroup li{width: 100%;float: left;}
.noticegroup li a{font-size: 20px;padding:8px 0;display: block;line-height: 1.5;}

.links{overflow: hidden;margin: 35px auto;}
.linksgroup{overflow: hidden;margin-top: 20px;margin-left: -20px;}
.linksgroup li{float: left;margin-left: 20px;}
.linksgroup li a{font-size:18px;display: block;line-height: 30px;}


.footer{width: 100%;border-top: 1px solid #c82423;margin-top: 35px;}
.footer p{font-size: 18px;margin: 40px auto;overflow: hidden;text-align: center;line-height: 2;}


.current{width: 100%;height: 60px;overflow: hidden;margin-top: 0px;}
.currenthd{float: left;line-height: 60px;}
.breadcrumb{float: left;line-height: 60px}

.breadcrumb>li {
    display: inline-block;
}
.breadcrumb > li + li:before {
	content: " > ";
	color: #333;
	padding: 0 5px;
	font-family: "新宋体";
}

.breadcrumb>.active {
    color: #c82423;
}

.active ,.active a{
    color: #c82423;
}

.list{width: 100%;}

.newslist{overflow: hidden;margin: 20px auto;}
.newslist li{width: 100%;float: left;margin-top: 25px; display: flex;}
.newslist li a{font-size: 18px; flex-grow: 1; display: block;}
.newslist li span{float: right;color: #a2a2a2;font-size: 17px;line-height: 21px;padding-top: 2px;flex-grow: 0;width: 200px;text-align: right;}

.page{margin: 0 auto;text-align: center;overflow: hidden;}
ul.pagination {
    display: inline-block;
    padding: 0;
}

ul.pagination li {display: inline-block;margin: 0 3px;}
ul.pagination li {
    color: black;
    float: left;
   
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
	border-radius: 5px;
}

ul.pagination li a,ul.pagination li span{
    display: block;
    padding: 8px 16px;
}
ul.pagination li.active {
    background-color: #fff;
    border: 1px solid #c82423;
    color: #c82423;
}

ul.pagination li:hover:not(.active) {background-color: #ddd;}

.arc{overflow: hidden;}
.arc h1{text-align: center;font-size: 32px;}
.arc .tags{text-align: center;font-size: 16px;color: #a2a2a2;margin: 20px 0;}
.arc .b_cont{font-size: 18px;line-height: 1.8;}
.arc img{max-width: 600px;margin: 0 auto;}


.sexp{margin-top: 50px;overflow: hidden;}
.sexp .explain {font-size: 20px;}

.sexp .explain .keywords{color: #c82423;}

.newslist_s{overflow: hidden;margin: 20px auto;}
.newslist_s li{width: 100%;float: left;padding: 20px 0; display: flex;border-bottom: 1px solid #a2a2a2;}
.newslist_s li a{font-size: 18px; flex-grow: 1; display: block;}


.newslist_s li p{float: right;color: #a2a2a2;font-size: 17px;line-height: 21px;padding-top: 2px;flex-grow: 0;width: 200px;text-align: right;}





/* add2025-9-24 */
.h1{width: 100%;overflow: hidden;margin: 35px auto;}
.h1 a{font-size: 42px;font-weight: bold;text-align: center;display: block;}
.news{height: 455px;overflow: hidden;position: relative;width: 100%;margin: 0 auto;}


.news-focus{width: 855px;height: 455px;position: relative;overflow: hidden;float: left;}
.news-focus .swiper-container{width: 855px;height: 455px;float: left;overflow: hidden;position: relative;}
.news-focus .swiper-container img{width: 855px;height: 455px}
.news-focus .swiper-pagination{left: auto!important;right:18px;bottom:12px!important;width: auto!important;}
.news-focus .swiper-pagination-bullet{background: #c3c3c3!important;opacity: 1;width: 5px;height: 5px;border-radius: 0;}
.news-focus .swiper-pagination-bullet-active{background: #d61518!important;opacity: 1;width: 32px;}
.news-focus .swiper-container a{display: block;}
.news-focus .swiper-container p{background: url('../images/bad1.png');position: absolute;left: 0;right: 0;bottom: 0;padding: 10px;font-size: 18px;color: white;margin: 0;}

.news-gourp{width: 520px;float: right}
.news-gourp ul{overflow: hidden;}
.news-gourp li{width: 100%;position: relative;}
.news-gourp li a{font-size: 22px;display: block;padding-left: 10px;padding-bottom: 12px;}
.news-gourp li::before{width: 5px;height: 5px;background: #333;border-radius: 50rem;left: 0;top: 14px;content: '';position: absolute}

.newsbox{width: 100%;margin: 46px auto;overflow: hidden;}
.newshd{width: 100%;background: #f6f6f6;height: 56px;position: relative;margin-bottom: 15px;}
.newshd h3{width: 330px;background-color: #c82423;line-height: 56px;}
.newshd h3{color: white;font-size:28px;text-align: center;font-weight: bold;}
.newshd a{font-size: 18px;color: #555;position: absolute;right: 0;line-height: 56px;top: 0;right: 15px;}


.newscont{width: 100%;overflow: hidden;}
.newscont li{width: 100%;overflow: hidden;border-bottom: 1px dashed #e1e0e0;}
.newscont li a{font-size: 22px;padding: 20px 0;display: block;}  