/* 首页banner  */

.bannerSwiper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 10.8rem;
  overflow: hidden;
}

.bannerSwiper .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bannerSwiper .swiper-slide[aria-label="1 / 3"] .bannerT1{
    left: 50% !important;
    transform: translateX(-50%);
    top: 3.5rem !important;
    /*transform: translateY(-50%);*/
}

.bannerSwiper .swiper-slide[aria-label="2 / 3"] .bannerT1:nth-child(2){
        left: 3rem !important;
        top: 3.4rem !important;
    /*transform: translateY(-50%);*/
}

.bannerSwiper .swiper-slide[aria-label="2 / 3"] .bannerT1:last-child{
        left: 4.4rem !important;
        top: 4.36rem !important;
    /*transform: translateY(-50%);*/
}

.bannerT1 {
  position: absolute;
  font-family: youshe;
  font-weight: 400;
  font-size: 0.76rem;
  color: #ffffff;
}

.bannerNum {
  position: absolute;
  width: 100%;
  left: 0%;
  bottom: 1.23rem;
  display: flex;
  justify-content: center;
  z-index: 30;
}

.bannerNum > div:last-child {
  margin-right: 0;
}

.numPart {
  display: flex;
  align-items: center;
  margin-right: 0.2rem;
}

.numPart > span {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.14rem;
  color: #ffffff;
  margin-right: 0.05rem;
}

.numLine {
  position: relative;
  width: 1rem;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}

.numLineC {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
}

.numLineC.wid {
  width: 100%;
}

.numPart.active .numLineC {
  animation: wid 3s linear forwards;
}

@keyframes wid {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.bannerArr {
  width: 0.4rem;
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  transform: translateX(-50%);
  z-index: 30;
  animation: down 2s infinite linear;
}

@keyframes down {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.bannerArr img {
  display: block;
}

.bannerArr img:first-child {
  animation: arr1 2s infinite;
}

.bannerArr img:last-child {
  animation-delay: 2s;
  animation: arr1 2s infinite;
}

@keyframes arr1 {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.homeMain{
  width: 100%;
  overflow: hidden;
}

/* 企业视频 */

.wrap {
  width: 100%;
  position: relative;
  /* background-color: #fff; */
  padding-top: 0.8rem;
  overflow: hidden;
}

.bg1 {
  position: absolute;
  width: 8.6rem;
  height: 100%;
  background: #f5f5f5;
  right: 0;
  top: 0;
}

.content {
  width: 94%;
  max-width: 14rem;
  margin: 0 auto;
}

.title {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.titleIcon {
  width: 0.27rem;
  margin-right: 0.1rem;
  margin-top: 0.1rem;
}

.titleT1 {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.36rem;
  color: #1155a8;
}

.titleT2 {
  font-family: "puhuiti";
  font-weight: 400;
  font-size: 0.16rem;
  color: #888888;
  margin-top: 0.05rem;
}

.homePart1 {
  width: 100%;
  justify-content: space-between;
  display: flex;
  margin: 0.5rem auto 0;
  position: relative;
  z-index: 10;
  padding-bottom: 1.06rem;
}

.videoBox {
  width: 10rem;
  position: relative;
}

.swiperVideo {
  width: 100%;
  overflow: hidden;
}

.videoWrap {
  width: 100%;
  height: 5.8rem;
  position: relative;
  background-color: #000;
}

.videoWrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.videoBtn {
  width: 1.3rem;
  height: 0.65rem;
  position: absolute;
  bottom: 1.7rem;
  right: -0.65rem;
  background-color: #1155a8;
  display: flex;
  z-index: 100;
}

.videoBtnC {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.videoBtnC > img {
  width: 0.12rem;
  position: relative;
  z-index: 10;
}

.videoBtnC:first-child::before {
  transform-origin: center right;
}

.videoBtnC:last-child::before {
  transform-origin: center left;
}

.videoBtnC::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #0080D0;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  /* transition: transform .3s cubic-bezier(.215,.61,.355,1) .1s,-webkit-transform .3s cubic-bezier(.215,.61,.355,1) .1s; */
  content: "";
  transform: scaleX(0) scaleZ(0);
  box-sizing: border-box;
  width: 0.66rem;
  height: 0.65rem;
}

.videoBtnC:hover::before {
  transition-delay: 0s;
  transform: scaleX(1) scaleZ(1);
}

.videoBtnC:first-child > img {
  transform: rotate(-180deg);
}

.videoPoster {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}

.videoPoster > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playerbtn {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.videoTitle {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.2rem;
  color: #1e1e1e;
  margin-top: 0.3rem;
}

.videoTime {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #888888;
  margin-top: 0.2rem;
}

.homePart1Right {
  width: 2.9rem;
  height: 5.8rem;
  border-radius: 0rem 0rem 0rem 0rem;
  border: 0.01rem solid #c5dfff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiperVideoList {
  width: 2.24rem;
  height: 4.9rem;
  overflow: hidden;
}

.swiperVideoList .swiper-slide {
  opacity: 0.5;
}

.swiperVideoList .swiper-slide-thumb-active {
  opacity: 1;
}

.swiperVideoList .swiper-slide img {
  width: 100%;
  height: 1.3rem;
  object-fit: cover;
}

/* 新闻中心 */

.bg2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 10.6rem;
  height: 100%;
  background-image: url(/zgln/images/home/bg.png);
  background-size: cover;
}

.homePart2Box {
  width: 100%;
  position: relative;
  z-index: 10;
  padding-bottom: 2.36rem;
}

.homePart2List {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.homePart2List > li {
  width: 4.4rem;
  height: 5rem;
  background-color: #fff;
  box-shadow: 0rem 0rem 0.08rem 0.01rem rgba(101, 101, 101, 0.15);
  transition: all 0.6s;
}

.homePart2List > li:nth-child(2) {
  margin-top: 0.7rem;
}

.homePart2List > li .scale-box {
  width: 100%;
  height: 3rem;
}

.homePart2List > li > a {
  display: block;
}

.homePart2List > li:hover {
  box-shadow: 0rem 0rem 0.13rem 0.01rem rgba(17, 85, 168, 0.3);
}

.homePart2List > li:hover .scale-box .scale-img {
  transform: scale(1.1);
}

.homePart2List > li:hover .homePart2T1 {
  color: #1155a8;
}

.homePart2List > li:hover .homePart2Line::after {
  width: 100%;
  opacity: 1;
}

.homePart2List > li:hover .homePart2Btn {
  background-color: #1155a8;
  border: 1px solid #1155a8;
}

.homePart2List > li:hover .homePart2Btn > img:first-child {
  display: none;
}

.homePart2List > li:hover .homePart2Btn > img:last-child {
  display: block;
}

.homePart2Bottom {
  width: 100%;
  height: 2rem;
  box-sizing: border-box;
  padding: 0 0.4rem;
  position: relative;
  overflow: hidden;
}
.homePart2T1 {
  margin-top: 0.25rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.2rem;
  color: #1e1e1e;
  margin-bottom: 0.3rem;
  transition: all 0.6s;
  line-height: 0.3rem;
}

.homePart2T2 {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #888888;
  display: flex;
  align-items: center;
}
.homePart2T2::before {
  content: "";
  width: 0.06rem;
  height: 0.06rem;
  background: #1155a8;
  border-radius: 50%;
  margin-right: 0.07rem;
}

.homePart2T2 + p {
  margin-top: 0.1rem;
}

.homePart2Btn {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 1px solid #888888;
  position: absolute;
  right: 0.4rem;
  bottom: 0.44rem;
  transition: all 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homePart2Btn > img {
  display: block;
  width: 0.08rem;
}

.homePart2Btn > img:last-child {
  display: none;
}

.homePart2Line {
  width: 100%;
  height: 1px;
  background: #c5c5c5;
  position: absolute;
  left: 0;
  bottom: 0;
}

.homePart2Line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #1155a8;
  opacity: 0;
  transition: all 0.6s;
}

.vMore.position {
  position: absolute;
  right: 0;
  bottom: 0;
}

.vMore {
  width: 1.5rem;
  height: 0.4rem;
  background: rgba(17, 85, 168, 0);
  border: 0.01rem solid #1155a8;
  position: relative;
}

.vMore::before{
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #1155a8;
  transition: all 0.6s;
}
.vMore > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #1155a8;
  transition: all 0.6s;
  position: relative;
  z-index: 5;
}

.vMore > a > img {
  width: 0.08rem;
  height: 0.14rem;
  margin-left: 0.1rem;
}

.vMore > a > img:last-child {
  display: none;
}

.vMore:hover::before {
  width: 100%;
}

.vMore:hover > a {
  color: #fff;
}

.vMore:hover > a > img:first-child {
  display: none;
}

.vMore:hover > a > img:last-child {
  display: block;
}

/* 社会责任 */

.homePart3Box {
  width: 17.5rem;
  background-image: url(/zgln/images/home/bg2.png);
  background-size: cover;
  padding: 1.5rem 0 3.91rem;
  display: flex;
}

.wrap.part3 {
  display: flex;
  justify-content: flex-end;
  margin-top: -1.06rem;
  padding-top: 0;
}

.homePart3List {
  width: 8rem;
  margin-left: 0.9rem;
}
.homePart3List > li {
  width: 100%;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  transition: all 0.6s;
  position: relative;
  cursor: pointer;
}

.homePart3List > li > a {
  align-items: center;
}

.homePart3List > li:first-child {
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.4);
}

.homePart3List > li:last-child {
  margin-bottom: 0;
}

.homePart3List > li::before{
  content: '';
  position: absolute;
  width: 0%;
  transition: all 0.6s;
  height: 100%;
  left: 0;
  top: 0;
  background-color: hsla(0,0%,100%,.2);
}
.homePart3List > li:hover::before{
  width: 100%;
}
.homePart3List > li:hover{
  padding-left: 5px;
}

.homePart3Time {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
}

.homePart3Bk {
  width: 1.06rem;
  height: 0.32rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 0.17rem 0.17rem 0.17rem 0.17rem;
  border: 0.01rem solid #8cd2fe;
  margin-left: 0.25rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
}

.homePart3News {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
  margin-left: 0.3rem;
}

.homePart3Right {
  margin-left: 1.47rem;
}

.homePart3Right .titleT1,
.homePart3Right .titleT2 {
  color: #fff;
}

.homePart3Right .vMore {
  margin-top: 1rem;
}

.vMore.white {
  border: 1px solid #fff;
}

.vMore.white::before{
  background-color: #fff;
}

.vMore.white > a {
  color: #fff;
}

.vMore.white > a > img:last-child {
  display: block;
}

.vMore.white > a > img:first-child {
  display: none;
}
.vMore.white:hover > a {
  color: #1155a8;
}

.vMore.white:hover > a > img:last-child {
  display: none;
}

.vMore.white:hover > a > img:first-child {
  display: block;
}

/* 党建活动 */

.wrap.part4 {
  display: flex;
  margin-top: -2.71rem;
  padding-top: 1.2rem;
  position: relative;
}

.bg4 {
  width: 16.6rem;
  height: 7.5rem;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(/zgln/images/home/bg3.png);
  background-size: cover;
  z-index: 10;
}

.homePart4Box {
  width: 14rem;
  margin-left: 2.6rem;
  position: relative;
  z-index: 20;
  padding-bottom: 1rem;
}

.homePart4Box .vMore {
  right: 0.5rem;
}

.homePart4List {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}

.homePart4Content {
  width: 3rem;
}

.homePart4Content > a {
  display: block;
}

.homePart4Img {
  width: 100%;
  overflow: hidden;
  height: 1.82rem;
}

.homePart4Img > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.6s;
}

.homePart4Tip {
  width: 0.92rem;
  height: 0.28rem;
  background: rgba(255, 255, 255, 0);
  border-radius: 0.14rem 0.14rem 0.14rem 0.14rem;
  border: 0.01rem solid #1155a8;
  margin-top: 0.2rem;
  text-align: center;
  line-height: 0.28rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #6a6a6a;
}

.homePart4T1 {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.3rem;
  margin-top: 0.1rem;
  transition: all 0.6s;
}

.homePart4Time {
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #888888;
  margin-top: 0.2rem;
}

.homePart4Time::before {
  content: "";
  width: 0.06rem;
  height: 0.06rem;
  background: #1155a8;
  border-radius: 50%;
  margin-right: 0.07rem;
}

.homePart4Content:hover .homePart4T1 {
  color: #1155a8;
}

.homePart4Content:hover img {
  transform: scale(1.1);
}

.homePart4Content.mt {
  margin-top: 1rem;
}

.homePart4Right {
  width: 6.4rem;
}

.homePart4Right .homePart4Content {
  width: 100%;
}

.homePart4Right .homePart4Img {
  height: 3.88rem;
}

.bg3 {
  width: 100%;
  height: 8.57rem;
  left: 0;
  top: 2.71rem;
  position: absolute;
  background-image: url(/zgln/images/home/bg4.png);
  background-size: cover;
}

/* 实时股价 */
.wrap.part5 {
  padding-top: 0;
}
.HomePart5Box {
  width: 16.6rem;
  padding: 1.06rem 0 2.59rem;
  background-image: url(/zgln/images/home/bg5.png);
  background-size: cover;
}

.HomePart5Box .title {
  padding-left: 2.6rem;
}

.HomePart5Box .titleT1,
.HomePart5Box .titleT2 {
  color: #fff;
}

.homePart5Main {
  width: 10.2rem;
  margin-left: 3.7rem;
  margin-top: 0.5rem;
}

.homePart5Top {
  width: 100%;
  border: 1px solid #fff;
  background-color: #2a7fe6;
  padding: 0.33rem 0.5rem;
  display: flex;
  justify-content: space-between;
}

.homePart5Name {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.24rem;
  color: #ffffff;
}

.homePart5Num {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.2rem;
  color: #ffffff;
  margin-top: 0.3rem;
}

.homePart5Top > div:last-child {
  width: 4.1rem;
}

.flex-between {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.homePart5Rise {
  display: flex;
  align-items: center;
}

.homePart5Rise > span {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.28rem;
  color: #eb2525;
}

.homePart5Rise > img {
  width: 0.3rem;
  margin-left: 0.09rem;
}

.homePart5Time {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.39rem;
  opacity: 0.6;
}

.homePart5Line {
  width: 100%;
  border: 0.01rem solid #ffffff;
  margin: 0.08rem auto;
  opacity: 0.4;
}

.homePart5RiseNum,
.homePart5DealNum {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}

.homePart5RiseNum > span {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.2rem;
  color: #22cc44;
}

.homePart5DealNum > span {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.2rem;
  color: #ffffff;
}

.homePart5Table {
  width: 100%;
  margin-top: 0.11rem;
  border-collapse: collapse;
  border-spacing: 0;
  background: linear-gradient(180deg, #2a7fe6 0%, #0c89d6 100%);
}
.homePart5Table,
.homePart5Table th,
.homePart5Table td {
  border: 1px solid rgba(255, 255, 255, 0.674);
}

.homePart5Table th {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.18rem;
  color: #ffffff;
  height: 0.58rem;
}

.homePart5Table td {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.16rem;
  color: #ffffff;
  height: 0.58rem;
  text-align: center;
}

.homePart5Nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 0.31rem;
}

.homePart5Nav > ul {
  display: flex;
}

.homePart5Nav > ul > li {
  width: 0.44rem;
  height: 0.26rem;
  margin-right: 0.1rem;
  cursor: pointer;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.14rem;
  color: #fff;
  text-align: center;
  line-height: 0.26rem;
  transition: all 0.6s;
  background: rgba(149, 197, 255, 0);
  border: 0.01rem solid #a5c5eb;
}

.homePart5Nav > ul > li:hover,
.homePart5Nav > ul > li.active {
  background: #8fc2ff;
  border: 0.01rem solid #8fc2ff;
  color: #1e1e1e;
}

.homePart5Nav > ul > li:last-child {
  margin-right: 0;
}

.homePart5Nav > p {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.18rem;
  color: #ffffff;
}

#echarts {
  width: 100%;
  height: 3.79rem;
  border: 0.01rem solid #ffffff;
  background-color: #0051ae;
}

/* 运营业绩 */
.wrap.part6 {
  margin-top: -1.7rem;
  padding-top: 0;
}
.homePart6Box {
  width: 16.6rem;
  margin-left: 1.65rem;
  background-color: #fff;
  padding: 0.89rem 0 0.96rem;
}

.homePart6Content {
  width: 14rem;
  height: 11.94rem;
  margin-left: 0.91rem;
  position: relative;
}

.homePart6Cir {
  width: 11.94rem;
  margin-left: 1.02rem;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background-image: url(/zgln/images/home/img10.png);
  background-size: 100%;
}

.homePart6Pointe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.homePart6Pointe::after {
  content: "";
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  background: #1155a8;
  left: -0.15rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.homePart6Content .title {
  position: absolute;
  left: 0%;
  top: 2.87rem;
  z-index: 10;
  width: 100%;
  justify-content: center;
}

.homePart6Eearth {
  width: 10.3rem;
  height: 10.3rem;
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.part6Title {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 3.39rem;
  font-family: 'puhuiti';
  font-weight: 400;
  font-size: 0.16rem;
  color: #888888;
  z-index: 10;
}

.homePart6List {
  width: 100%;
  padding: 0.6rem 0.78rem;
  background: radial-gradient(rgba(255, 255, 255, 0.1), #fff);
  backdrop-filter: blur(15px);
  position: absolute;
  left: 0;
  top: 4.06rem;
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
}

.homePart6List > li {
  width: 3.5rem;
  margin-left: 0.97rem;
  margin-bottom: 0.74rem;
}

.homePart6List > li:nth-child(3n + 1) {
  margin-left: 0;
}

.homePart6List > li:nth-child(4),
.homePart6List > li:nth-child(5),
.homePart6List > li:nth-child(6) {
  margin-bottom: 0;
}

.homePart6Line {
  width: 100%;
  border: 0.01rem solid #dcdcdc;
  position: relative;
}

.homePart6Line::before {
  content: "";
  width: 0.5rem;
  height: 0.02rem;
  background: #1155a8;
  position: absolute;
  left: 0;
  top: -0.01rem;
}

.homePart6T1 {
  margin-top: 0.22rem;
  display: flex;
  align-items: center;
}

.homePart6T1 > span:first-child {
  font-family: MiSans, MiSans;
  font-weight: 600;
  font-size: 0.6rem;
  color: #1155a8;
}

.homePart6T1 > span:last-child {
  font-family: "Microsoft YaHei", "Microsoft YaHei";
  font-size: 0.16rem;
  color: #6a6a6a;
  margin-left: 0.1rem;
}

.homePart6T2 {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.16rem;
  color: #6a6a6a;
  /* margin-top: ; */
}

.wrap.part7 {
  padding: 0;
  height: 9.4rem;
  display: flex;
  position: relative;
}

.homePart7Left {
  width: 8.4rem;
  height: 100%;
  background-image: url(/zgln/images/home/bg6.png);
  background-repeat: cover;
  background-position: 50% 100%;
  box-sizing: border-box;
  padding-left: 2.6rem;
  padding-top: 1.58rem;
}

.homePart7Title {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.34rem;
  color: #ffffff;
}

.homePart7Dec {
  font-family: 'puhuiti';
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
  margin-top: 0.05rem;
  opacity: 0.23;
}

.homePart7xx {
  margin-top: 0.7rem;
}
.homePart7Code{
  display: flex;
  gap: 0.4rem;
}
.homePart7Code>img{
  width: 1.3rem;
  height: 1.3rem;
  display: block;
}

.homePart7List {
  display: flex;
  margin-bottom: 0.5rem;
}

.homePart7List > img {
  width: 0.24rem;
  height: 0.24rem;
  margin-top: 0.06rem;
  margin-right: 0.18rem;
}

.homePart7List > div > p:first-child {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
}

.homePart7List > div > p:last-child {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.24rem;
  margin-top: 0.06rem;
  color: #ffffff;
}

.homePart7List > div > p:last-child a {
  color: #ffffff;
}

.mapBox {
  width: 10.8rem;
  height: 100%;
  background-color: #f8f8f8;
}

.part7Swiper {
  position: absolute;
  right: 0;
  top: 3.61rem;
  width: 11.62rem;
  overflow: hidden;
  padding-bottom: 0.5rem;
}

.part7Swiper .swiper-slide {
  width: 3.64rem;
  height: 4.2rem;
  background: #ffffff;
  box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0, 0, 0, 0.13);
  overflow: hidden;
  box-sizing: border-box;
  padding: 0.5rem 0rem 0 0.45rem;
}

.part7SwiperTitle {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.2rem;
  color: #1e1e1e;
}

.part7SwiperLine {
  width: 0.3rem;
  height: 0.01rem;
  background: #1155a8;
  margin-top: 0.18rem;
}

.part7SwiperList {
  margin-top: 0.3rem;
  display: flex;
}

.part7SwiperList > img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.1rem;
}

.part7Name {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.16rem;
  color: #6a6a6a;
}

.part7Phone {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 0.16rem;
  color: #1e1e1e;
  margin-top: 0.15rem;
}

.part7Phone > a {
  color: #1e1e1e;
}

.part7Phone + .part7Phone {
  margin-top: 0.1rem;
}

.backTop {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  cursor: pointer;
  background: linear-gradient(180deg, #1155a8 0%, #0080d0 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0.3rem;
  bottom: 0.4rem;
  border-radius: 50%;
}

.backTop > img {
  width: 0.12rem;
  height: 0.16rem;
}








@media screen and (max-width: 1043px){
    
    .titleT1{
        font-size: 0.44rem;
    }
    .titleT2{
        font-size: 0.24rem;
    }
    .titleIcon{
        width: 0.4rem;
    }
    .vMore{
        height: 0.5rem;
    }
    .vMore > a{
        font-size: 0.24rem;
    }
    
    
    
    
    
    .bannerSwiper{
        height: auto;
    }
    .bannerT1{
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        font-size: 0.43rem;
        width: 90%;
        text-align: center;
    }
    .bannerSwiper .swiper-slide[aria-label="1 / 3"] .bannerT1{
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%);
        /*transform: translateY(-50%);*/
    }
    .bannerSwiper .swiper-slide[aria-label="2 / 3"] .bannerT1:last-child{
        left: 50% !important;
        top: 56% !important;
    }
    .bannerSwiper .swiper-slide[aria-label="2 / 3"] .bannerT1:nth-child(2){
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%);
    }
    .bannerNum{
        bottom: 0.2rem;
    }
    .bannerArr{
        display: none;
    }
    
    
    
    
    .bg1{
        width: 39%;
    }
    .videoBox{
        width: 71%;
    }
    .homePart1Right{
        width: 28%;
        height: 80%;
        padding: 0 0.1rem;
    }
    
    .videoWrap{
        height: 3rem;
    }
    .swiperVideoList{
        width: 100%;
        height: 3rem;
        padding-top: 0.1rem;
    }
    .swiperVideoList .swiper-slide{
        margin-bottom: 0.1rem !important;
        height: 0.9rem !important;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .swiperVideoList .swiper-slide img{
        height: 1rem;
    }
    .videoTitle{
        font-size: 0.3rem;
    }
    .videoTime{
        font-size: 0.26rem;
    }
    
    
    
    .videoBtn{
        bottom: 0;
        right: -2rem;
        width: 1rem;
        height: 0.5rem;
    }
    
    
    .bg2{
        width: 61%;
    }
    .homePart2List{
        display: block;
    }
    .homePart2List > li:nth-child(2){
        margin: 0.4rem 0;
    }
    .homePart2List > li{
        width: 100%;
        height: auto;
    }
    .homePart2List > li .scale-box{
        width: 100%;
        height: auto;
    }
    .homePart2Bottom{
        height: 2.3rem;
    }
    .homePart2T1{
        font-size: 0.3rem;
        margin-top: 0;
        line-height: 1.5;
    }
    .homePart2T2{
        font-size: 0.26rem;
    }
    
    
    
    .homePart3Box{
        width: 96%;
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    .homePart3Right{
        display: flex;
        margin-left: 0;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0 0.2rem;
        box-sizing: border-box;
    }
    .homePart3Right .vMore{
        margin: 0;
    }
    .homePart3List{
        width: 100%;
        margin-left: 0;
        padding: 0.0.2rem;
        box-sizing: border-box;
        margin-top: 0.6rem;
    }
    .homePart3List > li > a{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .homePart3Time{
        font-size: 0.26rem;
    }
    .homePart3Bk{
        font-size: 0.26rem;
        width: auto;
        height: 0.4rem;
        padding: 0 0.2rem;
        border-radius: 0.3rem;
    }
    .homePart3News{
        width: 100%;
        margin-top: 0.2rem;
        font-size: 0.3rem;
        margin-left: 0;
    }
    
    
    .bg3,
    .bg4{
        width: 96%;
    }
    .homePart4Box{
        width: 94%;
        margin: 0 auto;
    }
    .homePart4List{
        display: block;
    }
    .homePart4Content{
        width: 100% !important;
        margin-top: 0.6rem;
    }
    .homePart4Content > a{
        position: relative;
    }
    .homePart4Img{
        width: 100%;
        height: 4.6rem !important;
    }
    .homePart4Tip{
        font-size: 0.26rem;
        width: fit-content;
        height: 0.44rem;
        line-height: 0.4rem;
        padding: 0 0.2rem;
        border-radius: 0.7rem;
    }
    .homePart4T1{
        font-size: 0.3rem;
        line-height: 1.6;
    }
    .homePart4Time{
        font-size: 0.26rem;
        position: absolute;
        right: 0;
        top: 4.6rem;
    }
    .homePart4Right{
        width: 100%;
    }
    
    
    
    
    
    .HomePart5Box{
        width: 100%;
        padding: 1rem 0;
    }
    .homePart5Main{
        width: 94%;
        margin: 0.5rem auto 0;
    }
    .HomePart5Box .title{
        padding-left: 0;
        width: 94%;
        margin: 0 auto;
    }
    .homePart5Top{
        padding: 0.2rem;
    }
    .homePart5Nav > p,
    .homePart5Nav > ul > li,
    .homePart5Time,
    .homePart5RiseNum, .homePart5DealNum,
    .homePart5Table td{
        font-size: 0.2rem;
        width: auto;
        height: auto;
        padding: 0 0.05rem;
    }
    .homePart5Table th{
        font-size: 0.22rem;
    }
    
    
    .wrap.part7{
        display: block;
        height: auto;
    }
    
    
    .homePart7Left{
        width: 100%;
        padding: 1rem 3%;
    }
    .homePart7List > div > p:first-child{
        font-size: 0.2rem;
    }
    .homePart7List > div > p:last-child{
        font-size: 0.28rem;
    }
    .homePart7Code>img{
        width: 1.6rem;
        height: 1.6rem;
    }
    .mapBox{
        width: 100%;
        height: 6rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
    }
    
    
}








