@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu";
}
*:before,
*:after {
  vertical-align: middle;
  box-sizing: border-box;
}
html {
  margin: 0 auto;
}
ul,
li,
ol {
  list-style: none;
}
em {
  font-style: normal;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-backface-visibility: hidden;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}
button,
input,
textarea {
  border: 0;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
  display: block;
}
input:-internal-autofill-previewed,
textarea:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-selected {
  -webkit-text-fill-color: inherit !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: middle;
}
i {
  font-style: inherit;
}
#map label {
  max-width: initial;
}
#map img {
  max-width: initial;
}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
  display: block;
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
  padding: 0;
  margin: 0;
}
/* 外层容器样式 */
section {
  overflow: hidden;
}
/* 通用正文样式 */
article {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}
/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
.mxw-image img {
  transition: all 0.4s;
  width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
#goto-top {
  position: fixed;
  z-index: 10;
  right: 0.3333rem;
  bottom: 10%;
  width: 0.6667rem;
  height: 0.6667rem;
  cursor: pointer;
  background: #e60012;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #fff;
}
#goto-top.active {
  visibility: visible;
  opacity: 1;
}
#goto-top:after {
  content: "";
  display: block;
  width: 0.2333rem;
  height: 0.2333rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 6px;
}
@media screen and (max-width: 1200px) {
  #goto-top {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.u-flex-nowrap {
  flex-wrap: nowrap;
}
.u-flex-col {
  flex-direction: column;
}
.u-grow-1 {
  flex-grow: 1;
}
.u-col-center {
  align-items: center;
}
.u-col-top {
  align-items: flex-start;
}
.u-col-bottom {
  align-items: flex-end;
}
.u-row-center {
  justify-content: center;
}
.u-row-left {
  justify-content: flex-start;
}
.u-row-right {
  justify-content: flex-end;
}
.u-row-between {
  justify-content: space-between;
}
.u-row-around {
  justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1200px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
/* ==================== 头部 start ==================== */
header {
  position: relative;
  z-index: 99;
  width: 100%;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
header .pc-nav .nav-top > .mxw-box {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
}
header .pc-nav .nav-top .logo {
  width: 255px;
  flex-shrink: 0;
  margin-right: 30px;
}
header .pc-nav .nav-top .nav-qr {
  margin-left: 40px;
  display: flex;
  align-items: flex-start;
}
header .pc-nav .nav-top .nav-qr .qr {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
header .pc-nav .nav-top .nav-qr .qr:last-child {
  margin-right: 0;
}
header .pc-nav .nav-top .nav-qr .qr .text {
  width: 22px;
  margin-right: 15px;
  font-size: 21px;
  color: #1a1a1a;
  line-height: 1.2;
}
header .pc-nav .nav-top .nav-qr .qr .text:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 13px solid #e60012;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-bottom: 10px;
}
header .pc-nav .nav-top .nav-qr .qr .image {
  width: 105px;
  flex-shrink: 0;
}
header .pc-nav .nav-top .nav-img {
  width: 60%;
}
header .pc-nav .nav-bottom {
  position: relative;
  background-color: #e60012;
}
header .pc-nav .nav-bottom > .mxw-box {
  display: flex;
  align-items: center;
}
header .pc-nav .nav-bottom .mxw-line {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: width 0.2s;
  pointer-events: none;
  height: 100%;
  background-color: #ba0308;
}
header .pc-nav .nav-bottom .search {
  margin-left: 20px;
  display: flex;
  align-items: center;
  width: 305px;
  background-color: #ba0308;
  padding: 0 15px;
}
header .pc-nav .nav-bottom .search input {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  min-width: 0;
  flex-grow: 1;
  color: #fff;
}
header .pc-nav .nav-bottom .search input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}
header .pc-nav .nav-bottom .search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}
header .pc-nav .nav-bottom .search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}
header .pc-nav .nav-bottom .search input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}
header .pc-nav .nav-bottom .search button {
  width: 20px;
  margin-left: 15px;
  flex-shrink: 0;
}
header .pc-menu {
  min-width: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
header .pc-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
    position: relative;
  flex-grow: 1;
}
header .pc-menu.tz > li{
  flex-grow: initial;
}
header .pc-menu.tz > li > a{
  padding: 17px 40px;
}

header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
  color: #fff !important;
}
header .pc-menu > li.active > ul,
header .pc-menu > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
header .pc-menu > li.sub:hover > a:after {
  transform: rotate(180deg);
}
header .pc-menu > li.sub > a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-left: 10px;
  transition: transform 0.4s;
}
header .pc-menu > li ul {
  background-color: #fff;
  width: 100%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s, visibility 0s;
}
header .pc-menu > li ul > .mxw-box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
margin:0 10px;max-width:100%;
}
header .pc-menu > li ul > .mxw-box li{width:100%;}
header .pc-menu > li ul:hover {
  opacity: 1;
  visibility: visible;
}
header .pc-menu > li ul li.active > ul,
header .pc-menu > li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
header .pc-menu > li ul li a {
  position: relative;
}
header .pc-menu > li ul a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  padding: 0.2333rem 0;
}
header .pc-menu > li > a {
  font-size: 16px;
  color: #fff;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
  padding: 17px 12px;
  line-height: 1.2;
  border-radius: 100px;
}
header .pc-menu > li > ul {
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.14);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
  display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
  display: none;
}
header .pc-menu > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 1px solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
  position: absolute;
  left: 3.3333rem;
  top: 0;
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 1740px) {
  header .pc-nav .mxw-box {
    max-width: 96%;
  }
}
@media screen and (max-width: 1680px) {
  header .pc-nav .nav-top .logo {
    width: 200px;
  }
  header .pc-nav .nav-top .nav-qr .qr .text {
    font-size: 16px;
  }
  header .pc-nav .nav-top .nav-qr .qr .image {
    width: 85px;
  }
  header .pc-menu > li > a {
    font-size: 14px;
  }
  header .pc-nav .nav-bottom .search {
    width: 265px;
  }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 1200px) {
  header {
    z-index: 99999;
  }
  .mxw-mob-nav .head {
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    width: 100%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.2);
  }
  .mxw-mob-nav .logo {
    display: block;
    flex-shrink: 0;
  }
  .mxw-mob-nav .logo img {
    height: 42px;
  }
  .mxw-mob-nav .menu-btn {
    flex-shrink: 0;
    width: 26px;
    height: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
  .mxw-mob-nav .menu-btn i {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #333;
  }
  .mxw-mob-nav .menus-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateX(50%);
  }
  .mxw-mob-nav .menus-box.active {
    visibility: visible;
    opacity: 1;
  }
  .mxw-mob-nav .menus-box.active .menus {
    transform: translateX(0);
  }
  .mxw-mob-nav .menus {
    width: 60%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }
  .mxw-mob-nav .menus > ul {
    width: 100%;
    overflow: auto;
  }
  .mxw-mob-nav .menus > ul > li.active > a {
    background-color: rgba(0, 0, 0, 0.07);
  }
  .mxw-mob-nav .menus > ul > li.active > ul {
    display: block;
  }
  .mxw-mob-nav .menus > ul > li > a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mxw-mob-nav .menus > ul > li > a.sub:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #555;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
  }
  .mxw-mob-nav .menus > ul > li > ul {
    display: none;
    padding: 0px 24px;
  }
  .mxw-mob-nav .menus > ul > li > ul > li > a {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 36px;
    height: 36px;
    border-bottom: 1px solid #f3f3f3;
  }
  .mxw-mob-nav .menus-head {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F8F8;
    border-bottom: 0.6px solid #eee;
    font-size: 16.8px;
    font-weight: bold;
    line-height: 54px;
    height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .mxw-mob-nav .menus-head .text {
    color: #333;
    line-height: 1.2;
  }
  .mxw-mob-nav .menus-head .mxw-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    transform: rotate(45deg);
  }
  .mxw-mob-nav .menus-head .mxw-close:before,
  .mxw-mob-nav .menus-head .mxw-close:after {
    content: "";
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .mxw-mob-nav .menus-head .mxw-close:before {
    width: 2px;
    height: 100%;
  }
  .mxw-mob-nav .menus-head .mxw-close:after {
    width: 100%;
    height: 2px;
  }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 通用卡片 start ==================== */
.component-card .component-head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.component-card .component-head .title {
  background: url(../images/img41.png) no-repeat center;
  background-size: 100%;
  width: 3.0333rem;
  height: 0.8167rem;
  line-height: 0.8167rem;
  font-size: 0.3667rem;
  font-weight: bold;
  color: #fff;
  padding-left: 0.3rem;
}
.component-card .component-head .title:before {
  content: "";
  display: inline-block;
  background: url(../images/img10.png) no-repeat center;
  background-size: 100%;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.1667rem;
}
.component-card .component-head .head-right {
  min-width: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  border-bottom: 0.0167rem solid #e7e7e7;
}
.component-card .component-head .component-itembox {
  display: flex;
  align-items: flex-start;
  padding-left: 0.4167rem;
  min-width: 0;
  flex-grow: 1;
}
.component-card .component-head .component-item {
  font-size: 0.3333rem;
  font-weight: bold;
  padding-bottom: 0.25rem;
  margin-right: 0.3333rem;
  margin-left: 0.3333rem;
  position: relative;
}
.component-card .component-head .component-item.active {
  color: #e60012;
}
.component-card .component-head .component-item.active:before {
  width: 100%;
}
.component-card .component-head .component-item:last-child {
  margin-right: 0;
}
.component-card .component-head .component-item:last-child:after {
  display: none;
}
.component-card .component-head .component-item:before {
  content: "";
  display: block;
  width: 0;
  height: 0.0333rem;
  background-color: #e60012;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.4s;
}
.component-card .component-head .component-item:after {
  content: "";
  display: block;
  width: 0.0167rem;
  background-color: #bebebe;
  position: absolute;
  top: 0.0833rem;
  height: 0.3333rem;
  right: -0.3333rem;
}
.component-card .component-head .mxw-more {
  padding-bottom: 0.25rem;
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
  transition: transform 0.4s;
}
.component-card .component-head .mxw-more:hover {
  color: #e60012;
  transform: translateX(-0.1667rem);
}
@media screen and (max-width: 1200px) {
  .component-card .component-head {
    flex-wrap: wrap;
  }
  .component-card .component-head .title {
    padding-left: 12px;
    font-size: 16px;
    width: 138px;
    height: 36px;
    line-height: 36px;
  }
  .component-card .component-head .title:before {
    width: 16px;
    height: 16px;
  }
  .component-card .component-head .head-right {
    width: 100%;
  }
  .component-card .component-head .component-itembox {
    padding-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  .component-card .component-head .component-itembox .component-item {
    text-align: center;
    width: 32%;
    margin: 0;
    font-size: 14px;
    padding: 10px 4px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .component-card.component-card03 .component-head .component-itembox .component-item {
    width: 48%;
  }
  .component-card .component-head .component-itembox .component-item:after {
    display: none;
  }
  .component-card .component-head .component-itembox .component-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .component-card03 .component-head .component-itembox .component-item:nth-child(3n-1) {

  }
  .component-card .component-head .mxw-more {
    display: none;
  }
  .component-card .mxw-more {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background-color: #e60012;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 5px;
    margin-top: 20px;
  }
  .component-card .mxw-more:hover {
    color: #fff !important;
  }
}
/* ==================== 通用卡片 end ==================== */
/* ==================== 通用新闻列表 start ==================== */
.component-news .cover {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.component-news .cover .title {
  width: 100%;
  text-align: center;
  font-size: 0.3rem;
  color: #fff;
  padding: 0.1667rem;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  margin-right: 0.3333rem;
}
.component-news ul {
  padding: 0 0.25rem;
}
.component-news ul li {
  margin-bottom: 0.333rem;
}
.component-news ul li:hover a:before {
  background-color: #e60012;
}
.component-news ul li:hover .title {
  color: #e60012;
}
.component-news ul li:last-child {
  margin-bottom: 0;
}
.component-news ul li a {
  position: relative;
  display: flex;
  align-items: center;
}
.component-news ul li a:before {
  content: "";
  display: block;
  width: 0.1333rem;
  height: 0.1333rem;
  background-color: #e2e2e2;
  border-radius: 100%;
  margin-right: 0.25rem;
  flex-shrink: 0;
}
.component-news ul li a .title {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
  min-width: 0;
  flex-grow: 1;
}
.component-news ul li a .date {
  font-size: 0.25rem;    flex-shrink: 0;

  color: #919191;
}
@media screen and (min-width: 1200px) {
  .component-news ul li {
    transition: transform 0.4s;
  }
  .component-news ul li:hover {
    transform: translateX(10px);
  }
}
@media screen and (max-width: 1200px) {
  .component-news .cover {
    margin-bottom: 20px;
  }
  .component-news .cover .title {
    margin-right: 0;
    font-size: 12px;
  }
  .component-news ul {
    padding: 0;
  }
  .component-news ul li {
    margin-bottom: 15px;
  }
  .component-news ul li a .date {
    font-size: 12px;
  }
  .component-news ul li a:before {
    width: 6px;
    height: 6px;
    margin-right: 10px;
  }
  .component-news ul li a .title {
    font-size: 14px;
    padding-right: 20px;
  }
}
/* ==================== 通用新闻列表 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
  margin-bottom: 50px;
  margin-top: 20px;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
.mxw-title:after {
  content: "";
  display: block;
  width: 67px;
  height: 5px;
  background-color: #e60012;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.mxw-title .title-content {
  position: relative;
  display: inline-block;
}
.mxw-title .title-content:after {
  content: "";
  display: block;
  background: url(../images/img25.png) no-repeat center;
  width: 69px;
  height: 58px;
  position: absolute;
  top: -20px;
  left: -40px;
  background-size: 100%;
}
.mxw-title span {
  z-index: 9;
  font-size: 34px;
  display: inline-block;
  vertical-align: middle;
  color: #1a1a1a;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .mxw-title {
    margin-bottom: 40px;
    margin-top: 10px;
    padding-bottom: 15px;
  }
  .mxw-title:after {
    width: 42px;
    height: 3px;
  }
  .mxw-title .title-content:after {
    width: 42px;
    height: 35px;
    top: -10px;
    left: -30px;
  }
  .mxw-title span {
    font-size: 22px;
  }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 通用工具栏 start ==================== */
.mxw-tool {
  position: fixed;
  z-index: 99;
}
.mxw-tool .icon {
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .mxw-tool {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .mxw-tool .tool-item {
    margin-bottom: 5px;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-color: #e60012;
    font-size: 12px;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.4s;
  }
  .mxw-tool .tool-item:hover {
    box-shadow: 0 0 10px -8px #e60012;
  }
  .mxw-tool .tool-item:hover .tool-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 9;
  }
  .mxw-tool .tool-item:hover .tool-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 9;
  }
  .mxw-tool .tool-item:last-child {
    border-bottom: 0;
  }
  .mxw-tool .tool-item .icon {
    width: 0.5rem;
    height: 0.5rem;
    margin-bottom: 5px;
  }
  .mxw-tool .tool-item .text {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
  }
  .mxw-tool .tool-content {
    position: absolute;
    top: 0;
    height: 100%;
    background: #fff;
    width: 3.3333rem;
    right: 1.4333rem;
    color: #333;
    font-size: 0.2333rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0.3333rem;
    font-size: 0.2667rem;
    line-height: 1.6;
    border: 0.0167rem solid #ddd;
    border-radius: 0.0833rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 751px) {
  .mxw-tool {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    font-size: 14px;
  }
  .mxw-tool .icon {
    text-align: center;
  }
  .mxw-tool .tool-item {
    width: 18%;
    height: 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .mxw-tool .tool-item:nth-child(5) ~ .tool-item {
    display: none;
  }
  .mxw-tool .tool-item .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-bottom: 5px;
  }
  .mxw-tool .tool-item .text {
    font-size: 13px;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    text-indent: 1px;
  }
}
/* ==================== 通用工具栏 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
  margin-top: 50px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mxw-pagination  a {
  padding: 6px 12px;
  font-size: 14px;
  color: #666;
  line-height: 1.2;
  border: 1px solid #ccc;

  margin: 4px;
}
.mxw-pagination  a.active,
.mxw-pagination  a:hover {
  background-color: #e60012;
  color: #fff !important;
}
.mxw-pagination  a:first-child {
  margin-left: 0;
}
.mxw-pagination  a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 751px) {
  .mxw-pagination {
    margin-top: 30px;
  }
  .mxw-pagination  a {
    font-size: 12px;
    margin: 2px;
    padding: 8px 10px;
  }
}
/* ==================== 分页样式 end ==================== */
/* ==================== 地区选择 start ==================== */
.region {
  padding-top: 0.3333rem;
  padding-bottom: 0.75rem;
}
.region > .mxw-box {
  border: solid 0.0167rem #e7e7e7;
}
.region .item {
  padding: 0.1667rem;
  display: flex;
  align-items: center;
}
.region .item:first-child {
  border-bottom: 0.0167rem solid #e7e7e7;
}
.region .item .title {
  font-size: 0.2667rem;
  color: #e60012;
  border: 0.0167rem solid #e60012;
  border-radius: 0.0833rem;
  padding: 0.0833rem 0.25rem;
  margin-right: 0.3333rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.region .item .title:before {
  content: "";
  display: block;
  background: url(../images/img08.png) no-repeat center;
  background-size: 100%;
  width: 0.1667rem;
  height: 0.2333rem;
  margin-right: 0.0833rem;
  flex-shrink: 0;
}
.region .item ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.region .item ul li {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.2;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .region {
    padding: 20px;
    padding-bottom: 0;
  }
  .region > .mxw-box {
    padding: 15px;
  }
  .region .item {
    padding: 0;
    flex-wrap: wrap;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .region .item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .region .item .title {
    font-size: 12px;
    padding: 5px 10px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .region .item ul {
    width: 100%;
  }
  .region .item ul li {
    font-size: 14px;
    margin-right: 2.5%;
    width: 18%;
  }
  .region .item ul li:nth-child(5n) {
    margin-right: 0;
  }
  .region .item ul li:nth-child(5n) ~ li {
    margin-top: 10px;
  }
}
/* ==================== 地区选择 end ==================== */
/* ==================== section1 start ==================== */
.mxw-section1 .top {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.mxw-section1 .top .swiper-container {
  height: 1.1167rem;
  margin-right: 1rem;
}
.mxw-section1 .right {
  padding-right: 0.3333rem;
  display: flex;
  align-items: center;
}
.mxw-section1 .btn-group .swiper-button-prev,
.mxw-section1 .btn-group .swiper-button-next {
  width: 0.4333rem;
  height: 0.4333rem;
  background-color: #d3d3d3;
  position: static;
  display: block;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-section1 .btn-group .swiper-button-prev:hover,
.mxw-section1 .btn-group .swiper-button-next:hover {
  background-color: #e60012;
}
.mxw-section1 .btn-group .swiper-button-prev:after,
.mxw-section1 .btn-group .swiper-button-next:after {
  font-size: 0.1667rem;
  color: #fff;
}
.mxw-section1 .btn-group .swiper-button-prev {
  transform: rotate(90deg);
  margin-bottom: 0.1667rem;
}
.mxw-section1 .btn-group .swiper-button-next {
  transform: rotate(90deg);
}
.mxw-section1 .recommend {
  min-width: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}
.mxw-section1 .recommend .info {
  position: relative;
  padding-left: 1.5rem;
  flex-shrink: 0;
  width: 12.5333rem;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  border-right: 0.0167rem solid #ddd;
}
.mxw-section1 .recommend .info:before {
  content: "";
  display: block;
  background: url(../images/img40.png) no-repeat center;
  background-size: 100%;
  width: 1.2333rem;
  height: 0.6667rem;
  margin-right: 0.3333rem;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.mxw-section1 .recommend .desc {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.8;
  min-width: 0;
  flex-grow: 1;
}
.mxw-section1 .recommend .title {
  font-size: 0.5rem;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 0.1667rem;
  font-weight: bold;
}
.mxw-section1 .recommend .text2 {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .mxw-section1 .right {
    width: 49.3%;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-section1 > .mxw-box {
    padding-bottom: 0;
  }
  .mxw-section1 .top {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .mxw-section1 .top .swiper-container {
    margin-right: 0;
    height: 120px;
  }
  .mxw-section1 .top .swiper-container .swiper-slide {
    font-size: 12px;
  }
  .mxw-section1 .recommend {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  .mxw-section1 .recommend .info {
    width: auto;
    min-width: 0;
    flex-grow: 1;
    flex-shrink: inherit;
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
    padding-left: 60px;
    margin-bottom: 10px;
  }
  .mxw-section1 .recommend .info:before {
    display: block;
    width: 54px;
    height: 32px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .mxw-section1 .recommend .title {
    font-size: 16px;
    line-height: 1.5;
    height: 1.5em;
  }
  .mxw-section1 .recommend .text2 {
    font-size: 12px;
    color: #888;
  }
}
/* ==================== section1 end ==================== */
/* ==================== section2 start ==================== */
.mxw-section2 {
  margin-bottom: 1.0833rem;
}
.mxw-section2 .swiper1 .swiper-slide {
  display: block;
  position: relative;
}
.mxw-section2 .swiper1 .title {
  width: 100%;
  font-size: 0.2667rem;
  color: #fff;
  height: 0.8333rem;
  line-height: 0.8333rem;
  padding-left: 0.5rem;
  padding-right: 3.3333rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
}
.mxw-section2 .swiper1 .swiper-pagination {
  position: absolute;
  bottom: 0.3333rem;
  right: 0.5rem;
  left: auto;
  z-index: 999;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mxw-section2 .swiper1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  margin-right: 0.3333rem;
  margin-left: 0;
}
.mxw-section2 .swiper1 .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.mxw-section2 .swiper1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e60012;
}
.mxw-section2 .right {
  min-width: 0;
  flex-grow: 1;
}
.mxw-section2 .right .swiper-card {
  border: 0.0167rem solid #efefef;
  border-top: 0;
}
.mxw-section2 .right .swiper-card li:hover .text2 {
  font-weight: bold;
}
.mxw-section2 .right .swiper-card li:last-child a {
  border-bottom: 0;
}
.mxw-section2 .right .swiper-card li a {
  border-bottom: 0.0167rem solid #e7e7e7;
  padding: 0.5833rem 0.3333rem;
  display: flex;
  align-items: center;
}
.mxw-section2 .right .swiper-card .left {
  min-width: 0;
  flex-grow: 1;
  padding-right: 0.3333rem;
}
.mxw-section2 .right .swiper-card .left .text1 {
  margin-bottom: 0.1667rem;
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.2;
  position: relative;
}
.mxw-section2 .right .swiper-card .left .text3 {
	font-size:14px;    margin-top: 5px;
}

.mxw-section2 .right .swiper-card .left .text1:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../images/img11.png) no-repeat center;
  background-size: 100%;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.2rem;
}
.mxw-section2 .right .swiper-card .left .text2 {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
}
.mxw-section2 .right .swiper-card .mxw-btn {
  flex-shrink: 0;
  width: 1.6667rem;
  height: 0.5rem;
  background-color: #e60012;
  border-radius: 0.0667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2667rem;
  color: #fff;
  transition: transform 0.4s;
}
.mxw-section2 .right .swiper-card .mxw-btn:hover {
  color: #fff;
  transform: translateX(-0.1667rem);
}
.mxw-section2 .right .swiper-card .mxw-btn:before {
  content: "";
  display: block;
  background: url(../images/img12.png) no-repeat center;
  background-size: 100%;
  width: 0.2667rem;
  height: 0.25rem;
  margin-right: 0.1667rem;
}
@media screen and (min-width: 1200px) {
  .mxw-section2 > .mxw-box {
    display: flex;
    align-items: center;
  }
  .mxw-section2 .swiper1 {
    margin-left: 0;
    margin-right: 0.8333rem;
    width: 52.2%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1740px) {
  .mxw-section2 .swiper1 {
    width: 48%;
  }
  .mxw-section2 .right .swiper-card li a {
    padding: 0.4rem 0.3333rem;
  }
  .mxw-section2 .right .swiper-card .left .text2 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-section2 {
    margin-bottom: 0;
  }
  .mxw-section2 .swiper1 {
    width: 100%;
  }
  .mxw-section2 .swiper1 .title {
    font-size: 12px;
    padding: 8px 15px;
    height: auto;
    line-height: 1.8;
  }
  .mxw-section2 .swiper1 .swiper-pagination {
    position: static;
    justify-content: center;
    margin-top: 15px;
  }
  .mxw-section2 .swiper1 .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 5px;
  }
  .mxw-section2 .right {
    margin-top: 30px;
  }
  .mxw-section2 .right .swiper-card {
    padding: 0;
  }
  .mxw-section2 .right .swiper-card .left .text1 {
    font-size: 14px;
  }
  .mxw-section2 .right .swiper-card .left .text1:before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .mxw-section2 .right .swiper-card .left .text2 {
    font-size: 12px;
    font-weight: bold;
  }
  .mxw-section2 .right .swiper-card li a {
    padding: 15px;
  }
  .mxw-section2 .right .swiper-card .mxw-btn {
    width: 60px;
    font-size: 12px;
  }
  .mxw-section2 .right .swiper-card .mxw-btn:before {
    width: 10px;
    height: 10px;
    margin-right: 10px;
  }
}
/* ==================== section2 end ==================== */
/* ==================== section3 start ==================== */
@media screen and (max-width: 1200px) {
  .mxw-section3 {
    padding: 0 20px;
    overflow: hidden;
  }
  .mxw-section3 .mxw-box {
    padding: 0;
  }
}
/* ==================== section2 end ==================== */
/* ==================== 社区品牌 start ==================== */
.mxw-section4 .swiper-card {
  margin-top: 0.6667rem;
}
.mxw-section4 .swiper-card .swiper-slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.mxw-section4 .swiper-card .item {
  width: 48%;
}
.mxw-section4 .section4-banner {
  margin-top: 1.1667rem;
}
.mxw-section4 .section4-banner .swiper-pagination {
  font-size: 0.2rem;
  bottom: 0.2333rem;
}
.mxw-section4 .section4-banner .swiper-pagination-bullet {
  width: 0.1667rem;
  height: 0.1667rem;
  background-color: #fff;
  opacity: 1;
  margin-left: 0.15rem;
  margin-right: 0.15rem;
}
.mxw-section4 .section4-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e60012;
}
@media screen and (min-width: 1200px) {
  .mxw-section4 .mxw-box {
    padding-top: 0.9333rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-section4 .mxw-box {
    padding-bottom: 0;
    padding-top: 0;
  }
  .mxw-section4 .swiper-card {
    margin-top: 20px;
  }
  .mxw-section4 .swiper-card .swiper-slide {
    flex-wrap: wrap;
  }
  .mxw-section4 .swiper-card .item {
    width: 100%;
    margin-bottom: 30px;
  }
  .mxw-section4 .swiper-card .item:last-child {
    margin-bottom: 0;
  }
  .mxw-section4 .section4-banner {
    margin-top: 30px;
  }
  .mxw-section4 .section4-banner .swiper-pagination {
    position: static;
    margin-top: 10px;
  }
  .mxw-section4 .section4-banner .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 5px;
    width: 8px;
    height: 8px;
  }
  .mxw-section4 .section4-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #e60012;
  }
}
/* ==================== 社区品牌 end ==================== */
/* ==================== section5 start ==================== */
.mxw-section5 .cover2 {
  display: block;
  margin-bottom: 0.5rem;
}
.mxw-section5 .component-head {
  margin-bottom: 0.6667rem;
}
.mxw-section5 .component-card01 .component-head {
  align-items: center;
  border-bottom: 0.0167rem solid #e7e7e7;
}
.mxw-section5 .component-card01 .component-head .head-right {
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mxw-section5 .component-card01 .component-head .head-right .swiper-button-prev,
.mxw-section5 .component-card01 .component-head .head-right .swiper-button-next {
  width: 0.4333rem;
  height: 0.4333rem;
  background-color: #d3d3d3;
  position: static;
  display: block;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-section5 .component-card01 .component-head .head-right .swiper-button-prev:hover,
.mxw-section5 .component-card01 .component-head .head-right .swiper-button-next:hover {
  background-color: #e60012;
}
.mxw-section5 .component-card01 .component-head .head-right .swiper-button-prev:after,
.mxw-section5 .component-card01 .component-head .head-right .swiper-button-next:after {
  font-size: 0.1667rem;
  color: #fff;
}
.mxw-section5 .component-card01 .component-head .head-right .swiper-button-prev {
  margin-right: 0.1667rem;
}
.mxw-section5 .swiper1 {
  margin-top: -0.4167rem;
}
.mxw-section5 .swiper1 .swiper-wrapper {
  flex-flow: row wrap;
}
.mxw-section5 .swiper1 .swiper-slide {
  margin-top: 0.4167rem !important;
}
.mxw-section5 .swiper1 .swiper-slide .image {
  position: relative;
}
.mxw-section5 .swiper1 .swiper-slide .image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/img38.png) no-repeat center center;
  background-size: 0.6833rem 0.6833rem;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.mxw-section5 .swiper1 .swiper-slide .title {
  border: 0.0167rem solid #efefef;
  padding: 0.25rem;
  text-align: center;
  color: #333;
  line-height: 1.2;
  font-size: 0.2667rem;
}
.mxw-section5 .component-card03 ul,
.mxw-section5 .component-card04 ul {
  padding: 0.5rem;
  border: solid 0.0167rem #efefef;
}
@media screen and (min-width: 1200px) {
  .mxw-section5 > .mxw-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .mxw-section5 .component-card {
    width: 48%;
    margin-bottom: 1.1667rem;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-section5 > .mxw-box {
    padding-top: 0;
  }
  .mxw-section5 .cover2 {
    margin-bottom: 15px;
  }
  .mxw-section5 .component-head {
    margin-bottom: 20px;
  }
  .mxw-section5 .component-card {
    margin-bottom: 30px;
  }
  .mxw-section5 .component-card:last-child {
    margin-bottom: 0;
  }
  .mxw-section5 .component-card01 .component-head {
    margin-bottom: 20px;
  }
  .mxw-section5 .component-card01 .component-head .head-right .swiper-button-next,
  .mxw-section5 .component-card01 .component-head .head-right .swiper-button-prev {
    display: none;
  }
  .mxw-section5 .swiper1 {
    margin-top: -12px;
  }
  .mxw-section5 .swiper1 .swiper-slide {
    margin-top: 12px!important;
  }
  .mxw-section5 .swiper1 .swiper-slide .title {
    padding: 10px;
    font-size: 12px;
  }
  .mxw-section5 .component-card03 ul,
  .mxw-section5 .component-card04 ul {
    padding: 15px;
  }
  .mxw-section5 .component-card03 ul li a .title,
  .mxw-section5 .component-card04 ul li a .title {
    padding-right: 0;
    font-size: 12px;
  }
}
/* ==================== section5 end ==================== */
/* ==================== 联系我们 start ==================== */
.mxw-contact .mxw-about {
  margin-bottom: 0.6667rem;
  border: solid 0.0167rem #efefef;
}
.mxw-contact .mxw-about .head {
  height: 0.6333rem;
  background-color: #f1f1f1;
  border-bottom: 0.05rem solid #e0e0e0;
}
.mxw-contact .mxw-about .head .text {
  font-size: 0.3333rem;
  font-weight: bold;
  color: #fff;
  margin-left: 0.5rem;
  width: 2.9667rem;
  height: 0.7833rem;
  line-height: 0.7833rem;
  text-align: center;
  background: url(../images/img26.png) no-repeat center;
  transform: translateY(-0.1667rem);
  background-size: 100%;
}
.mxw-contact .mxw-about .body {
  padding: 0.6667rem 0.5rem;
  display: flex;
  align-items: center;
}
.mxw-contact .mxw-about .about-swiper {
  width: 37.8%;
  flex-shrink: 0;
  margin-right: 1.1667rem;
  position: relative;
}
.mxw-contact .mxw-about .about-swiper .swiper-pagination {
  position: absolute;
  bottom: 0.2667rem;
  right: 0.5rem;
  width: auto;
  left: auto;
  z-index: 99;
}
.mxw-contact .mxw-about .about-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.1667rem;
  height: 0.1667rem;
  background-color: #fff;
  border-radius: 100%;
  margin-left: 0.15rem;
  margin-right: 0.15rem;
  opacity: 1;
}
.mxw-contact .mxw-about .about-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e60012;
}
.mxw-contact .mxw-about .about-swiper .swiper-slide {
  position: relative;
}
.mxw-contact .mxw-about .about-swiper .swiper-slide .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.25rem;
  padding-left: 0.3333rem;
  padding-right: 1.6667rem;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 0.2667rem;
  color: #fff;
}
.mxw-contact .mxw-about .info .desc {
  font-size: 0.3rem;
  color: #333;
  line-height: 2.4;
  text-align: justify;
}
.mxw-contact .mxw-about .info .mxw-more {
  margin-top: 0.8333rem;
  width: 2rem;
  height: 0.6667rem;
  line-height: 0.6667rem;
  background-color: #e60012;
  border-radius: 0.1rem;
  text-align: center;
  color: #fff;
  font-size: 0.2667rem;
  display: block;
  transition: transform 0.4s, box-shadow 0.4s;
}
.mxw-contact .mxw-about .info .mxw-more:hover {
  color: #fff !important;
  box-shadow: 0 0 0.1667rem -0.0333rem #e60012;
  transform: translateX(0.1667rem);
}
.mxw-contact .brand {
  margin-bottom: 0.6667rem;
}
.mxw-contact .brand .body {
  border: 0.0167rem solid #efefef;
  padding: 0.5rem 0.3333rem;
}
.mxw-contact .brand .brand-swiper .swiper-slide {
  display: block;
}
.mxw-contact .brand .brand-swiper .swiper-slide img {
  width: auto;
}
.mxw-contact .brand .brand-swiper .swiper-slide .image {
  border: 0.0167rem solid #efefef;
}
.mxw-contact .brand .brand-swiper .swiper-slide .title {
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.2;
  padding: 0.25rem;
  text-align: center;
  padding-bottom: 0;
}
.mxw-contact .brand .component-head {
  justify-content: space-between;
}
.mxw-contact .brand .component-head .head-right {
  border-bottom: 0;
  flex-grow: 0;
}
.mxw-contact .brand .component-head .title {
  background-image: url(../images/img42.png);
  width: 3.8667rem;
  height: 0.8333rem;
}
.mxw-contact .media .body {
  border: 0.0167rem solid #efefef;
  padding: 0.5rem 1.1667rem;
}
.mxw-contact .media .body > a {
  position: relative;
  padding-left: 0.4167rem;
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.6;
  transition: transform 0.4s;
}
.mxw-contact .media .body > a:hover {
  color: #e60012;
}
.mxw-contact .media .body > a:hover:before {
  background-color: #e60012;
}
.mxw-contact .media .body > a:before {
  content: "";
  display: block;
  width: 0.15rem;
  height: 0.15rem;
  background-color: #e2e2e2;
  border-radius: 100%;
  margin-right: 0.1667rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mxw-contact .media .component-head {
  justify-content: space-between;
}
.mxw-contact .media .component-head .head-right {
  border-bottom: 0;
  flex-grow: 0;
}
@media screen and (min-width: 1200px) {
  .mxw-contact > .mxw-box {
    padding-top: 1rem;
    padding-bottom: 0.8333rem;
  }
  .mxw-contact .media .body > a:hover {
    transform: translateX(0.1667rem);
  }
}
@media screen and (max-width: 1200px) {
  .mxw-contact > .mxw-box {
    padding-top: 0;
  }
  .mxw-contact .mxw-about {
    margin-bottom: 30px;
  }
  .mxw-contact .mxw-about .head {
    height: 30px;
  }
  .mxw-contact .mxw-about .head .text {
    font-size: 16px;
    margin: 0 auto;
    width: 140px;
    height: 40px;
    line-height: 40px;
  }
  .mxw-contact .mxw-about .body {
    padding: 15px;
    flex-wrap: wrap;
  }
  .mxw-contact .mxw-about .about-swiper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .mxw-contact .mxw-about .about-swiper .swiper-slide .title {
    padding: 8px 10px;
    font-size: 12px;
  }
  .mxw-contact .mxw-about .about-swiper .swiper-pagination {
    position: static;
    margin-top: 10px;
  }
  .mxw-contact .mxw-about .about-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 5px;
  }
  .mxw-contact .mxw-about .info .mxw-more {
    width: 100%;
    height: auto;
    line-height: inherit;
    text-align: center;
    color: #fff;
    background-color: #e60012;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 5px;
    margin-top: 20px;
  }
  .mxw-contact .mxw-about .info .mxw-more:hover {
    color: #fff;
  }
  .mxw-contact .mxw-about .info .desc {
    font-size: 13px;
    line-height: 2.2;
  }
  .mxw-contact .brand {
    margin-bottom: 30px;
  }
  .mxw-contact .brand .component-head .title {
    width: 192px;
    height: 40px;
    line-height: 40px;
  }
  .mxw-contact .brand .body {
    padding: 15px;
  }
  .mxw-contact .brand .brand-swiper .swiper-slide .title {
    font-size: 12px;
    padding: 10px 10px 0;
  }
  .mxw-contact .media .body {
    padding: 15px;
  }
  .mxw-contact .media .body > a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    padding-left: 15px;
  }
  .mxw-contact .media .body > a:before {
    width: 6px;
    height: 6px;
    top: 10px;
    transform: translateY(0);
  }
}
/* ==================== 联系我们 end ==================== */
/* ==================== 身边爆料 start ==================== */
.mxw-dialog {
  font-size: 12px;
  position: fixed;
  z-index: 89;
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding-bottom: 45px;
  border-bottom: 10px solid #e60012;
  transition: transform 0.4s, visibility 0.4s;
  transform: translateY(100vh);
  visibility: hidden;
}
.mxw-dialog.active {
  visibility: visible;
  transform: translateY(0);
}
.mxw-dialog .head {
  margin-bottom: 40px;
  border-bottom: 1px solid #e7e7e7;
}
.mxw-dialog .head .text1 {
  padding-bottom: 15px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.mxw-dialog .head .text1:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e60012;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mxw-dialog .head .text1 .icon {
  max-width: 40px;
  flex-shrink: 0;
  margin-right: 15px;
  min-width: 30px;
}
.mxw-dialog .head .text1 .text {
  font-size: 20px;
  color: #333;
  font-weight: bold;
}
.mxw-dialog .head .mxw-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
  transition: transform 0.4s;
  cursor: pointer;
}
.mxw-dialog .head .mxw-close:hover {
  transform: rotate(135deg);
}
.mxw-dialog .head .mxw-close::before,
.mxw-dialog .head .mxw-close::after {
  content: "";
  display: block;
  background-color: #555;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mxw-dialog .head .mxw-close::before {
  width: 24px;
  height: 3px;
}
.mxw-dialog .head .mxw-close::after {
  width: 3px;
  height: 24px;
}
.mxw-dialog form label {
  display: flex;
  align-items: center;
  border: 1px solid #efefef;
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}
.mxw-dialog form label:last-child {
  margin-bottom: 0;
}
.mxw-dialog form .icon {
  flex-shrink: 0;
  margin: 0 10px;
  width: 30px;
  line-height: 1.2;
}
.mxw-dialog form input,
.mxw-dialog form textarea {
  font-size: 16px;
}
.mxw-dialog form input {
  height: 100%;
  min-width: 0;
  flex-grow: 1;
}
.mxw-dialog form .mxw-textarea {
  align-items: flex-start;
  padding: 15px 0;
  padding-right: 10px;
  height: 120px;
}
.mxw-dialog form textarea {
  height: 100%;
  line-height: 1.8;
  width: 100%;
  display: block;
  resize: none;
}
.mxw-dialog form button {
  margin-top: 50px;
  width: 108px;
  height: 32px;
  line-height: 32px;
  background-color: #e60012;
  color: #fff;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}
.mxw-dialog form button:hover {
  color: #fff;
}
.mxw-dialog .list {
  display: flex;
  flex-wrap: wrap;
}
.mxw-dialog .list a {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.mxw-dialog .list a:hover {
  color: #fff;
  border-color: #e60012;
  background-color: #e60012;
}
@media screen and (min-width: 1200px) {
  .mxw-dialog {
    width: 430px;
    right: 100px;
    top: 50%;
    box-shadow: 0 0 10px -6px #e60012;
  }
  .mxw-dialog#address1.active {
    transform: translateY(-80px);
  }
  .mxw-dialog#address1 .list {
    overflow: auto;
    max-height: 30vh;
  }
  .mxw-dialog#address2.active {
    transform: translateY(0);
  }
  .mxw-dialog#address2 .list {
    overflow: auto;
    max-height: 30vh;
  }
  .mxw-dialog#fact.active {
    top: auto;
    bottom: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .mxw-dialog {
    width: 100%;
    bottom: 60px;
    left: 0;
    padding: 20px;
    height: calc(100vh - 120px);
    border-bottom-width: 4px;
    overflow: auto;
  }
  .mxw-dialog .head {
    margin-bottom: 20px;
  }
  .mxw-dialog .head .text1 {
    padding-bottom: 10px;
  }
  .mxw-dialog .head .text1 .text {
    font-size: 16px;
  }
  .mxw-dialog .head .text1 .icon {
    width: 30px;
    min-width: inherit;
    margin-right: 10px;
  }
  .mxw-dialog .head .mxw-close:before {
    width: 20px;
  }
  .mxw-dialog .head .mxw-close:after {
    height: 20px;
  }
  .mxw-dialog form label {
    margin-bottom: 10px;
    height: 40px;
    line-height: 40px;
  }
  .mxw-dialog form input,
  .mxw-dialog form textarea {
    font-size: 14px;
  }
  .mxw-dialog form .icon {
    width: 24px;
    margin-right: 10px;
  }
  .mxw-dialog form button {
    margin-top: 30px;
  }
  .mxw-dialog form .mxw-textarea {
    padding: 10px 0;
  }
  .mxw-dialog .list a {
    width: 32%;
    margin: 0!important;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 14px;
  }
  .mxw-dialog .list a:nth-child(3n-1) {
    margin-left: 2%!important;
    margin-right: 2%!important;
  }
  .mxw-dialog .list a:nth-child(3) ~ a {
    margin-top: 2%!important;
  }
}
/* ==================== 身边爆料 end ==================== */
/* ==================== 间隔线 start ==================== */
.mxw-interval {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-top: 20px;
  margin-bottom: 20px;
  height: 10px;
  background: #efefef;
}
/* ==================== 间隔线 end ==================== */
/* ==================== 面包屑 start ==================== */
.bread-crumbs {
  margin-bottom: 30px;
}
.bread-crumbs .mxw-box {
  border-bottom: 1px solid #efefef;
  padding-top: 20px;
  padding-bottom: 20px;
}
.bread-crumbs .mxw-box a {
  font-size: 16px;
  color: #a1a1a1;
  line-height: 1.2;
}
.bread-crumbs .mxw-box a:hover:after {
  color: #a1a1a1;
}
.bread-crumbs .mxw-box a:last-child:after {
  display: none;
}
.bread-crumbs .mxw-box a:after {
  content: ">";
  display: inline-block;
  margin: 0 5px;
  vertical-align: text-top;
}
@media screen and (max-width: 1200px) {
  .bread-crumbs {
    margin-bottom: 0;
  }
  .bread-crumbs .mxw-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .bread-crumbs .mxw-box a {
    font-size: 13px;
  }
}
/* ==================== 面包屑 end ==================== */
/* ==================== 内页通用样式 start ==================== */
.ny-body-left {
  position: sticky;
  top: 0;
  left: 0;
}
.ny-body-left .left-item {
  border: solid 1px #efefef;
  margin-bottom: 20px;
  border-radius: 4px 4px 0px 0px;
  overflow: hidden;
}
.ny-body-left .head {
  background: url(../images/img39.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  font-size: 18px;
  padding: 10px 30px;
  position: relative;
  font-weight: bold;
}
.ny-body-left .head:before {
  content: "";
  display: block;
  width: 3px;
  height: 18px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 100px;
}
.ny-body-left .list {
  padding: 30px;
  padding-left: 0;
}
.ny-body-left .list > a {
  display: block;
  padding-left: 36px;
  margin-bottom: 30px;
  position: relative;
  font-size: 15px;
  color: #333;
  line-height: 1.2;
}
.ny-body-left .list > a:last-child {
  margin-bottom: 0;
}
.ny-body-left .list > a:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  border-radius: 100%;
}
.ny-body-left .nav {
  padding: 5px 15px;
}
.ny-body-left .nav .nav-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  padding: 15px 15px;
}
.ny-body-left .nav .nav-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.ny-body-left .nav .nav-item span {
  flex-grow: 1;
  min-width: 0;
}
.ny-body-left .nav .nav-item:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #adadad;
  border-right: 1px solid #adadad;
  transform: rotate(45deg);
}
.ny-body-left .nav .nav-item:last-child {
  border-bottom: 0;
}
.ny-body-main {
  padding-bottom: 100px;
  min-width: 0;
  flex-grow: 1;
}
.ny-head {
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.ny-head .text {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  padding-bottom: 0.3333rem;
  border-bottom: 2px solid #e60012;
  font-weight: bold;
}
.ny-head .mxw-more {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
  padding-top: 0.0833rem;
}
.ny-head .mxw-more:hover {
  color: #e60012;
}
.ny-head .btn-group {
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ny-head .btn-group .swiper-button-prev,
.ny-head .btn-group .swiper-button-next {
  width: 0.4333rem;
  height: 0.4333rem;
  background-color: #d3d3d3;
  position: static;
  display: block;
  margin: 0;
  display: flex;
  align-items: center;
  opacity: 1;
  justify-content: center;
}
.ny-head .btn-group .swiper-button-prev:hover,
.ny-head .btn-group .swiper-button-next:hover {
  background-color: #e60012;
}
.ny-head .btn-group .swiper-button-prev:after,
.ny-head .btn-group .swiper-button-next:after {
  font-size: 0.1667rem;
  color: #fff;
}
.ny-head .btn-group .swiper-button-prev {
  margin-right: 0.1667rem;
}
@media screen and (min-width: 1200px) {
  .ny-body-left {
    margin-right: 66px;
    width: 340px;
    flex-shrink: 0;
  }
  .ny-body > .mxw-box {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1200px) {
  .ny-body-left {
    position: static;
  }
  .ny-body-left .head {
    font-size: 16px;
    padding: 10px 25px;
  }
  .ny-body-left .head:before {
    left: 10px;
  }
  .ny-body-left .list {
    padding: 20px;
    padding-left: 0;
  }
  .ny-body-left .list > a {
    padding-left: 30px;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .ny-body-left .list > a::before {
    width: 6px;
    height: 6px;
    left: 12px;
  }
  .ny-body-left .nav {
    padding: 0;
  }
  .ny-body-left .nav .nav-item {
    font-size: 13px;
  }
  .ny-body-main {
    padding-bottom: 0;
    margin-top: 30px;
  }
  .ny-head .text {
    padding-bottom: 10px;
  }
}
/* ==================== 内页通用样式 end ==================== */
/* ==================== Page1 start ==================== */
.ny-page1 .component-news ul {
  padding: 0;
}
.ny-page1 .component-news .head {
  border-bottom: 0.0167rem solid #e7e7e7;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.ny-page1 .component-news .head .text {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  padding-bottom: 0.3333rem;
  border-bottom: 2px solid #e60012;
  font-weight: bold;
}
.ny-page1 .component-news .head .mxw-more {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
  padding-top: 0.0833rem;
}
.ny-page1 .component-news .head .mxw-more:hover {
  color: #e60012;
}




.ny-page1 .section1 .swiper1.jjjj .head {
  border-bottom: 0.0167rem solid #e7e7e7;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.ny-page1 .section1 .swiper1.jjjj .head .text {
  font-size: 0.3333rem;
  color: #333;
  line-height: 1.2;
  padding-bottom: 0.3333rem;
  border-bottom: 2px solid #e60012;
  font-weight: bold;
}
.ny-page1 .section1 .swiper1.jjjj .head .mxw-more {
  font-size: 0.2667rem;
  color: #666;
  line-height: 1.2;
  padding-top: 0.0833rem;
}
.ny-page1 .section1 .swiper1.jjjj .head .mxw-more:hover {
  color: #e60012;
}
.ny-page1 .section1 .swiper1.jjjj{    width: 48.5%;}

.ny-page1 .section1 .swiper1.jjjj .desc {
  font-size: 0.3rem;
  color: #333;
  line-height: 2.4;
  text-align: justify;
}





.ny-page1 .section1 .swiper1 .swiper-slide {
  display: block;
  position: relative;
}
.ny-page1 .section1 .swiper1 .title {
  width: 100%;
  font-size: 0.2667rem;
  color: #fff;
  height: 0.8333rem;
  line-height: 0.8333rem;
  padding-left: 0.5rem;
  padding-right: 3.3333rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
}
.ny-page1 .section1 .swiper1 .swiper-pagination {
  position: absolute;
  bottom: 0.3333rem;
  right: 0.5rem;
  left: auto;
  z-index: 999;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ny-page1 .section1 .swiper1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  margin-right: 0.3rem;
  margin-left: 0;
}
.ny-page1 .section1 .swiper1 .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.ny-page1 .section1 .swiper1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e60012;
}
.ny-page1 .section1 .ad-image {
  position: relative;
}
.ny-page1 .section1 .ad-image img {
  width: 100%;
}
.ny-page1 .section1 .ad-image:after {
  content: "广告";
  padding: 0.1333rem 0.25rem;
  background-color: rgba(0, 0, 0, 0.36);
  border-bottom-left-radius: 0.2rem;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.ny-page1 .section2 {
  padding-bottom: 1.3333rem;
}
.ny-page1 .section2 .cover2 {
  margin-bottom: 0.6667rem;
}
@media screen and (min-width: 1200px) {
  .ny-page1 .section1 {
    padding-top: 0.8333rem;
    padding-bottom: 0.8333rem;
  }
  .ny-page1 .section1 .body {
    margin-bottom: 0.6667rem;
    display: flex;
    align-items: flex-start;
  }
  .ny-page1 .section1 .swiper1 {
    margin-left: 0;
    width: 52.5%;
    margin-right: 0.8333rem;
  }
  .ny-page1 .section1 .component-news {
    min-width: 0;
    flex-grow: 1;
  }
  .ny-page1 .section2 > .mxw-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .ny-page1 .section2 .item {
    width: 48%;
  }
}
@media screen and (max-width: 1760px) {
  .ny-page1 .component-news ul li {
    margin-bottom: 0.42rem;
  }
  .ny-page1 .component-news ul li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .ny-page1 .component-news .head {
    margin-bottom: 20px;
  }
  .ny-page1 .component-news .head .text {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .ny-page1 .component-news .head .mxw-more {
    font-size: 12px;
  }
  .ny-page1 .section1 > .mxw-box {
    padding-bottom: 0;
  }
  .ny-page1 .section1 .ad-image {
    margin-top: 30px;
  }
  .ny-page1 .section1 .ad-image:after {
    padding: 5px 10px;
    font-size: 12px;
  }
  .ny-page1 .section1 .swiper1 {
    margin-bottom: 30px;
  }
  .ny-page1 .section1 .swiper1 .title {
    font-size: 12px;
    padding: 8px 15px;
    height: auto;
    line-height: 1.8;
  }
  .ny-page1 .section1 .swiper1 .swiper-pagination {
    position: static;
    justify-content: center;
    margin-top: 15px;
  }
  .ny-page1 .section1 .swiper1 .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 5px;
  }
  .ny-page1 .section2 {
    padding-bottom: 0;
  }
  .ny-page1 .section2 .cover2 {
    margin-bottom: 20px;
  }
  .ny-page1 .section2 .item {
    margin-bottom: 30px;
  }
  .ny-page1 .section2 .item:last-child {
    margin-bottom: 0;
  }
}
/* ==================== Page1 end ==================== */
/* ==================== Page2 start ==================== */
.ny-page2 .ny-body-main .ad-image {
  margin-bottom: 60px;
}
.ny-page2 .ny-body-main .item {
  margin-bottom: 70px;
}
.ny-page2 .ny-body-main .item:last-child {
  margin-bottom: 0;
}
.ny-page2 .ny-body-main .item .list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ny-page2 .ny-body-main .item .list-item .title {
  text-align: center;
  border: solid 1px #efefef;
  padding: 25px;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}
.ny-page2 .ny-body-main .item .page2-swiper .swiper-slide .image {
  position: relative;
}
.ny-page2 .ny-body-main .item .page2-swiper .swiper-slide .image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/img38.png) no-repeat center center;
  background-size: 0.6833rem 0.6833rem;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.ny-page2 .ny-body-main .item .page2-swiper .swiper-slide .title {
  padding: 20px;
  text-align: center;
  font-size: 17px;
  color: #333;
  line-height: 1.2;
  border: solid 1px #efefef;
}
@media screen and (min-width: 1200px) {
  .ny-page2 .body .mxw-box {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1200px) {
  .ny-page2 .ny-body-main .ad-image {
    margin-bottom: 30px;
    text-align: center;
  }
  .ny-page2 .ny-body-main .item {
    margin-bottom: 30px;
  }
  .ny-page2 .ny-body-main .item .list-item .title {
    padding: 10px;
    font-size: 12px;
  }
  .ny-page2 .ny-body-main .item .page2-swiper .swiper-slide .title {
    padding: 10px;
    font-size: 12px;
  }
}
/* ==================== Page2 end ==================== */
/* ==================== 内页 - 讨论 start ==================== */
.ny-message-box form {
  margin-bottom: 90px;
  display: block;
  width: 100%;
}

.ny-message-box form input{
background-color: #f6f6f6;
  border: solid 1px #efefef;
 padding: 20px;
  font-size: 16px; width:100%; margin-bottom:15px;
}

.ny-message-box form textarea {
  display: block;
  width: 100%;
  background-color: #f6f6f6;
  border: solid 1px #efefef;
  height: 240px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  resize: none;
}
.ny-message-box form button {
  display: block;
  margin-right: 0;
  margin-left: auto;
  width: 120px;
  height: 44px;
  line-height: 44px;
  font-size: 18px;
  color: #fff;
  background-color: #e60012;
  border-radius: 6px;
}
.ny-message-box .list {
  border: solid 1px #efefef;
  border-bottom: 0;
}
.ny-message-box .list .item {
  width: 100%;
  border-bottom: 0.0167rem solid #e7e7e7;
  padding: 0.5833rem 0.3333rem;
  display: flex;
  align-items: center;
  transition: box-shadow 0.4s;
}
.ny-message-box .list .item:hover {
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.4);
}
.ny-message-box .list .item .left {
  min-width: 0;
  flex-grow: 1;
  padding-right: 0.3333rem;
}
.ny-message-box .list .item .left .text1 {
  margin-bottom: 0.1667rem;
  font-size: 0.2667rem;
  color: #333;
  line-height: 1.2;
  position: relative;
}
.ny-message-box .list .item .left .text1:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../images/img11.png) no-repeat center;
  background-size: 100%;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.2rem;
}
.ny-message-box .list .item .left .text2 {
  font-size: 0.3rem;
  color: #333;
  line-height: 1.2;
}
.ny-message-box .list .item .date {
  font-size: 18px;
  color: #666;
}
@media screen and (min-width: 1200px) {
  .ny-message-box .body > .mxw-box {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1200px) {
  .ny-message-box form {
    margin-bottom: 30px;
  }
  .ny-message-box form textarea {
    padding: 10px;
    font-size: 14px;
  }
  .ny-message-box form button {
    width: 100%;
    font-size: 14px;
    height: auto;
    line-height: inherit;
    padding: 8px;
    border-radius: 4px;
  }
  .ny-message-box .list .item {
    padding: 15px;
  }
  .ny-message-box .list .item .date {
    font-size: 14px;
  }
  .ny-message-box .list .item .left .text1 {
    opacity: 0.7;
  }
}
/* ==================== 内页 - 讨论 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact-box .content {
  font-size: 0.2833rem;
  color: #333;
  line-height: 2.6;
  text-align: justify;
}
@media screen and (min-width: 1200px) {
  .ny-contact-box .body > .mxw-box {
    display: flex;
    align-items: flex-start;
  }
}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
  overflow: hidden;
  padding-top: 0;
  margin-bottom: 0.5645rem;
}
.ny-news-desc > .mxw-box {
  padding-top: 1rem;
}
.ny-news-desc .title {
  font-weight: bold;
  font-size: 0.4516rem;
  color: #333;
  padding-bottom: 0.3226rem;    text-align: center;
}
.ny-news-desc .info {
  font-size: 0;
  padding-bottom: 0.3226rem;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 0.3226rem;
}
.ny-news-desc .info .text {
  font-size: 0.2581rem;
  color: #999;
  display: inline-block;
  margin-right: 0.3226rem;
  border-left: 1px solid #ccc;
  padding-left: 0.3226rem;
}
.ny-news-desc .info .tip + .text {
  border-left: 0;
}
.ny-news-desc .info .tip {
  border: 1px solid #999;
  border-radius: 1.6129rem;
  padding: 0.0806rem 0.1613rem;
  line-height: 1;
  font-size: 0.2258rem;
  display: inline-block;
  color: #999;
}
.ny-news-desc .article img {
  display: block;
  margin: 0 auto;
}
.ny-news-desc .article {
  line-height: 1.8;
  text-align: justify;
  font-size: 0.2581rem;
}
.ny-news-desc .article p {
  line-height: 1.8;
}
@media screen and (max-width: 751px) {
  .ny-news-desc {
    padding: 0;
    background: none;
    margin-bottom: 0;
  }
  .ny-news-desc > .mxw-box {
    padding: 30px 20px;
  }
  .ny-news-desc .article {
    font-size: 0.28rem;
  }
  .ny-news-desc .info .text {
    margin-right: 0.1rem;
    padding-left: 0.1rem;
    line-height: 2em;
    display: inline;
  }
  .ny-news-desc .info {
    padding-bottom: 0.2rem;
  }

.ny-news-desc .article img {
max-width:100%;
height:auto !important
}
.Pagination a{    display: inline-block;}


}
/* ==================== 新闻详情 end ==================== */
/* ==================== 底部样式 start ==================== */
footer .foot-top {
  background-color: #e60012;
}
footer .foot-top > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
footer .foot-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0.3333rem;
  border-bottom: 0.0167rem solid rgba(255, 255, 255, 0.53);
  margin-bottom: 0.3333rem;
  padding-right: 1.3333rem;
}
footer .foot-nav .nav-item {
  display: block;
  font-size: 0.2667rem;
  color: #fff;
  line-height: 1.2;
}
footer .foot-nav .nav-item:last-child:after {
  display: none;
}
footer .foot-nav .nav-item:hover {
  color: #fff !important;
}
footer .foot-nav .nav-item:after {
  content: "";
  display: inline-block;
  width: 0.0167rem;
  height: 0.2667rem;
  background-color: #fff;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
footer .foot-contact {
  font-size: 0.2667rem;
  color: #fff;
  line-height: 1.8;
}
footer .foot-contact p {
  display: inline-block;
  margin-right: 0.6667rem;
}
footer .foot-contact p:last-child {
  margin-right: 0;
}
footer .foot-qr {
  display: flex;
  align-items: flex-start;
}
footer .foot-qr .qr {
  margin-right: 0.5rem;
}
footer .foot-qr .qr:last-child {
  margin-right: 0;
}
footer .foot-qr .qr img {
  width: 1.5rem;
}
footer .foot-qr .qr p {
  font-size: 0.2333rem;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  margin-top: 0.1667rem;
}
footer .mxw-copyright {
  background-color: #fff;
  text-align: center;
}
footer .mxw-copyright > .mxw-box {
  font-size: 0.2333rem;
  line-height: 1.8;
  color: #666;
  padding: 0.25rem 0;
}
footer .mxw-copyright a:hover {
  color: #e60012;
}
@media screen and (max-width: 1200px) {
  footer .foot-top > .mxw-box {
    flex-wrap: wrap;
  }
  footer .foot-nav {
    padding-bottom: 10px;
    padding-right: 0;
    flex-wrap: wrap;
  }
  footer .foot-nav .nav-item {
    width: 32%;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  footer .foot-nav .nav-item:after {
    display: none;
  }
  footer .foot-nav .nav-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  footer .foot-contact {
    text-align: center;
  }
  footer .foot-contact p {
    margin-right: 0;
    display: block;
  }
  footer .foot-qr {
    margin: 0 auto;
    margin-top: 10px;
    justify-content: center;
  }
  footer .mxw-copyright > .mxw-box {
    padding: 10px;
  }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
  max-width: 84.3%;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
  font-family: inherit;
}
.mxw-box a:hover {
  color: #e60012;
}
/* 内页 banner */
.ny-banner img {
  width: 100%;
}
/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1200px) {
  .pc-none,
  .mob-nav,
  .pc-none {
    display: none !important;
  }
  .mxw-ny-box {
    padding-top: 1.3333rem;
    padding-bottom: 0.8334rem;
    max-width: 72.9%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    max-width: 86%;
  }
}
@media screen and (max-width: 1200px) {
  body {
    margin-top: 60px;
  }
  .m-none,
  .pc-nav {
    display: none !important;
  }
  .mxw-box {
    padding: 30px 20px;
    max-width: 100%;
  }
  .mxw-section {
    padding-left: 0;
    padding-right: 0;
  }
  article {
    font-size: 15px;
  }
  .mxw-ny-box {
    max-width: 100%;
    font-size: 0;
    padding: 30px 20px;
  }
}
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 50px;
  }
}




/* ==================== 页面自定义样式 end ==================== */
.xgpl-til{
	font-size: 24px;
	margin-bottom: 15px;
}
.xgpl-til span{
	display: inline-block;
	margin-left: 5px;
	font-size: 14px;
	color: #CCCCCC;
}
.xgpl-toptex{
	width: 100%;
	height: 200px;
	border: 3px solid #F0F0F0;
	margin-bottom: 50px;
}
.xgpl-toptex form{
	width: 100%;
}
.xgpl-toptex form textarea{
	padding: 16px;
	width: 100%;
	height: 135px;
	overflow-y: auto;
	border: none;
}
.use-sub{
	border-top: 1px solid #F0F0F0;
	height: 55px;
	padding: 10px;
}
.use-sub input{
	float: right;
    color: white;
    border: none;
    background-color: #B2292E;
    border-radius: 23px;
    width: 110px;
    height: 34px;
}
.use-sub div{
	display: inline-block;
}
.use-sub div p{
	float: left;
	width: 36px;
	height: 36px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 12px;
}
.use-sub div p img{
	width: 100%;
	height: 100%;
}
.use-sub div span{
	display: inline-block;
	font-weight: bold;
	margin-top: 7px;
}
.xgpl-btil{
	border-bottom: 1px solid #EDEDED;
	font-size: 18px;
	padding-bottom: 12px;
}
.xgpl-bot ul li{
	border-bottom: 1px solid #EDEDED;
	padding: 25px 0;
	position: relative;
}
.xgpl-bot ul li>p{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	float: left;
}
.xgpl-imp{
	display: inline-block;
	
    width: 100%;
}
.xgpl-imp a{
	display: block;
	margin-bottom: 10px;
}
.xgpl-imp div{
	line-height: 24px;font-size: 14px;
	
}
.xgpl-imp span{
	color: #999999;
	font-size: 12px;
}
.xgpl-tt{
	position: absolute;
	right: 0;
	bottom: 20px;
}
.xgpl-tt img{
	width: 16px;
	height: 16px;
}
.xgpl-tt a{
	color: #C3C3C3;
}
.xgpl-tt span{
	display: inline-block;
	line-height: 20px;
	color: #666666;
	margin-left: 30px;
	font-size: 12px;
}
.xgpl-tt img{
	margin-right: 8px;
	margin-bottom: 3px;
}
.thegd{
	height:1070px;
	overflow: hidden;
	transition: all 0.4s;
}
.mod-legd{
	background-color: #F2F2F2;
	color: #888888;
	text-align: center;
	padding: 12px;
	cursor: pointer;
	font-size: 16px;
}

.ny-news-desc .article iframe{
max-width:100%;display: block;
    margin: 0 auto;
}


@media screen and (max-width: 1200px) {
.ny-page1 .section1 .swiper1.jjjj{width:100%;}
.xgpl-til{    font-size: 22px; }
.xgpl-til span{margin-top:5px;}
.xgpl-toptex{     border: 1px solid #F0F0F0;}
.component-news.kdz{ margin-bottom:40px}
.ny-page1 .section1 .swiper1.jjjj .head{ margin-bottom:15px;}

}

@media screen and (max-width: 500px) {

.ny-news-desc .article iframe{
	height:210px;
}
.ny-page1 .section1 .swiper1.jjjj .desc {
    font-size: 14px;
    text-align: left;
    line-height: 1.75;
}

}


