.main {
    width: 1400px;
    margin: 28px auto;
    display: flex;
    justify-content: space-between;
}

.main .left {
    width: 940px;
    position: relative;
}

.main .left .title {
    text-align: center;
    color: #1A1A1A;
    font-size: 30px;
    font-weight: bold;
}

.main .left .info1 {
    color: #666;
    font-size: 17px;
    text-align: center;
    margin: 20px 0 12px;
}

.main .left .info2 {
    color: #999999;
    font-size: 14px;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
   margin-top:10px;
    border-bottom: 1px solid #DBDBDB;
}

.main .left .content {
    font-size: 16px;
    margin-bottom: 100px;
    font-family: "宋体" !important;
}

.main .left .content img {
    max-width: 100%;
   margin-top:1em !important;
        margin-bottom:1em !important;
}

.main .left .content video {
    max-width: 100%;
}

.main .right {
    width: 360px;
    margin-left: 40px;
    max-height: 760px;
}

.main .right .title {
    height: 58px;
    line-height: 58px;
    color: #1A1A1A;
    font-size: 20px;
    letter-spacing: 5px;
}

.main .right .title img {
    margin: 0 10px -5px 4px;
}

.main .right .item {
    height: 75px;
    padding: 20px 20px 0;
    border-left: 1px solid #DBDBDB;
    cursor: pointer;
    font-size: 14px;
}

.main .right .item p:first-child {
    color: #808080;
    margin-bottom: 6px;
    position: relative;
}

.main .right .item p span {
    position: absolute;
    top: 5px;
    left: -25px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E6C390;
}

.main .right .item p a {
    color: #1A1A1A;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 设置最大显示行数 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 25px;
}

.main .right .item p a:hover {
    color: #9B0000;
}

.footer {
    margin-top: 50px;
}

.main .left .tabNews a {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    color: #1A1A1A;
}

.main .left .tabNews a span {
    margin-left: 10px;
}

.main .left .tabNews a:hover {
    color: #9B0000;
}
/* footer */
.gmgy-content {
  width: 62.5%;
  height: auto;
  margin: 0 auto;
}
.gmgy-footer {
  width: 100%;
  height: 29.5vh;
  background: #0072AA;
  color: #fff;
}
.footer-top {
  height: 69.5%;
}
.footer-top .gmgy-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.footer-top .txt {
  font-size: 32px;
  width: 40%;
}
.footer-top .social-icons {
  width: 60%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.footer-top .social-icons .icon-item {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer-top .social-icons .icon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-top .social-icons .icon-item .qrcode {
  position: absolute;
  display: none;
  transition: all 0.3s ease-in-out;
  left: -60px;
  top: 70px;
  width: 130px;
  height: 130px;
  border-radius: 10px;
  background: #fff;
  z-index: 2;
}
.footer-top .social-icons .icon-item .qrcode::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 15%;
  transform: translateX(-50%);
  
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.footer-top .social-icons .icon-item .qrcode img {
  width: 80%;
  height: 80%;
  object-fit: fill;
}
.footer-top .social-icons .icon-item.dy .qrcode img {
  width: 90%;
  height: 90%;
  object-fit: fill;
}
.footer-top .social-icons .icon-item:hover .qrcode {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gmgy-footer .line {
  width: 100%;
  height: 2px;
  background: #fff;
}

.footer-bottom {
  height: calc(100% - 69.5% - 2px);
}
.footer-bottom .gmgy-content {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
}

@media only screen and (max-width: 1550px) {
    .main {
        width: 1200px;
    }

    .main .left {
        width: 800px;
    }

    .main .right {
        width: 360px;
    }
}

@media only screen and (max-width: 1250px) {
    .main {
        width: 1000px;
    }

    .main .left {
        width: 792px;
    }

    .main .right {
        width: 300px;
    }
}

@media only screen and (max-width:980px) {
    .main {
        width: 95%;
        display: block;
    }

    .main .left {
        width: 100%;
        margin-bottom: 20px;
    }

    .main .left .title {
        font-size: 16px;
    }

    .main .left .info1 {
        font-size: 12px;
    }

    .main .left .info2 {
        font-size: 12px;
    }

    .main .left .content {
        font-size: 12px !important;
    }

    .main .left .content img {
        width: 100%;
        margin-top:1em !important;
        margin-bottom:1em !important;
    }

    .main .right {
        width: 100%;
        margin-left: 0;
    }

    .main .right .item {
        font-size: 12px;
    }

    .main .right .item p:first-child {
        font-size: 16px;
    }

    .main .left .tabNews {
        position: static;
        margin-top: 20px;
    }

    .main .left .tabNews a {
        font-size: 12px;
    }
}

.main .ldtable td{text-align:left !important;font-size:18px;line-height: 30px;}
.main .ldtable td:nth-child(2){width:524px;}
.main .left .content p{line-height:2.5em !important; font-family: "宋体" !important;}