/* ========== 浏览器兼容性设置 ========== */

/* CSS Reset - 重置默认样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* 统一字体渲染 */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 14px;
  font-family: "microsoft yahei","宋体",Arial, Helvetica, sans-serif;
}

/* 图片自适应 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

/* 清除链接默认样式 */
a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

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

/* ========== 项目样式 ========== */

.container{
  width: 1180px;
}

.navigation{
  height: 48px;
  background: url('../images/wgxj_dhbg.jpg');
}
.navigation a:hover{
  text-decoration: underline solid;
}

.banner{
  width: 100%;
  height: 287px;
  overflow: hidden;
}

.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s;
  z-index: 0;
}

.flink{
  margin-top: 25px;
  border-bottom: solid 5px #c20506;
}
.flink ul{
  height: 45px;
  background: url('../images/wgxj_yqljbg.jpg') no-repeat;
}
.flink .text-white{
  width: 110px;
  margin-right: 10px;
}
.flink li:not(.text-white){
  cursor: pointer;
}

.contact{
  padding: 20px 0 40px 0;
}

.article-mod{
  border: 1px solid #dadada;
}
.article-mod .mod-title{
  position: relative;
  background: url('../images/wgxj_gzdt.jpg') repeat-x;
}
.article-mod .mod-title a{
  padding: 0 10px;
}
.article-mod .mod-title span{
  background: url('../images/wgxj_gzdtta.jpg') no-repeat;
  width: 98px;
  height: 29px;
  line-height: 30px;
  display: block;
  font-weight: bold;
  color: #fff;
  box-sizing: border-box;
  padding-left: 15px;
}
.article-mod .mod-body li{
  height: 28px;
}
.article-mod .mod-body li a:hover{
  color: #c20506;
}

.banner2{
  img{
    display: block;
    aspect-ratio: 4 / 3;
    width: 580px;
    height: 360px;
  }
}
.banner2 .box{
  transition: all .3s;
}
.banner-text{
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-indent: 1em;
  left: 0;
  bottom: 7px;
  color: #fff;
  background-color: rgba(0,0,0,.2);
}
.banner-num{
  right: 10px;
  bottom: 10px;
}
.banner-num span{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--page-num-span-bgcolor,#fff);
  color: var(--page-num-span-color, #000);
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.banner-num span.active{
  --page-num-span-bgcolor: #FE2905;
  --page-num-span-color: #fff;
}
.article-mod-tab{
  font-size: 16px;
}
.article-mod-tab .tab{
  border:1px solid #dadada;
}
.article-mod-tab .tab::after{
  position: absolute;
  display: block;
  content: "";
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background-color: #C31D08;
}
.article-mod-tab .tab li{
  height: 38px;
  line-height: 38px;
  font-size: 18px;
  color: #ce0000;
  cursor: pointer;
}
.article-mod-tab .tab li.active{
  color: #fff;
  background: linear-gradient(to bottom, #FE6764, #C31D08);
  position: relative;
}
.article-mod-tab .tab li.active::after{
  position: absolute;
  display: block;
  content: ""; z-index: -1;
  right: -8px; top: 8px;
  width: 20px; height: calc(100% - 8px);
  background-color: rgba(0,0,0,.3);
  transform: skewX(-25deg);
  filter: blur(2px);
}
.article-mod-tab .content li{
  height: 36px;
  padding: 2px 10px;
  border-bottom: 1px dashed #ccc;
}
.article-mod-tab .content a:hover{
  color: #ce0000;
  text-decoration: underline solid;
}