@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%;
}
canvas {
  vertical-align: middle;
}
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 ==================== */
.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 ==================== */
.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%;
}
/* ==================== 通用布局 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
  0% {
    transform: translate(0rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.1667rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
/* ==================== 动画 end ==================== */
/* ==================== 置顶按钮 start ==================== */
#goto-top {
  position: fixed;
  z-index: 10;
  right: 10px;
  bottom: 10%;
  width: 54px;
  height: 54px;
  cursor: pointer;
  background: #ff921c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
}
#goto-top.active {
  visibility: visible;
  opacity: 1;
}
#goto-top:after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/img14.png) no-repeat center;
  width: 25px;
  height: 16px;
}
@media screen and (max-width: 751px) {
  #goto-top {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
/* ==================== 置顶按钮 end ==================== */
/* ==================== 头部 start ==================== */
header {
  position: relative;
  z-index: 2;
  background-color: #ebebeb;
}
header > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.1em;
  color: #4a4a4a;
}
header .right-tool {
  display: flex;
  align-items: center;
}
header .language {
  position: relative;
  cursor: pointer;
}
header .language:hover ul {
  visibility: visible;
  transform: translate(-50%, -8px);
  opacity: 1;
}
header .language:hover ul:hover {
  visibility: visible;
  transform: translate(-50%, -8px);
  opacity: 1;
}
header .language .head:after {
  content: "";
  display: inline-block;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(-45deg);
  margin-left: 5px;
  width: 6px;
  height: 6px;
}
header .language ul {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, 0);
  background-color: #fff;
  padding: 12px 0;
  border: 1px solid #ebebeb;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
header .language li {
  margin-bottom: 10px;
  color: #cdcccc;
}
header .language li:hover a,
header .language li.active a {
  color: #4a4a4a;
}
header .language li:last-child {
  margin-bottom: 0;
}
header .language a {
  display: block;
  line-height: 1;
  white-space: nowrap;
  padding: 0 15px;
}
header .mxw-btn {
  display: block;
  padding: 15px 15px;
  position: relative;
}
header .mxw-btn:last-child {
  padding-right: 0;
}
header .mxw-btn:last-child:after {
  display: none;
}
header .mxw-btn:after {
  content: "";
  display: block;
  background-color: #dbdbdb;
  width: 1px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header.style2 {
  background-color: #ebebeb;
}
header .left-nav {
   width: 10;
  display: flex;
  align-items: center;
}
header .left-nav > li {
  margin-right: 35px;
  padding: 15px 0;
}
header .left-nav > li:last-child {
  margin-right: 0;
}
header .left-nav > li.sub > a:after {
  content: "";
  display: inline-block;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  margin-left: 8px;
  margin-top: -8px;
  width: 8px;
  height: 8px;
}
header .left-nav .sub-nav-btn {
  cursor: pointer;
}
header .left-nav .sub-nav-btn.active::after {
  content: "-";
}
header .left-nav .sub-nav-btn:after {
  content: "+";
}
header .sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 20px 10px -22px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}
header .sub-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
header .sub-nav > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .sub-nav li {
  font-size: 14px;
  line-height: 1.1em;
  color: #4a4a4a;
  margin-right: 25px;
  padding: 15px 0;
}
header .sub-nav li:last-child {
  margin-right: 0;
}
/* ==================== 头部 end ==================== */
/* ==================== 通用头部一 start ==================== */
.common-head1 .top > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  width: 100%;
  position: relative;
}
.common-head1 .top .search {
  width: 280px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: solid 1px #d6d6d6;
  border-radius: 23px;
  height: 45px;
  line-height: 45px;
  display: flex;
  align-items: center;
  padding-right: 12px;
}
.common-head1 .top .search input {
  padding: 0 10px 0 20px;
  flex-grow: 1;
}
.common-head1 .top .search input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #d7d7d7;
}
.common-head1 .top .search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #d7d7d7;
}
.common-head1 .top .search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #d7d7d7;
}
.common-head1 .top .search input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #d7d7d7;
}
.common-head1 .top .search button {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.common-head1 .nav {
  background-color: #fff;
  box-shadow: 0px 0px 37px -10px rgba(0, 0, 0, 0.14);
  transition: max-height 0.4s;
}
.common-head1 .nav.click {
  max-height: 65px;
  overflow: hidden;
}
.common-head1 .nav.click ul:after {
  top: 24px;
  height: 20px;
}
.common-head1 .nav.click ul:nth-child(4) ~ ul:after {
  top: 24px;
}
.common-head1 .nav.click.active {
  max-height: 110px;
}
.common-head1 .nav > .mxw-box {
  position: relative;
}
.common-head1 .nav > .mxw-box > .nav-btn {
  position: absolute;
  top: 14px;
  right: -40px;
  font-size: 20px;
  cursor: pointer;
}
.common-head1 .nav > .mxw-box > .nav-btn.active:after {
  content: "-";
}
.common-head1 .nav > .mxw-box > .nav-btn:after {
  content: "+";
}
.common-head1 .nav .itembox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.common-head1 .nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
  position: relative;
  width: 25%;
  padding-top: 20px;
}
.common-head1 .nav ul:after {
  content: "";
  display: block;
  width: 1px;
  height: 29px;
  position: absolute;
  right: 0;
  top: 28px;
  background-color: #dedede;
}
.common-head1 .nav ul:nth-child(4n-3) {
  padding-left: 0;
}
.common-head1 .nav ul:nth-child(4n) {
  padding-right: 0;
}
.common-head1 .nav ul:nth-child(4n):after {
  display: none;
}
.common-head1 .nav ul:nth-child(4) ~ ul:after {
  top: 12px;
}
.common-head1 .nav ul:nth-child(4) ~ ul li:after {
  top: auto;
  bottom: -20px;
}
.common-head1 .nav li {
  flex-shrink: 0;
  font-size: 19px;
  color: #343434;
  position: relative;
}
.common-head1 .nav li:after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background-color: #ff921c;
  transition: width 0.4s;
  transform: translateX(-50%);
  top: -20px;
  left: 50%;
  position: absolute;
}
.common-head1 .nav li.active:after,
.common-head1 .nav li:hover:after {
  width: 100%;
}
.common-head1 .nav li.active a,
.common-head1 .nav li:hover a {
  color: #ff921c;
}
.common-head1 .nav li:first-child {
  color: #000;
  font-weight: bold;
}
/* ==================== 通用头部一 end ==================== */
/* ==================== 通用头部三 start ==================== */
.head-style3 {
  margin-bottom: 45px;
}
.head-style3 .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.head-style3 .right {
  display: flex;
  align-items: center;
}
.head-style3 .img1 {
  margin-right: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.head-style3 .common-search {
  margin-right: 24px;
}
.head-style3 .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.head-style3 .btn-group > a {
  display: block;
  width: 60px;
  height: 36px;
  line-height: 34px;
  border: 1px solid #8d97cc;
  text-align: center;
  border-radius: 100px;
  margin-right: 10px;
  font-size: 12px;
}
.head-style3 .btn-group > a:hover {
  color: #1479d7;
}
.head-style3 .btn-group > a:last-child {
  margin-right: 0;
}
.head-style3 .btn-group > a.active {
  background-color: #1479d7;
  border-color: #1479d7;
  color: #fff;
}
.head-style3 .nav {
  background-color: #1479d7;
  border-radius: 8px;
}
.head-style3 .nav > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.head-style3 .nav ul {
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 25%;
  padding-top: 20px;
}
.head-style3 .nav ul:after {
  content: "";
  display: block;
  width: 1px;
  height: 29px;
  position: absolute;
  right: 0;
  top: 28px;
  background-color: #6d83f6;
}
.head-style3 .nav ul:nth-child(4n):after {
  display: none;
}
.head-style3 .nav ul:nth-child(4) ~ ul:after {
  top: 12px;
}
.head-style3 .nav ul:nth-child(4) ~ ul li:after {
  top: auto;
  bottom: -20px;
}
.head-style3 .nav li {
  flex-shrink: 0;
  font-size: 19px;
  color: #fff;
  position: relative;
}
.head-style3 .nav li.active a,
.head-style3 .nav li:hover a {
  color: #fff;
}
.head-style3 .nav li:first-child {
  font-weight: bold;
}
/* ==================== 通用头部三 end ==================== */
/* ==================== 首页 - 第一版块 start ==================== */
.index-section1 .top {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 44px;
}
.index-section1 .top .text1 {
  margin-bottom: 15px;
  font-size: 38px;
  color: #ff921c;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
  display: block;
}
.index-section1 .top ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-section1 .top li {
  font-size: 15px;
  color: #6d6d6d;
  line-height: 1.2;
  position: relative;
  margin-right: 20px;
}
.index-section1 .top li:hover a {
  color: #ff921c;
}
.index-section1 .top li:last-child {
  margin-right: 0;
}
.index-section1 .top li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../images/img01.png) no-repeat center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.index-section1 .bottom {
  width: 100%;
}
.index-section1 .bottom > .mxw-box {
  display: flex;
  align-items: flex-start;
}
.index-section1 .banner-swiper {
  margin-left: 0;
  flex-shrink: 0;
  width: 710px;
  margin-right: 40px;
  border-radius: 10px;
  overflow: hidden;
}
.index-section1 .banner-swiper:hover .swiper-button-prev,
.index-section1 .banner-swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
.index-section1 .banner-swiper .item {
  display: block;
  position: relative;
}
.index-section1 .banner-swiper .info {
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 25px;
  background-image: linear-gradient(transparent 40%, #000);
}
.index-section1 .banner-swiper .info .title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.index-section1 .banner-swiper .info .time {
  font-size: 14px;
  color: #aaa;
  line-height: 1;
}
.index-section1 .banner-swiper .swiper-button-prev,
.index-section1 .banner-swiper .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 80px;
  border-radius: 4px;
  transform: translateY(-50%);
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.index-section1 .banner-swiper .swiper-button-prev:after,
.index-section1 .banner-swiper .swiper-button-next:after {
  content: "";
  display: block;
  background: url(../images/img03.png) no-repeat center;
  width: 32px;
  height: 32px;
}
.index-section1 .banner-swiper .swiper-button-prev:after {
  transform: rotateY(180deg);
}
.index-section1 .banner-swiper .swiper-pagination {
  width: auto;
  position: absolute;
  right: 16px;
  left: auto;
  bottom: 24px;
  font-size: 0;
}
.index-section1 .banner-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: #9ba3ab;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 8px;
  transition: all 0.4s;
}
.index-section1 .banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 100px;
  background-color: #ff921c;
}
.index-section1 .right-list {
 width: 445px;

  flex-grow: 1;
}
.index-section1 .right-list.pageList{ padding-left: 30px;}
.index-section1 .right-list .item {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  color: #4a4a4a;
  margin-bottom: 22px;
  transition: transform 0.4s, color 0.4s;
}
.index-section1 .right-list .item:hover {
  color: #ff921c !important;
  transform: translateX(5px);
}
.index-section1 .right-list .item:last-child {
  margin-bottom: 0;
}
.index-section1 .right-list .item:nth-child(3n){ margin-bottom: 35px;}
.index-section1 .right-list .item:nth-child(3n-2) {
  font-weight: bold;
  color: #000;
  font-size: 20px;
}
.index-section1 .right-list .item.video {
  position: relative;
}
.index-section1 .right-list .item.video:before {
  content: "";
  display: inline-block;
  background: url(../images/img04.png) no-repeat center;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
.index-section1 #index-section1-swiper {
  height: 60px;
}
/* ==================== 首页 - 第一版块 end ==================== */
/* ==================== 首页 - 广告图 start ==================== */
.index-ad-banner {
  margin: 30px 0;
}
.index-ad-banner .mxw-box {
  overflow: hidden;
  border-radius: 9px;
}
/* ==================== 首页 - 广告图 end ==================== */
/* ==================== 首页 - 版块二 start ==================== */
/* ==================== 首页 - 版块二 end ==================== */
/* ==================== 通用选项卡面板 start ==================== */
.index-tabs.index-tabs-style1 .head .item {
  border-top: 0;
  height: auto;
  padding-bottom: 16px;
  background-image: inherit;
  border: 0;
  border-bottom: 3px solid transparent;
}
.index-tabs.index-tabs-style1 .head .item:hover,
.index-tabs.index-tabs-style1 .head .item.active {
  border-top: 0;
  border-bottom-color: #1479d7;
  color: #1479d7;
}
.index-tabs.index-tabs-style1 .item2 {
  display: flex;
  align-items: center;
  width: 49%;
}
.index-tabs.index-tabs-style1 .item2:nth-child(2n) {
  margin-left: 2%;
}
.index-tabs.index-tabs-style1 .item2:nth-child(2) ~ .item2 {
  margin-top: 25px;
}
.index-tabs.index-tabs-style1 .item2 .image {
  width: 240px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.index-tabs.index-tabs-style1 .item2 .info {
  flex-grow: 1;
  min-width: 0;
}
.index-tabs.index-tabs-style1 .item2 .info .time {
  font-size: 14px;
  color: #a6a6a6;
  line-height: 1.2;
  margin-bottom: 5px;
}
.index-tabs.index-tabs-style1 .item2 .info .title {
  font-size: 18px;
  color: #000;
  line-height: 1.6em;
  text-align: justify;
  height: 4.8em;
}
.index-tabs.index-tabs-style1 .item2 .info .tag {
  margin-top: 10px;
  display: flex;
  align-items: stretch;
}
.index-tabs.index-tabs-style1 .item2 .info .tag > a {
  background-color: #f1f0f0;
  font-size: 13px;
  color: #878787;
  height: 24px;
  padding: 0 10px;
  line-height: 24px;
  border-radius: 4px;
  margin-right: 10px;
}
.index-tabs.index-tabs-style1 .item2 .info .tag > a:hover {
  background-color: #1479d7;
  color: #fff;
}
.index-tabs .head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  position: relative;
}
.index-tabs .head:after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f1f0f0;
}
.index-tabs .head .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 56px;
  background-image: linear-gradient(0deg, #f5f5f5 0%, #ffffff 100%);
  border: solid 1px #f1f0f0;
  font-size: 22px;
  color: #000;
  letter-spacing: 2px;
  font-weight: bold;
}
.index-tabs .head .item.active {
  background: #fff;
  color: #ff921c;
  font-weight: bold;
  border-top: 3px solid #ff921c;
}
.index-tabs .tabs-swiper {
  margin-bottom: 40px;
}
.index-tabs .tabs-swiper .swiper-slide {
  padding-bottom: 30px;
  background-color: #fff;
}
.index-tabs .tabs-swiper .item {
  transition: background-color 0.4s, box-shadow 0.4s;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.index-tabs .tabs-swiper .item:hover {
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.index-tabs .tabs-swiper .item .image {
  display: block;
  border-radius: 10px 10px 0px 0px;
}
.index-tabs .tabs-swiper ul {
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #f1f0f0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.index-tabs .tabs-swiper ul li {
  padding: 15px 0;
  border-bottom: 1px solid #f1f0f0;
}
.index-tabs .tabs-swiper ul li:first-child a {
  color: #000;
  font-weight: bold;
}
.index-tabs .tabs-swiper ul li a {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6em;
  height: 3.2em;
  transition: color 0.2s;
}
.index-tabs .tabs-swiper ul li a:hover {
  color: #ff921c;
}
.index-tabs .tabs-swiper ul li.video {
  position: relative;
}
.index-tabs .tabs-swiper ul li.video a:before {
  content: "";
  display: inline-block;
  background: url(../images/img04.png) no-repeat center;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
.index-tabs .tabs-swiper ul li:last-child {
  border-bottom: 0;
}
/* ==================== 通用选项卡面板 end ==================== */
/* ==================== 页面二-板块一 start ==================== */
.index2-section1 .top {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 35px;
}
.index2-section1 .top .text1 {
  margin-bottom: 0;
  font-size: 30px;
  color: #ff921c;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
  display: block;
}
.index2-section1 .banner-swiper {
  width:1040px;
  margin-right: 10px;
}
.index2-section1 .right-list2 .item {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 11px;
}
.index2-section1 .right-list2 .item{ width: 445px; height: 305px;}
.index2-section1 .right-list2 .item img{ display: block; width: 100%; height: 100%;}


.index2-section1 .right-list2 .item:hover .info .title,
.index2-section1 .right-list2 .item:hover .info .more {
  color: #ff921c;
}
.index2-section1 .right-list2 .item:last-child {
  margin-bottom: 0;
}
.index2-section1 .right-list2 .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(transparent 20%, #000);
  color: #fff;
  padding: 15px;
}
.index2-section1 .right-list2 .info .title {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.index2-section1 .right-list2 .info .more {
  font-size: 12px;
}
.index2-section1 .new-tag {
  width: 58px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-size: 12px;
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 20px;
  text-align: center;
  background-color: #ff921c;
  border-radius: 5px;
}
/* ==================== 页面二-板块一 end ==================== */
/* ==================== 通用 - 面包屑 start ==================== */
.bread-crumbs {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.bread-crumbs a {
  display: block;
  font-size: 12px;
  color: #878787;
}
.bread-crumbs a:last-child:after {
  display: none;
}
.bread-crumbs a:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  transform: rotate(45deg);
  margin: 0 5px;
  margin-right: 10px;
  vertical-align: 1px;
}
.bread-crumbs:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/img24.png) no-repeat;
  margin-top: 2px;
  margin-right: 5px;
}
/* ==================== 通用 - 面包屑 end ==================== */
/* ==================== 页面二 - 广告图 start ==================== */
.index2-ad-banner {
  margin: 23px 0;
}
/* ==================== 页面二 - 广告图 end ==================== */
/* ==================== 页面二 - section2 start ==================== */
.index2-section2 > .mxw-box {
  padding-bottom: 160px;
}
.index2-section2 .item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.4s;
  border: solid 1px #f1f0f0;
}
.index2-section2 .item:hover {
  box-shadow: 0px 0px 47px 0px rgba(0, 0, 0, 0.15);
}
.index2-section2 .item .image {
  display: block;
}
.index2-section2 .item .info {
  background-color: #fff;
  padding: 20px 15px;
}
.index2-section2 .item .title {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  height: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
}
.index2-section2 .item .title:hover {
  color: #ff921c;
}
.index2-section2 .item .other {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #878787;
}
.index2-section2 .item .other .time {
  color: #c8c8c8;
}
.index2-section2 .item .other .time:before {
  content: "";
  display: inline-block;
  height: 14px;
  width: 1px;
  background-color: #c8c8c8;
  margin: 0 10px 0 0;
}
.index2-section2 .item .other a {
  margin-right: 15px;
}
.index2-section2 .item .other a:last-child {
  margin-right: 0;
}
/* ==================== 页面二 - section2 end ==================== */
/* ==================== 加载中按钮 start ==================== */
.more-btn {
  margin-top: 50px;
  width: 100%;
  height: 37px;
  line-height: 37px;
  background-color: #f1f0f0;
  color: #000;
  font-size: 14px;
  text-align: center;
  display: none;
  cursor: pointer;
  transition: filter 0.4s;
}
.more-btn:hover {
  filter: contrast(0.9);
}
.more-btn.show {
  display: block;
}
.more-btn.empty {
  display: block;
}
.more-btn.empty:before {
  display: none;
}
.more-btn::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../images/img23.png) no-repeat center;
  background-size: 100%;
  margin-right: 10px;
  animation: imgRotate 1s linear infinite;
  transition: transform 0.1s;
}
@keyframes imgRotate {
  form {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ==================== 加载中按钮 end ==================== */
/* ==================== 页面三 - 广告图 start ==================== */
.index3-ad-banner {
  margin: 33px 0;
}
/* ==================== 页面三 - 广告图 end ==================== */
/* ==================== 通用 - 搜索 start ==================== */
.common-search {
  width: 265px;
  height: 40px;
  border: solid 1px #d6d6d6;
  border-radius: 20px;
   line-height: 36px;
  display: flex;
  align-items: center;
  padding-right: 12px;
}
.common-search input {
  padding: 0 10px 0 20px;
  flex-grow: 1;
}
.common-search input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #d7d7d7;
}
.common-search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #d7d7d7;
}
.common-search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #d7d7d7;
}
.common-search input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #d7d7d7;
}
.common-search button {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
/* ==================== 通用 - 搜索 end ==================== */
/* ==================== 页面三 - section1 start ==================== */
.index3-section1 .top > .mxw-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.index3-section1 .bread-crumbs {
  margin-bottom: 0;
}
.index3-section1 .bread-crumbs::before {
  display: none;
}
.index3-section1 .left {
  display: flex;
  align-items: center;
}
.index3-section1 .logo {
  width: 110px;
  margin-right: 25px;
}
.index3-section1 .search {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
/* ==================== 页面三 - section1 end ==================== */
/* ==================== 页面三 - section2 start ==================== */
.index3-section2 .top {
  padding-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 20px;
}
.index3-section2 .top .title {
  font-size: 34px;
  color: #4a4a4a;
  font-weight: bold;
  margin: 30px 0;
  text-align: center;
  line-height: 1.6;
}
.index3-section2 .top .info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #878787;
  position: relative;
}
.index3-section2 .top .info .time {
  margin-right: 20px;
}
.index3-section2 .top .common-share,
.index3-section2 .top .bshare-custom {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.index3-section2 .body {
  font-size: 17px;
  line-height: 2em;
  color: #4a4a4a;
}
.index3-section2 .body p img{ display: block; margin: 0 auto;}
.index3-section2 .body p span{ color: #999; font-size: 12px;}
.index3-section2 .tip {
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  color: #878787;
  margin: 20px 0 60px;
}
.index3-section2 .back-index {
  color: #878787;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: block;
}
.index3-section2 .copyright-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 40px;
}
.index3-section2 .copyright-info .left span {
  color: #ff921c;
  font-weight: bold;
}
.index3-section2 .copyright-info .left a {
  color: #878787;
  line-height: 1.2;
  margin-right: 10px;
}
.index3-section2 .copyright-info .left a:hover {
  color: #ff921c;
}
.index3-section2 .copyright-info .right {
  color: #878787;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.index3-section2 .copyright-info .right > div {
  margin-right: 22px;
}
.index3-section2 .copyright-info .right > div:last-child {
  margin-right: 0;
}
.index3-section2 .copyright-info .right strong {
  color: #000;
}
.index3-section2 .share {
  padding-bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index3-section2 .share .left {
  display: flex;
  align-items: center;
}
.index3-section2 .share .left .ttilte {
  font-size: 16px;
  color: #878787;
}
.index3-section2 .share .right {
  text-align: center;
}
.index3-section2 .share .qr-code {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
}
.index3-section2 .share .qr-code canvas {
  vertical-align: middle;
}
.index3-section2 .share .text {
  font-size: 13px;
  color: #878787;
}
.index3-section2 .page-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
.index3-section2 .page-content .page-prev,
.index3-section2 .page-content .page-next {
  max-width: 48%;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.index3-section2 .page-content .page-prev span,
.index3-section2 .page-content .page-next span {
  flex-shrink: 0;
}
.index3-section2 .page-content .page-prev .title,
.index3-section2 .page-content .page-next .title {
  transition: color 0.4s;
}
.index3-section2 .page-content .page-prev:hover .title,
.index3-section2 .page-content .page-next:hover .title {
  color: #ff921c;
}
.index3-section2 .page-content .page-prev span,
.index3-section2 .page-content .page-next span {
  font-weight: bold;
  color: #4a4a4a;
}
.index3-section2 .page-content .page-prev .title,
.index3-section2 .page-content .page-next .title {
  color: #878787;
}
/* ==================== 页面三 - section2 end ==================== */
/* ==================== 通用分享 start ==================== */
.common-share {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.common-share .share-item {
  position: relative;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  cursor: pointer;
  background: url(../images/img27.jpg) no-repeat center;
}
.common-share .share-item:hover .qr-img {
  opacity: 1;
  visibility: visible;
}
.common-share .share-item:last-child {
  margin-right: 0;
}
.common-share .share-item.wechat-item {
  background-position-x: -12px;
}
.common-share .share-item.weibo-item {
  background-position-x: -49px;
}
.common-share .share-item.facebook-item {
  background-position-x: -90px;
}
.common-share .share-item.twitter-item {
  background-position-x: -128px;
}
.common-share .share-item.other-item {
  position: relative;
  border: 1px solid #dfdfdf;
  background: none;
  border-radius: 8px;
}
.common-share .share-item.other-item:before,
.common-share .share-item.other-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #afafaf;
}
.common-share .share-item.other-item:before {
  width: 10px;
  height: 1px;
}
.common-share .share-item.other-item:after {
  width: 1px;
  height: 10px;
}
.common-share .share-item .qr-img {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -10px);
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
}
.common-share .share-item .qr-img:hover {
  opacity: 1;
  visibility: visible;
}
.common-share .share-item .qr-img canvas {
  width: 100%;
  height: 100%;
}
/* ==================== 通用分享 end ==================== */
/* ==================== 通用分页 start ==================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}
.pagination a {
  min-width: 32px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  display: block;
  border: solid 1px #ccc;
  margin-right: 8px;
  border-radius: 4px;
  color: #000;
}
.pagination a:last-child {
  margin-right: 0;
}
.pagination a.active,
.pagination a:hover {
  background-color: #ff921c;
  color: #fff !important;
  border-color: #ff921c;
}
.pagination a.prev,
.pagination a.next {
  padding: 0 10px;
}
.pagination a.disabled {
  border-color: #eee;
  color: #9f9f9f;
  cursor: no-drop;
}
.pagination a.disabled:hover {
  border-color: #eee;
  color: #9f9f9f !important;
  background-color: #fff;
}
/* ==================== 通用分页 end ==================== */
/* ==================== 页面三 - 版块三 start ==================== */
.index3-section3 > .mxw-box {
  display: flex;
  align-items: flex-start;
}
.index3-section3 .left {
	float: left;
	width: 950px;
  margin-right: 50px;
  min-width: 0;
  flex-grow: 1;
}
.index3-section3 .head {
  font-size: 24px;
  color: #000;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 26px;
}
.index3-section3 .head span {
  color: #ff921c;
}
.index3-section3 .comment-content {
  padding-bottom: 35px;
  border-bottom: 1px solid #f5f5f6;
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
}
.index3-section3 .comment-content .avatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 20px;
  flex-shrink: 0;
}
.index3-section3 .comment-content .info {
  flex-grow: 1;
  min-width: 0;
}
.index3-section3 .comment-content textarea {
	
  resize: none;
  background-color: #f5f5f6;
  border-radius: 10px;
  padding: 15px 20px;
  height: 150px;
  line-height: 1.8;
  display: block;
  width: 100%;
}
.index3-section3 .comment-content button {
  margin-top: 14px;
  width: 83px;
  height: 33px;
  line-height: 33px;
  background-color: #ff921c;
  color: #fff;
  border-radius: 8px;
  margin-right: 0;
  margin-left: auto;
}
.index3-section3 .comment-list .head {
  margin-bottom: 36px;
}
.index3-section3 .comment-list .item {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  overflow: hidden;
}
.index3-section3 .comment-list .item .content .item .avatar{ width: 40px; height: 40px;}
.index3-section3 .comment-list .item:first-child {
  margin-top: 0;
}
.index3-section3 .comment-list .item .item {
  margin-top: 54px;
}
.index3-section3 .comment-list .item .name,
.index3-section3 .comment-list .item .desc,
.index3-section3 .comment-list .item .other {
  position: relative;
  z-index: 2;
}
.index3-section3 .comment-list .item .avatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 20px;
  flex-shrink: 0;
}
.index3-section3 .comment-list .item .content {
  min-width: 0;
  flex-grow: 1;
}
.index3-section3 .comment-list .item .name {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #000;
}
.index3-section3 .comment-list .item .desc {
  color: #000;
  font-size: 14px;
  line-height: 1.8em;
  text-align: justify;
  margin-bottom: 10px;
}
.index3-section3 .comment-list .item .other {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index3-section3 .comment-list .item .time {
  font-size: 14px;
  color: #9f959f;
  line-height: 1.2;
}
.index3-section3 .comment-list .item .tool {
  display: flex;
  align-items: center;
}
.index3-section3 .comment-list .item .tool .reply,
.index3-section3 .comment-list .item .tool .give {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #9f959f;
  cursor: pointer;
  user-select: none;
}
.index3-section3 .comment-list .item .tool .reply:before,
.index3-section3 .comment-list .item .tool .give:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background-position-y: top;
  background-repeat: no-repeat;
}
.index3-section3 .comment-list .item .tool .reply {
  margin-right: 15px;
}
.index3-section3 .comment-list .item .tool .reply:before {
  background-image: url(../images/img35.png);
}
.index3-section3 .comment-list .item .tool .give:before {
  background-image: url(../images/img36.png);
}
.index3-section3 .comment-list .item .tool .give.active {
  color: #ff921c;
}
.index3-section3 .comment-list .item .tool .give.active:before {
  background-position: bottom;
}
.index3-section3 .comment-list .item .comment-content {
  margin-top: 20px;
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.index3-section3 .recommend-news {
  margin-top: 56px;
  margin-bottom: 90px;
}
.index3-section3 .recommend-news-list .content1 {
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
}
.index3-section3 .recommend-news-list .content1 .title {
  line-height: 1.6em;
}
.index3-section3 .recommend-news-list .content1 .title:hover {
  color: #ff921c;
}
.index3-section3 .recommend-news-list .content1 .cover {
  width:315px;
  flex-shrink: 0;
  border-radius: 10px;
  margin-right: 20px;
  overflow: hidden;
}
.index3-section3 .recommend-news-list .content1 .info {
  min-width: 0;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  align-items: left;
  justify-content: space-between;
}
.index3-section3 .recommend-news-list .content2 .title:before {
  content: "";
  display: inline-block;
  background: url(../images/img41.png) no-repeat center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: text-bottom;
}
.index3-section3 .recommend-news-list .content2 .bottom {
  margin-bottom: 30px;
}
.index3-section3 .recommend-news-list .title {
  font-size: 26px;
  color: #000;
  line-height: 1em;
  text-align: justify;
}
.index3-section3 .recommend-news-list .title:hover {
  color: #ff921c;
}
.index3-section3 .recommend-news-list .bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  font-size: 13px;
  color: #aeb1b4;
}
.index3-section3 .recommend-news-list .bottom .tag {
  line-height: 1.2;
}
.index3-section3 .recommend-news-list .bottom .tag a {
  margin-right: 10px;
}
.index3-section3 .recommend-news-list .bottom .tag a:hover {
  color: #ff921c;
}
.index3-section3 .recommend-news-list .bottom .tag .time {
  padding-left: 10px;
  position: relative;
}
.index3-section3 .recommend-news-list .bottom .tag .time:before {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background-color: #eee;
  position: absolute;
  top: 2px;
  left: 0;
}
.index3-section3 .recommend-news-list .bottom .share {
  cursor: pointer;
}
.index3-section3 .recommend-news-list .bottom .share:hover {
  color: #ff921c;
}
.index3-section3 .recommend-news-list .bottom .share.active + .bshare-custom {
  opacity: 1;
  visibility: visible;
}
.index3-section3 .recommend-news-list .bottom .bshare-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  display: flex;
  align-items: center;
  margin-left: 20px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.index3-section3 .recommend-news-list .recommend-news-swiper {
  margin-top: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.index3-section3 .recommend-news-list .recommend-news-swiper img {
  width: 100%;
}
.index3-section3 .recommend-news-list .recommend-news-swiper .swiper-button-prev,
.index3-section3 .recommend-news-list .recommend-news-swiper .swiper-button-next {
  width: 20px;
  height: 35px;
  background: url(../images/img45.png) no-repeat center rgba(0, 0, 0, 0.5);
}
.index3-section3 .recommend-news-list .recommend-news-swiper .swiper-button-prev:after,
.index3-section3 .recommend-news-list .recommend-news-swiper .swiper-button-next:after {
  display: none;
}
.index3-section3 .recommend-news-list .recommend-news-swiper .swiper-button-prev {
  left: 0;
  right: auto;
  transform: rotateY(180deg);
}
.index3-section3 .recommend-news-list .recommend-news-swiper .swiper-button-next {
  right: 0;
  left: auto;
}
.index3-section3 .recommend-news-list .recommend-news-swiper .total {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  background-color: #000;
  border-radius: 10px 0px 0px 0px;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
}
/* ==================== 页面三 - 版块三 end ==================== */
/* ==================== 通用 - 右侧热门资讯 end ==================== */
.common-recommend {
	float: right;
  width: 385px;
  flex-shrink: 0;
}
.common-recommend .head {
  font-size: 24px;
  color: #000;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}
.common-recommend .head span {
  color: #ff921c;
}
.common-recommend .item {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}
.common-recommend .image {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 230px;
  margin-bottom: 10px;
}
.common-recommend .title {
  font-size: 16px;
  line-height: 1.6em;
  text-align: justify;
  color: #000;
}
.common-recommend .title:hover {
  color: #ff921c;
}
/* ==================== 通用 - 右侧热门资讯 end ==================== */
/* ==================== 页面四 - 版块二 start ==================== */
.index4-section2 .section-body {
  display: flex;
  align-items: flex-start;
}
.index4-section2 .left {
  margin-right: 35px;
}
.index4-section2 .body {
  color: #000;
  text-align: justify;
}
.index4-section2 .common-recommend {
  width: 385px;
}
.index4-section2 .pagination {
  margin-top: 45px;
}
/* ==================== 页面四 - 版块二 end ==================== */
/* ==================== 页面四 - 版块三 start ==================== */
.index4-section3 .left {
  margin-right: 450px;
}
/* ==================== 页面四 - 版块三 end ==================== */
/* ==================== 底部样式 start ==================== */
footer .foot-top {
  background-color: #025595;
  padding: 40px 0 35px;
}
footer .foot-top .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 35px;
}
footer .foot-top .bottom {
  font-size: 14px;
  color: #6cbfff;
  line-height: 2em;
  text-align: center;
  border-top: 1px solid #1376c3;
  padding-top: 20px;
}
footer .foot-top .head {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: bold;
}
footer .foot-top ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .foot-top li {
  font-size: 13px;
  color: #6cbfff;
}
footer .foot-top li a:hover {
  color: #ff921c;
}
footer .foot-nav {
  width: 460px;
}
footer .foot-nav li {
  margin-right: 25px;
  margin-bottom: 15px;
}
footer .foot-about {
  width: 400px;
}
footer .foot-about .head,
footer .foot-about ul {
  margin-left: 24px;
}
footer .foot-about ul {
  width: 100%;
}
footer .foot-about ul > li {
  margin-right: 20px;
  margin-bottom: 20px;
}
footer .foot-about .desc {
  font-size: 14px;
  color: #fff;
}
footer .foot-about .desc img {
  margin-right: 5px;
}
footer .foot-qrcode {
  flex-shrink: 0;
}
footer .foot-qrcode .itembox {
  display: flex;
  align-items: flex-start;
}
footer .foot-qrcode .item {
  margin-right: 40px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
footer .foot-qrcode .item img {
  display: block;
  margin-bottom: 10px;
}
footer .foot-qrcode .item:last-child {
  margin-right: 0;
}
footer .foot-link {
  background-color: #e2e2e2;
}
footer .foot-link .mxw-box {
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 0 14px;
  flex-wrap: wrap;
}
footer .foot-link .text {
  color: #000;
  font-weight: bold;
  margin-top: 10px;
}
footer .foot-link .text + a {
  padding-left: 0;
}
footer .foot-link a {
  color: #494949;
  padding-right: 10px;
  margin-right: 10px;
  margin-top: 10px;
  border-right: 1px solid #c2c2c2;
  display: inline-block;
  vertical-align: middle;
}
footer .foot-link a:last-child {
  padding-right: 0;
  border-right: 0;
  margin-right: 0;
}
/* ==================== 底部样式 end ==================== */
body {
  min-width: 1200px;
  overflow: auto;
}
/* 容器大小 */
.mxw-box {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}
.mxw-box p {
  margin-bottom: 0;
  font-family: inherit;
}
.mxw-box a:hover {
  color: #ff921c;
}
.bFind-wrapper-top,
.bsBox {
  box-sizing: content-box;
}
/* ==================== 页面自定义样式 start ==================== */
  .index-section1 .swiper-container.indexSwiper{ width: 830px; height: 530px;}
  .index-section1 .banner-swiper{ width: 945px; height: 620px;}
  .index-section1 .banner-swiper img{ display: block; width: 100%; height: 100%;}
  .index-section1 .right-list.indexList{ width: 510px!important; display: block; overflow: hidden; height: 530px; padding: 0; margin: 0;}
  .index-section1 .right-list2{ width: 444px;}
  
  
  
@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: 1200px) {
  .m-none,
  .pc-nav {
    display: none !important;
  }
}
@media screen and (min-width: 1680px) {
  /* pc端固定html标签文字大小(rem适配) */
  html {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 50px;
  }
  .common-head1 .top > .mxw-box{ padding: 30px 0;}
  body{ width: 100%; min-width: 100%;}
  header > .mxw-box{ display: none;}
  .common-head1 .top > .mxw-box{ display: block; width: 100%;}
  .top img{ display: block; margin: 0 auto; width: 30%; height: auto;}
  .common-head1 .top .search{ display: none;}
  .common-head1 .nav .itembox{ display: block; width: 100%;}
  .common-head1 .nav ul{ height: auto; overflow: hidden; display: block; width: 100%; padding: 15px ; box-sizing: border-box;}
  .common-head1 .nav ul:nth-child(4n-3){ padding-left: 15px; box-sizing: border-box;}
  .common-head1 .nav ul:nth-child(4n){ padding-right: 15px;}
  .common-head1 .nav li{ width: 25%; float: left;}
  .index-section1 .top{ margin: 20px 0;}
  .index-section1 .top{ width: 100%; height: auto; overflow: hidden;}
  .index-section1 #index-section1-swiper{height: 72px;}
  .index-section1 .top .text1{ font-size:24px; line-height:36px; padding: 0 15px; box-sizing: border-box;}
  .index-section1 .top ul{ display: block; width: 100%; padding-top: 20px;}
  .index-section1 .top li{ margin: 0; text-align: left; padding: 0 15px; box-sizing: border-box;}
  .index-section1 .bottom{ width: 100%;}
  
  .index-section1 .bottom > .mxw-box{ display: block; padding:0 15px 30px 15px; box-sizing: border-box;}
  .index-section1 .right-list{ display: block; width: 100%; padding: 30px 0 0 0;}
  .index-section1 .banner-swiper .info .title{ font-size: 16px; width: 100%; margin-bottom: 30px;}
  .index-section1 .right-list .item:nth-child(3n-2){ font-size: 16px;}
  .index-section1 .right-list .item{ font-size: 14px;}
  .index-ad-banner{ display: none;}
  .index-tabs .head .item{ font-size: 16px;}
  .u-row-3 > .u-col{ width: 100%; padding: 0 15px; box-sizing: border-box;}
  .u-row-3 > .u-col:nth-child(3n-1){ margin: 15px 0;}
  footer .foot-top .top{ width: 100%; display: block;}
  footer .foot-top{ padding: 30px 15px; box-sizing: border-box;}
 footer .foot-top .head{ margin-left: 0;}
 footer .foot-about .head, footer .foot-about ul{ margin-left: 0;}
 footer .foot-link{ display: none;}
 .right-list2 a{ width: 49%; margin: 0 2% 0 0; float: left; margin-top: 10px;}
 .right-list2 a:last-child{ margin-right: 0;}
 .foot-qrcode .itembox p{ width: 100%; float: left;}
 .foot-qrcode .itembox p:last-child{ padding-top: 15px;}
 footer .foot-qrcode .item img{ width:60%; display: block; margin: 0 auto; height: auto;}
 .index3-ad-banner{ display: none;}
 .index3-section1 .top > .mxw-box{ display: block; padding: 0 15px; box-sizing: border-box;}
 .index3-section1 .left{ display: block; width: 100%;}
 .index3-section1 .logo{ width: 100%; padding: 30px 0; margin: 0;}
 .index3-section1 .left .bread-crumbs{ padding: 0 0 20px 0;}
 .common-search button img{ display: block; width: 100%; height: 100%;}
 .index3-section2 .top .title { font-size: 22px;}
	.index3-section2 .mxw-box{ padding: 0 15px; box-sizing: border-box;}
	.pagination a{ font-size: 12px!important;}
	.pagination a.prev, .pagination a.next{ padding: 0 5px;}
	.index3-section3 .mxw-box{ display: block;}
	.index3-section3 .left{  width: 100%; margin: 0 ; padding: 0 15px; box-sizing: border-box;}
	.index3-section3 .recommend-news-list .content1{ display: block;}
	.index3-section3 .recommend-news-list .content1 .title{ font-size: 18px; line-height: 26px; overflow: hidden; padding: 15px 0; }
	.index3-section3 .recommend-news-list .content1 a:first-child{ border-radius:15px; overflow: hidden;}
	.index3-section3 .recommend-news-list .title{ width: 100%; display: block; overflow: hidden;}
	.common-recommend{ width: 100%; padding: 0 15px; box-sizing: border-box;}
	.index4-section2 .left{ display: block; width: 100%; margin: 0;}
	.index4-section2 .section-body{ display: block;}
	.index4-section2 .common-recommend{ width: 100%; padding: 0;}
	.index3-section2 .copyright-info{ display: block;}
	.index4-section2 .left{ margin-bottom: 25px;}
 
 
 }
/* ==================== 页面自定义样式 end ==================== */
/* ==================== 以下由cms增加 ==================== */

img.lbimg{object-fit:cover;}
.mxw-image img{object-fit:cover;}
.index-section1 .banner-swiper .info .title {height:57.2px;}
img.catimg{object-fit:cover;}
.xgnews img{object-fit:cover;}
.rmimg img{object-fit:cover;}
.search-title{padding-top:20px;padding-bottom:40px;}
.red{color:#ff921c;}
.hidden{display:none;}
.plhidden{display:none !important;}
.index3-section3 .comment-content textarea {width:740px;}
.mxw-cont p img,.mxw-cont img{border-radius: 15px;display: block; margin: 0px auto !important;max-width:1120px !important;height:auto !important;}
.mxw-cont P{margin-bottom:32px;}
.pagination span{background-color: #ff921c; color: #fff !important; border-color: #ff921c; min-width: 32px;
 height: 32px; line-height: 30px;text-align: center; display: block; margin-right: 8px; border-radius: 4px;padding: 0 10px;
}
.pagination a {padding: 0 10px;}
.splay{margin-left:20px;}
.index-tabs .head .item{letter-spacing:11px;}
.links img{height:24px;max-width:102px;object-fit:cover;}
input#splay,input#pause,input#resume{
   min-width: 20px;
   padding-left:10px;
    height: 33px;
    line-height: 33px;
    border-radius: 8px;
    margin-right: 0;
    margin-left: auto;
    
}
#splay{font-size:14px;}
#pause,#resume{font-size:18px;}
.listad{margin-top:46px;}
.ftitle{font-size:26px !important;margin-top:-20px;margin-bottom:20px;font-family:宋体,"Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu";}
.yinti{font-size:26px !important;margin-top:25px;margin-bottom:-20px;font-family:宋体,"Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu";}
.title2{color: #4a4a4a;   font-weight: bold;text-align: center; }
.searchlist{max-width:1200px;margin:0 auto 40px auto;}
.searchlist span{padding-left:5px;padding-right:5px;color:red;}
div#qr.wqrcode{width: 100px;height: 100px;   margin: 0 auto 10px;}
.index3-section2 .back-index {  margin-top: 3em;}