.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ind-banner .swiper-slide {
  position: relative;
  height: 100%;
}
.ind-banner .swiper-slide .img {
  position: relative;
}
.ind-banner .swiper-slide .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  top: 0;
  height: 100%;
  color: #fff;
  left: 50%;
  margin-left: -7.2rem;
  z-index: 2;
}
.ind-banner .onebox .en {
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-family: 'SG-B';
}
.ind-banner .onebox .msg {
  margin-top: 0.2rem;
  width: 7.4rem;
  font-size: var(--fs28);
  line-height: 0.36rem;
  font-family: 'SG-M';
}
.ind-banner .onebox .more {
  margin-top: 0.2rem;
  width: 2.55rem;
}
.ind-banner .onebox .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs20);
  color: #fff;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  width: 100%;
  height: 0.56rem;
  font-family: 'SG-B';
  background: #0075c7;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .more a:hover {
  background: #005E9F;
}
.ind-banner .se {
  position: absolute;
  top: 50%;
  margin-top: -0.35rem;
  display: none;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.ind-banner .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .se:hover {
  background: #0075c7;
}
.ind-banner .prev {
  left: 24px;
}
.ind-banner .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.ind-banner .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.ind-banner .next {
  right: 24px;
}
.ind-banner .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.ind-banner .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
@media (max-width: 1004px) {
  .ind-banner .onebox {
    left: 0.3rem;
    margin-left: 0;
  }
  .ind-banner .onebox .en {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .msg {
    margin-top: 0.1rem;
    width: 80%;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .ind-banner .onebox .more {
    margin-top: 0.1rem;
    width: 3.6rem;
  }
  .ind-banner .onebox .more a {
    font-size: var(--fs14);
    height: 0.76rem;
  }
  .ind-banner .se {
    display: none;
    position: absolute;
    top: 50%;
    margin-top: -0.35rem;
    z-index: 2;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.1rem;
    background: rgba(233, 233, 233, 0.3);
  }
  .ind-banner .se::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0.19rem;
    height: 0.3rem;
    margin-top: -0.15rem;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
  }
  .ind-banner .se:hover {
    background: #0075c7;
  }
  .ind-banner .prev {
    left: 24px;
  }
  .ind-banner .prev::before {
    left: 50%;
    margin-left: -0.1rem;
    background: url(../img/nimg19_left.png) center no-repeat;
    background-size: 0.19rem;
  }
  .ind-banner .prev:hover::before {
    background: url(../img/nimg19_lefton.png) center no-repeat;
    background-size: 0.19rem;
  }
  .ind-banner .next {
    right: 24px;
  }
  .ind-banner .next::before {
    right: 50%;
    margin-right: -0.1rem;
    background: url(../img/nimg19_right.png) center no-repeat;
    background-size: 0.19rem;
  }
  .ind-banner .next:hover::before {
    background: url(../img/nimg19_righton.png) center no-repeat;
    background-size: 0.19rem;
  }
}
.indTitle {
  font-size: var(--fs40);
  line-height: 0.5rem;
  color: #000;
  font-family: 'SG-M';
}
.indexP1 {
  overflow: hidden;
  padding: 0.8rem 0 0.4rem;
}
.indexP1 .indTitle {
  margin-bottom: 0.8rem;
}
.indSolu {
  position: relative;
  padding-bottom: 1.5rem;
}
.indSolu .imgList {
  width: 24.2rem;
  position: relative;
  left: 50%;
  margin-left: -12.1rem;
}
.indSolu .swiper-slide {
  position: relative;
  overflow: hidden;
}
.indSolu .swiper-slide .img {
  width: 8rem;
  height: 4.5rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.1rem;
  overflow: hidden;
  transform: scale(0.82);
  -webkit-transform: scale(0.82);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indSolu .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indSolu .swiper-slide .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.1rem;
  line-height: 0.36rem;
  text-align: center;
  font-size: var(--fs28);
  font-family: 'SG-M';
  color: #000;
}
.indSolu .swiper-slide-active .img {
  transform: scale(1);
  -webkit-transform: scale(1);
}
.indSolu .se {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.indSolu .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indSolu .se:hover {
  background: #0075c7;
}
.indSolu .prev {
  left: 50%;
  margin-left: -4rem;
}
.indSolu .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.indSolu .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.indSolu .next {
  right: 50%;
  margin-right: -4rem;
}
.indSolu .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.indSolu .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
.indexP2 {
  overflow: hidden;
  padding: 0.4rem 0;
}
.indexP2 .indTitle {
  margin-bottom: 0.4rem;
}
.live-action {
  position: relative;
  padding-bottom: 1.1rem;
  overflow: hidden;
}
.live-action .box {
  border-radius: 0.1rem;
  overflow: hidden;
  border: #eee solid 3px;
  background: #f4f4f4;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action .box .img {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.2rem;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}
.live-action .box .img img {
  max-width: 100%;
  max-height: 100%;
}
.live-action .box .botDiv {
  padding: 0.1rem 0.1rem 0;
  height: 1.4rem;
}
.live-action .box .botDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action .box .botDiv .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  height: 0.64rem;
  font-family: 'SG-B';
  color: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action .box:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.live-action .box:hover .name,
.live-action .box:hover .msg {
  color: #fff;
}
.live-action .se {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.live-action .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action .se:hover {
  background: #0075c7;
}
.live-action .prev {
  left: 0;
}
.live-action .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.live-action .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.live-action .next {
  right: 0;
}
.live-action .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.live-action .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
.indexP3 {
  padding: 0.4rem 0;
}
.indexP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP3 .leftImg {
  width: 6.8rem;
  border-radius: 0.1rem;
}
.indexP3 .leftImg img {
  width: 100%;
}
.indexP3 .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 0.32rem 0;
  width: 6.8rem;
}
.indexP3 .content {
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #000;
}
.indexP3 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.1rem;
  width: 1.48rem;
  height: 0.56rem;
  font-size: var(--fs20);
  color: #fff;
  font-family: 'SG-B';
  background: #0075c7;
}
.indexP3 .btnDiv a:hover {
  background: #005E9F;
}
.indexP4 {
  padding: 0.4rem 0 0.8rem;
}
.indexP4 .indTitle {
  margin-bottom: 0.4rem;
}
.indNews {
  position: relative;
  padding-bottom: 1.1rem;
  overflow: hidden;
}
.indNews .box {
  border-radius: 0.1rem;
  overflow: hidden;
  border: #eee solid 3px;
  background: #f4f4f4;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .box .img {
  height: 1.8rem;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}
.indNews .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indNews .box .botDiv {
  padding: 0.1rem 0.1rem 0;
  height: 1.8rem;
}
.indNews .box .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.32rem;
  max-height: 0.96rem;
  color: #000;
  font-family: 'SG-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .box .botDiv .time {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  font-family: 'SG-L';
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .box:hover {
  border: #0075c7 solid 3px;
  background: #0075c7;
}
.indNews .box:hover .name,
.indNews .box:hover .time {
  color: #fff;
}
.indNews .se {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(233, 233, 233, 0.3);
}
.indNews .se::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.19rem;
  height: 0.3rem;
  margin-top: -0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .se:hover {
  background: #0075c7;
}
.indNews .prev {
  left: 0;
}
.indNews .prev::before {
  left: 50%;
  margin-left: -0.1rem;
  background: url(../img/nimg19_left.png) center no-repeat;
  background-size: 0.19rem;
}
.indNews .prev:hover::before {
  background: url(../img/nimg19_lefton.png) center no-repeat;
  background-size: 0.19rem;
}
.indNews .next {
  right: 0;
}
.indNews .next::before {
  right: 50%;
  margin-right: -0.1rem;
  background: url(../img/nimg19_right.png) center no-repeat;
  background-size: 0.19rem;
}
.indNews .next:hover::before {
  background: url(../img/nimg19_righton.png) center no-repeat;
  background-size: 0.19rem;
}
@media (max-width: 1004px) {
  .indTitle {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP1 {
    padding: 0.8rem 0 0.4rem;
  }
  .indexP1 .indTitle {
    margin-bottom: 0.4rem;
  }
  .indSolu {
    padding: 0 var(--offset) 1.2rem;
  }
  .indSolu .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
    overflow: hidden;
  }
  .indSolu .swiper-slide .img {
    width: 100%;
    height: 3.4rem;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  .indSolu .swiper-slide .name {
    margin-top: 0.2rem;
    line-height: 0.56rem;
    font-size: var(--fs16);
  }
  .indSolu .se {
    width: 0.9rem;
    height: 0.9rem;
  }
  .indSolu .prev {
    left: var(--offset);
    margin-left: 0;
  }
  .indSolu .next {
    right: var(--offset);
    margin-right: 0;
  }
  .live-action {
    padding-bottom: 1.2rem;
  }
  .live-action .box {
    border: #eee solid 2px;
  }
  .live-action .box .img {
    height: 3rem;
  }
  .live-action .box .botDiv {
    padding: 0.1rem 0.1rem 0;
    height: 1.65rem;
  }
  .live-action .box .botDiv .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .live-action .box .botDiv .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: 0.84rem;
  }
  .live-action .box:hover {
    border: #0075c7 solid 2px;
  }
  .live-action .se {
    width: 0.9rem;
    height: 0.9rem;
  }
  .indexP3 .mxfDiv {
    display: block;
  }
  .indexP3 .leftImg {
    width: auto;
  }
  .indexP3 .conDiv {
    display: block;
    padding: 0.5rem 0 0;
    width: auto;
  }
  .indexP3 .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .indexP3 .btnDiv {
    margin-top: 0.4rem;
  }
  .indexP3 .btnDiv a {
    width: 2.2rem;
    height: 0.8rem;
    font-size: var(--fs15);
  }
  .indexP4 {
    padding: 0.4rem 0 0.8rem;
  }
  .indexP4 .indTitle {
    margin-bottom: 0.4rem;
  }
  .indNews {
    padding-bottom: 1.2rem;
  }
  .indNews .box {
    border: #eee solid 2px;
  }
  .indNews .box .img {
    height: 3.8rem;
  }
  .indNews .box .botDiv .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .indNews .box .botDiv .time {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .indNews .box:hover {
    border: #0075c7 solid 2px;
  }
  .indNews .se {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.pageCon {
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
