@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

img {
  border: none;
  /*width: 100%;2023-4-6ji*/
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

i,
s,
em,
u {
  font-style: normal;
  text-decoration: none;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}

.clearfix:after {
  content: "";
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden;
  display: block;
}

.clearfix {
  *zoom: 1;
}

textarea,
input,
button {
  font: inherit;
  outline: none;
  width: 100%;
  background-color: transparent;
  border: 0;
  color: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: transparent;
}

body {
  font: 14px/1.5 Microsoft YaHei SimSun, arial;
  color: #333;
}

/* 公共 */

body {
  overflow-x: hidden;
}

.swiper-button-prev,
.swiper-button-next:focus {
  outline: none;
}

.pc_only {
  display: block;
}

.mo_only {
  display: none;
}

.bd {
  max-width: 1360px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }

  .mo_only {
    display: block;
  }

  .bd {
    max-width: none;
    margin: 0 15px;
  }
}

.top {
  position: relative;
  max-width: 1360px;
  height: 140px;
  margin: 0 auto;
}

.top_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: right;
  background-image: url("../img/t_bg.png");
}

.logo {
  position: relative;
  top: 42px;
}

.logo h1 {
  font-size: 0;
  width: 582px;
}

.logo h1 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    max-width: none;
    height: 64px;
    margin: 0;
    border-bottom: 1px solid #dcdcdc;
    background-color: #fff;
    z-index: 100;
  }

  .top_height {
    height: 64px;
  }

  .top_bg {
    display: none;
  }

  .logo {
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
  }

  .logo h1 {
    width: 244px;
  }
}

.search {
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: 38px;
  margin-left: 102px;
}

.search p {
  width: 298px;
  border: 1px solid #dedede;
  border-radius: 24px;
  padding-left: 18px;
  padding-right: 42px;
  background-color: #fff;
}

.search p input {
  line-height: 44px;
  font-size: 18px;
  color: #333;
}

.search p s {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  margin-right: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f83c00;
  background-image: url(../img/search_1.png);
}

@media screen and (max-width: 768px) {
  .search {
    position: static;
    left: 0;
    margin: 20px 0;
  }

  .search p {
    width: auto;
    border: 1px solid #ebebeb;
    border-radius: 24px;
    padding-left: 14px;
    padding-right: 38px;
    background-color: #ebebeb;
    margin: 0 26px;
    position: relative;
  }

  .search p input {
    line-height: 38px;
  }

  .search p s {
    margin-top: -17px;
    width: 34px;
    height: 34px;
  }
}

/* 顶部 */

.menu {
  background-color: #f83c00;
}

.menu_list {
  padding-left: 15px;
  padding-right: 10px;
  white-space: nowrap;
  width: 100%;
}

.menu_list dl {
  position: relative;
  float: left;
  padding: 0 32px;
  color: #fff;
  transition: 0.4s;
}

.menu_list dl.cur {
  background-color: #fff;
  border-top: 3px solid #f83c00;
  color: #333;
}

.menu_list dl:first-child dt {
  font-size: 0;
}

.menu_list dl:first-child dt * {
  display: inline-block;
  vertical-align: middle;
}

.menu_list dl:first-child dt i {
  width: 22px;
  height: 22px;
  background-image: url("../img/home.png");
}

.menu_list dl:first-child dt span {
  font-size: 18px;
  color: #fff;
  padding-left: 18px;
}

.menu_list dl dt {
  font-size: 18px;
  line-height: 56px;
}

.menu_list dl dd {
  position: absolute;
  left: 0;
  top: 56px;
  min-width: 188px;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 10;
}

.menu_list dl.child:hover {
  color: #333;
  background-color: #fff;
  transition: 0.4s;
}

.menu_list dl.child:hover dd {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}

.menu_list dl dd ul {
  background-color: #fff;
}

.menu_list dl dd li {
  position: relative;
  padding: 0 40px;
  line-height: 52px;
  font-size: 17px;
}

.menu_list dl dd li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background-color: #f83c00;
}

.menu_list dl dd li:hover {
  background-color: #f1f1f1;
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .menu {
    background-color: transparent;
  }

  .mo_menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 64px;
    width: 64px;
    background-image: url("../img/m_menu.png");
    background-size: 64px;
    border-left: 1px solid #dcdcdc;
    z-index: 101;
  }

  .mo_menu.on {
    background-image: url("../img/m_close.png");
  }

  .menu_list {
    padding: 0;
    background-color: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 65px;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
    display: none;
  }

  .menu_list dl {
    color: #333;
    float: none;
    padding: 0;
    margin: 0 28px;
    border-bottom: 1px dashed #d1d1d1;
  }

  .menu_list dl.cur {
    background-color: transparent;
    border-top: none;
  }

  .menu_list dl:first-child {
    display: none;
  }

  .menu_list dl.child:hover dd {
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .menu_list dl dt {
    text-align: center;
  }

  .menu_list dl dd {
    position: static;
    top: 0;
    min-width: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
  }

  .menu_list dl dd ul {
    overflow: hidden;
    margin-top: -10px;
  }

  .menu_list dl dd ul li {
    float: left;
    width: 50%;
    line-height: 40px;
    box-sizing: border-box;
  }

  .menu_list dl dd li::before {
    margin-top: -5px;
    width: 6px;
    height: 10px;
    background-color: transparent;
    background: url(../img/entry_on_1.png) no-repeat center;
    background-size: 6px;
  }
}

/* 菜单 */

.slogan {
  margin: 26px 0;
}

.slogan_list {
  display: flex;
}

.slogan_list li {
  width: 33.33%;
  padding: 0 10px;
  box-sizing: border-box;
}

.slogan_list li h6 {
  font-size: 0;
}

.slogan_list li h6 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .slogan {
    margin: 14px 0;
  }

  .slogan_list {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    font-size: 0;
  }

  .slogan_list li {
    padding: 0;
    box-sizing: border-box;
    display: inline-block;
    width: 198px;
  }

  .slogan_list li h6 {
    margin-right: 8px;
  }
}

.hot {
  margin: 26px auto;
  max-width: 1360px;
  overflow: hidden;
}

.hot_panel {
  height: 442px;
  margin: 0 10px;
}

.hot_left {
  float: left;
  width: 50%;
}

.hot_right {
  float: right;
  width: 50%;
}

.hp_in_box {
  position: relative;
}

.hp_swiper {
  height: 440px;
}

.hp_swiper dl {
  position: relative;
  height: 100%;
}

.hp_swiper dt {
  font-size: 0;
  height: 100%;
}

.hp_swiper dt img {
  width: 100%;
  height: 100%;
}

.hp_swiper dd {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 38px;
  padding: 0 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgba(255, 255, 255, 0.9);
}

.hp_swiper .hp_pagination {
  display: none;
}

.hp_tab {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 38px;
  font-size: 0;
  z-index: 1;
}

.hp_tab li {
  display: inline-block;
  /*width: 20px;*/
  padding: 0 6px;
  height: 20px;
  line-height: 20px;
  color: #000;
  font-size: 14px;
  font-family: Arial;
  background-color: #fff;
  margin-left: 1px;
  cursor: pointer;
  transition: 0.4s;
}

.hp_tab li:hover {
  background-color: #f83c00;
  color: #fff;
  transition: 0.4s;
}

.hp_tab li.on {
  background-color: #f83c00;
  color: #fff;
  transition: 0.4s;
}

.news_list {
  padding: 18px 14px;
  border: 1px solid #e8e8e8;
  height: 440px;
  box-sizing: border-box;
}

.news_list h3 {
  position: relative;
  color: #000;
  background-color: #fff;
  line-height: 1;
}

.news_list h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 6px solid #f83c00;
  margin-left: -14px;
}

.news_list h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  border-bottom: 1px solid #e8e8e8;
}

.news_list h3 span {
  font-size: 18px;
  padding-right: 10px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.news_list h3 em {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  padding-left: 14px;
  font-family: SimSun;
  background-color: #fff;
  z-index: 1;
}

.news_list ul {
  margin-top: 8px;
}

.news_list li {
  position: relative;
  padding-left: 26px;
  padding-right: 66px;
  line-height: 38px;
  border-top: 1px solid #e8e8e8;
}

.news_list li:first-child {
  border-top: none;
}

.news_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  margin-left: 8px;
  width: 8px;
  height: 8px;
  background-color: #f83c00;
}

.news_list li span {
  font-size: 16px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_list li em {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: Arial;
  color: #666;
}

.news_list li:hover span {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .hot {
    margin: 0 15px;
    max-width: none;
  }

  .hot_panel {
    height: auto;
    margin: 0;
  }

  .hot_left {
    float: none;
    width: 100%;
  }

  .hot_right {
    float: none;
    width: 100%;
  }

  .hp_swiper {
    height: auto;
    padding-bottom: 40px;
  }

  .hp_swiper .swiper-pagination-bullet {
    width: 34px;
    height: 3px;
    border-radius: 0;
    background-color: #ccc;
    opacity: 1;
  }

  .hp_swiper .swiper-pagination-bullet-active {
    background-color: #f73b00;
  }

  .hp_swiper dd {
    line-height: 1.6;
    padding: 4px 12px;
    white-space: normal;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 16px;
    color: #fff;
    background-color: #f73b00;
  }

  .hp_swiper .hp_pagination {
    display: block;
  }

  .hp_tab {
    display: none;
  }

  .news_list {
    padding: 10px 14px;
    border: none;
    height: auto;
  }

  .news_list h3::before {
    border-left: 4px solid #f83c00;
  }

  .news_list h3::after {
    bottom: 9px;
  }

  .news_list h3 span {
    padding-right: 8px;
  }

  .news_list h3 em {
    padding-left: 6px;
  }

  .news_list ul {
    margin-top: 16px;
  }

  .news_list li {
    padding: 0;
    line-height: 1.6;
    border-top: none;
    margin: 8px 0;
  }

  .news_list li::before {
    display: none;
  }

  .news_list li a {
    display: flex;
    align-items: flex-start;
  }

  .news_list li span {
    font-size: 16px;
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    padding-left: 10px;
  }

  .news_list li em {
    position: relative;
    top: 2px;
    transform: translateY(0);
    white-space: nowrap;
  }
}

.ad ul {
  display: flex;
}

.ad ul li {
  width: 50%;
}

.ad ul li dl {
  margin: 0 10px;
  font-size: 0;
}

.ad ul li dl img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .ad {
    margin-top: -10px;
  }

  .ad ul {
    flex-direction: column;
  }

  .ad ul li {
    width: 100%;
    margin: 10px 0;
  }

  .ad ul li dl {
    margin: 0;
  }
}

.news_box {
  overflow: hidden;
  margin: 26px 0;
}

.news_item {
  float: left;
  width: 33.33%;
  padding: 0 10px;
  box-sizing: border-box;
}

.news_item .news_list {
  height: 290px;
}

.news_item .news_list li {
  border-top: none;
}

.news_item .news_list li.nl_1 {
  padding-left: 7px;
  margin: 16px 0 14px;
  padding-right: 0;
}

.news_item .news_list li.nl_1::before,
.news_item .news_list li.nl_2::before {
  display: none;
}

.news_item .news_list li.nl_1 dl {
  display: flex;
  align-items: flex-start;
}

.news_item .news_list li.nl_1 dt img {
  width: 140px;
  height: 94px;
  display: block;
}

.news_item .news_list li.nl_1 dd {
  margin-left: 18px;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.news_item .news_list li.nl_2 {
  padding-left: 7px;
  margin: 16px 0 0;
  padding-right: 0;
}

.news_item .news_list li.nl_2 dt {
  font-size: 0;
  line-height: 1;
}

.news_item .news_list li.nl_2 dt img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .news_box {
    margin: 6px 0;
  }

  .news_item {
    float: none;
    width: 100%;
    padding: 0;
  }

  .news_item .news_list {
    height: auto;
  }

  .news_item .news_list li.nl_1,
  .news_item .news_list li.nl_2 {
    padding-left: 0;
  }

  .news_item .news_list li.nl_1 dd {
    margin-left: 14px;
  }
}

/* 首页 */

.foot {
  background-color: #f1f1f1;
}

.fp_link {
  width: 1360px;
  margin: 0 auto;
  padding: 30px 12px;
  box-sizing: border-box;
  overflow: hidden;
}

.fpl_left {
  float: left;
  width: 38px;
  height: 140px;
  font-size: 18px;
  color: #fff;
  padding: 14px 10px;
  background-color: #f83c00;
  box-sizing: border-box;
}

.fpl_middle {
  float: left;
  height: 140px;
  background-color: #fff;
  width: 1120px;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 2;
  box-sizing: border-box;
}

.fpl_middle u {
  color: #999;
  padding: 0 5px;
}

.fpl_right {
  float: right;
}

.fpl_right img {
  width: 140px;
  height: 140px;
  display: block;
}

.fp_info {
  text-align: center;
  color: #fff;
  background-color: #f73b00;
  line-height: 1;
  font-size: 17px;
  padding: 10px 0;
}

.fp_info u {
  padding: 0 15px;
  position: relative;
  top: -1px;
  color: rgba(255, 255, 255, 0.8);
}

.fp_copyright {
  padding: 12px 0;
  position: relative;
}

.fpc_left {
  text-align: center;
}

.fpc_left dl {
  font-size: 14px;
  font-family: Arial;
  line-height: 1.8;
}

.fpc_left dl span {
  padding: 0 8px;
}

.fpc_right {
  display: none;
}

@media screen and (max-width: 768px) {
  .foot {
    background-color: #fff;
  }

  .fp_link {
    width: auto;
    margin: 0 24px;
    padding: 14px 10px;
    border: 1px solid #e8e8e8;
  }

  .fp_link_hide {
    display: none;
  }

  .fpl_left {
    float: none;
    width: auto;
    height: auto;
    color: #000;
    padding: 8px 0;
    border-top: 4px solid #f83c00;
    background-color: transparent;
    display: inline-block;
    margin-top: -14px;
  }

  .fpl_middle {
    float: none;
    height: auto;
    width: auto;
    padding: 0;
  }

  .fpl_right {
    display: none;
  }

  .fp_info {
    font-size: 15px;
    padding: 15px 0;
    margin: 24px 0;
  }

  .fp_info u {
    padding: 0 15px;
    position: relative;
    top: -1px;
    color: rgba(255, 255, 255, 0.8);
  }

  .fp_copyright {
    min-height: 130px;
    padding: 24px 0;
    overflow: hidden;
    margin: -24px 24px;
    box-sizing: border-box;
  }

  .fpc_left {
    text-align: left;
    float: left;
    margin-right: 106px;
  }

  .fpc_left dl {
    font-size: 12px;
  }

  .fpc_left dl:last-child {
    display: none;
  }

  .fpc_left dl span {
    padding: 0;
    display: block;
  }

  .fpc_right {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 90px;
    margin-top: 24px;
  }

  .fpc_right img {
    width: 100%;
  }
}

/* 底部 */

.crumbs {
  border-bottom: 1px solid #e0e0e0;
  line-height: 56px;
}

.crumbs a {
  font-size: 16px;
}

.crumbs u {
  font-family: SimSun;
  padding: 0 20px;
  color: #ccc;
}

.main {
  position: relative;
  padding-bottom: 30px;
}

.content {
  margin: 30px 10px 30px 350px;
}

.content_title {
  position: relative;
  font-size: 25px;
  padding-bottom: 18px;
  border-bottom: 4px solid #f83c00;
  line-height: 1;
  display: inline-block;
}

.content_box {
  border: 1px solid #e8e8e8;
}

.content_news_list {
  margin: 10px 20px;
}

.content_news_list li {
  position: relative;
  padding-left: 26px;
  padding-right: 130px;
  line-height: 44px;
  border-bottom: 1px solid #e8e8e8;
}

.content_news_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  margin-left: 8px;
  width: 8px;
  height: 8px;
  background-color: #f83c00;
}

.content_news_list li span {
  font-size: 16px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content_news_list li em {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: Arial;
  color: #666;
}

.content_news_list li:hover {
  background-color: #f6f6f6;
  transition: 0.4s;
}

.content_news_list li:hover span {
  text-decoration: underline;
}

.content_func {
  position: relative;
}

.content_amplify {
  position: absolute;
  right: 0;
  top: 0;
  font-style: initial;
  font-family: Arial;
  display: flex;
  align-items: center;
  background-color: #fff;
  z-index: 1;
}

.content_amplify li {
  width: 28px;
  height: 26px;
  line-height: 26px;
  border-radius: 4px;
  text-align: center;
  margin-left: 8px;
  cursor: pointer;
}

.content_amplify li.add {
  font-size: 16px;
}

.content_amplify li.reduce {
  font-size: 20px;
}

.content_amplify li.on {
  background-color: #f83c00;
  color: #fff;
}

.content_relate {
  padding: 30px 0;
}

.content_relate .content_news_list li:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .main {
    padding: 20px 0 0;
  }

  .content {
    margin: 0;
  }

  .content_title {
    font-size: 18px;
    padding-bottom: 0;
    border-bottom: none;
    display: block;
  }

  .content_title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid #e8e8e8;
  }

  .content_title span {
    position: relative;
    padding-left: 10px;
    padding-right: 8px;
    border-left: 3px solid #f83c00;
    background-color: #fff;
    z-index: 1;
  }

  .content_box {
    border: none;
  }

  .content_news_list {
    margin: 16px 0;
  }

  .content_news_list li {
    padding: 8px 0;
    line-height: 1.6;
    border-top: none;
  }

  .content_news_list li::before {
    display: none;
  }

  .content_news_list li a {
    display: flex;
    align-items: flex-start;
  }

  .content_news_list li span {
    font-size: 16px;
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    padding-left: 10px;
  }

  .content_news_list li em {
    position: relative;
    top: 2px;
    right: 0;
    transform: translateY(0);
    white-space: nowrap;
  }

  .content_amplify {
    top: 50%;
    transform: translateY(-50%);
  }
}

.collect {
  line-height: 46px;
  background-color: #f6f6f6;
  display: flex;
  justify-content: flex-end;
  margin: 20px;
}

.collect li {
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.4s;
}

.collect li:hover {
  filter: brightness(2);
  transition: 0.4s;
}

.collect li span {
  font-size: 15px;
  padding-left: 8px;
}

.collect li s {
  width: 20px;
  height: 20px;
}

.c_1 {
  background-image: url("../img/collect_1.png");
}

.c_2 {
  background-image: url("../img/collect_2.png");
}

@media screen and (max-width: 768px) {
  .collect {
    line-height: 36px;
    background-color: transparent;
    justify-content: center;
    margin: 20px;
  }

  .collect li {
    justify-content: center;
    width: 110px;
    padding: 0;
    border: 1px solid #999;
    margin: 0 20px;
    border-radius: 4px;
  }

  .c_1 {
    background-image: url("../img/collect_on_1.png");
  }

  .c_2 {
    background-image: url("../img/collect_on_2.png");
  }
}

.details_intro {
  padding: 30px 40px;
  /* max-width: 990px; */
  overflow-x: auto;
}

.details_intro h3 {
  font-size: 28px;
  text-align: center;
}

.details_intro h4 {
  font-size: 16px;
  text-align: center;
  background-color: #f6f6f6;
  line-height: 45px;
  margin: 12px 0;
}

.details_intro p {
  font-size: 16px;
  color: #333;
  line-height: 2;
}

.details_intro.on p {
  font-size: 18px !important;
}

.details_intro.on p {
  line-height: 2 !important;
}

@media screen and (max-width: 768px) {
  .details_intro {
    padding: 15px 5px;
    text-align: justify;
    max-width: 100%;
    box-sizing: border-box;
  }

  .details_intro h3 {
    font-size: 20px;
  }

  .details_intro h4 {
    font-size: 14px;
    line-height: 28px;
  }

  .details_intro p img {
    width: 100%;
  }
}

.side {
  position: absolute;
  left: 0;
  top: 0;
  width: 310px;
}

.side_panel {
  border: 1px solid #e8e8e8;
}

.side_title {
  font-size: 20px;
  color: #fff;
  line-height: 52px;
  background-color: #f83c00;
  padding: 0 14px;
}

.side_list li {
  position: relative;
  line-height: 54px;
  padding: 0 40px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.4s;
}

.side_list li em {
  color: #f83c00;
}

.side_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: url("../img/s_c_1.png") no-repeat center;
  background-size: 10px;
}

.side_list li:hover,
.side_list li.on {
  background-color: #f1f1f1;
  transition: 0.4s;
}

.side_image li {
  margin: 22px 0;
  font-size: 0;
}

.side_image li img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .side {
    position: static;
    width: auto;
  }

  .side_panel {
    display: none;
  }

  .side_image ul {
    white-space: nowrap;
    overflow-x: auto;
    font-size: 0;
  }

  .side_image li {
    margin: 0 10px 0 0;
    font-size: 0;
    display: inline-block;
    width: 198px;
  }

  .side_image li img {
    width: 100%;
  }
}

.pc_page {
  display: block;
}

.mo_page {
  display: none;
}

.pcp_list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
}

.pcp_list li {
  display: inline-block;
  padding: 0 12px;
  line-height: 32px;
  font-size: 16px;
  margin: 0 8px;
  cursor: pointer;
  transition: 0.4s;
}

.pcp_list li.on {
  color: #ff3300;
}

.pcp_list .pl_1,
.pcp_list .pl_2,
.pcp_list .pl_3,
.pcp_list .pl_4 {
  width: 42px;
  height: 32px;
  border-radius: 4px;
  background-size: 20px;
  padding: 0;
}

.pcp_list .pl_1 {
  background: url(../img/p_i_1.png) no-repeat center;
  background-color: #ededed;
}

.pcp_list .pl_2 {
  background: url(../img/p_i_2.png) no-repeat center;
  background-color: #ededed;
}

.pcp_list .pl_3 {
  background: url(../img/p_i_3.png) no-repeat center;
  background-color: #ededed;
}

.pcp_list .pl_4 {
  background: url(../img/p_i_4.png) no-repeat center;
  background-color: #ededed;
}

.pcp_list .pl_1:hover {
  background: url(../img/p_i_on_1.png) no-repeat center;
  background-color: #ff3300;
}

.pcp_list .pl_2:hover {
  background: url(../img/p_i_on_2.png) no-repeat center;
  background-color: #ff3300;
}

.pcp_list .pl_3:hover {
  background: url(../img/p_i_on_3.png) no-repeat center;
  background-color: #ff3300;
}

.pcp_list .pl_4:hover {
  background: url(../img/p_i_on_4.png) no-repeat center;
  background-color: #ff3300;
}

@media screen and (max-width: 768px) {
  .pc_page {
    display: none;
  }

  .mo_page {
    display: block;
  }

  .mp_list {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    text-align: center;
    line-height: 40px;
  }

  .mp_list li:first-child,
  .mp_list li:last-child {
    width: 100px;
    border-radius: 4px;
    background-color: #ccc;
  }

  .mp_list li.on:first-child,
  .mp_list li.on:last-child {
    background-color: #f73b00;
    color: #fff;
  }

  .mp_list li:nth-child(2) span {
    font-size: 20px;
    color: #666;
  }

  .mp_list li:nth-child(2) em {
    color: #ccc;
    font-size: 20px;
    padding: 0 8px;
  }
}

/* 信息检索 */
.side_result {
  padding: 8px 14px;
  border-bottom: 1px solid #dcdcdc;
}

.side_result p {
  font-size: 18px;
  padding: 4px 0;
}

.side_result p em {
  color: #f73b00;
}

.mo_search_result {
  display: none;
}

.content_news_list u {
  color: #999;
  padding-right: 5px;
}

.content_news_list s {
  color: #f73b00;
}

@media screen and (max-width: 768px) {
  .mo_search_result {
    display: block;
    padding-top: 14px;
  }

  .mo_search_result p {
    font-size: 16px;
  }

  .mo_search_result p em {
    color: #f73b00;
  }
}

.poster{position: fixed; left: 0; right: 0; top: 222px; max-width: 1650px; margin: 0 auto; z-index: 1000;}
.poster_panel{position: absolute; top: 0; width: 136px;}
.poster_left{left: 0;}
.poster_right{right: 0;}
.poster_content{min-height: 428px; background-color: #cc9933; font-size: 0;}
.poster_content img{width: 100%; height: 428px;}