@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
  font-weight: normal;
}
html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}
img {
  vertical-align: top;
}
html {
  overflow-x: hidden;
}
i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}
[hidefocus],
summary {
  outline: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}
sup,
sub {
  font-size: 83%;
}
pre,
code,
kbd,
samp {
  font-family: inherit;
}
q:before,
q:after {
  content: none;
}
textarea {
  overflow: auto;
  resize: none;
}
label,
summary {
  cursor: default;
}
a,
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}
del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}
body,
textarea,
input,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}
:focus {
  outline: 0;
}
/*备用样式表*/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
  *zoom: 1;
}
.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(images/icon.png) no-repeat;
}
/*css3扩展*/
body:before {
  display: none;
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
/*滚动样式*/
.scroller {
  position: absolute;
  z-index: 1;
  width: 750px;
  height: 160px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
  width: 4px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
  background-color: #fff; /*滚动条的背景颜色*/
  -webkit-border-radius: 0; /*滚动条的圆角宽度*/
}
::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  -webkit-border-radius: 4px;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border: 1px solid #fff;
}

/**布局开始**/
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #333;
  position: relative;
}
p {
  line-height: 1.75;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:hover {
}
.flex {
  display: flex;
  display: -webkit-flex;
}
.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}
.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1400px;
  margin: 0 auto;
}
header {
  background: rgba(133, 16, 26, 0.9);
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 0;
  z-index: 999;
}
.banner {
  position: relative;
}
.bannerimg {
  width: 100%;
}
.bannerimg images {
  width: 100%;
}
/**搜索**/
.searchbox {
  position: absolute;
  top: 50%;
  z-index: 999;
  left: 25%;
  width: 1030px;
  height: 160px;
  background: url(images/search_bg.png) no-repeat;
  padding-left: 80px;
  display: flex;
  align-items: center;
}
.wp_search {
  width: 100%;
  display: inline-block;
  position: relative;
  padding-left: 12px;
  opacity: 0.3;
  filter: Alpha(opacity=30);
}
.wp_search #keyword {
}
.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/sous.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}
/***自定义搜索*/
.wp-search {
  position: relative;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;
  height: 32px;
  position: relative;
}
.wp-search .search-input input.search-title {
  font-family: Microsoft YaHei;
  width: 659px;
  height: 57px;
  background: #ffffff;
  box-shadow: 0px 5px 10px 0px rgba(164, 0, 0, 0.75);
  border: 1px solid #d6b8b6;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: rgba(133, 16, 26, 0.55);
  line-height: 71px;
  padding-left: 20px;
}
.wp-search .search-btn {
  position: absolute;
  right: -24%;
  top: 0;
  width: 179px;
  height: 57px;
  background: url(images/searchbox.png) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s7 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 20px;
  color: #85101a;
  line-height: 71px;
}

.wp-search .search-btn .search-submit {
  width: 80px;
  height: 40px;
  position: relative;
  border: 0;
  outline: 0;
  border-radius: 10px;
  background: url(images/icon_search.png) no-repeat left;
  z-index: 999;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.wp-search input:-webkit-autofill {
  font-family: Microsoft YaHei;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
}
.main1 {
}
.main1-1 {
  padding-top: 40px;
  padding-bottom: 133px;
  background: url(images/classify_bg1.png) no-repeat;
  background-size: cover;
}
.main2 {
  padding-top: 130px;
  padding-bottom: 75px;
  background: url(images/content_bg1.png) no-repeat;
  background-size: cover;
}
.main1 .wp-panel .wp-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;

  border: 1px solid #f9ede5;
}
.main1 .wp-panel .wp-menu li a {
  font-family: Source Han Serif CN;
  font-weight: 800;
  font-size: 20px;
  color: #fff1e3;
  line-height: 62px;
}
.main1 .wp-panel .wp-menu li:hover {
  position: relative;
  z-index: 3;
}
.main1 .wp-panel .wp-menu li:hover a {
  position: relative;
  z-index: 3;
  color: #85101a;
}
.main1 .wp-panel .wp-menu li::before {
  position: absolute;
  content: "";
  top: 0;
  width: 129px;
  height: 74px;
  background: #fff1e3;
  z-index: 1;
  left: -100%;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.main1 .wp-panel .wp-menu li:hover::before {
  transform: translateY(0);
  opacity: 1;
}

.s1 {
  font-family: Source Han Serif CN;
  font-weight: bold;
  font-size: 20px;
  color: #fff9f5;
  line-height: 62px;
}
.s2 {
  font-family: Source Han Serif CN;
  font-weight: 600;
  font-size: 18px;
  color: #85101a;
  line-height: 62px;
}
.col_menu .wp_column .sub_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 1140px;
  height: 152px;
  background: url(images/classify_bg2.png) no-repeat;
  position: absolute;
  left: 5%;
}
.col_menu .wp_column .sub_list li {
  width: 32%;
}
.col_menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  flex-wrap: wrap;
}
.col_menu .wp_column {
  display: flex;
  justify-content: center;
  padding-left: 45px;
  padding-right: 45px;
  margin-bottom: 40px;
}
.col_menu .i1 {
  background: url(images/frame1.png) no-repeat;
  background-position: center;
  transition: 0.5s;
}
.col_menu .i2 {
  background: url(images/frame2.png) no-repeat;
  background-position: center;
  transition: 0.5s;
}
.col_menu .i3 {
  background: url(images/frame3.png) no-repeat;
  background-position: center;
  transition: 0.5s;
}
.col_menu .i4 {
  background: url(images/frame4.png) no-repeat;
  background-position: center;
  transition: 0.5s;
}
.col_menu .i5 {
  background: url(images/frame5.png) no-repeat;
  background-position: center;
  transition: 0.5s;
}
.col_menu .i6 {
  background: url(images/frame6.png) no-repeat;
  background-position: center;
  transition: 0.5s;
}
.col_menu .i7 {
  background: url(images/frame7.png) no-repeat;
  background-position: center;
  transition: 0.5s;
}
.col_menu .i8 {
  background: url(images/frame8.png) no-repeat;
  background-position: center;
  transition: 0.5s;
}
.col_menu {
  margin-top: 40px;
}
.col_menu .i1:hover {
  background: url(images/frame1_hover.png) no-repeat;
  background-position: center;
}
.col_menu .i2:hover {
  background: url(images/frame2_hover.png) no-repeat;
  background-position: center;
}
.col_menu .i3:hover {
  background: url(images/frame3_hover.png) no-repeat;
  background-position: center;
}
.col_menu .i4:hover {
  background: url(images/frame4_hover.png) no-repeat;
  background-position: center;
}
.col_menu .i5:hover {
  background: url(images/frame5_hover.png) no-repeat;
  background-position: center;
}
.col_menu .i6:hover {
  background: url(images/frame6_hover.png) no-repeat;
  background-position: center;
}
.col_menu .i7:hover {
  background: url(images/frame7_hover.png) no-repeat;
  background-position: center;
}
.col_menu .i8:hover {
  background: url(images/frame8_hover.png) no-repeat;
  background-position: center;
}
.wp_listcolumn {
  position: relative;
}
.NavAll {
  position: relative;
}
.Subnav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  bottom: -75%;
  height: 152px;
  background: url(images/classify_bg2.png) center no-repeat;
}
.Subnav li {
  width: 30%;
  position: relative;
  display: flex;
  justify-content: center;
}
.col_news {
}
.Subnav li::before {
  position: absolute;
  bottom: -5px;
  content: "";
  background: url(images/classify2_CHECKED.png) center no-repeat;
  height: 0;
  width: 100%;
  transform-origin: top;
  transition: height 0.5s ease;
  display: block;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -ms-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
}

.Subnav li:hover::before {
  height: 17px;
}
.Wimg {
  width: 187px;
  height: 255px;
  margin-right: 45px;
}
.Wimg img {
  width: 100%;
  height: 100%;
}
.s3 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  line-height: 24px;
  margin-bottom: 30px;
}
.s4 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #999999;
  line-height: 42px;
}
.s5 {
  color: rgba(51, 51, 51, 1);
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  line-height: 42px;
}
.s6 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #85101a;
  line-height: 24px;
  transition: 0.5s;
}
.Wmore {
  width: 180px;
  height: 39px;
  border-radius: 3px;
  border: 1px solid #85101a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  background: #fcfaf8 url(images/view_icon.png) left no-repeat;
  background-position-x: 20px;
  transition: 0.5s;
  position: absolute;
  right: 3%;
  bottom: 13%;
}
.news_list2 .news:hover .Wmore {
  background: #85101a url(images/view_icon_hover.png) left no-repeat;
  background-position-x: 20px;
  border: 1px solid #85101a;
}
.news_list2 .news:hover .s6 {
  color: #ffffff;
}
.news_list2 .news {
  position: relative;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 30px;
}
.news_list2 .news a {
  width: 100%;
  display: flex;
  align-items: center;
}
.news_list2 .news:hover .s3 {
  color: #85101a;
}
.Morebtn {
  width: 485px;
  height: 50px;
  background: #85101a;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s8 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 15px;
}
.Morebtn11 {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer {
  background: url(images/copyright_bg.png) no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 15px;
}
.EWM {
  width: 134px;
  height: 134px;
}
.EWM img {
  width: 100%;
  height: 100%;
}
.s9 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 30px;
}
.s10 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 20px;
}
.Fbox1 {
  display: flex;
  width: 27%;
  justify-content: space-between;
}
.Links {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 40px;
}
.Fboxall {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Fbox2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
/**文章页**/
.infobox {
  margin-top: 20px;
  padding: 20px 60px;
  width: auto;
  min-height: 500px;
  box-shadow: 0px 5px 15px 0px rgba(120, 32, 19, 0.4);
  margin-bottom: 30px;
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 36px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #333;
} /**文章标题**/
.article h2.arti_title {
  line-height: 34px;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: #666;
} /**文章副标题**/
.article .arti_metas {
  padding: 10px;
  text-align: center;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 12px;
  color: #787878;
} /**文章其他属性**/
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
} /**文章内容**/
.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  color: #333;
} /**阅读字体**/
.article .entry .read p {
  margin-bottom: 10px;
}
.article .entry .read img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
} /**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none !important;
}

/* 初始化子栏目样式 */
.Subnav {
  left: 5%;
  position: absolute;
  display: flex;
  opacity: 0;
  transform: scaleY(0); /* 初始时缩放为 0 */
  transform-origin: top; /* 变形从顶部开始 */
  transition: transform 1s ease, opacity 0.5s ease;
  overflow: hidden;
}
.active-tab {
}

/* 激活的子栏目 */
.active {
  opacity: 1;
  transform: scaleY(1); /* 扩展到正常大小 */
}
.S1 li {
  width: 22%;
  display: flex;
  justify-content: center;
}
.S5 {
  display: flex;
  justify-content: center;
}
.S55 {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}
.S55 li {
  width: 45%;
}
.S5 li .s2 {
  line-height: 50px;
}

[id^="window"] {
  display: none; /* 默认隐藏所有窗口 */
}

[id^="window"].active {
  display: block; /* 仅显示被激活的窗口 */
}
footer .wrap li {
  margin-bottom: 10px;
}
.s11 {
  font-family: "Noto Serif SC", serif;
  font-weight: bold;
  font-size: 42px;
  color: #ffffff;
  line-height: 80px;
}

/* 父栏目被选中时背景样式 */
.col_menu .i1.active-tab {
  background: url(images/frame1_hover.png) no-repeat center;
}
.col_menu .i2.active-tab {
  background: url(images/frame2_hover.png) no-repeat center;
}
.col_menu .i3.active-tab {
  background: url(images/frame3_hover.png) no-repeat center;
}
.col_menu .i4.active-tab {
  background: url(images/frame4_hover.png) no-repeat center;
}
.col_menu .i5.active-tab {
  background: url(images/frame5_hover.png) no-repeat center;
}
.col_menu .i6.active-tab {
  background: url(images/frame6_hover.png) no-repeat center;
}
.col_menu .i7.active-tab {
  background: url(images/frame7_hover.png) no-repeat center;
}
.col_menu .i8.active-tab {
  background: url(images/frame8_hover.png) no-repeat center;
}

/* hover 样式 */
.col_menu .i1:hover {
  background: url(images/frame1_hover.png) no-repeat center;
}
.col_menu .i2:hover {
  background: url(images/frame2_hover.png) no-repeat center;
}
.col_menu .i3:hover {
  background: url(images/frame3_hover.png) no-repeat center;
}
.col_menu .i4:hover {
  background: url(images/frame4_hover.png) no-repeat center;
}
.col_menu .i5:hover {
  background: url(images/frame5_hover.png) no-repeat center;
}
.col_menu .i6:hover {
  background: url(images/frame6_hover.png) no-repeat center;
}
.col_menu .i7:hover {
  background: url(images/frame7_hover.png) no-repeat center;
}
.col_menu .i8:hover {
  background: url(images/frame8_hover.png) no-repeat center;
}
/* 子栏目被选中时显示背景图 */
.Subnav li.active::before {
  position: absolute;
  bottom: -5px;
  content: "";
  background: url(images/classify2_CHECKED.png) center no-repeat;
  height: 17px; /* 这个高度可以根据需要调整 */
  width: 100%;
  transform-origin: top;
  transition: height 0.5s ease; /* 动画效果 */
  display: block;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -ms-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
}
.active-tab::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  background: url(images/classify2_CHECKED.png) center no-repeat;
  height: 17px; /* 这个高度可以根据需要调整 */
  width: 100%;
  transform-origin: top;
  transition: height 0.5s ease; /* 动画效果 */
  display: block;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -ms-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
}
.FBottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 25px;
   padding-top: 20px;

}
