 .Ny_News {
     margin-bottom: 45px;
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     grid-gap: 90px;
 }

 .NewsList {
     width: 100%;
     border: 1px solid #D4D4D4;
 }

 .NewsList .img {
     width: 100%;
     overflow: hidden;
 }


 .NewsList .text {
     padding: 45px;
     background: #fff;
 }

 .NewsList .text p {
     font-size: 14px;
     line-height: 1;
     color: #808080;
     transition: 0.5s;
 }



 .NewsList .text h1 {
     font-weight: bold;
     font-size: 20px;
     line-height: 1.5;
     height: 60px;
     color: #484848;
     transition: 0.5s;
     margin: 20px 0 75px;
     overflow: hidden;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
 }



 .NewsList .text span {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .NewsList .text .time {
     font-weight: 500;
     font-size: 14px;
     line-height: 1;
     color: #808080;
     transition: 0.5;
 }

 .NewsList .text span img {
     transition: 0.5s;
     filter: brightness(0) opacity(0.7);
 }


 .NewsList:hover .text * {
     color: var(--color);
 }

 .NewsList:hover .text span img {
     filter: none;
 }

 @media (max-width: 1440px) {
     .Ny_News {
         grid-gap: 60px;
     }

 }

 @media (max-width: 1200px) {
     .Ny_News {
         grid-template-columns: 1fr 1fr;
     }

     .NewsList .text {
         padding: 30px;
     }
 }

 @media (max-width: 720px) {
     .Ny_News {
         grid-template-columns: 1fr 1fr;
         grid-gap: 30px;
     }

     .NewsList .text {
         padding: 30px;
     }
 }

 @media (max-width: 460px) {
     .Ny_News {
         grid-template-columns: 1fr;
         grid-gap: 30px;
     }

     .NewsList .text h1 {
         font-size: 18px;
         height: 54px;
         margin: 15px 0 30px;
     }

 }

 /* 详情 */
 /* 详情 */
 /* 详情 */
 .Ny_NewsPost {
     padding: 0 3vw;
 }

 .Ny_NewsPost .title {
     display: block;
     width: 100%;
     font-size: 24px;
     line-height: 2;
     font-weight: bold;
     text-align: center;
 }

 .Ny_NewsPost .desc {
     display: flex;
     justify-content: center;
     width: 100%;
 }

 .Ny_NewsPost .desc span {
     margin: 0 5px;
     color: #999;
     font-size: 14px;
     line-height: 3;
     text-align: center;
 }

 .Ny_NewsPost .Ny_xiangqing {
     margin-top: 30px;
     margin-bottom: 30px;
     min-height: 500px;
 }

 .Ny_NewsPost .Ny_xiangqing p {
     margin: 0;
 }


 @media (max-width: 720px) {

     .Ny_NewsPost .title {
         margin-top: 15px;
         margin-bottom: 10px;
         font-size: 18px;
         line-height: 1.5;
     }


 }


 .NewsPostBottom {
     border-top: 1px solid #e6e6e6;
     width: 100%;
     padding: 20px 0;
     display: flex;
     justify-content: space-between;
 }

 .NewsPostBottom a {
     color: #333;
     line-height: 1;
     font-size: 16px;
 }

 @media (max-width: 720px) {
     .NewsPostBottom {
         display: flex;
         flex-wrap: wrap;
     }

     .NewsPostBottom a {
         width: 100%;
         margin: 5px 0;
         overflow: hidden;
         display: -webkit-box;
         -webkit-box-orient: vertical;
         -webkit-line-clamp: 1;
     }
 }