/* CSS Document public*/

* {
  font-family: 微软雅黑, Helvetica, sans-serif, Arial;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
}
body {
  padding: 0;
  margin: 0;
  font-family: Arial, "Microsoft Yahei", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  line-height: 1;
  font-size: 14px;
  overflow-x: hidden;
  background: #fff;
  max-width: 1920px;
  margin: 0 auto;
}

html::-webkit-scrollbar {
  width: 4px;
  height: 8px;
  background-color: #f5f5f5;
}
html::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #e2e2e2;
}
html::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #333;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table td {
  line-height: 1.25;
  padding: 5px;
  padding-left: 15px; /* width: auto; */
}
.clearfix:after {
  /*伪元素是行内元素 正常浏览器清除浮动方法*/
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}
img {
  border: 0px;
  vertical-align: middle;
}
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
}
h3,
h4,
h5 {
  font-weight: normal;
}
h4 a:hover,
h5 a:hover {
  -moz-transition: all 0.36s ease-in-out;
  -webkit-transition: all 0.36s ease-in-out;
  -o-transition: all 0.36s ease-in-out;
  -ms-transition: all 0.36s ease-in-out;
  transition: all 0.36s ease-in-out;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  background: #d8d8d8;
  padding: 0;
  margin-bottom: 3.25rem;
  margin-top: 2.5rem;
}
abbr,
article,
aside,
audio,
canvas,
datalist,
details,
dialog,
eventsource,
figure,
footer,
header,
hgroup,
mark,
menu,
meter,
nav,
output,
progress,
section,
time,
video {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  clear: both;
  height: 0px;
  font-size: 1px;
  line-height: 0px;
}
.container01,
.container02,
.container03,
.container04,
.container05,
.container06,
.container07,
.container08,
.n-container01,
.n-container03,
.n-container04 {
  margin: 0 auto;
}
.slow img:hover {
  transform: scale(1.05);
} /*图片放大*/
.slow img {
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
} /*缓慢效果*/
h5 a,
.more a {
  -moz-transition: all 0.36s ease-in-out;
  -webkit-transition: all 0.36s ease-in-out;
  -o-transition: all 0.36s ease-in-out;
  -ms-transition: all 0.36s ease-in-out;
  transition: all 0.36s ease-in-out;
} /*缓慢效果*/
.slow01 {
  -moz-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
} /*缓慢效果*/
.slow02 {
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.shadow {
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=90, Color='#999999')"; /* For IE 8 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=90, Color='#999999'); /* For IE 5.5 - 7 */
  -moz-box-shadow: 1px 1px 10px #999999; /* for firefox */
  -webkit-box-shadow: 1px 1px 10px #999999; /* for safari or chrome */
  box-shadow: 1px 1px 10px #999999; /* for opera or ie9 */
}
.radius {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.opacity {
  filter: alpha(opacity=100);
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
} /*透明代码*/
.overfloat-dot {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
} /*文本超出 小圆点显示*/
.overfloat-dot-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.overfloat-dot-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.overfloat-dot-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.overfloat-dot-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.overfloat-dot-6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.overfloat-dot-7 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: alpha(opacity=60);
  opacity: 0.6;
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
}
/*transform:rotateY(180deg); -webkit-transform:rotateY(180deg);  -moz-transform:rotateY(180deg); transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%);*/ /*180度旋转*/
/*oncontextmenu="return false" ondragstart="return false" onselectstart="return false"*/
/*filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#7F000000', endColorstr='#7F000000');background:rgba(0,0,0,0.5);*/ /*透明背景*/

/*==========================================公共 开始=============================================*/
.ar_wap {
  display: none;
}
.a_body {
  position: relative;
  z-index: 0;
}
.section {
  overflow: hidden;
}

.w152 {
  margin: 0 auto;
  width: 15rem;
}
.w14 {
  margin: 0 auto;
  width: 14rem;
}

.header_box_li {
  position: relative;
  z-index: 1;
  z-index: 999;
}

.header_box_li.sticky {
  height: 3.75rem;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
/* -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;} */
@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}

.header_box_li.sticky .header_top {
  display: none;
}
#nav .search_btn {
  margin-top: 5px;
}
.header_box_li.sticky #nav .search_btn {
  display: block;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: url(../images/sticky_ss.png) no-repeat center center;
  margin: 6px 0rem 0 2rem;
}
.header_box_li.sticky #nav .search_btn img {
  display: none;
}

.header_box_li.sticky #header #logo .box_table {
}
.header_box_li.sticky #header {
}
.header_box_li.sticky #header #logo {
}
.header_box_li.sticky .w15200 {
  width: 1340px;
}
.header_box_li.sticky #nav ul li .sub {
  box-shadow: 0 8px 8px rgba(0, 55, 59, 0.25);
}
.header_box_li.sticky #nav ul li {
  height: 2.75rem;
  line-height: 2.5rem;
}

#header {
}
#header > .w152 {
  position: relative;
  height: 0.7rem;
}
#header > .w152 .right {
  display: flex;
  align-items: center;
}

.pc_top_lj {
  margin: 0;
  transition: 0.4s;
  display: flex;
}
.pc_top_lj a {
  display: block;
  width: auto;
  margin-left: 0.15rem;
  transition: 0.4s;
  position: relative;
}
.pc_top_lj a + a::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.05rem;
  background: #fff;
  position: absolute;
  left: -1px;
  top: calc(50% - 0.025rem);
}
.pc_top_lj a + a div {
  padding-left: 0.1rem;
}
.pc_top_lj div {
  display: flex;
  align-items: center;
}
.pc_top_lj div img {
  margin-right: 0.1rem;
}
.pc_top_lj div p {
  font-size: 0.14rem;
  color: #fff;
}

.pc_top_lj a:hover p {
  text-decoration: underline;
}

.toubu_div.on .pc_top_lj {
}

.toubu_div.on #logo {
}
.toubu_div.on #header #logo .box_table {
}

.toubu_div.on {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
}

.pc_top_ss {
  width: 2rem;
  height: 0.28rem;
  background: #fff;
  overflow: hidden;
  margin-top: 0.23rem;
  margin-bottom: 0.35rem;
}

.pc_top_ss .form {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.pc_top_ss .txt {
  border: 0;
  width: calc(100% - 0.3rem);
  height: 100%;
  font-size: 0.16rem;
  color: #333;
  padding: 0 0.1rem 0 0.1rem;
}
.pc_top_ss .btn {
  width: 0.3rem;
  height: 100%;
  background-size: 100%;
}

.header_box_li.xg {
  height: 4.625rem;
}
.header_box_li.xg #header {
  height: 4.625rem;
}
.header_box_li.xg #header .header_top {
  height: 1.3rem;
}
.header_box_li.xg #header .header_top .tianqi {
  display: none;
}
.header_box_li.xg #header .header_top .list_box0 {
  display: none;
}
.header_box_li.xg #logo img {
  width: 70%;
}

.header_box_li.xg #logo .xx {
  opacity: 0 !important;
}
.header_box_li.xg #logo .box_table {
  height: 100% !important;
}

.header_box {
  position: relative;
  z-index: 10000;
  max-width: 1920px;
  margin: 0 auto;
}
#header {
  position: relative;
  z-index: 999;
  width: 100%;
  background-size: cover;
  transition: 0.4s;
  max-width: 100%;
  margin: 0 auto;
  background-size: 100% !important;
  transition: 0.4s;
}
.header_box_li:before {
  content: "";
  position: absolute;
  height: 10.125rem;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
  opacity: 1;
  visibility: visible;
  background-size: auto 100%;
  pointer-events: none;
}
#header.xg:before {
  opacity: 0;
  visibility: hidden;
}

.head_bottom {
  padding: 0;
  width: 16rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_top {
  position: relative;
  height: 2.5rem;
  padding: 0;
  text-align: right;
  z-index: 10000;
  transition: 0.4s;
  padding: 0 0;
}
.header_top .tianqi {
  display: inline-block;
  height: 4rem;
}
.header_top .search_btn {
  display: inline-block;
  float: none;
  font-size: 14px;
  color: #fff;
}

.header_top .search {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 20;
}
.header_top .search .input {
  position: absolute;
  z-index: 1;
  left: auto;
  right: -0.5rem;
  top: -12px;
  bottom: auto;
  height: 40px;
  width: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.header_top .search .input input {
  width: 100%;
  height: 100%;
  font-size: 13px;
  padding: 0 2rem 0 1rem;
  color: #333;
}
.header_top .search .btn {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.header_top .search .btn input {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.header_top .search .btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.header_top .search:hover .btn svg {
  fill: #6510ad;
}

.header_top .search:hover .input {
  width: 16.25rem;
  opacity: 1;
  visibility: visible;
}

.header_top .zc_lj {
}
.header_top .zc_lj a {
  font-size: 14px;
  display: inline-block;
  transition: 0.6s;
  margin-left: 1rem;
  position: relative;
  line-height: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.header_top .zc_lj a:hover {
  color: #ffba00;
}

.list_box0 {
  display: inline-block;
  vertical-align: top;
}
.list_box0 .li {
  font-size: 14px;
  display: inline-block;
  transition: 0.6s;
  margin-left: 1rem;
  position: relative;
  line-height: 2.5rem;
}
.list_box0 .li > a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.5s;
}
.list_box0 .li > a:hover {
  color: #ffba00;
}
.list_box0 .li a > img {
  margin: -1px 0.625rem 0 0;
}
.list_box0 .li a .ewm_box {
  display: inline-block;
  border: #d3d3d3 1px solid;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1);
  top: 3.5rem;
  opacity: 1;
  visibility: visible;
  transform-origin: top;
  display: none;
}
.list_box0 .li a .ewm_box:before {
  content: "";
  position: absolute;
  border-left: transparent 6px solid;
  border-right: transparent 6px solid;
  border-bottom: #fff 6px solid;
  top: -6px;
  left: 50%;
  margin-left: -6px;
}

#m_header .list_box0 {
  float: right;
}
#m_header .list_box0 .li {
  line-height: 60px;
  display: none;
}
#m_header .list_box0 .li a .ewm_box {
  top: 60px;
}
#m_header .list_box0 .li a > img {
  height: 16px;
}

.list_box_01 {
  font-size: 0;
  white-space: nowrap;
  padding: 0.625rem;
}
.list_box_01 li {
  display: block !important;
  margin: 0 15px !important;
  text-align: center;
}
.list_box_01 li h3 img {
  border: #ededed 1px solid;
  width: 85px;
  height: 85px;
}
.list_box_01 li h5 {
  font-size: 0.75rem;
  color: #666666;
  line-height: 20px;
  margin: 0;
}

.list_box0 .li + .li + .li:after {
  display: none;
}
.list_box0 .li:first-child:after {
  display: none;
}

.list_box0 .li input.txt {
  background: none;
  border-bottom: 1px solid #fff;
  width: 7.8125rem;
  padding: 0px 5px 5px;
  outline: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  color: #fff;
  float: left;
}

.list_box0 .li input.img {
  width: 20px;
  height: 18px;
  background: url() no-repeat center center;
  float: left;
}

.header_box .w1200 {
  height: 100%;
  position: relative;
  max-width: 1650px;
}
/*.line_bot{ display:block; width:100%; height:1px; position:absolute; left:0; bottom:0; background:rgba(255,255,255,.2);}*/
#header {
}
#header #logo {
  margin-top: 0;
  display: none;
}
#header #logo .box_table {
  display: table;
  transition: 0.4s;
  height: 100%;
}
#header #logo .box_table .box_table_cell {
  display: table-cell;
  vertical-align: middle;
}

#header #logo .xx p {
  line-height: 15px !important;
}
#header #logo .xx {
  color: #fff;
  transition: 0.4s;
  opacity: 1;
  font-family: "楷体";
  font-size: 24px;
  text-align: center;
}
.head_bottom > .right {
  width: auto;
  display: flex;
  align-items: flex-end;
  height: 100%;
  flex-direction: column;
}
#logo {
  float: left;
  position: relative;
}
#logo img {
  transition: 0.4s;
  max-width: 100%;
}
#logo img.img2 {
  display: none;
}

.top_nav {
  background: #1a57b7;
  position: relative;
  z-index: 3;
}

#nav {
  padding-top: 0px;
  width: 100%;
  display: flex;
  align-items: center;
}
#nav ul {
  width: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

#nav ul li {
  float: left;
  position: relative;
  z-index: 0;
  margin: 0 0.25rem;
}
#nav ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 41px;
  bottom: 0;
  transition: 0.6s;
}
#nav ul li.on:before,
#nav ul li:hover:before {
  width: 140%;
  left: -20%;
}
#nav ul li a {
  display: block;
  transition: 0.4s;
  color: #b7b7b7;
}
#nav ul li h3 {
  font-size: 0.2rem;
  line-height: 0.24rem;
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 0.18rem 0rem;
}
#nav ul li a i {
  margin: -3px 0 0 0.1rem;
  display: inline-block;
  width: 10px;
  height: 5px;
  background: url() center no-repeat;
  transition: 0.5s;
}
#nav ul li:hover h3 {
  font-weight: bold;
}
#nav ul li.on a i,
#nav ul li:hover a i {
  background: url() center no-repeat;
}
#nav ul li a i {
  display: inline-block;
  width: 9px;
  height: 6px;
  background-size: contain;
  vertical-align: middle;
  margin-left: 8px;
}
#nav ul li .sub {
  position: absolute;
  top: 100%;
  min-width: 1.2rem;
  left: 50%;
  z-index: 10000;
  transform: translateX(-50%) scaleY(0);
  visibility: hidden;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  transition: 0.5s;
  transform-origin: top;
  padding: 0.1rem 0;
  background: rgba(255, 255, 255, 1);
}
#nav ul li .sub .box {
  text-align: center;
}

#nav ul li .sub a {
  padding: 0.15rem 0.15rem;
  line-height: 0.2rem;
  transition: 0.6s;
  font-size: 0.16rem;
  color: #555555;
  white-space: nowrap;
  display: block;
  text-align: center;
  position: relative;
}

#nav ul li .sub a:hover {
  background: #b20e17;
  color: #fff;
}
#nav ul li:hover .sub {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scaleY(1);
}

.head_lj {
  background: #b20e17;
  height: 0.26rem;
}

.h_lj_ul {
  display: flex;
}
.h_lj_ul li {
  width: 20%;
}
.h_lj_ul li:first-child {
}
.h_lj_ul li:first-child .bt {
  font-weight: bold;
}
.h_lj_ul li:first-child .bt::after {
  display: none;
}
.h_lj_ul li a {
}
.h_lj_ul li .bt {
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: #333;
  position: relative;
  display: table;
  margin-bottom: 0.2rem;
  transition: 0.4s;
}
.h_lj_ul li .bt::after {
  content: ">";
  display: block;
  font-family: 宋体;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
}
.h_lj_ul li .zy {
  font-size: 0.16rem;
  color: #666;
}
.h_lj_ul li + li .bt {
  padding-right: 0.15rem;
}

.h_lj_ul li:hover .bt {
  color: #b20e17;
}

@media (max-width: 1024px) {
  #m_nav .sj_lj_box .sy_top_lj {
    justify-content: space-between;
  }
  #m_nav .sj_lj_box .sy_top_lj li {
    min-width: 40%;
    margin-left: 0;
    padding: 0 0.1rem;
    width: auto;
  }

  .head_lj_box {
    width: 100%;
    padding: 0.2rem 0;
  }
  .head_lj_box {
  }
  .h_lj_ul {
    flex-wrap: wrap;
  }
  #m_nav .h_lj_ul li:first-child {
    width: 100%;
  }
  #m_nav .h_lj_ul li {
    margin-bottom: 0.1rem;
    width: 50%;
  }
  .h_lj_ul li .bt {
    margin-bottom: 0.1rem;
  }
}

#nav > ul > li h3:before {
  content: "";
  display: block;
  position: absolute;
  width: 21px;
  height: 12px;
  left: 50%;
  margin-left: -10px;
  bottom: 10px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
#nav > ul > li:hover h3:after,
#nav ul li.on h3:after {
  transform: scale(1);
}
#nav > ul > li:hover h3:before,
#nav > ul > li.on h3:before {
  opacity: 1;
  visibility: visible;
  display: none;
}

.search_btn {
  cursor: pointer;
  text-align: center;
  float: left;
  transition: 0.6s;
  margin: 0 0 0 15px;
  position: relative;
}
.search_btn img {
  margin: 0;
}
#header .dw2 {
  float: left;
  height: 90px;
  width: 53px;
  cursor: pointer;
  position: relative;
  margin-right: 1.5rem;
  transition: 0.6s;
  margin-left: 1rem;
}
#header .dw2 .j_tab {
}
#header .dw2:after {
  content: "";
  width: 1px;
  height: 16px;
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  right: -1.5rem;
  top: 50%;
  margin-top: -8px;
}
#header .dw2.yuyan:before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
#header .dw2 .dh {
  height: 23px;
  line-height: 23px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  transition: 0.6s;
}
#header .dw2 .dh span {
  padding-right: 14px;
  width: 53px;
  height: 23px;
  display: inline-block;
  font-style: italic;
}
#header .dw2 .dd {
  padding-bottom: 10px;
  padding-top: 10px;
  position: absolute;
  top: 100%;
  width: 100%;
  text-align: center;
  background: #acce22;
  left: 0;
  border: 1px solid #acce22;
  opacity: 0;
  visibility: hidden;
  transition: 400ms;
  transform: translateY(15px);
}
#header .dw2 .dd:before {
  content: "";
  display: inline-block;
  border: 8px solid transparent;
  border-bottom: 8px solid #acce22;
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -8px;
}
#header .dw2 .dd a {
  display: block;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 13px;
  padding: 0 10px;
}
#header .dw2 .dd a:hover {
  font-weight: bold;
}
#header .dw2.on .dd {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.search_btn {
  margin-left: 0.2rem;
  cursor: pointer;
}
.search_btn svg {
  display: inline-block;
  fill: #fff;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.search-dialog-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  /* overflow: hidden; */
}
.search-dialog-box:before {
  content: "";
  position: absolute;
  top: 0;
  height: 0;
  background: none;
  transition: 0.6s;
  left: 0;
  right: 0;
  z-index: 1;
}

.search-dialog-box.on:before {
  height: 100%;
}
.search-dialog-box .bubbles-bg {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.search-dialog-box .search-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.7);
  background-size: cover;
  background-repeat: no-repeat;
  /* z-index: 1; */
  transform-origin: center center;
  transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.search-dialog-box .wrap-inner {
  transform: translateY(100%);
  transition: 0.6s;
}
.header-right .bubbles-bg {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 0.8s;
}
.search-dialog-box .bubbles-bg .bubble {
  position: absolute;
}
.search-dialog-box .bubbles-bg .bubble .circle {
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.search-dialog-box .bubbles-bg .bubble1 {
  width: 6%;
  padding-top: 6%;
  left: 26.875%;
  top: -6.67%;
}
.search-dialog-box .bubbles-bg .bubble1 .circle {
  border: 1px solid #fff;
}
.search-dialog-box .bubbles-bg .bubble2 {
  width: 12px;
  padding-top: 12px;
  left: 13.54%;
  top: 18%;
}
.search-dialog-box .bubbles-bg .bubble2 .circle {
  background-color: #ff495f;
}
.search-dialog-box .bubbles-bg .bubble3 {
  width: 36px;
  padding-top: 36px;
  left: 8.854%;
  top: 30.55%;
}
.search-dialog-box .bubbles-bg .bubble3 .circle {
  background-color: #fff;
}
.search-dialog-box .bubbles-bg .bubble4 {
  width: 56.875%;
  padding-top: 56.875%;
  left: -28.6458%;
  top: 51.85%;
}
.search-dialog-box .bubbles-bg .bubble4 .circle {
  background: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.05) 100%
  );
  background: -ms-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.05) 100%
  );
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.05) 100%
  );
}
.search-dialog-box .bubbles-bg .bubble5 {
  width: 54px;
  padding-top: 54px;
  left: 26.3%;
  top: 70.83%;
}
.search-dialog-box .bubbles-bg .bubble5 .circle {
  background-color: #fff;
  opacity: 0.1;
}
.search-dialog-box .bubbles-bg .bubble6 {
  width: 56.875%;
  padding-top: 56.875%;
  left: 73.4375%;
  top: -52.77%;
}
.search-dialog-box .bubbles-bg .bubble6 .circle {
  background: -webkit-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1) 100%
  );
  background: -ms-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1) 100%
  );
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1) 100%
  );
}
.search-dialog-box .bubbles-bg .bubble7 {
  width: 2rem;
  padding-top: 2rem;
  left: 60.9375%;
  top: 18.5%;
}
.search-dialog-box .bubbles-bg .bubble7 .circle {
  background-color: #ff495f;
}
.search-dialog-box .bubbles-bg .bubble8 {
  width: 1.35rem;
  padding-top: 1.35rem;
  left: 95.83%;
  top: 70.83%;
}
.search-dialog-box .bubbles-bg .bubble8 .circle {
  border: 1px solid #fff;
}
.search-dialog-box .bubbles-bg .bubble9 {
  width: 16px;
  padding-top: 16px;
  left: 76.5625%;
  top: 96.296%;
}
.search-dialog-box .bubbles-bg .bubble9 .circle {
  background-color: #fff;
}
.search-dialog-box .bubbles-bg .bubble10 {
  width: 56.875%;
  padding-top: 56.875%;
  left: 71.354%;
  top: 87%;
}
.search-dialog-box .bubbles-bg .bubble10 .circle {
  background: -webkit-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.3) 100%
  );
  background: -ms-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.3) 100%
  );
}
.search-dialog-box .bubbles-bg .bubble {
  animation: spin 8s infinite linear;
  transform-origin: 50% 45%;
}
.search-dialog-box .bubbles-bg .bubble:nth-child(2n) {
  animation: spin2 8s infinite linear;
}
.search-dialog-box .bubbles-bg .bubble .circle {
  animation: spin-reverse 8s infinite linear;
}
.search-dialog-box .bubbles-bg .bubble:nth-child(2n) .circle {
  animation: spin-reverse2 8s infinite linear;
}
.search-dialog-box .bubbles-bg .sm-bubble {
  transform-origin: 30% 30px;
}
.search-dialog {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.search-dialog .search-tit {
  font-size: 0.2rem;
  line-height: 0.25rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  display: none;
}
.search-dialog .search-inner {
  overflow: hidden;
  margin-top: 0;
}
.search-dialog .search-input {
  width: 561px;
  margin: 0 auto;
  padding: 0 0rem 0 0.3rem;
  background: #fff;
  box-sizing: border-box;
  transition: all 0.3s;
  max-width: 94%;
  border-radius: 500px;
}
.search-dialog .search-input input[type="text"] {
  float: left;
  height: 0.56rem;
  width: calc(100% - 0.89rem);
  background-color: transparent;
  font-size: 0.2rem;
  line-height: 0.25rem;
  color: #919191;
  transition: all 0.3s;
  outline: none;
  border: 0;
}
.search-dialog .search-input input[type="text"]::-webkit-input-placeholder {
  color: #919191;
}
.search-dialog .search-input input[type="text"]:-moz-placeholder {
  color: #919191;
}
.search-dialog .search-input input[type="text"]::-moz-placeholder {
  color: #919191;
}
.search-dialog .search-input input[type="text"]:-ms-input-placeholder {
  color: #919191;
}
.search-dialog .search-input input[type="image"],
.search-dialog .search-input .clear-btn {
  float: right;
  height: 0.72rem;
  width: 0.56rem;
}

.search-dialog .search-input input[type="image"] {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
  background-image: url("../images/search.png");
  background: #b20e17 url("../images/search.png") no-repeat center center;
  height: 0.56rem;
  width: 0.89rem;
  border-radius: 100px;
}
.search-dialog .search-input .clear-btn {
  background-color: rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/close-btn.svg");
  background-size: 0.56rem;
  border-radius: 100%;
  margin-right: 1rem;
  display: none;
}
.search-dialog .search-input.on {
  background-color: #fff;
}

.search-dialog .search-input.on input[type="image"] {
}

.search-dialog .hot-search {
  font-size: 0;
  width: 3.12rem;
  margin: 0.6rem auto 0;
  box-sizing: border-box;
  padding: 0 0.6rem;
  overflow: hidden;
}
.search-dialog .hot-search .hot-tit,
.search-dialog .hot-search .hot-link {
  display: inline-block;

  zoom: 1;
  vertical-align: top;
}
.search-dialog .hot-search .hot-tit {
  font-size: 0.375rem;
  line-height: 0.5rem;

  color: #fff;
  font-weight: bold;
  padding-left: 0.6rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0.5rem;
}
.search-dialog .hot-link {
  margin-left: 1rem;
}

.search-dialog .hot-link a {
  display: inline-block;

  zoom: 1;
  font-size: 0.375rem;
  line-height: 0.5rem;
  margin-right: 0.75rem;
  color: #fff;
  padding-bottom: 5px;
  position: relative;
}

.search-dialog .hot-link a:before {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}
.search-dialog-box .bottom-box {
  position: absolute;
  left: 0;
  bottom: 5.1%;
  width: 100%;
}
.search-dialog-box .bottom-box .share-box {
  overflow: hidden;
}
.search-dialog-box .bottom-box .copy {
  font-size: 0.35rem;
  line-height: 0.5rem;
  color: #fff;
  font-family: "gilroy-regular";
  margin-top: 0.5rem;
  overflow: hidden;
}

.header-right.is-open .bubbles-bg {
  visibility: visible;
  opacity: 1;
}
.header-right.is-open .search-btn .con-box {
  display: none;
}
.header-right.is-open .close-btn {
  display: block;
}
.header-right.is-open .item .search-bg {
  transform: scale(1);
}
.search-dialog-box.on {
  opacity: 1;
  visibility: visible;
}
.search-dialog-box.on .search-bg {
  height: 100vh;
}

.search-dialog-box.on .bubbles-bg {
  opacity: 1;
  visibility: visible;
}
.search-dialog-box.on .wrap-inner {
  transform: translateY(0);
}

.pub-close {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 10;
  right: 1.3rem;
  top: 0.7rem;
  border-radius: 100%;
}
.pub-close .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1c5ab7;
  transform: scale(0);
  border-radius: 100%;
  transition: transform 0.3s;
}
.pub-close i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;

  background-repeat: no-repeat;
  background-image: url(../fonts/7cb5f7ff47f94b3598f8bcefb8ed6da5.svg) center
    center no-repeat;
  background-size: 55%;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
@keyframes spin2 {
  to {
    transform: rotate(-1turn);
  }
}
@keyframes spin-reverse {
  from {
    transform: rotate(1turn);
  }
}
@keyframes spin-reverse2 {
  from {
    transform: rotate(-1turn);
  }
}
/*顶部搜索*/
.tc_search {
  margin: 0.5rem auto;
  width: calc(100% - 0.6rem);
  position: relative;
}
.tc_search form {
  height: 40px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}
.tc_search .keyword {
  font-size: 0.16rem;
  color: #fff;
  height: 40px;
  line-height: 40px;
  box-shadow: none;
  -webkit-appearance: none;
  border-right: 0;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 10px;
}
.tc_search .btn_blue {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border: 0;
  background: url(../images/search_white.svg) center center no-repeat;
  background-size: 55%;
}
.tc_search .btn_blue.fr {
  background: #e9edef;
  color: #4e4f53;
}
.tc_search input::-webkit-input-placeholder {
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
}
.tc_search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
}
.tc_search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
}
.tc_search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
} /* WebKit browsers */
.tc_search input:focus::-webkit-input-placeholder {
  color: transparent; /* transparent是全透明黑色(black)的速记法，即一个类似rgba(0,0,0,0)这样的值 */
} /* Mozilla Firefox 4 to 18 */
.tc_search input:focus:-moz-placeholder {
  color: transparent;
} /* Mozilla Firefox 19+ */
.tc_search input:focus::-moz-placeholder {
  color: transparent;
} /* Internet Explorer 10+ */
.tc_search input:focus:-ms-input-placeholder {
  color: transparent;
} /* 点击搜索框获取焦点 placeholder消失-结束 */
/*导航按钮开始*/
#nav_btn_box {
  height: 100%;
  z-index: 999999;
  float: right;
  margin-left: 0;
}
#nav_btn_box.on {
  background: none;
}
#nav_btn {
}
#nav_btn .point.on .navbtn::after,
#nav_btn .point.on .navbtn::before {
  background: #fff;
}
#nav_btn {
  cursor: pointer;
  text-align: center;
  z-index: 99999;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  outline: none;
  box-shadow: none;
}
#nav_btn .point {
  display: inline-block;
  width: 25px;
  height: 22px;
  position: relative;
  outline: none;
}
#nav_btn .point:hover .navbtn,
#nav_btn .point:hover .navbtn::after,
#nav_btn .point:hover .navbtn::before {
  width: 25px;
}
#nav_btn .navbtn {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  width: 14px;
  height: 1px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #fff;
}
#nav_btn .navbtn::after,
#nav_btn .navbtn::before {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 1px;
  content: "";
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #fff;
}
#nav_btn .navbtn::after {
  top: -8px;
}
#nav_btn .navbtn::before {
  top: 8px;
}
#nav_btn .point.on .navbtn {
  background: transparent;
}
#nav_btn .point.on .navbtn::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
}
#nav_btn .point.on .navbtn::before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0px;
}
/*导航按钮结束*/
.m_nav_list {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin: 0.1rem 0 0;
}
.m_nav_list::-webkit-scrollbar {
  display: none;
}
#m_nav {
  z-index: 99999;
  position: fixed;
  width: 100%;
  height: 100vh;
  right: -105%;
  top: 0;
  display: none;
  padding: 0.5rem 0 0.5rem;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #b20e17;
}
#m_nav .close {
  position: absolute;
  top: 6px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  z-index: 10000;
}

#m_nav.act {
  pointer-events: auto;
  right: 0;
  overflow: auto;
}
#m_nav > ul > li {
  width: 100%;
  overflow: hidden;
  padding: 0 0 0 0.3rem;
  position: relative;
}
#m_nav > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#m_nav li .a {
  display: inline-block;
  width: calc(100% - 0.5rem);
}
#m_nav li .a {
  line-height: 0.6rem;
  height: 0.6rem;
  color: #fff;
  padding: 0;
  font-size: 0.16rem;
  float: left;
}
#m_nav li .a span {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  width: 20px;
  height: 50px;
  text-align: center;
}
#m_nav li .a span i {
  font-size: 0;
}
#m_nav li i {
  opacity: 1;
  filter: alpha(opacity=100);
  display: inline-block;
  width: 0.5rem;
  height: 0.58rem;
  display: inline-block;
  background: url(../fonts/arrow_down.svg) center center no-repeat;
  background-size: 13px 13px !important;
  position: absolute;
  display: block;
  right: 0;
}

#m_nav li.on i {
  background: url(../fonts/arrow_down_on.svg) center center no-repeat;
}
#m_nav .on.title .a i {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}
#m_nav li {
  display: block;
  width: 100%;
}
.slide_nav {
  position: absolute;
  left: 0;
  height: 70px;
  z-index: 998;
  padding: 15px;
  top: 0;
  width: 100%;
}
#m_nav .title .list {
  display: none;
  position: relative;
  width: 100%;
  z-index: 9;
  left: 0;
  margin-left: 0;
  background: none;
  border: 0;
  clear: both;
  padding-bottom: 10px;
}
#m_nav .title .list span {
  background: none;
}
#m_nav .title .list span a:hover {
  color: #c21d1b;
}
#m_nav .title .list a {
  display: block;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  line-height: 0.4rem;
  height: 0.4rem;
  border: 0;
  font-weight: 300;
}
/*三级导航 开始*/
#m_nav .title .list .void > a {
  background-size: 10px;
  position: relative;
}
#m_nav .title .list .void > a:before {
  content: "·";
  position: absolute;
  left: -1em;
  font-size: 12px;
  font-weight: bold;
}
#m_nav .title .list span {
  position: relative;
  display: block;
}
#m_nav .title .list span .sub {
  position: static;
  width: 100%;
  display: block !important;
  overflow: hidden;
}
#m_nav .title .sub a {
  background: none;
  font-size: 0.5rem;
  opacity: 0.8;
  min-width: 50%;
  float: left;
  display: inline-block;
  color: #999;
}
.nav_mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 888;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.m_header_box {
  transition: 0.6s;
  display: none;
  height: 60px;
}
#m_header #logo .box_table {
  width: auto;
  float: left;
  display: table;
  height: 100%;
}
#nav_btn_box .box_table {
  width: auto;
  float: left;
  display: table;
  height: 100%;
  height: 100%;
}
#nav_btn_box .box_table .box_table_cell {
  vertical-align: middle;
  display: table-cell;
}
#m_header #logo .box_table .box_table_cell {
  vertical-align: middle;
  display: table-cell;
  margin: 0 auto;
}

#m_header #logo .box_table .box_table_cell a {
  display: block;
}
.m_header_box header {
  padding: 0 5%;
  top: 0;
  height: 60px;
  box-shadow: 0 8px 8px rgba(0, 55, 59, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #b20e17;
  background-size: cover;
}
#m_header #logo {
  float: left;
  height: 100%;
}
#m_header #logo img {
  max-height: 43px;
  width: auto;
}
#m_header .yuyan {
  height: 4.5rem;
  float: right;
  margin-right: 4rem;
}
#m_header .yuyan span {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  margin-left: 17px;
  background: rgba(255, 255, 255, 0.3);
}

#fp-nav.fp-right {
  display: none;
}

.toubu_div {
  position: fixed;
  top: -120%;
  width: 100%;
  left: 0;
  z-index: 999;
  transition: 0.5s;
  background: #b20e17;
  /*transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s; */
}

#header::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: auto 100% !important;
  position: absolute;
  top: 0;
  transition: 0.4s;
  z-index: 1;
}
#header > .w152 {
  position: relative;
  z-index: 3;
  transition: 0.4s;
}

.toubu_div.on {
  top: 0%;
}

.toubu_div.on #header::after {
  top: 0;
}
.toubu_div.on #header {
  padding: 0;
}
.toubu_div.on #header > .w152 {
}

.img {
  width: 100%;
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
  transition: 0.4s;
  height: 0;
}
.img .img_box {
  background-position: center center !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background-size: cover !important;
  height: 100%;
  transition: 0.4s;
}
.img img {
  position: absolute;
  transition: 0.4s;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a:hover .img .img_box {
  transform: scale(1.05);
}
a:hover .img img {
  transform: scale(1.05);
}

.swiper-slide {
  filter: brightness(1);
}
.swiper-button-prev,
.swiper-button-next {
  margin: 0;
  border: none;
}
.swiper-button-prev {
  left: 30px;
}
.swiper-button-next {
  right: 30px;
  left: auto;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: unset;
}

#nav {
}
#nav.navFix {
}
#header > .w152 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#m_nav {
}
#m_nav .pc_top_lj {
  display: table;
  margin: 0 auto;
  display: flex;
}
#m_nav .pc_top_lj a {
  margin: 0 0.1rem;
  display: block;
}
#m_nav .pc_top_lj div img {
}
#m_nav .pc_top_lj div p {
  color: #fff;
  font-size: 0.18rem;
}

.sy_tit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.38rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.sy_tit .bt {
  position: relative;
}

.sy_tit .bt .bg {
  background: url(../images/sy_tit_bg.png) no-repeat center center;
  background-size: 100% 100% !important;
  width: 8.21rem;
  height: 0.64rem;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
}
.sy_tit .bt .zw {
  position: relative;
  z-index: 3;
  display: flex;
  padding-top: 0.06rem;
}
.sy_tit .bt .zw p {
  font-size: 0.4rem;
  color: #323232;
  font-family: "sys";
  margin: 0 0.03rem;
}
.sy_tit .bt .zw p + p {
  color: #b20e17;
  margin-top: 0.1rem;
}

.sy_tit .line {
  width: 0.03rem;
  height: 0.51rem;
  position: relative;
  background: #b20e17;
  margin: 0 0.2rem;
}

.sy_tit .more {
  position: absolute;
  right: 0;
  top: calc(50% - 0.24rem);
  width: auto;
  height: 0.48rem;
  /* background: url(../images/sy_tit_more.png) no-repeat center center; */
  background-size: 0.58rem !important;
}
.sy_tit .more p {
  font-size: 0.14rem;
  transition: 0.4s;
  color: #323232;
  line-height: 0.48rem;
}
.sy_tit .more:hover p {
  color: #b20e17;
  transform: translate(0, -3px);
}

.sy_tit.bai {
}

.sy_tit.bai .bt .bg {
  background: url(../images/sy_tit_bg_bai.png) no-repeat center center;
}

.sy_tit.bai .bt .zw p {
  color: #fff;
}
.sy_tit.bai .bt .zw p + p {
  color: #f8e1a8;
}

.sy_tit.bai .more {
  /* background: url(../images/sy_tit_more_bai.png) no-repeat center center; */
}
.sy_tit.bai .more p {
  color: #fff;
}

@media (max-width: 1024px) {
  .sy_tit {
    margin-bottom: 0.3rem;
  }
  .sy_tit .bt .pic {
  }
  .sy_tit .bt .pic img {
    height: 0.4rem;
  }

  .sy_tit .bt .zw p {
    font-size: 0.3rem;
  }
}

@media (max-width: 650px) {
}

.fhdb {
  width: 0.4rem;
  height: 0.4rem;
  background: #fff url(../images/fhdb.png) no-repeat center center;
  background-size: 50%;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  transition: 0.4s;
  cursor: pointer;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
  border-radius: 50%;
  border: 1px solid #fff;
}
.fhdb.on {
  visibility: visible;
  opacity: 1;
}
.fhdb:hover {
  border-radius: 50%;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  border: 1px solid #b20e17;
}

.firstScreen {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#sy_main {
  position: absolute;
  left: 0%;
  top: 100%;
  bottom: 0;
  right: 0;
  background: #fff;
  overflow: hidden;
  transition: top 0.7s cubic-bezier(0.5, 0, 0.2, 1) 0s;
  z-index: 9;
  overflow-y: auto;
  outline: none;
}
#sy_main.on {
  top: 0;
}

.sy_xjt {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 0.4rem;
  text-align: center;
  transform: translateX(-50%);
  color: #94070a;
  height: 0.22rem;
  width: 0.25rem;
  cursor: pointer;
  opacity: 0;
  font-family: icon;
  animation: bb 2s linear 0s infinite;
  font-weight: bold;
  background: url(../images/sy_xjt.png) no-repeat;
  background-size: 100% 100%;
}
.sy_xjt:hover {
  animation-play-state: paused;
}

@keyframes bb {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  20% {
    transform: translate(-50%, 3px);
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
  90% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .fhdb {
    right: 0.1rem;
    bottom: 0.5rem;
  }

  #sy_main {
    position: relative;
  }
  .firstScreen {
    height: auto;
  }

  .sy_xjt {
    display: none;
  }
}

@media (max-width: 650px) {
  .fhdb {
    width: 0.3rem;
    height: 0.3rem;
  }
}

.firstScreen > .w152 {
  position: relative;
}
.firstScreen #logo {
  position: absolute;
  left: 0;
  top: 0.27rem;
  z-index: 6;
}

.firstScreen .header_box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 6;
  width: 100%;
}

.bannerBox {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.bannerBox .swiper-slide {
}
.bannerBox .swiper-slide a {
  height: 100%;
  display: block;
  position: relative;
}

.bannerBox .img {
  padding-bottom: 0;
  height: 100%;
}
.bannerBox .img .img_box {
  transform: scale(1) !important;
}

.bannerBox .bt {
  width: 6.7rem;
  position: absolute;
  left: 2rem;
  bottom: 0.6rem;
  z-index: 4;
}
.bannerBox .bt p {
  font-size: 0.42rem;
  color: #fff;
  line-height: 0.6rem;
  color: #fff;
}

.bn_dot_box {
  position: absolute;
  right: 2rem;
  bottom: 0.3rem;
  z-index: 6;
  display: flex;
  align-items: center;
}
.bn_dot_box .swiper-pagination {
  position: relative;
  display: flex;
}
.bn_dot_box .swiper-pagination span {
  width: 0.36rem;
  height: 0.36rem;
  background-size: 100% 100% !important;
  opacity: 1;
}
.bn_dot_box .swiper-pagination span.swiper-pagination-bullet-active {
  margin: 0 0.1rem !important;
}

.bn_dot_box .line {
  width: 1px;
  height: 0.4rem;
  background: #fff;
  opacity: 0.3;
  margin: 0 0.2rem 0 0.15rem;
}

.bn_more {
}
.bn_more a {
}
.bn_more p {
  font-size: 0.18rem;
  color: #fff;
  transition: 0.4s;
}
.bn_more a:hover p {
  color: #b20e17;
}

@media (max-width: 1024px) {
  .firstScreen #logo {
    display: none;
  }
  .bannerBox {
    margin-top: 60px;
  }

  .bannerBox .img {
    padding-bottom: 44.5%;
  }

  .bn_more p {
    font-size: 12px;
  }
  .bn_dot_box .line {
    height: 0.2rem;
  }

  .bannerBox .bt {
    width: 100%;
    left: 0;
    bottom: 0.4rem;
  }
  .bannerBox .swiper-slide a::after {
    height: 2rem;
  }
  .bannerBox .bt p {
    font-size: 0.18rem;
    line-height: 0.24rem;
    width: 95%;
    margin: 0 auto;
  }

  .bn_dot_box {
    bottom: 0.1rem;
    width: 100%;
    right: 0;
    justify-content: center;
  }
  .bn_dot_box .swiper-pagination span {
    width: 0.15rem;
    height: 0.15rem;
    margin: 0 0.07rem !important;
  }
}
@media (max-width: 650px) {
  .bannerBox .bt p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .bannerBox .swiper-slide a::after {
    height: 0.8rem;
  }
}

.part2 {
  padding: 1.2rem 0 0.4rem;
  position: relative;
  z-index: 3;
}
.part2::after {
  content: "";
  display: block;
  background: url(../images/p2_bg.png) no-repeat bottom center;
  background-size: 100%;
  width: 9.2rem;
  height: 9.2rem;
  position: absolute;
  left: -3.4rem;
  top: 1.2rem;
  z-index: 1;
}

.part2 .w152 {
  position: relative;
  z-index: 3;
}

.p2_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p2_left {
  width: 9.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p2_lb_out {
  position: relative;
  width: 100%;
}

.p2_lb_out .swiper-pagination {
  width: 0.15rem;
  position: absolute;
  bottom: 0;
  right: calc(100% + 0.35rem);
  display: flex;
  flex-direction: column;
}
.p2_lb_out .swiper-pagination span {
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 50%;
  /* border: 1px solid rgba(178, 14, 23, 0.5); */
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: none;
  opacity: 1;
  margin: 0.07rem 0 !important;
}
.p2_lb_out .swiper-pagination span.swiper-pagination-bullet-active {
  width: 0.25rem;
  height: 0.21rem;
  /* border-radius: 50%; */
  /* border: 1px solid rgba(178, 14, 23, 0.5);
  background-color: #b20e17; */
  background: url(../images/p2_lb_dot_on.png) no-repeat center center;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0);
  left: -0.05rem;
  position: relative;
}

.p2_lb {
  width: 100%;
  overflow: hidden;
  padding-bottom: 0.5rem;
}
.p2_lb .swiper-slide {
}
.p2_lb a {
  display: block;
  position: relative;
}
.p2_lb .img {
  padding-bottom: 66%;
  border-radius: 0.08rem;
}
.p2_lb .con {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  border-radius: 0 200px 200px 0;
  background: #fff;
  width: calc(100% - 0.5rem);
  z-index: 3;
  display: flex;
  padding: 0 0.3rem;
  align-items: center;
  justify-content: space-between;
  height: 1rem;
  padding-right: 0.7rem;
}
.p2_lb .con .sj {
  width: 0.96rem;
  height: 0.8rem;
  background: url(../images/p2_l_sjbg.png) no-repeat center center;
  background-size: 100% 100% !important;
}
.p2_lb .con .sj p {
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  padding-top: 0.1rem;
}
.p2_lb .con .sj .p1 {
  font-size: 0.36rem;
  color: #b20e17;
  font-weight: bold;
}
.p2_lb .con .sj .p2 {
  font-size: 0.14rem;
  color: #666666;
}
.p2_lb .bt {
  width: calc(100% - 1.15rem);
  font-size: 0.18rem;
  color: #323232;
  font-weight: 600;
  line-height: 0.24rem;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p2_lb a:hover .bt {
  color: #b20e17;
}

.p2_lb_jt {
  width: 0.22rem;
  height: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  right: 0.9rem;
  padding: 0.33rem 0;
}
.p2_lb_jt > div {
  width: 0.22rem;
  height: 0.14rem;
  background: url(../images/p2_lb_prev.png) no-repeat center center;
  background-size: 100% !important;
  position: relative;
  margin: 0;
  left: 0;
  top: auto;
}
.p2_lb_jt > div.swiper-button-next {
  transform: rotate(180deg);
}

.p2_right {
  width: 5rem;
  position: relative;
}

.p2_right .fs {
  width: 5rem;
}

.p2_right .fs .fs_bg {
  width: calc(100% + 0.42rem);
  height: 0.15rem;
  position: absolute;
  top: -0.12rem;
  left: -0.21rem;
  padding: 0 0.3rem;
}
.p2_right .fs .fs_bg::after {
  content: "";
  display: block;
  width: calc(100% - 0.6rem);
  height: 0.04rem;
  position: absolute;
  bottom: 0;
  left: 0.3rem;
  background: #b20e17;
}
.p2_right .fs .fs_bg div {
  width: 0.3rem;
  height: 100%;
  background: url(../images/p2_r_fs_top.png) no-repeat left bottom;
  background-size: 5.42rem !important;
  position: absolute;
  left: 0;
  top: 0;
}
.p2_right .fs .fs_bg div + div {
  background: url(../images/p2_r_fs_top.png) no-repeat right bottom;
  left: auto;
  right: 0;
}

.p2_right .fs a {
  display: block;
  padding: 0.34rem 0.38rem;
  background: #fff url(../images/p2_r_fs_bg.jpg) no-repeat center bottom;
  background-size: cover !important;

  box-shadow: 0px 0 0.3rem 0px rgba(0, 0, 0, 0.07);
}

.p2_right .fs .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #323232;
  font-weight: bold;
  margin-bottom: 0.1rem;
  transition: 0.4s;
  height: 0.58rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p2_right .fs .sj {
  font-size: 0.14rem;
  color: #b20e17;
  line-height: 0.24rem;
  font-family: "times";
  padding-left: 0.24rem;
  background: url(../images/p2_r_sj.png) no-repeat left center;
  background-size: 0.18rem;
  margin-bottom: 0.1rem;
}
.p2_right .fs .zy {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #999999;
  max-height: 0.72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.p2_right .fs:hover .bt {
  color: #b20e17;
  transform: translate(5px);
}

.p2_ul1 {
  width: 100%;
}
.p2_ul1 li {
  border-bottom: 1px solid #e9e9e9;
}
.p2_ul1 li:last-child {
  border-bottom: 0;
}
.p2_ul1 li a {
}
.p2_ul1 li .con {
  padding: 0.18rem 0;
}
.p2_ul1 li .con .bt {
  font-size: 0.18rem;
  color: #323232;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p2_ul1 li .con .sj {
  font-size: 0.14rem;
  color: #b20e17;
  line-height: 0.24rem;
  font-family: "times";
  padding-left: 0.24rem;
  background: url(../images/p2_r_sj.png) no-repeat left center;
  background-size: 0.18rem;
  margin-bottom: 0.1rem;
}

.p2_ul1 li:hover .con .bt {
  color: #b20e17;
  transform: translate(5px);
}

@media (max-width: 1024px) {
  .part2 {
    padding: 0.3rem 0;
  }
  .part2::after {
    width: 7rem;
    height: 7rem;
  }

  .p2_main {
    flex-wrap: wrap;
  }
  .p2_left {
    width: 100%;
    margin-bottom: 0.3rem;
  }

  .p2_right {
    width: 100%;
  }

  .p2_right .fs {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .p2_right .fs a {
    padding: 0.2rem;
  }
  .part2::after {
    width: 5rem;
    height: 5rem;
  }
  .p2_lb_jt {
    height: 0.7rem;
    padding: 0.17rem 0;
  }
  .p2_lb {
    padding-bottom: 0;
  }
  .p2_lb .con {
    width: 100%;
    position: relative;
    bottom: 0;
    height: 0.7rem;
    padding-right: 0.3rem;
    padding-left: 0.1rem;
  }
  .p2_lb .con .sj {
    width: 0.7rem;
    height: 0.6rem;
  }
  .p2_lb .con .sj .p1 {
    padding-top: 0;
  }
  .p2_lb .con .sj .p2 {
    padding-top: 0.03rem;
  }
  .p2_lb_jt {
    right: 0.1rem;
  }
  .p2_lb .bt {
    width: calc(100% - 0.8rem);
  }
}

.part3_4 {
  padding: 0.4rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(../images/p3_4bg.jpg) no-repeat center bottom;
  background-size: 100%;
}

.p3_main {
  position: relative;
}

.p3_ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.25rem;
}
.p3_ul li {
  position: relative;
  width: calc(33.33% - 0.5rem);
  margin: 0 0.25rem;
}
.p3_ul li::after {
  content: "";
  display: block;
  width: calc(100% + 0.6rem);
  height: calc(100% + 0.6rem);
  background: url(../images/p3_li_bg.png) no-repeat center center;
  background-size: 100% 100% !important;
  position: absolute;
  top: -0.3rem;
  left: -0.3rem;
  z-index: 1;
}
.p3_ul a {
  position: relative;
  display: block;
  z-index: 6;
}
.p3_ul .box {
  padding: 0.38rem 0.2rem 0.5rem;
}
.p3_ul .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #323232;
  font-weight: 600;
  height: 0.58rem;
  margin-bottom: 0.2rem;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p3_ul .img {
  border-radius: 0.08rem;
  margin-bottom: 0.15rem;
}
.p3_ul .zy {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
  height: 0.72rem;
  margin-bottom: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.p3_ul .sj {
  font-size: 0.14rem;
  color: #b20e17;
  line-height: 0.24rem;
  font-family: "times";
  padding-left: 0.24rem;
  background: url(../images/p2_r_sj.png) no-repeat left center;
  background-size: 0.18rem;
  margin-bottom: 0.1rem;
}

.p3_ul li a:hover .bt {
  color: #b20e17;
  transform: translate(5px);
}

@media (max-width: 1024px) {
  .part3 {
    padding: 0.3rem 0;
  }

  .p3_main {
    flex-wrap: wrap;
    padding: 0.3rem 0;
  }
}
@media (max-width: 650px) {
  .p3_ul li {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .p3_ul .box {
    padding: 0.38rem 0.4rem 0.5rem;
  }
}

@media (max-width: 500px) {
  .p3_ul .box {
    padding: 0.2rem 0.2rem 0.5rem;
  }
}

.p4_main {
  position: relative;
  padding: 0.5rem 0 0;
  z-index: 3;
}

.p4_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.p4_ul li {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.4rem;
  background: #fff;
  border-radius: 0.08rem;
  transition: 0.4s;
}
.p4_ul li + li {
  margin-top: 0.3rem;
}
.p4_ul li + li + li {
  margin-top: -0.3rem;
}
.p4_ul li + li + li + li {
  margin-top: 0;
}
.p4_ul li a {
  display: block;
}
.p4_ul li .box {
  padding: 0.34rem 0.4rem;
}
.p4_ul li .con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #ededed;
  padding-bottom: 0.2rem;
}
.p4_ul li .con::after {
  content: "";
  display: block;
  width: 0.04rem;
  height: 0.5rem;
  background: #f4cf8f;
  position: absolute;
  top: calc(50% - 0.25rem);
  left: -0.42rem;
}

.p4_ul .con .sj {
  width: 0.96rem;
  height: 0.8rem;
  background: url(../images/p2_l_sjbg.png) no-repeat center center;
  background-size: 100% 100% !important;
}
.p4_ul .con .sj p {
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  padding-top: 0.1rem;
}
.p4_ul .con .sj .p1 {
  font-size: 0.36rem;
  color: #b20e17;
  font-weight: bold;
}
.p4_ul .con .sj .p2 {
  font-size: 0.14rem;
  color: #666666;
}

.p4_ul li .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #323232;
  height: 0.56rem;
  transition: 0.4s;
  margin-bottom: 0.1rem;
  width: calc(100% - 1.1rem);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p4_ul li .zy {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #999999;
  height: 0.48rem;
  margin-top: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p4_ul li:hover .bt {
  color: #b20e17;
  transform: translate(5px);
}
.p4_ul li:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .part3_4 {
    padding: 0.3rem 0;
    background-size: 19rem;
  }

  .p4_main {
    padding: 0rem 0;
  }
}

@media (max-width: 650px) {
  .p4_ul li {
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0.2rem;
  }

  .p4_ul li .box {
    padding: 0.2rem;
  }
}

.part5 {
  padding: 0.8rem 0 2.2rem;
}

.p5_main {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p5_main::after {
  content: "";
  display: block;
  width: 17.57rem;
  height: 8.03rem;
  background: url(../images/p5_bg.png) no-repeat center center;
  background-size: 100% 100% !important;
  position: absolute;
  top: 0;
  right: -1.45rem;
}

.p5_main .sy_tit {
  width: 2.8rem;
  position: relative;
  z-index: 3;
  flex-direction: column;
}
.p5_main .sy_tit .bg {
  background: url(../images/sy_tit5_bg.png) no-repeat center center;
  background-size: 100%;
  width: 2.12rem;
  height: 0.64rem;
}

.p5_main .more {
  position: relative;
  top: auto;
  right: auto;
  margin-top: 0.5rem;
}

.p5_ul {
  width: 12.2rem;
  padding: 0.65rem 0.8rem;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p5_ul li {
  border-bottom: 1px solid #efefef;
  width: calc(50% - 0.2rem);
  margin-bottom: 0.3rem;
}
.p5_ul li + li + li + li + li {
  border-bottom: 0;
}
.p5_ul a {
}
.p5_ul .box {
}
.p5_ul .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #323232;
  font-weight: 600;
  margin-bottom: 0.1rem;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p5_ul .zy {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #999999;
  height: 0.48rem;
  margin-bottom: 0.1rem;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p5_ul .sj {
  font-size: 0.14rem;
  color: #b20e17;
  line-height: 0.24rem;
  font-family: "times";
  padding-left: 0.24rem;
  background: url(../images/p2_r_sj.png) no-repeat left center;
  background-size: 0.18rem;
  margin-bottom: 0.25rem;
}

.p5_ul li:hover .bt {
  color: #b20e17;
  transform: translate(5px);
}

@media (max-width: 1024px) {
  .p5_main::after {
    display: none;
  }
  .p5_main .sy_tit {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .p5_main {
    flex-wrap: wrap;
  }
  .p5_main .more {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
  }

  .p5_ul {
    padding: 0.4rem;
    padding-bottom: 0;
    width: 100%;
    border: 0.02rem solid #b11019;
    border-radius: 0.3rem;
  }

  .part5 {
    padding: 0.3rem 0;
  }
}
@media (max-width: 650px) {
  .p5_ul li {
    width: 100%;
    border-bottom: 1px solid #efefef !important;
  }
  .p5_ul li + li + li + li + li + li {
    border-bottom: 0;
  }
}

.part6_7 {
  background: url(../images/p6_7bg1.jpg) no-repeat bottom center;
  background-size: cover;
  position: relative;
  padding: 0.76rem 0;
}
.part6_7::after {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/p6_7bg2.jpg) no-repeat bottom center;
  height: 3.5rem;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p6_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.sy_tit {
  width: 100%;
}

.p6_ul1 {
  width: 3.6rem;
}
.p6_ul1 li {
}
.p6_ul1 li + li {
  margin-top: 0.2rem;
}
.p6_ul1 a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0.08rem;
}
.p6_ul1 .img {
  padding-bottom: 64%;
}
.p6_ul1 .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/p6_img_zz.png) repeat-x center center;
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.p6_ul1 .con {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 0.15rem 0.28rem;
}
.p6_ul1 .con .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #fff;
  max-height: 0.56rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p6_cen {
  width: 7.4rem;
}
.p6_cen a {
  display: block;
  background: #fff;
  border-radius: 0.08rem;
  transition: 0.4s;
  box-shadow: 0px 0px 0.39rem 00 rgba(35, 29, 25, 0.07);
  overflow: hidden;
}
.p6_cen .img {
  padding-bottom: 64.9%;
}
.p6_cen .con {
  width: 100%;
  z-index: 3;
  padding: 0.15rem 0.28rem;
}
.p6_cen .con .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #323232;
  text-align: center;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p6_cen a:hover {
  background: #b20e17;
}
.p6_cen a:hover .con .bt {
  color: #fff;
}

@media (max-width: 1024px) {
  .part6_7 {
    padding: 0.3rem 0;
  }

  .p6_ul1 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .p6_ul1 li {
    width: 48.5%;
    margin-top: 0 !important;
  }

  .p6_cen {
    width: 100%;
    margin: 0.3rem 0;
  }
}
@media (max-width: 650px) {
  .p6_ul1 li {
    width: 100%;
  }
  .p6_ul1 li + li {
    margin-top: 0.3rem !important;
  }
}

.p7_main {
  margin-top: 0.7rem;
}
.p7_ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p7_ul li {
  width: calc(50% - 0.2rem);
}
.p7_ul li + li + li {
  margin-top: 0.4rem;
}
.p7_ul a {
}
.p7_ul .con {
  background: #f7f1e6;
  border: 1px solid #ede8de;
  padding: 0 0.3rem 0.28rem;
  transition: 0.4s;
}
.p7_ul .con .sj {
  font-size: 0.14rem;
  display: table;
  margin-top: -1px;
  color: #fff;
  line-height: 0.24rem;
  font-family: "times";
  padding-left: 0.24rem;
  background: #b20e17 url(../images/p2_r_sj_bai.png) no-repeat 0.2rem center;
  background-size: 0.18rem;
  margin-bottom: 0.16rem;
  padding: 0.05rem 0.2rem 0.05rem 0.43rem;
}
.p7_ul .con .bt {
  font-size: 0.2rem;
  color: #323232;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p7_ul a:hover .con {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  background: #fff;
}

.p7_ul a:hover .con .bt {
  color: #b20e17;
}

@media (max-width: 1024px) {
  .p7_ul li {
    width: 100%;
    margin-bottom: 0.1rem !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 650px) {
  .p7_ul .con {
    padding: 0 0.15rem 0.2rem;
  }
}

.part8 {
  padding: 0.7rem 0;
  background: url(../images/p8_bg.jpg) no-repeat center center;
  background-size: cover;
}

.p8_main {
  position: relative;
}
.p8_lb {
  overflow: hidden;
}
.p8_lb a {
}
.p8_lb .swiper-slide {
}
.p8_lb .img {
  padding-bottom: 68.6%;
}
.p8_lb .con {
  padding-top: 0.2rem;
}
.p8_lb .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #000;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p8_lb_jt {
  width: calc(100% + 1.4rem);
  position: absolute;
  left: -0.7rem;
  top: 34%;
  display: flex;
  justify-content: space-between;
}
.p8_lb_jt > div {
  width: 0.5rem;
  height: 0.5rem;
  background: url(../images/p8_lb_prev.png) no-repeat center center;
  background-size: 100% 100% !important;
  position: relative;
  left: auto;
  top: 0;
  margin: 0;
  right: auto;
}
.p8_lb_jt > div.swiper-button-next {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .part8 {
    padding: 0.3rem 0;
  }

  .p8_lb {
    width: calc(100% - 1rem);
    margin: 0 auto;
  }
  .p8_lb_jt {
    width: 100%;
    left: 0;
    top: 40%;
  }
  .p8_lb_jt > div {
    width: 0.35rem;
    height: 0.35rem;
    background-color: #fff;
  }
}
@media (max-width: 650px) {
}

.foot {
  background: #b20e17;
  padding: 0rem;
  position: relative;
  z-index: 3;
}

.foot > .w152 {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.f_left {
  max-width: 100%;
}
.f_left .f_logo {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  width: 3rem;
  max-width: 100%;
  float: right;
}
.f_left .f_logo img {
  width: 100%;
}
.f_left .f_con {
  display: flex;
  clear: both;
}
.f_left .f_con p {
  font-size: 0.16rem;
  color: #ffffff;
}
.f_left .f_con p + p {
  margin-left: 0.28rem;
}

.f_left h3 {
  font-size: 0.3rem;
  font-weight: bold;
  color: #fff;
  line-height: 0.6rem;
  padding: 0.2rem 0.1rem;
  font-family: "sys";
}
.f_cen {
}
.f_cen h2 {
  font-size: 0.26rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.f_cen .con {
}
.f_cen .con font {
  margin-right: 0.18rem;
}
.f_cen .con p {
  font-size: 0.16rem;
  line-height: 0.29rem;
  color: #ffffff;
  padding-left: 0.23rem;
  background: url(../images/foot_ico1.png) no-repeat left center;
  background-size: 0.15rem !important;
}
.f_cen .con p + p {
  background: url(../images/foot_ico2.png) no-repeat left center;
}
.f_cen .con p + p + p {
  background: url(../images/foot_ico3.png) no-repeat left center;
}
.f_cen .con p + p + p + p {
  background: url(../images/foot_ico4.png) no-repeat left center;
}

.f_right {
}

.f_ewm {
  display: flex;
}
.f_ewm li {
  margin-left: 0.2rem;
}
.f_ewm .pic {
  width: 0.9rem;
  overflow: hidden;
  border-radius: 0.08rem;
}
.f_ewm .pic img {
  display: block;
  width: 100%;
}
.f_ewm li p {
  font-size: 0.12rem;
  text-align: center;
  margin-top: 0.1rem;
  color: #fff;
  opacity: 0.6;
}

@media (max-width: 1750px) {
  #nav ul li h3 {
  }
}

@media (max-width: 1400px) {
  .search_btn {
    width: 0.3rem;
  }
  .search_btn img {
    display: block;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #header > .w152 {
    width: 95%;
  }
  .w152 {
    width: 95%;
  }
  .w14 {
    width: 95%;
  }
  .head_bottom {
    width: 95%;
  }

  .foot_left .xx p {
    line-height: 0.24rem;
    margin-bottom: 0.1rem;
  }

  .header_box {
    display: none;
  }
  .m_header_box {
    display: block;
  }

  .foot .w152 {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .f_left .f_logo {
    float: none;
    margin: 0 auto 0.2rem;
  }

  .f_left .f_con {
    flex-wrap: wrap;
    justify-content: center;
  }
  .f_left .f_con p {
    margin-left: 0 !important;
    margin-right: 0.2rem;
    line-height: 0.28rem;
  }

  .f_cen {
    width: 100%;
    margin: 0.3rem 0;
  }
  .f_cen .con {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .f_cen .con p {
    margin-right: 0.2rem;
  }

  .f_right {
  }

  .f_lj {
  }
  .f_lj li p {
  }
  .foot > .w152 {
    padding: 0.3rem 0;
    flex-direction: column-reverse;
  }
}
@media (max-width: 950px) {
}
@media (max-width: 800px) {
}
@media (max-width: 700px) {
}

@media (max-width: 650px) {
  #m_header #logo {
    width: 80%;
  }
}
@media (max-width: 480px) {
}

/* 首页样式结束 */

/* 二级页样式开始 */
.ej_body {
}
.ej_body .head_lj {
  transition: 0.4s;
  overflow: hidden;
}
.ej_body #header {
  transition: 0.4s;
  overflow: hidden;
}

.ej_body .toubu_div {
  position: absolute;
  top: auto !important;
  bottom: 0;
}
.ej_body .toubu_div #header::after {
  top: 100%;
}

.ej_body .toubu_div.navFix {
  position: fixed;
  top: 0 !important;
  bottom: auto;
  z-index: 1111;
}

.ej_dh_box {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.ej_dh_box ul {
  display: flex;
  justify-content: center;
  min-height: 0.5rem;
  padding: 0.1rem 0;
  align-items: center;
}
.ej_dh_box ul li {
  padding: 0 0.2rem;
}
.ej_dh_box ul li + li {
  border-left: 1px solid #e8e8e8;
}
.ej_dh_box ul li p {
  font-size: 0.16rem;
  color: #323232;
  transition: 0.4s;
}
.ej_dh_box ul li.on p {
  font-weight: bold;
}
.ej_dh_box ul li a:hover p {
}

.fanye {
  text-align: center;
  margin: 0.4rem 0 0;
}

.ej_bn_dt {
  width: 100%;
  position: relative;
  z-index: 9;
}

.ej_bn_dt > img {
  display: block;
  width: 100%;
}

.ej_bn_dt > .w152 {
  position: relative;
}
.ej_bn_dt #logo {
  position: absolute;
  left: 0;
  top: 0.27rem;
  z-index: 6;
}

.ej_main_box {
  min-height: 0.5rem;
  position: relative;
  padding: 0;
  z-index: 3;
  padding: 0.6rem 0;
}
.ej_main_box .w152 {
  display: flex;
  justify-content: space-between;
}

.ej_main_box > div {
  position: relative;
  z-index: 2;
}

/* 手机二级导航 开始 */

#nav_slide {
  background: #b20e17;
  line-height: 0.5rem;
  position: relative;
  z-index: 2;
  display: none;
}
#nav_slide #bnt_back {
  position: absolute;
  left: 0.16rem;
  top: -0.02rem;
}
#nav_slide #bnt_back img {
  height: 0.2rem;
  vertical-align: middle;
}
#nav_slide .n_title {
  height: 0.5rem;
}
#nav_slide h1 {
  font-size: 0.18rem;
  color: #fff;
  text-align: center;
}
#bnt_sub_nav {
  position: absolute;
  right: 0.16rem;
  top: 0.14rem;
  cursor: pointer;
}
#bnt_sub_nav img {
  display: block;
  height: 0.2rem;
}
#bnt_sub_nav.on img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
#sub_nav_content {
  background: #f2f2f2;
  display: none;
  z-index: 9;
  width: 100%;
}
#sub_nav_content ul li {
  background: none;
  box-shadow: none;
  border-bottom: 1px solid #dedede;
  padding: 0 0.15rem;
}
#sub_nav_content ul li a {
  display: inline-block;
  font-size: 0.16rem;
  padding: 0;
  color: #333;
  width: 88%;
}
#sub_nav_content ul li i {
  float: right;
  font-family: simsun;
  font-style: normal;
  font-weight: bold;
}
#sub_nav_content ul li ul li {
  border: 0;
  line-height: 0.28rem;
  padding-left: 0.1rem;
}
#sub_nav_content ul li ul li a {
  font-size: 0.16rem;
  color: #666;
}
#sub_nav_content ul li.on > a {
  color: #b20e17;
}
#sub_nav_content ul li ul {
  display: none;
}
/* 手机二级导航 结束 */

.ej_main_left {
  float: left;
  width: 2.4rem;
  margin-top: -0.6rem;
  background: #fff;
}
.ej_main_left .sider_nav {
  padding: 0 0rem;
}
.ej_main_left ul li {
  position: relative;
  line-height: 0.24rem;
  text-align: center;
}

.ej_main_left ul li:last-child {
  border-bottom: none;
}
.ej_main_left ul li a {
  position: relative;
  display: block;
  margin: 0 auto;
  font-family: "Microsoft Yahei";
  font-size: 0.18rem;
  color: #333;
  z-index: 1;
}
.ej_main_left ul li p {
  padding: 0.16rem 0;
  width: calc(100% - 0.6rem);
  margin: 0 auto;
  border-bottom: 1px solid #dddddd;
}
.ej_main_left ul li .btn {
  width: 0.3rem;
  height: 0.56rem;
  position: absolute;
  right: 0.2rem;
  top: 0;
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.ej_main_left ul li .btn::after {
  content: ">";
  display: block;
  text-align: center;
  width: 100%;
  font-size: 0.2rem;
  color: #333;
  font-family: 宋体;
}
.ej_main_left ul li .btn.on::after {
  content: ">";
  font-family: 宋体;
}

.ej_main_left ul li .sun {
  background: #fcfcfc;
  width: 88%;
  margin: 0 auto;
  display: none;
  border-radius: 0.1rem;
  margin: 0.1rem auto;
  padding: 0.1rem 0;
}
.ej_main_left ul li .sun a {
  font-size: 0.16rem;
  line-height: 0.18rem;
  padding: 0.1rem;
}
.ej_main_left ul li .sun a.on:before {
  width: 100%;
}
.ej_main_left ul li .sun a.on,
.ej_main_left ul li .sun a:hover {
  color: #284f9a;
}

.ej_main_left ul li.on > .btn::after {
  color: #fff;
}

.ej_main_left ul li.on > a p {
  color: #fff !important;
  border-bottom: 0 solid #000;
}
.ej_main_left ul li a:hover p {
  color: #b20e17;
}

.ej_main_left ul li a:before {
  position: absolute;
  left: 0.1rem;
  bottom: 0;
  width: 0%;
  height: 100%;
  background: #b20e17;
  color: #fff;
  content: "";
  z-index: -1;
  opacity: 0;
}
.ej_main_left ul li > a:after {
  position: absolute;
  left: 100%;
  top: 100%;
  width: 0.1rem;
  height: 0.1rem;
  background-size: 100% 100% !important;
  content: "";
  opacity: 0;
}
.ej_main_left ul li.on > a:after {
  opacity: 1;
}

.ej_main_left ul li.on > a:before {
  width: 100%;
  opacity: 1;
}

.ej_main_left ul li .sun a:before {
  height: 1px;
  bottom: 0;
  transition: 0.4s;
}
.ej_main_left ul li .sun a {
  color: #333;
}

.ej_main_left .lmmc_yj {
  font-size: 0.3rem;
  padding: 0.4rem 0rem;
  text-align: center;
  background-size: 200%;
  color: #fff;
  box-shadow: 0 0 0.1rem rgb(0, 0, 0, 0.1);
  background-size: cover;
}

.ej_main_right {
  width: 100%;
}
.ej_main_right > .line {
  width: 100%;
  height: 0.01rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.ej_main_right > .line::after {
  content: "";
  display: block;
  width: calc(100% - 0.38rem);
  height: 1px;
  background: #d9d9d9;
  position: absolute;
  right: 0;
  top: 0;
}
.ej_main_right > .line::before {
  content: "";
  display: block;
  width: 0.36rem;
  height: 0.2rem;
  background-size: 100% 100% !important;
  position: absolute;
  left: 0;
  top: -0.1rem;
}

.dqwz_out {
  padding-bottom: 0.1rem;
  margin: 0rem 0 0.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dqwz_out .w152 {
}
.dqwz_out h2 {
  font-size: 0.24rem;
  color: #333333;
  display: table;
}

.dqwz_out .dqwz {
  padding-left: 0.25rem;
  background: url(../images/dqwz.png) no-repeat left 0.05rem;
  display: table;
  background-size: 0.14rem;
}
.dqwz_out .dqwz p {
  font-size: 0.14rem;
  color: #737373;
  line-height: 0.24rem;
  min-height: 0.24rem;
}
.dqwz_out .dqwz a {
  color: #737373;
  transition: 0.4s;
}
.dqwz_out .dqwz a:hover {
  color: #b20e17;
}

@media (max-width: 1024px) {
  .ej_bn_dt {
    margin-top: 60px;
  }
  .ej_bn_dt #logo {
    display: none;
  }
  .ej_bn_dt .w152 {
    width: 100%;
  }

  .ej_main_left {
    display: none;
  }
  #nav_slide {
    display: block;
  }

  .fanye {
    margin: 0.3rem 0 0;
  }

  .dqwz_out {
    margin-bottom: 0.1rem;
  }

  .ej_main_box .w152 {
    flex-wrap: wrap;
  }
  .ej_main_left {
    width: 100%;
  }

  .ej_main_right {
    width: 100%;
  }

  .ej_bn_dt::after {
    display: none;
  }

  .ej_main_box {
    padding: 0.3rem 0;
  }

  .ej_body .toubu_div {
    position: fixed !important;
    bottom: auto;
    top: 0 !important;
  }
}
@media (max-width: 650px) {
}

/* 列表页  开始 */

.ej_list {
  min-height: 300px;
}
.ej_list {
  width: 100%;
}
.ej_list ul li {
  transition: 0.4s;
}
.ej_list ul li + li {
  margin-top: 0.1rem;
}
.ej_list ul li .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem;
  background: #fff;
  transition: 0.4s;
}
.ej_list ul li .box .con {
  width: calc(100% - 1rem);
}
.ej_list ul li .box .bt {
  font-size: 0.18rem;
  width: 100%;
  display: block;
  color: #333333;
  padding-left: 0.16rem;
  position: relative;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ej_list ul li .box .bt::after {
  content: "";
  display: block;
  width: 0.05rem;
  height: 0.05rem;
  background: #d0d0d0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 0.025rem);
}

.ej_list ul li .sj {
}
.ej_list ul li .sj p {
  color: #353535;
  font-size: 0.14rem;
  margin-bottom: 0;
  padding-left: 0.2rem;
  background: url(../images/ej_list_sj.png) no-repeat center left;
  background-size: 0.13rem;
  transition: 0.4s;
}

.ej_list ul li:hover .sj p {
  background: url(../images/ej_list_sj_on.png) no-repeat center left;
  color: #fff;
}
.ej_list ul li:hover .bt {
  color: #ffffff;
}
.ej_list ul li:hover .box {
  background: #b20e17;
}
.ej_list ul li:hover .box .bt::after {
  background: #fff;
}

@media (max-width: 1024px) {
  .ej_list ul li {
    margin-bottom: 0;
  }
  .ej_list ul li .box {
    flex-wrap: wrap;
  }
  .ej_list ul li .box .con {
    width: 100%;
  }
  .ej_list ul li .sj {
    margin-top: 0.1rem;
  }
}

/* 列表页  结束 */

.ej_list_tt {
}
.ej_list_tt ul {
}
.ej_list_tt li {
  padding: 0.2rem 0;
  border-bottom: 1px solid #eeeeee;
}
.ej_list_tt li:first-child {
  padding-top: 0;
}
.ej_list_tt li a {
  display: block;
}
.ej_list_tt li .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.4s;
}

.ej_list_tt li .sj {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #b20e17;
}

.ej_list_tt li .con {
  width: calc(100% - 3.1rem);
  padding-right: 0.15rem;
}
.ej_list_tt li .img {
  width: 2.8rem;
  height: 1.9rem;
  padding: 0;
}

.ej_list_tt li .con .bt {
  height: 0.3rem;
  font-size: 0.18rem;
  margin-bottom: 0.16rem;
  color: #333;
  line-height: 0.24rem;
  font-weight: 600;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ej_list_tt li .con .zy {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #737373;
  max-height: 0.48rem;
  overflow: hidden;
  margin-bottom: 0.26rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ej_list_tt li.no_img {
}
.ej_list_tt li.no_img .box {
  padding: 0.4rem 0.2rem;
}
.ej_list_tt li.no_img .con {
  width: calc(100%);
  padding-top: 0;
}
.ej_list_tt li:hover .con .bt {
  color: #b20e17;
  font-weight: bold;
}
.ej_list_tt li:hover .box {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .ej_main_right > .line {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 650px) {
  .ej_list_tt li .box {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .ej_list_tt li .img {
    padding-bottom: 66%;
    width: 100%;
  }
  .ej_list_tt li .con {
    width: 100%;
    padding: 0.2rem;
  }
  .ej_list_tt li.no_img .con {
    padding: 0;
  }

  .ej_list_tt li .sj {
    display: flex;
    padding-left: 0;
    margin-top: 0.1rem;
  }

  .ej_list_tt li .con .bt {
    margin-bottom: 0.05rem;
  }
  .ej_list_tt li .con .zy {
    margin-bottom: 0.1rem;
  }
}

.nry_main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.nry_main .nry_fx {
  width: 0.6rem;
}
.my-share-d {
  padding: 0.2rem 0.1rem 0.1rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.19);
  border-radius: 100px;
}
.my-share-d > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.4rem;
  height: 0.4rem;
  margin-bottom: 0.15rem;
  background: #f0f0f0;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.my-share-d > div img {
  width: 100%;
  transition: 0.4s;
}
.my-share-d > div img.on {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  margin: auto;
  width: 100%;
}

.my-share-d .d1:hover img {
  opacity: 0;
}
.my-share-d .d1:hover img.on {
  opacity: 1 !important;
}

.ej_nry {
  width: 100%;
}
.ej_nry .box1 {
  border-bottom: 1px solid #d9d9d9;
}
.ej_nry .box1 .bt {
  font-size: 0.28rem;
  color: #353535;
  font-weight: bold;
  line-height: 0.45rem;
  margin-bottom: 0.16rem;
  text-align: center;
}
.ej_nry .box1 .xx {
  flex-wrap: wrap;
  display: flex;
  padding-bottom: 0.24rem;
  justify-content: center;
}
.ej_nry .box1 .xx p {
  font-size: 0.14rem;
  color: #525252;
  margin-right: 0.3rem;
  line-height: 0.2rem;
}

.ej_nry .box2 {
  padding: 0.2rem 0 0.3rem;
  border-bottom: 1px solid #d9d9d9;
}
.ej_nry .box2 p {
  font-size: 0.18rem !important;
  color: #333333;
  text-indent: 2em;
  line-height: 0.36rem !important;
  margin-bottom: 0.2rem;
}
.ej_nry .box2 p a {
  word-break: break-word;
}
.ej_nry .box2 img {
  /*width: auto;*/
  height: auto !important;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.ej_nry .box2 .has_img {
  text-indent: 0 !important;
}
.ej_nry .box2 .img_sm {
  font-size: 0.18rem;
  color: #353535;
  font-weight: bold;
  text-indent: 0 !important;
  text-align: center;
  margin-top: -0.1rem;
}

.nr_fj {
  border-left: 2px solid #b20e17;
  margin: 0.3rem 0 0.1rem;
}
.nr_fj li {
  padding-left: 0.2rem;
}
.nr_fj li a {
}
.nr_fj li p {
  font-size: 0.18rem;
  color: #323232;
  text-indent: 0 !important;
  background-size: 0.2rem;
  margin-bottom: 0 !important;
  padding: 0.07rem 0;
  padding-left: 0.3rem;
  transition: 0.4s;
}

.nr_fj li:hover p {
  color: #b20e17;
}

.ej_nry .box3 {
  padding: 0.3rem 0;
}
.ej_nry .box3 a {
  display: block;
}
.ej_nry .box3 p {
  font-size: 0.18rem;
  color: #333333;
  line-height: 0.36rem;
  padding: 0.02rem;
  transition: 0.4s;
}
.ej_nry .box3 p:hover {
  color: #b20e17;
}

.ej_nry_news {
  width: 3.6rem;
}
.ej_nry_news h2 {
  font-size: 0.24rem;
  color: #333333;
  text-align: center;
  background: #f3f3f3;
  text-align: center;
  padding: 0.15rem 0;
}
.ej_nry_news ul {
  padding: 0.25rem 0.2rem;
}
.ej_nry_news ul li {
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #f3f3f3;
  margin-bottom: 0.18rem;
}
.ej_nry_news ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ej_nry_news ul li .sj {
  width: 0.6rem;
  height: 0.57rem;
  background-size: 100% 100%;
  padding-top: 0.14rem;
}
.ej_nry_news ul li .sj p {
  font-size: 0.22rem;
  color: #fff;
  text-align: center;
  margin-bottom: 0.01rem;
}
.ej_nry_news ul li .sj span {
  display: block;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.ej_nry_news ul li .con {
  width: calc(100% - 0.7rem);
}
.ej_nry_news ul li .con p {
  font-size: 0.16rem;
  color: #323232;
  line-height: 0.26rem;
  max-height: 0.52rem;
  overflow: hidden;
  transition: 0.4s;
}

.ej_nry_news ul li a:hover .con p {
  color: #b20e17;
}

@media (max-width: 1024px) {
  .nry_main {
  }
  .nry_main > div {
    width: 100% !important;
  }
  .nry_main .nry_fx {
    display: flex;
    justify-content: center;
    margin-bottom: 0.2rem;
  }
  .my-share-d {
    display: flex;
    padding: 0.1rem 0.1rem;
  }
  .my-share-d > div {
    margin-bottom: 0;
    margin: 0 0.1rem 0;
  }

  .ej_nry {
    padding-top: 0.5rem;
  }
  .ej_nry .box1 .bt {
    font-size: 0.26rem;
  }
  .ej_nry .box2 p {
    font-size: 0.16rem !important;
    line-height: 0.28rem !important;
    margin-bottom: 0.15rem;
  }
  .ej_nry .box3 p {
    font-size: 0.16rem;
    line-height: 0.26rem;
  }

  .nr_fj li p {
    line-height: 0.26rem !important;
  }
}

@media (max-width: 650px) {
  .ej_nry .box1 .bt {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .ej_nry .box1 .xx {
    padding-bottom: 0.15rem;
  }
  .ej_nry .box2 {
    padding: 0.15rem 0;
  }
  .ej_nry_news h2 {
    font-size: 0.2rem;
    padding: 0.1rem 0;
  }
  .ej_nry_news ul {
    padding: 0.15rem 0rem;
  }
  .ej_nry_news ul li {
    padding-bottom: 0.1rem;
    margin-bottom: 0.1rem;
  }
}

.box_teacher {
  padding-bottom: 0.2rem;
  border-bottom: 2px #b20e17 solid;
  display: flex;
  justify-content: space-between;
}
.box_teacher .pic {
  width: 1.5rem;
}
.box_teacher .pic img {
  width: 100%;
}

.box_teacher .con {
  width: calc(100% - 2.3rem);
  padding-top: 0rem;
}
.box_teacher .con .bt {
  font-size: 0.28rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.2rem;
}
.box_teacher .con .line {
  width: 0.4rem;
  height: 0.04rem;
  background: #b20e17;
  margin-bottom: 0.2rem;
}
.box_teacher .con .xx {
}
.box_teacher .con .xx strong {
  color: #333;
}
.box_teacher .con .xx p {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-bottom: 0.2rem;
  color: #666;
}

@media (max-width: 850px) {
  .box_teacher {
    flex-wrap: wrap;
    justify-content: center;
  }
  .box_teacher .pic {
    width: 1.5rem;
    margin-bottom: 0.2rem;
  }
  .box_teacher .con {
    width: 100%;
  }
}

/* 二级页样式结束 */

.pb_sys_style1 .p_no_d {
  border: 1px solid #84a78d !important;
  color: #fff;
  background-color: #84a78d !important;
}

.ej_szdw {
  padding-top: 0rem;
}
.ej_szdw ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
}
.ej_szdw ul li {
  width: calc(33.33% - 0.3rem);
  border: 1px solid #d4d3d3;
  margin: 0 0.15rem 0.2rem;
  background: #fff;
  transition: 0.4s;
}
.ej_szdw ul li a {
  display: flex;
  padding: 0.2rem;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  transition: 0.4s;
  height: 100%;
}
.ej_szdw ul li .img {
  width: 1.5rem;
  padding-bottom: 0%;
  background: #bebebe;
  height: 2rem;
}
.ej_szdw ul li .con {
  width: calc(100% - 1.5rem);
  padding-left: 0.2rem;
  padding-top: 0.18rem;
}
.ej_szdw ul li .con .bt {
  font-size: 0.18rem;
  color: #333;
  margin-bottom: 0.15rem;
  font-weight: 600;
  padding-bottom: 0.2rem;
  position: relative;
  transition: 0.4s;
}
.ej_szdw ul li .con .bt::after {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.02rem;
  background: #b20e17;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ej_szdw ul li .con .xx {
}
.ej_szdw ul li .con .xx p {
  font-size: 0.14rem;
  color: #666;
  line-height: 0.24rem;
  margin-bottom: 0.05rem;
}
.ej_szdw ul li .con .xx p strong {
  color: #333;
}
.ej_szdw ul li .con .xx p.p1 {
  /* overflow: hidden;text-overflow: ellipsis; */
}
.ej_szdw ul li .con .xx p.p2 {
  /* height: 0.48rem;overflow: hidden; */
}

.ej_szdw ul li a:hover {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
}
.ej_szdw ul li:hover {
  border: 1px solid #b20e17;
}
.ej_szdw ul li:hover .con .bt {
  color: #b20e17;
}
.ej_ldbz ul li .con .xx p {
  font-size: 0.18rem;
  color: #999;
  line-height: 0.28rem;
}

@media (max-width: 1024px) {
  .ej_szdw ul li .con {
    padding-top: 0;
  }
  .ej_szdw ul li {
    width: calc(50% - 0.3rem);
  }
}

@media (max-width: 650px) {
  .ej_szdw ul li {
    width: calc(100% - 0.3rem);
  }
  .ej_szdw ul li a {
  }
  .ej_szdw ul li .img {
    width: 1rem;
    height: 0;
    padding-bottom: 35%;
  }
  .ej_szdw ul li a {
    flex-wrap: wrap;
    padding: 0.1rem;
  }
  .ej_szdw ul li .con {
    width: calc(100% - 1rem);
  }
  .ej_szdw ul li .con .bt {
    margin-bottom: 0.1rem;
    padding-bottom: 0.12rem;
  }
  .ej_szdw ul li .con .xx p {
    line-height: 0.2rem;
  }
}

.ej_tplist {
}
.ej_tplist ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
}
.ej_tplist ul li {
  width: calc(33.33% - 0.3rem);
  margin: 0 0.15rem 0.24rem;
  background: #fff;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}
.ej_tplist ul li a {
  display: block;
}
.ej_tplist ul li .box {
  padding: 0.1rem;
}
.ej_tplist ul li .img {
  width: 100%;
  height: 0;
  padding-bottom: 64.5%;
}
.ej_tplist ul li .con {
  width: 100%;
  padding: 0.2rem 0.1rem 0.2rem;
}

.ej_tplist ul li .con .bt {
  font-size: 0.16rem;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0;
  color: #353535;
  line-height: 0.24rem;
  margin-bottom: 0.1rem;
  transition: 0.4s;
  max-height: 0.48rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ej_tplist ul li .con .sj {
  color: #353535;
  font-size: 0.14rem;
  margin-bottom: 0;
  padding-left: 0.2rem;
  background: url(../images/ej_list_sj.png) no-repeat center left;
  background-size: 0.13rem;
  transition: 0.4s;
}

.ej_tplist ul li:hover .con .bt {
  color: #fff;
}
.ej_tplist ul li:hover {
  background: #b20e17;
}
.ej_tplist ul li:hover .con .sj {
  background: url(../images/ej_list_sj_on.png) no-repeat center left;
  color: #fff;
}

@media (max-width: 1024px) {
}

@media (max-width: 650px) {
  .ej_tplist ul li {
    width: 100%;
  }
}

.box_tc {
  padding: 1px 0rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.3rem;
}
.box_tc::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: #e6e6e6 1px solid;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.box_tc .pic_out {
  /*margin: -0.3rem 0;*/
  position: relative;
  z-index: 3;
}
.box_tc .pic {
  width: 2rem;
}
.box_tc .pic img {
  width: 100%;
  transition: 0.4s;
}
.box_tc .pic:hover img {
  transform: scale(1.05);
}
.box_tc .pic_out::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 100% 100%;
  transform: translateX(0.1rem) translateY(0.1rem);
  z-index: -1;
}

.box_tc .con {
  position: relative;
  z-index: 3;
  width: calc(100% - 2.5rem);
  padding: 0.2rem 0;
}
.box_tc .con .bt {
  font-size: 0.2rem;
  font-weight: bold;
}
.box_tc .con .line {
  width: 0.6rem;
  margin: 0.12rem 0 0.15rem;
  height: 3px;
  background: #b20e17;
}
.box_tc .con .xx {
}
.box_tc .con .xx p {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin: 0.07rem 0;
}
.box_tc .con .xx p strong {
}

.ej_nry .box2 .xtit {
  background: #efefef;
  background-size: 0.15rem;
  line-height: 0.5rem;
  padding: 0 0.12rem;
  font-size: 0.18rem;
  color: #000000;
  padding-left: 0.3rem;
  font-weight: bold;
  margin-bottom: 0.16rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ej_nry .box2 .xtit img {
  width: 0.16rem;
  margin: 0;
  display: block;
  margin-right: 0.1rem;
}
.ej_nry .box2 .xtit h3 {
  font-weight: bold;
  font-size: 0.18rem;
}

@media (max-width: 1024px) {
  .box_tc .pic_out {
    margin: -0.15rem 0;
  }
  .box_tc {
    padding: 0 0.2rem;
  }
}

@media (max-width: 650px) {
  .box_tc {
    flex-wrap: wrap;
    justify-content: center;
  }
  .box_tc .con {
    width: 100%;
    margin-top: 0.2rem;
  }
}

.ej_td_list {
}
.ej_td_list ul {
}
.ej_td_list ul li {
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #dbdbdb;
}
.ej_td_list ul li a {
  display: block;
}
.ej_td_list ul li .box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.4rem;
}
.ej_td_list ul li .box .img {
  width: 2rem;
  padding-bottom: 25%;
}
.ej_td_list ul li .box .con {
  width: calc(100% - 2.4rem);
}
.ej_td_list ul li .box .con .bt {
  font-size: 0.2rem;
  color: #333;
  line-height: 0.32rem;
  position: relative;
  font-weight: bold;
}
.ej_td_list ul li .box .con .bt::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.03rem;
  background: #b20e17;
  margin-top: 0.15rem;
  margin-bottom: 0.1rem;
}

.ej_td_list ul li .box .con .xx {
}
.ej_td_list ul li .box .con .xx p {
  font-size: 0.16rem;
  color: #333;
  line-height: 0.28rem;
  margin-bottom: 0.1rem;
}

.ej_td_list ul li .box .con .xx p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .ej_td_list ul li .box {
    flex-direction: column;
    align-items: center;
  }
  .ej_td_list ul li .box .con {
    width: 100%;
  }
  .ej_td_list ul li .box .img {
    width: 40%;
    padding-bottom: 55%;
    margin-bottom: 0.2rem;
  }
}

.ej_szdwx {
}
.ej_szdwx ul {
}
.ej_szdwx ul li {
  width: 31%;
}
.ej_szdwx ul li a {
  align-items: center;
}
.ej_szdwx ul .img {
}
.ej_szdwx ul .con {
}
.ej_szdwx ul .con .bt {
}
.ej_szdwx ul .con .xx {
  display: flex;
}
.ej_szdwx ul .con .xx .p1 {
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.ej_szdwx ul li .con .xx p {
  margin-bottom: 0;
}
.ej_szdwx ul .con .xx .p2 {
  color: #333;
}

@media (max-width: 1024px) {
  .ej_szdwx ul li {
    width: 48%;
  }
  .ej_szdwx ul li .img {
    padding-bottom: 125%;
  }
  .ej_szdwx ul .con .xx .p1 {
    margin-bottom: 0;
  }
}

.sz_xxk {
  margin: 0.2rem 0 0.3rem;
}
.sz_xxk ul {
  display: flex;
  justify-content: center;
}
.sz_xxk ul li {
  color: #333;
  padding: 0.14rem 0.4rem;
  background: #f7f7f7;
  font-size: 0.18rem;
  margin: 0 0.2rem;
  border-radius: 200px;
  cursor: pointer;
}
.sz_xxk ul li.on {
  background: #ffb64d;
  color: #fff;
}

.sz_xx_box {
}
.sz_xx_box .box {
  display: none;
}
.sz_xx_box .box.on {
  display: block;
}
.sz_xx_box .box p {
  font-size: 0.18rem;
  color: #333333;
  text-indent: 2em;
  line-height: 0.36rem;
  margin-bottom: 0.2rem;
}
.box_teacherx {
  border-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 0.3rem;
}
.box_teacherx .con {
  padding-top: 38px;
}
.box_teacher .con .xx {
  display: flex;
  flex-wrap: wrap;
}
.box_teacher .con .xx p {
  margin-bottom: 0.1rem;
  width: 50%;
}

@media (max-width: 1024px) {
  .sz_xxk ul li {
    margin: 0 0.1rem;
    padding: 0.1rem 0.2rem;
    font-size: 0.18rem;
  }
}

@media (max-width: 650px) {
  .box_teacher .con .xx p {
    width: 100%;
  }
  .sz_xxk ul {
    flex-wrap: wrap;
  }
  .sz_xxk ul li {
    margin-bottom: 0.1rem;
  }
}

.ej_zzjg {
}
.zzjg_box {
  margin-bottom: 0.3rem;
}
.zzjg_box .x_tit {
  position: relative;
  padding-left: 0.3rem;
  margin-bottom: 0.3rem;
  font-size: 0.26rem;
}
.zzjg_box .x_tit::after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  border: 0.02rem solid #0771cf;
  position: absolute;
  left: 0;
  top: calc(50% - 0.05rem);
}

.zzjg_box ul {
  margin: 0 -0.15rem;
  display: flex;
  flex-wrap: wrap;
}
.zzjg_box ul li {
  background: #fff;
  overflow: hidden;
  width: calc(33.33% - 0.3rem);
  margin: 0 0.15rem 0.3rem;
  border-radius: 0.05rem;
  transition: 0.4s;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.08);
}
.zzjg_box ul li a {
}
.zzjg_box ul li .box {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem;
  border-radius: 2px;
  border-bottom: 1px solid #b20e17;
}
.zzjg_box ul li .box .bt {
  font-size: 0.18rem;
  color: #333333;
  transition: 0.4s;
  width: calc(100% - 0.2rem);
  line-height: 0.24rem;
}
.zzjg_box ul li .box .jt {
  width: 0.13rem;
  height: 0.14rem;
  transition: 0.4s;
}

.zzjg_box ul li:hover {
  background: #b20e17;
}
.zzjg_box ul li:hover .box .bt {
  color: #fff;
  font-weight: bold;
}
.zzjg_box ul li:hover .box .jt {
}

@media (max-width: 1024px) {
  .zzjg_box ul li {
    width: calc(50% - 0.3rem);
  }
}

@media (max-width: 650px) {
  .zzjg_box ul li {
    width: 100%;
    margin-bottom: 0.1rem;
  }
  .zzjg_box ul li .box {
    padding: 0.15rem;
  }
}

.ej_rdxw {
  width: 100%;
  margin-top: 0.7rem;
}
.ej_rdxw .x_tit {
  width: 100%;
  margin-bottom: 0.4rem;
}
.ej_rdxw .x_tit .bt {
  font-size: 0.36rem;
  color: #323232;
  text-align: center;
  display: table;
  margin: 0 auto;
  padding-bottom: 0.22rem;
  position: relative;
}
.ej_rdxw .x_tit .bt::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.03rem;
  background: #b20e17;
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.25rem);
}
.rdxw_lb {
  overflow: hidden;
  position: relative;
  padding-bottom: 0.3rem;
}
.rdxw_lb a {
}
.rdxw_lb .img {
}
.rdxw_lb .con {
  padding-top: 0.14rem;
}
.rdxw_lb .con .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #323232;
  margin-bottom: 0.07rem;
  height: 0.56rem;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.rdxw_lb .con .sj {
  font-size: 0.14rem;
  color: #b20e17;
}

.rdxw_lb .swiper-pagination {
  display: none;
  bottom: 0;
}
.rdxw_lb .swiper-pagination span {
  width: 0.12rem;
  height: 0.12rem;
  opacity: 1;
  background: none;
  border: 1px solid #b20e17;
}
.rdxw_lb .swiper-pagination span.swiper-pagination-bullet-active {
  background: #b20e17;
}

@media (max-width: 1024px) {
  .rdxw_lb .swiper-pagination {
    display: block;
  }
  .ej_rdxw {
    margin-top: 0.3rem;
  }
}
@media (max-width: 650px) {
  .ej_rdxw .x_tit .bt {
    font-size: 0.3rem;
  }
}

.ej_left {
  width: 100%;
  float: left;
}

.ej_list2 {
  width: 100%;
}
.ej_list2 ul {
}
.ej_list2 li {
  border-bottom: 1px solid #eeeeee;
}
.ej_list2 li:first-child .box {
  padding-top: 0;
}
.ej_list2 a {
}
.ej_list2 .box {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0;
  align-items: center;
}
.ej_list2 .sj {
  background-size: cover !important;
  width: 0.7rem;
  height: 0.7rem;
  padding-top: 0.05rem;
}
.ej_list2 .sj .p1 {
  font-size: 0.3rem;
  color: #b20e17;
  text-align: center;
  margin-bottom: 0.06rem;
}
.ej_list2 .sj .p2 {
  font-size: 0.14rem;
  color: #b20e17;
  text-align: center;
}
.ej_list2 .con {
  width: calc(100% - 0.85rem);
}
.ej_list2 .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #323232;
  max-height: 0.56rem;
  transition: 0.4s;
  font-weight: 600;
  margin-bottom: 0.08rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ej_list2 .zy {
  font-size: 0.14rem;
  line-height: 0.24rem;
  max-height: 0.56rem;
  transition: 0.4s;
  color: #999999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ej_list2 a:hover .bt {
  color: #b20e17;
}

.rj_rl_out {
  width: 3.6rem;
  float: right;
}
.rl_box {
  margin-bottom: 0.2rem;
}
.rl_box img {
}

.ej_tjyd {
  background: #f5faff;
  padding: 0.35rem 0.2rem;
}
.ej_tjyd h2 {
  font-size: 0.28rem;
  color: #323232;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.ej_tjyd ul {
}
.ej_tjyd li + li {
  border-top: 1px solid #e5eaef;
}
.ej_tjyd li .box {
  padding: 0.16rem 0;
}
.ej_tjyd li:first-child .box {
  padding-top: 0;
}
.ej_tjyd li:last-child .box {
  padding-bottom: 0;
}
.ej_tjyd li a {
}
.ej_tjyd li .bt {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #323232;
  margin-bottom: 0.05rem;
  max-height: 0.56rem;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ej_tjyd li .sj {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #b20e17;
}

.ej_tjyd li a:hover .bt {
  color: #b20e17;
}

@media (max-width: 1024px) {
  .ej_left {
    width: 100%;
  }
  .rj_rl_out {
    width: 100%;
    margin-top: 0.1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ej_tjyd {
    width: 100%;
  }
}

.ej_xxk1 {
  margin-top: -0.25rem;
  position: relative;
  z-index: 6;
}
.ej_xxk1 ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ej_xxk1 ul li {
  box-shadow: 0 0 0.24rem rgba(43, 63, 73, 0.13);
  width: 2.65rem;
  background: #fff;
  border-radius: 200px;
  padding: 0.05rem 0.2rem;
  margin: 0 0.05rem;
  cursor: pointer;
  transition: 0.4s;
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 0.7rem;
}
.ej_xxk1 ul li p {
  font-size: 0.18rem;
  line-height: 0.26rem;
  color: #323232;
  text-align: center;
  transition: 0.4s;
}

.ej_xxk1 ul li.on {
  background: #b20e17;
}
.ej_xxk1 ul li.on p {
  color: #fff !important;
}

.ej_xxk1 ul li:hover p {
  color: #b20e17;
}

.ej_kyxm {
}
.ej_kyxm .box {
  display: none;
}
.ej_kyxm .box.on {
  display: block;
}
.ej_kyxm table {
  width: 100%;
}
.ej_kyxm table .firstRow {
  background: #b20e17 !important;
}
.ej_kyxm table .firstRow td {
  border: 1px solid #b20e17;
  width: 1%;
  min-width: 0.5rem;
}
.ej_kyxm table .firstRow td + td {
  width: 18%;
}
.ej_kyxm table .firstRow td + td + td {
  width: 16%;
}
.ej_kyxm table .firstRow td + td + td + td {
  width: 6%;
}
.ej_kyxm table .firstRow td + td + td + td + td {
  width: 3%;
}
.ej_kyxm table .firstRow td p {
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.ej_kyxm table tr {
  background: #fff;
}
.ej_kyxm table tr.row-color-1 {
  background: #f3f8fd;
}
.ej_kyxm table td {
  border: 1px solid #ecf1f5;
  padding: 0.15rem 0.2rem;
}
.ej_kyxm table p {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #323232;
}

.ej_kyxm table td:first-child {
  text-align: center;
}
.ej_kyxm table td:first-child p {
  text-align: center;
}

.ej_kyxm table td:last-child {
  text-align: center;
}
.ej_kyxm table td:last-child p {
  text-align: center;
}

.ej_more {
  margin-top: 0.3rem;
  cursor: pointer;
}

.ej_more p {
  background: #f2f2f2;
  font-size: 0.16rem;
  color: #666666;
  text-align: center;
  padding: 0.21rem 0;
  transition: 0.4s;
}

.ej_more.no p {
  background: #fff !important;
  color: #333 !important;
}

.ej_more:hover p {
  color: #fff;
  background: #b20e17;
}

.ej_kyxm table h3 {
  display: none;
}

@media (max-width: 1024px) {
  .ej_xxk1 {
    margin-top: 0.2rem;
  }
  .ej_xxk1 ul li {
    width: calc(33.33% - 0.1rem);
    margin-bottom: 0.1rem;
    padding: 0.1rem 0.15rem;
  }

  .ej_kyxm table .firstRow {
    display: none;
  }

  .ej_kyxm table td {
    width: 100%;
    display: block;
    position: relative;
    padding-left: 1.2rem;
  }

  .ej_kyxm table h3 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    width: 1rem;
    justify-content: center;
    font-size: 0.16rem;
    border-right: 1px solid #ecf1f5;
  }
}

@media (max-width: 650px) {
  .ej_xxk1 ul li {
    width: calc(50% - 0.1rem);
    padding: 0.05rem 0.1rem;
    min-height: 0.6rem;
  }
  .ej_xxk1 ul li p {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}

.ej_xslw {
}

.ej_xslw table .firstRow td {
  border: 1px solid #b20e17;
  width: 1%;
  min-width: 0.5rem;
}
.ej_xslw table .firstRow td + td {
  width: 20%;
}
.ej_xslw table .firstRow td + td + td {
  width: 6%;
}
.ej_xslw table .firstRow td + td + td + td {
  width: 6%;
}
.ej_xslw table .firstRow td + td + td + td + td {
  width: 3%;
}

.ej_xslw table td {
  text-align: center;
}
.ej_xslw table td p {
  text-align: center;
}

.ej_xszz {
}
.ej_xszz ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ej_xszz li {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.3rem;
  background: #f6f6f6;
}
.ej_xszz ul a {
  display: flex;
}
.ej_xszz ul .img_out {
  width: 2.3rem;
  padding: 0.03rem 0.37rem;
}
.ej_xszz ul .img {
  padding-bottom: 190%;
}
.ej_xszz ul .con {
  width: calc(100% - 2.3rem);
  padding: 0.3rem;
  border: 1px solid #e3e3e3;
  border-left: 1px solid #fff;
  background: #fff;
}
.ej_xszz ul .con .bt {
  font-size: 0.18rem;
  color: #323232;
  font-weight: 600;
  line-height: 0.28rem;
  transition: 0.4s;
}
.ej_xszz ul .con .line {
  width: 100%;
  height: 1px;
  background: #eeeeee;
  margin: 0.3rem 0 0.26rem;
}
.ej_xszz ul .con .xx {
}
.ej_xszz ul .con .xx div {
  display: flex;
}
.ej_xszz ul .con .xx .p2 {
  font-size: 0.16rem;
  color: #323232;
  line-height: 0.2rem;
  width: calc(100% - 0.9rem);
}
.ej_xszz ul .con .xx .p1 {
  font-weight: bold;
  width: 0.9rem;
  display: inline-block;
  float: left;
  text-align: justify;
  font-size: 0.16rem;
  color: #323232;
  line-height: 0.2rem;
}
.ej_xszz ul .con .xx .p1::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  line-height: 1px;
}
.ej_xszz ul .con .xq {
  font-size: 0.14rem;
  color: #b20e17;
  padding: 0.1rem 0.2rem;
  border: 1px solid #b20e17;
  border-radius: 200px;
  display: table;
  transition: 0.4s;
}
.ej_xszz ul li:hover .con .xq {
  background: #b20e17;
  color: #fff;
}

.ej_xszz ul li:hover .con .bt {
  color: #b20e17;
}

@media (max-width: 1024px) {
  .ej_xszz li {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .ej_xszz ul .img_out {
    width: 1rem;
    padding: 0.1rem;
    display: flex;
    align-items: center;
  }
  .ej_xszz ul .img {
  }
  .ej_xszz ul .con {
    width: calc(100% - 1rem);
    padding: 0.15rem;
  }
  .ej_xszz ul .con .line {
    margin: 0.1rem 0;
  }
  .ej_xszz ul .con .xx .p2 {
    line-height: 0.18rem;
  }
}

.kyxm_fs {
  background: #f7f7f7;
  margin-top: 1.45rem;
  padding: 0.3rem 0 0.5rem;
}
.kyxm_fs .w14 {
  display: flex;
  flex-wrap: wrap;
}
.kyxm_fs .pic {
  width: 4.45rem;
}
.kyxm_fs .pic img {
  width: 100%;
}
.kyxm_fs .con {
  width: calc(100% - 4.45rem);
  padding: 0.4rem;
}
.kyxm_fs .con .bt {
  font-size: 0.22rem;
  color: #323232;
  line-height: 0.3rem;
  font-weight: 600;
}
.kyxm_fs .con .xx {
  margin-top: 0.22rem;
}
.kyxm_fs .con .xx p {
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.3rem;
}

.kyxm_fs .con .xx a {
  color: #b20e17;
}

.kyxm_ul {
}
.kyxm_ul li {
  border-bottom: 1px solid #ececec;
  transition: 0.4s;
}
.kyxm_ul li a {
  padding: 0.3rem 0;
  display: block;
}
.kyxm_ul li:first-child a {
  padding-top: 0;
}
.kyxm_ul li .bt {
  font-size: 0.22rem;
  color: #323232;
  line-height: 0.3rem;
  font-weight: 600;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kyxm_ul li .zy {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #666666;
  max-height: 0.52rem;
  margin: 0.14rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.kyxm_ul li .sj {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #b20e17;
}

.kyxm_ul li:hover .bt {
  color: #b20e17;
}
.kyxm_ul li:hover {
  border-bottom: 1px solid #b20e17;
}

@media (max-width: 1024px) {
  .kyxm_fs {
    margin-top: 60px;
    padding: 0;
    padding-bottom: 1px;
  }
  .kyxm_fs .w14 {
    margin: 0.2rem auto;
  }
  .kyxm_fs .con {
    padding: 0;
    padding-left: 0.15rem;
    width: calc(100% - 3rem);
  }
  .kyxm_fs .pic {
    width: 3rem;
  }

  .kyxm_ul li .bt {
    font-size: 0.18rem;
  }
}

@media (max-width: 650px) {
  .kyxm_fs .w14 {
    flex-wrap: wrap;
  }
  .kyxm_fs .pic {
    width: 100%;
  }
  .kyxm_fs .con {
    width: 100%;
    padding: 0;
    margin-top: 0.2rem;
  }

  .kyxm_fs .con .xx {
    margin-top: 0.1rem;
  }

  .kyxm_ul li .zy {
    margin: 0.05rem 0;
  }
  .kyxm_ul li a {
    padding: 0.15rem 0;
  }
}

.nry_sz {
}
.sz_nr_fs {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-left: 0.3rem;
}
.sz_nr_fs .pic {
  width: 2.4rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0.54rem rgba(0, 109, 229, 0.27);
}
.sz_nr_fs .pic img {
  display: block;
  width: 100%;
}
.sz_nr_fs .con {
  width: calc(100% - 2.4rem);
  padding-left: 0.3rem;
  min-height: 2.6rem;
  padding-top: 0.2rem;
  position: relative;
}
.sz_nr_fs .con::after {
  content: "";
  width: calc(100% + 3rem);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: #f0f6fc;
  height: 100%;
}

.sz_nr_fs .con p {
  position: relative;
  z-index: 3;
}

.sz_nr_fs .con .bt {
  font-size: 0.34rem;
  color: #323232;
  line-height: 0.4rem;
  margin-bottom: 0.18rem;
}
.sz_nr_fs .con .zc {
  font-size: 0.18rem;
  color: #323232;
  line-height: 0.28rem;
  min-height: 0.28rem;
  margin-bottom: 0.05rem;
}
.sz_nr_fs .con .xx {
  position: relative;
  z-index: 3;
}
.sz_nr_fs .con .xx p {
  font-size: 0.16rem;
  color: #323232;
  padding-left: 0.22rem;
  line-height: 0.3rem;
  background-size: 0.16rem !important;
}
.sz_nr_fs .con .xx p + p {
}

.sz_nr_box {
}
.sz_nr_box .xxk {
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  margin-bottom: 0.3rem;
}
.sz_nr_box .xxk li {
  cursor: pointer;
}
.sz_nr_box .xxk li p {
  font-size: 0.18rem;
  color: #323232;
  padding: 0.13rem 0.23rem;
}
.sz_nr_box .xxk li.on p {
  color: #fff;
  background: #b20e17;
}

.nr_xx {
}
.nr_xx .box {
}
.nr_xx .box.on {
}
.nr_xx .box p {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #000000;
  margin-bottom: 0.2rem;
}
.nr_xx .box img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 650px) {
  .sz_nr_fs .pic {
    width: 1.5rem;
  }
  .sz_nr_fs {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0.2rem;
  }
  .sz_nr_fs .con {
    width: 100%;
    padding: 0;
    padding-top: 0.2rem;
    min-height: unset;
  }
  .sz_nr_fs .con::after {
    display: none;
  }
  .sz_nr_fs .con .zc {
    min-height: unset;
  }

  .sz_nr_box {
  }
  .sz_nr_box .xxk_out {
    overflow: auto;
    margin-bottom: 0.2rem;
  }
  .sz_nr_box .xxk {
    min-width: 5rem;
    margin-bottom: 0rem;
  }

  .sz_nr_fs .con .bt {
    font-size: 0.24rem;
  }
  .sz_nr_fs .con .zc {
    font-size: 0.16rem;
  }
  .sz_nr_fs .con .xx p {
    font-size: 0.14rem;
  }
  .sz_nr_box .xxk li p {
    padding: 0.1rem 0.2rem;
  }

  .nr_xx .box p {
    font-size: 0.16rem;
    margin-bottom: 0.1rem;
  }
}

.pb_sys_style1 .p_no_d {
  border: 1px solid #b20e17 !important;
  background-color: #b20e17 !important;
}

.keywordfontcolor1115630 {
  font-size: 0.18rem !important;
  color: #f00 !important;
}
