@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,
a:active {
  text-decoration: none;
  /* color: #af251b; */
}

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 {
  /* color: rgba(67, 130, 233, 1); */
}

.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.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s 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;
}

.text-line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.text-line5 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

/*页面尺寸*/

.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1400px;
  margin: 0 auto;
}
.tbody{
  position: relative;
}
.header{
  padding-top: 25px;
  position: relative;
  background: url(images/bg1.png);
  background-size: cover;
}
.head-top{
  gap: 10px 20px;
}
.head-top > a img{
  width: 620px;
  height: auto;
}
.h-left{
  gap: 20px;
}
.h2-1{
  line-height: 40px;
  letter-spacing: 0.8px;
  border-radius: 20px;
  border: 1px solid #FFFFFF;
  text-align: center;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  padding: 0 14.5px;
}
.h2-1 {
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden; 
}
.h2-1:hover {
  background-color: #FFFFFF; 
  color: #AF251B;           
  border-color: #FFFFFF;     
  transform: translateY(-2px); 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}
/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  filter: Alpha(opacity=30);
  border-radius: 18px;
}
.wp_search #keyword {
  width: 137px !important;
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
}
.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/search.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}
/***自定义搜索*/
.wp-search {
  border: 0px;
  border-radius: 18px;

  height: 35px;
  position: relative;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;

  position: relative;
}
.wp-search .search-input input.search-title {
  width: 140px !important;
  box-sizing: border-box;
  padding: 0px 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 32px;
  border: 0;
  outline: 0;
  background: #ffffff;
  border-radius: 17px;
}
.wp-search .search-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0;
  background: #fff;
  border-radius: 50%;
}

.wp-search .search-btn input.search-submit {
  width: 40px;
  height: 40px;
  border: 0;
  outline: 0;
  background: url(images/search.png) no-repeat center;
  background-size: 18px 18px;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}
.wp-search {
  position: relative;
}
.search-input {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
}
.search-btn {
  position: relative;
  z-index: 1; 
}
.search-input input {
  width: 150px !important; 
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
}
.search-btn input {
  width: 30px; 
  height: 30px;
  background: url("search-icon.png") no-repeat center center;
  border: none;
  cursor: pointer;
}
.wp-search:hover .search-input {
  width: 150px !important; 
}



/* nav */
.head-nav{
  width: 100%;
  height: 66px;
  box-sizing: border-box;
  z-index: 3;
  position: relative;
}
.nav .wp-menu {
  width: 100%;
  height: 66px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 66px;
  text-align: center;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 66px;
  line-height: 60px;
  position: relative;
  transition: all 0s ease;
  padding: 0 22px;
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: Source Han Sans CN;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.nav .wp-menu .menu-item:hover a.menu-link {
  position: relative;
}
.nav .wp-menu .menu-item:hover a.menu-link:before{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: none;
}
.nav .wp-menu .menu-item > a.menu-link{ 
  color: #ffffff;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 66px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(175, 37, 27, 0.80);
  padding: 10px 0;
  box-shadow: 0px 1px 10px 0px rgba(175,37,27,0.9);
  border-radius: 0px 0px 10px 10px;
}
.nav .sub-menu:before{
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 1px;
  background: #FFFFFF;
  box-shadow: 0px 1px 10px 0px rgba(1,98,188,0.9);
  border-radius: 0px 0px 1px 1px;
  width: 100%;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
  transition: all 0.3s;
}

.nav .sub-menu .sub-item a {
  color: #ffffff;
  height: auto;
  min-height: 40px;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  padding: 4px 25px;
  transition: all 0.3s;
  font-family: "微软雅黑";
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #ffffff;
  display: flex;
  font-weight: bold;
  background: #AF251B;
}
.nav .wp-menu .menu-item:hover .sub-menu {
  display: block;
}
.nav .wp-menu .menu-item:hover .sub-menu .sub-menu{
  display: none;
}
.nav .sub-menu .sub-menu{
  display: none;
  position: absolute;
  left: 100%;
  transform: translateX(0);
  top: 0px;
  width: auto;
  min-width: 50%;
  z-index: 100;
  background: rgba(22, 95, 171, 0.9);
}
/* .nav .wp-menu .menu-item .sub-menu:hover .sub-menu{
  display: block;
} */


/* banner */
.mySwiper1 {
  width: 100%;
  height: auto;
  position: relative;
}
.banner {
  width: 100%;
  height: auto;
  position: relative;
}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* 分页器 */
.mySwiper1 .swiper-pagination {
  position: absolute;
  bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  gap: 20px;
  z-index: 10;
}
.mySwiper1 .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.5s ease;
  cursor: pointer;
  border-radius: 50%;
}
.mySwiper1 .swiper-pagination-bullet-active{
  width: 30px;
  height: 30px;
  background: rgba(250,250,250,0.4);
  position: relative;
  margin-right: 66px !important;
}
.mySwiper1 .swiper-pagination-bullet-active:before{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.mySwiper1 .swiper-pagination-bullet-active:after{
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background: #fff;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  transition: width 0.8s ease;
}
.mySwiper1 .swiper-pagination-bullet-active.animate-line:after{
  width: 66px;
}


.m1{
  position: relative;
  padding-top: 60px;
  background: url(images/bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 75px;
}
.m1 .inner{
  display: flex;
  gap: 55px;
}
.ml1{
  position: relative;
  z-index: 1;
  width: 60%;
}
.title{
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  line-height: 65px;
}
.more{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #615656;
  line-height: 65px;
  position: relative;
  
  display: flex;
  align-items: center;
  gap: 5px;
}
.more .moretxt,
.more .moreimg {
    transition: all 0.3s ease-in-out;
}
.more:hover .moretxt {
    color: #AF251B; 
}
.more:hover .moreimg {
    transform: translateX(5px) rotate(15deg); /* 向右移动5px，顺时针旋转15度 */
}
.moreimg{
  width: 58px;
  height: 23px;
  background: url("images/more.png") no-repeat;
  background-size: cover;
  display: inline-block;
}
.banner1{
  width: 100%;
  margin-top: 35px;
  position: relative;
}
.mySwiper2{
  width: 100%;
  height: auto;
}
.mySwiper2 .swiper-slide{ 
  width: 100%;
}
.mySwiper2 .swiper-slide a{
  display: block;
}
.pic{
  width: 100%;
  height: 473px;
  overflow: hidden;
}
.pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s1{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 25px;
}
.text{
  width: calc(100% - 190px);
  padding: 20px 25px 60px 30px;
  background: url(images/zx_bj.png);
  background-size: cover;
  margin-top: -60px;
  position: relative;
  z-index: 1;
}
.text:before{
  content: '';
  position: absolute;
  bottom: 18px;
  width: 95.590%;
  height: 23px;
  right: 0px;
  background: url(images/zx_bj_b.png);
  background-size: cover;
}

.mySwiper2 .swiper-pagination {
  width: 190px;
  right: 0;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 5px; 
  gap: 18px;
  padding: 0 9px 0 18px;
}
.mySwiper2 .swiper-pagination:before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(-90deg, #D56159 0%, #AF251B 100%);
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.mySwiper2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #F7C4C1;
  border-radius: 50%;
  opacity: 1;
  position: relative;
  transition: all 0.3s ease;
}
.mySwiper2 .swiper-pagination-bullet-active {
  width: 36px;
  height: 36px;
  background: #fef6f6;
  border: 1px solid #AF251B;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.mySwiper2 .swiper-pagination-bullet-active:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(-90deg, #D56159 0%, #AF251B 100%);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mySwiper2 .swiper-slide .pic img {
  transition: transform 0.5s ease;
}

.mySwiper2 .swiper-slide .text .s1{
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.mySwiper2:hover .swiper-slide-active .pic img {
  transform: scale(1.05); 
}

.mySwiper2:hover .swiper-slide-active .text .s1{
  transform: translate( 3px ,-3px);
}

.zxlist{
  margin-top: 50px;
  display: flex;
  gap: 10px;
}
.zxlist li{
  width: calc(100% / 2 - 5px );
  border-right: 1px solid  #F5EAE9;
  padding: 0 20px 0 15px;
  transition: all .3s;
}
.zxlist li:last-child{
  border-right: none;
}
.time{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: #AF251B;
  line-height: 26px;
}
.s2{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  transition: all 0.5s ease;
}
.s3{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #817A7A;
  line-height: 26px;
  margin-top: 5px;
}
.zxlist li:hover .s2{
  color: #AF251B;
}
.zxlist li:hover{
  transform: translate(2px ,-3px );
}

/* 通知公告 */
.mr1{
  width: 35.714%;
}
/* 标签切换 */
.post-tab .tt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-tab .tab {
  display: flex;
  border: none;
  align-items: center;
  gap: 12px;
}
.post-tab .tab .xline{
  display: block;
  width: 3px;
  height: 30px;
  background: rgba(206,177,177,0.5);
}
.title1{
  display: flex;
  flex-direction: column;
  background-color: transparent;
  align-items: flex-start;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  
  transition: all 0.3s ;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 30px;
  color: #C5A8A8;
  line-height: 65px;
}
.post-tab .tab .title1:hover ,
.post-tab .tab .title1.active  {
  font-weight: bold;
  font-size: 36px;
  color: #333333;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.more_btn{
  display: flex;
}
.con{
  margin-top: 35px;
}
.tab-content ul{
  display: flex;
  flex-direction: column;
}
.tab-content ul li{
  width: 100%;
  padding: 22px 20px 22px 18px ;
  border-bottom: 1px solid #D5CDCD;
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s ease;
}
.tab-content ul li a{
  display: flex;
  gap: 15px;
  align-items: center;
}
.s4{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #302E2E;
  line-height: 28px;
}
.time1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.time1 .day{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #302E2E;
}
.time1 .month{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #302E2E;
}
.tab-content ul li:hover{
  background: #AF251B;
  width: calc(100% + 15px);
  padding-left: 32px;
  margin-left: -15px;
}
.tab-content ul li:hover .s4,
.tab-content ul li:hover .time1 .day,
.tab-content ul li:hover .time1 .month{
  color: #fff;
}
.tab-content ul li:hover:before{
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #DDA73A;
  border-radius: 50%;
  left: 10.5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.tab-content ul li:hover:after{
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #FFFFFF;
  opacity: 0.2;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}


.main1{
  height: 350px;
  width: 100%;
  background: url(images/bj3.png);
  background-size: cover;
}
.m2{
  position: relative;
  padding-top: 60px;
  padding-bottom: 75px;
  margin-top: -240px;
}
.m2:before{
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 240px);
  background: url(images/bg2.png) no-repeat;
  background-size: cover;
  left: 0px;
  bottom: 0;
}
.m2 .inner{
  display: flex;
  gap: 60px;
  /* flex-wrap: wrap; */
}
.ml2{
  width: 58.571%;
  
}
.more1{
  color: #fff;
}
.more1:hover .moretxt {
  color: #fff; 
  font-weight: bold;
}
.more1 .moreimg{
  background: url(images/more_h.png) no-repeat;
}
.m2 .title{
  color: #fff;
}
.kylist{
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  position: relative;
  padding-top: 48px;
  padding-right: 30px;
  padding-bottom: 14px;
  gap: 7px;
  background: linear-gradient(180deg, #FFF9F9 0%, #FFFFFF 100%);
  box-shadow: 0px 0px 30px 0px rgba(172,29,18,0.05);
}
.kylist:before{
  content: "";
  position: absolute;
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #FFF9F9 0%, #FFFFFF 100%);
  right: 100%;
  top: 0;
  z-index: 1;
}
.kylist li.kybox1 a{
  display: flex;
  align-items: center;
  gap: 22px;
}
.pic1{
  min-width: 324px;
  height: 182px;
}
.pic1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kytxt1{
  padding-bottom: 25px;
  height: 100%;
  border-bottom:  1px dashed #D5CDCD;
}
.s5{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #302E2E;
  line-height: 28px;
  transition: all 0.3s ease-in-out;
}
.time2{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: #AF251B;
  line-height: 26px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.s6{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #817A7A;
  line-height: 26px;
  margin-top: 8px;
}
.kybox2{
  padding: 20px 0px 28px 0px;
  border-bottom:  1px dashed #D5CDCD;
}
.kybox2 .s5{
  width: calc(100% - 115px);
}
.time3{
  border-radius: 0px 10px 0px 10px;
  border: 1px solid #AF251B;
  padding: 0 10px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: #AF251B;
  line-height: 26px;
  transition: all 0.3s;
}
.kybox3{
  padding: 13px 0px 12px 0px;
}
.kybox3 .s5{
  width: calc(100% - 115px);
}

.kylist li:hover .s5{
  color: #AF251B;
} 
.kylist li.kybox3:hover .s5{
  position: relative;
}
.kylist li.kybox3:hover .s5:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1.5px;
  background: #AF251B;
}
.kylist li:hover .time3{
  background: #AF251B;
  color: #fff;
}

.mr2{
  width: 37.143%;
  position: relative;
  z-index: 1;
}
.xslist{
  margin-top: 35px;
  margin-left: 44px;
  width: calc(100% - 44px);
  background: linear-gradient(180deg, #FFF3F3 0%, #FFFFFF 100%);
  box-shadow: 0px 0px 30px 0px rgba(172,29,18,0.05);
}
.xslist li a{
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 10px 13px 0px 0px;
}
.pic2{
  min-width: 105px;
  height: 135px;
  margin-left: -44px;
}
.pic2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xstxt{
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 7px 30px 7px;
  border-bottom: 1px solid rgba(213,205,205,0.6);
}
.xslist li:last-child .xstxt{ 
  border-bottom: none;
}
.xstxt .s5{
  margin-bottom: 5px;
}
.s7{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #888888;
  line-height: 17px;
}
.s7 img{
  margin-right: 8px;
}
.xslist li:hover .s5{
  color: #af251b;
}

.m3{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
  margin-top: 90px;
}
.m3 li{
  width: calc(100% / 3 - 40px);
  max-width: 400px;
  border-radius: 0px 0px 5px 5px ;
  background: #AB1404;
  position: relative;
}
.m3 li:nth-child(2){ 
  background: #C49E4F;
}
.m3 li:nth-child(3){ 
  background: #A32921;
}
.m3 li a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 7px 24px 7px;
  flex-direction: column;
  gap: 20px;
}
.s8{
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 30px;
}
.m3 li:before{
  content: "";
  position: absolute;
  width: calc(100% + 24px);
  height: 9px;
  background: #AB1404;
  border-radius: 5px;
  left: -12px;
  bottom: 100%;
}
.m3 li:after{
  content: "";
  position: absolute;
  width: 46.469%;
  height: 10px;
  background: #AB1404;
  border-radius: 5px;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 6px);
}
.m3 li:nth-child(2):before,
.m3 li:nth-child(2):after{
  background: #C49E4F;
}
.m3 li:nth-child(3):before,
.m3 li:nth-child(3):after{
  background: #A32921;
}
.m3 li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.m3 li a img {
  transition: transform 0.5s ease;
}
.m3 li a .s8 {
  transition: all 0.3s ease;
}
.m3 li:hover {
  transform: translateY(-10px); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
  z-index: 2; 
}
.m3 li:hover a img {
  transform: scale(1.1) rotate(5deg); 
}
.m3 li:hover a .s8 {
  letter-spacing: 2px; 
}



footer{
  background: linear-gradient(90deg, #870C03 0%, #972017 100%);
  padding: 40px 0;
}
footer .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer{
  text-align: right;

  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 32px;
}

/* 
 *  内容页定制
 */
 .infotop{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 2px solid #af251b;
 }
 .info_title {
  color: #af251b;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Mircrosoft YaHei";
  letter-spacing: 0.4px;
  padding-left: 15px;
  position: relative;
}
.info_title:before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: 24px;
  background: #af251b;
}

.infotop .col_path { display: inline-block;  white-space: nowrap; line-height: 28px; color: #333333; font-size:16px; padding-left: 25px;position: relative;} /**当前位置**/
.infotop .col_path:before { content: ''; position: absolute;  left: 3px; width: 19px; height: 19px; background: url(images/home.png) no-repeat; background-size: 19px 19px; top: 50%; margin-top: -8px; }
.infotop .col_path a { color: #333333; }



/***********************************************************
 * 列表页
 */

 
 /*栏目图片*/
 .l-banner {position: relative;margin-top: 0px; height: 350px; background:url(images/banner1.png);background-position: center bottom;background-repeat: no-repeat; background-size: cover;text-align: center;overflow: hidden;position: relative;}
 .l-banner img {display: none;vertical-align: top;height: 100%; object-position: center;}
 /**主体列表页开始**/

#l-container { }
#l-container .inner {padding: 20px 0px; padding-bottom: 40px;}
#d-container {  background: none; box-sizing: border-box; }
#d-container .inner { padding: 25px 40px 40px;box-sizing: border-box; }
#d-container .inner {
  background:#fff;
  box-shadow: 0 0 20px rgba(255, 68, 152, 0.3);
  margin-top: 0px;
  position: relative;
  z-index: 2;
  min-height: 400px;
}
/*主栏目名称*/
.col_menu { width: 280px; float: left; margin-right: -280px; position: relative; margin-top:-55px; box-sizing: border-box; }
.col_menu .l-qh { margin-bottom: 10px; }
.col_menu .col_menu_head { background: url(images/col_bg.png) no-repeat;background-size: cover; position: relative;} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name { height:120px; font-size: 24px; font-weight:bold; color: #fff; letter-spacing: 2.2px;font-family: "Mircrosoft YaHei";} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text { display: block; line-height: 45px; width:100%; text-align:center; position: relative;font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 38px;
  color: #FFFFFF;
  line-height: 45px;
  letter-spacing: 3px;
} /**栏目名称图标**/


/*栏目列表*/
.col_list { min-height:30px; }
.col_list .wp_listcolumn { border-top: 0px solid #2867a0; border-bottom: 0px solid #fff; }
.col_list .wp_listcolumn .wp_column a { text-decoration: none; color: #333; display: block; font-size: 15px; font-weight: normal; background: none; border-top: 0px solid #fff; border-bottom: 0px solid #f6eaea; border-left: 0px solid #af251b;}
.col_list .wp_listcolumn .wp_column a .column-name { padding: 5px 0px 5px 15px; line-height: 32px; }
.col_list .wp_listcolumn .wp_column a:hover, .col_list .wp_listcolumn .wp_column a.selected { color: #333333;  position: relative; text-decoration: none;}
/* .col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #333333; } */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a { color: #454545; background: none; border-top: 1px solid #fff; border-bottom: 1px solid #bbb; }
.col_list .wp_listcolumn .wp_column.parent > a .column-name { font-weight: bold; color: #af251b; }
.col_list .wp_listcolumn .wp_column > a{border-top: 1px solid #e0e0e0; padding-left: 40px;text-align: left;}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a { 
  color: #333; 
  /* border-top: 1px solid #eee;  */
  margin-top: -1px; 
}
.col_list .wp_listcolumn .wp_column .sub_list .sub-item > a{
  background: #e9e9e9;
}
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 28px; padding: 5px 10px 5px 44px; cursor: pointer; }
.col_list .wp_listcolumn .sub_list a:hover, .col_list .wp_listcolumn .wp_column a.selected { font-weight: bold; font-weight: bold; color: #af251b; }
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 5px 10px 5px 60px; cursor: pointer; }
.col_list .wp_listcolumn .sub_list .sub_list a :hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected { font-weight: bold; color: #af251b; }

.col_list .wp_listcolumn { border: 0px; }
.col_list .wp_listcolumn .wp_column a { font-family: "SourceHanSansCN"; background-image: none; display: block; box-sizing: border-box; color: #333; font-size: 18px; font-weight: 600; text-align: center; position: relative; background: #f5f5f5; }
.col_list .wp_listcolumn .wp_column a .column-name { padding: 12px 15px; line-height: 68px; text-align:center; transition: all 0.3s ease-in-out;  }
.col_list .wp_listcolumn .wp_column a:hover  .column-name,
.col_list .wp_listcolumn .wp_column a.selected  .column-name{ 
  color: #af251b; 
}


.col_list .wp_listcolumn .wp_column > a{border-top: 1px solid #e0e0e0; padding-left: 40px;padding-right: 30px;text-align: left;position: relative;}
.col_list .wp_listcolumn .wp_column > a.selected:before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #af251b;
}
.col_list .wp_listcolumn .wp_column > a.selected:after{
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 8px;
  background: url(images/arrow.png) no-repeat;
  background-size: 100% 100%;
}

.col_list .wp_listcolumn .wp_column a.col_item_link i { position: absolute; content: ""; right: 48px; top: 50%; margin-top: -7px; width: 8px; height: 14px; display: none; }
.col_list .wp_listcolumn .wp_column a.col_item_link:hover i, .col_list .wp_listcolumn .wp_column a.col_item_link.selected i, .col_list .wp_listcolumn .wp_column a.col_item_link.parent i { display: block; }
.col_list .wp_listcolumn .sub_list .wp_column a { color: #454545; background: none; border-bottom: 1px solid #bbb; }
/*二级子栏目**/
.col_list .wp_listcolumn .sub_list a { font-weight: normal; font-size: 18px; color: #333; font-family: "Mircrosoft YaHei";}
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 30px; padding: 10px 0; cursor: pointer;  
  /* padding-left: 20px;  */
  position: relative;}
/* .col_list .wp_listcolumn .sub_list a .column-name:before {  position: absolute; content: ""; left: 2px; top: 50%; margin-top: -2px; width: 6px; height: 6px; background: #af251b; } */
.col_list .wp_listcolumn .sub_list a:hover { background: #f6f6f6; }
.col_list .wp_listcolumn .sub_list a.selected { background: #f6f6f6; font-weight: 600; }
.col_list .wp_listcolumn .sub_list a:hover span.column-name, .col_list .wp_listcolumn .sub_list a.selected span.column-name { color: #af251b; }
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { background: #efefef;  }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 5px 10px 5px 20px; cursor: pointer; font-size: 16px; position: relative; }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name:before { position: absolute; content: ""; left: 2px; top: 50%; margin-top: -2px; width: 6px; height: 6px; background: #bbb; }
.col_list .wp_listcolumn .sub_list .sub_list a:hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected { font-weight: 400; color: #237b36; }
.col_list .wp_listcolumn .sub_list .sub_list a:hover .column-name:before, .col_list .wp_listcolumn .sub_list .sub_list a.selected .column-name:before { background: #af251b; }

/**栏目新闻**/
.col_news { width: 100%; min-height: 400px; float: right; } /**栏目新闻**/
.col_news .col_news_box { margin-left: 330px;min-height: 350px; 
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); */
  padding:15px;}
.colum-box {}

.col_news_head { border-bottom: 1px solid #e0e0e0;padding-bottom: 10px; }
.col_metas .col_title { display: inline-block; float: left; height: 38px; line-height: 38px;  } /**当前栏目**/

.col_metas .col_title h2 { display: inline-block; font-size: 24px; font-weight: 400; color: #333333; }
.col_metas .col_path { display: inline-block; float: right; white-space: nowrap; height: 38px; line-height: 38px; color: #333333; font-size:16px; padding-left: 25px;position: relative;} /**当前位置**/
.col_metas .col_path:before { content: ''; position: absolute;  left: 3px; width: 19px; height: 19px; background: url(images/home.png) no-repeat; background-size: 19px 19px; top: 50%; margin-top: -8px; }
.col_metas .col_path a { color: #333333; }
.col_news_con { padding: 0px 0px 10px 0px; margin: 0 0px; }
.col_news_list { margin-top:7px;}
.col_news_list .wp_article_list .list_item {} /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index { }  /**栏目新闻图标序号**/
.col_news_list .wp_entry,.col_news_list .wp_entry p { line-height:1.75; font-size:14px; color:#333;}
.col_news_list .wp_entry p { margin-bottom:10px;}
.col_news_list .wp_entry table{ margin:0 auto; margin-bottom:4px; min-width: 414px;}
.col_news_list .wp_entry img { margin:0 auto; max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); margin:0 auto;} /**列表页文章图片大小限制**/
.wp_paging { font-size: 14px; margin-top: 30px;}
#wp_pager .pages {
  display: flex;
  min-height: auto;
  margin: 40px 0 20px;
  justify-content: center;
  align-items: center;
}
#wp_pager .pages li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  padding: 0;
  margin: 0 4px;
  text-align: center;
  background-color: transparent;
  color: #323333;
  border-radius: 50%;
  font-family: "Mircrosoft YaHei";
}
#wp_pager .pages li a.pgCurrent {
  font-weight: bold;
  background-color: #af251b;
  color: #fff;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0px 8px;
}
#wp_pager .pages li:hover a.pgNext {
  color: #af251b;
}


/**文章页**/
.infobox {width:auto; margin:0 auto; }
.article {padding-top:10px;}
.article h1.arti_title {line-height: 40px;font-family: "Microsoft YaHei";font-size:24px;text-align:center;color: #af251b; margin-bottom: 10px; margin-top: 10px;} /**文章标题**/
.article h2.arti_title {line-height: 40px;font-family: "Microsoft YaHei";font-size: 17px;text-align:center;color: #1B1B1B;} /**文章副标题**/
.article .arti_metas { padding:10px; text-align:center;}
.article .arti_metas span { margin:0 5px; font-size:14px; color:#999999;}/**文章其他属性**/
.article .entry { margin:0 auto; overflow:hidden;margin-top:10px;} /**文章内容**/
.article .entry .read,.article .entry .read p { line-height:1.75; font-size:18px; 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; min-width: 414px;}

.col_news_list .news_list li.news {line-height: 50px;padding-left:0px;font-size: 18px; /*border-bottom:1px solid #e0e0e0;*/ position:relative;padding-bottom: 20px;} /**标题图标**/
.col_news_list .news_list li.news span.news_title { float:left;width:calc(100% - 110px);white-space: nowrap;overflow: hidden;text-overflow: ellipsis;  transition: all .5s ease-in-out;}/*标题*/
.col_news_list .news_list li.news span.news_title img {vertical-align: middle;}
.col_news_list .news_list li.news span.news_meta { position:absolute;right:0;top:0;line-height: 50px; text-align:right; width:105px;color: #777;font-size: 14px;}/*属性*/
.col_news_list .news_list li.news:hover span.news_title{ color: #af251b; transform: translateX(15px) ;  }

.col_news_list .news_list li.news:hover span.news_meta{
  color: #af251b;
}
.col_news_list .news_list li.news_news{
  padding-left: 5px;
  position: relative;
  padding-top: 10px;
}
.news_content{
  border-bottom: 1px dashed #e5e5e5;
  padding-bottom: 5px;
}
.news_time{
  font-size: 14px;
  font-family: "Roboto";
  color: #696969;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-style: italic;
  line-height: 30px;
  position: relative;
}
/* .news_time:before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background: #af251b;
  transition: all 1.3s ease;
} */
.xline5{
  display: block;
  width: calc(100% - 90px);
  height: 1px;
  background: #E5E5E5;
}
.s16{
  font-size: 18px;
  color: #333333;
  font-weight: 500;
  /* line-height: 36px; */
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  font-family: "Mircrosoft YaHei";
  width: calc(100% - 90px);
}
.s17{
  color: #666666;
  font-size: 16px;
  line-height: 24px;
  margin-top: 5px;
  font-family: "Mircrosoft YaHei";
}
.col_news_list .news_list li.news > a:hover .s16{
  color: #af251b;
  transform: translateX(5px);
}
.col_news_list .news_list li.news > a:hover .news_time:before{
  width: 80%;
}

.tu_list{
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-top: 25px;
}
.tu_list li.news_tu{
  width: calc(100% / 3 - 20px);
}
.tu_list li.news_tu a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all .3s ease;
  max-width: 253px;
  width: 100%;
  position: relative;
}

.tu_list li.news_tu .news_tu_img {
  max-width: 221px;
  width: calc(100% - 32px);
  height: 310px;
  object-fit: cover;
  background: #fff;
}
.tu_list li.news_tu .news_tu_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_tu_text{
  padding: 0 37px 0 16px;
  transition: all .3s ease;
  width: calc(100% - 24px);
  margin-left: 24px;
  position: relative;
  background: rgba(197, 19, 6, 0.07);
  box-sizing: border-box;
}
.news_tu_text:before{
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: url(images/arrow_h.png) no-repeat;
  background-size: 100% 100%;
  width: 8px;
  height: 15px;
}
.news_tu_text:after {
  content: '';
  position: absolute;
  right: 0px;
  bottom: 100%;
  width: 24px;
  height: 285px;
  background: rgba(197, 19, 6, 0.07);
  z-index: 1;
}
.news_tu_text p{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  text-align: center;
}
.news_tu_text1{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 15px;
  color: #333;
  line-height: 30px;
  text-align: center;
}

.tu_list1{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}
.tu_list1 li.news_tu1 {
    width: calc(100% / 3 - 20px);
    max-width: 345px;
}
.tu_list1 li.news_tu1 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 4px 20px 4px;
    background: #F9F9FB;
    border: 1px solid #E2E2E6;
    box-sizing: border-box;
    transition: all .3s ease;
}
.tu_list1 li.news_tu1 img {
    max-width: 345px;
    width: 100%;
    height: 215px;
    object-fit: cover;
    transition: all .3s ease;
}
.news_tu_text2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 28px;
    margin-top: 10px;
    text-align: center;
    padding: 0 10px;
    transition: all .3s ease;
}
.tu_list1 li.news_tu1:hover .news_tu_text2{
    color: #A32921;
}
.tu_list1 li.news_tu1:hover{
  background-color: #F5F5F5;
}