     .Nybanner {
         height: 100px;
     }

     .top .title {
         width: 100%;
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     .top .title h1 {
         font-weight: bolder;
         font-size: 48px;
         line-height: 1.25;
         color: #000000;
     }

     .top .title h2 {
         font-weight: 700;
         font-size: 48px;
         line-height: 1.25;
         color: #BFC0C3;
     }

     .mbx {
         padding: 0;
         padding-top: 75px;
         padding-bottom: 60px;
     }

     .mbx a {
         font-weight: bold;
         font-size: 16px;
         color: rgba(120, 120, 120, 0.5);
         letter-spacing: 1px;
     }

     .NavList {
         display: flex;
         grid-gap: 15px;
     }

     .NavList a {
         display: block;
         border-radius: 50px;
         background: #EFEFEF;
         padding: 20px 30px;
         font-weight: 700;
         font-size: 16px;
         color: #000000;
         letter-spacing: 1px;
     }

     .NavList a.active {
         color: #fff;
         background: linear-gradient(270deg, rgba(218, 37, 30, 0) 0%, rgba(218, 37, 30, 0.8) 100%), #FFFFFF;
     }

     @media (max-width: 1200px) {
         .Nybanner {
             height: 0px;
         }

         .top .title h1,
         .top .title h2 {
             font-size: 38px;
         }

         .mbx {
             padding: 0;
             padding-top: 60px;
             padding-bottom: 45px;
         }
     }

     @media (max-width: 720px) {

         .top .title h1,
         .top .title h2 {
             font-size: 28px;
         }

         .mbx {
             padding: 0;
             padding-top: 45px;
             padding-bottom: 30px;
         }

         .NavList a {
             padding: 15px 20px;
             font-weight: 400;
             font-size: 14px;
         }
     }

     @media (max-width:460px) {
         .top .title {
             width: 100%;
             display: flex;
             align-items: flex-start;
             flex-direction: column;
             grid-gap: 15px;
         }

         .mbx {
             padding: 0;
             padding-top: 30px;
             padding-bottom: 15px;
         }

         .NavList {
             display: flex;
             grid-gap: 15px;
             flex-wrap: wrap;
         }

         .NavList a {
             width: 100%;
             text-align: center;
         }
     }

     /* 新闻列表 */
     .NeweList {
         padding: 0 var(--container);
         background: url(/assets/images/img5.png) no-repeat center top;
         background-size: 100%;
         margin-top: 75px;
         margin-bottom: 45px;
         display: flex;
         flex-wrap: wrap;
         grid-gap: 60px 20px;
     }

     .NewsItem {
         background: #EFEFEF;
         width: calc((100% - 40px) / 3);
         position: relative;
         overflow: hidden;
         transition: 0.5s;
     }

     .NewsItem .img {
         width: 100%;
     }

     .NewsItem .text {
         background: #EFEFEF;
         padding: 30px;
         display: flex;
         align-items: center;
         justify-content: space-between;
     }

     .NewsItem h1 {
         max-width: calc(100% - 120px);
         font-weight: 700;
         font-size: 18px;
         color: #000000;
         overflow: hidden;
         display: -webkit-box;
         -webkit-box-orient: vertical;
         -webkit-line-clamp: 2;
     }

     .NewsItem .NyMore {
         display: none;
     }

     .NewsItem .time {
         font-weight: bold;
         font-size: 18px;
         color: #0F0F0F;
         display: flex;
         align-items: baseline;
         grid-gap: 10px;
     }

     .NewsItem .time p {
         font-weight: bold;
         font-size: 42px;
         text-align: justify;
         color: var(--color);
     }

     @media (min-width: 1200px) {
         .NewsItem:nth-child(1) {
             width: 100%;
             display: flex;
             flex-direction: row-reverse;
         }

         .NewsItem:nth-child(1) .img {
             width: 66%;
         }

         .NewsItem:nth-child(1) .text {
             width: 33%;
             position: relative;
             display: flex;
             align-items: flex-start;
             justify-content: flex-start;
             flex-direction: column;
         }

         .NewsItem:nth-child(1) .time {
             display: flex;
             flex-direction: column;
             grid-gap: 0;
             margin-bottom: 60px;
         }

         .NewsItem:nth-child(1) h1 {
             max-width: 100%;
             font-weight: 500;
             font-size: 48px;
             color: #545454;
         }

         .NewsItem:nth-child(1) .NyMore {
             display: flex;
             position: absolute;
             left: 45px;
             bottom: 90px;
         }
     }

     @media (max-width: 1440px) and (min-width: 1200px) {
         .NewsItem:nth-child(1) .time {
             margin-bottom: 30px;
         }

         .NewsItem:nth-child(1) h1 {
             font-size: 38px;
         }


     }

     @media (max-width: 1200px) {
         .NewsItem .text {
             padding: 15px;
             flex-wrap: wrap;
         }

         .NewsItem .time {
             font-size: 14px;
             grid-gap: 5px;
         }

         .NewsItem .time p {
             font-size: 24px;
         }

         .NewsItem h1 {
             margin-top: 10px;
             max-width: 100%;
             font-weight: 500;
             font-size: 16px;
         }
     }

     @media (max-width:720px) {
         .NewsItem {
             width: calc((100% - 20px) / 2);
         }
     }

     @media (max-width: 380px) {
         .NeweList {
             grid-gap: 30px 20px;
         }

         .NewsItem {
             width: 100%;
         }
     }



     /* 详情 */
     /* 详情 */
     /* 详情 */
     .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;
         }


     }