   /* 内页大图 */
   .Nybanner {
       margin-top: 80px;
       position: relative;
       width: 100%;
   }

   .Nybanner>img {
       position: relative;
       width: 100%;
       height: 100%;
       object-fit: cover;
       opacity: 1;
   }

   @media screen and (max-width: 1200px) {
       .Nybanner {
           margin-top: 60px;
       }
   }


   /* 面包屑样式 */
   .NyPageTop {
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       align-items: center;
       position: relative;
       padding-left: 15px;
       border-bottom: 1px solid #c1c1c1;
       padding-bottom: 10px;
   }

   .NyPageTop::after {
       content: '';
       display: block;
       width: 4px;
       height: 14px;
       background: var(--color);
       position: absolute;
       left: 0;
   }

   .NyPageTop::before {
       content: '';
       display: block;
       width: 80px;
       height: 1px;
       background: var(--color);
       position: absolute;
       left: 0;
       bottom: -1px;
   }

   .NyPageTop .NyTitle {
       font-weight: 700;
       font-size: 14px;
       color: #000;
   }

   .mbx {
       display: flex;
       flex-wrap: wrap;
       align-items: center;
   }

   .mbx,
   .mbx a {
       font-size: 12px;
       line-height: 1.5;
       color: #666;
   }


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

   .Post a {
       max-width: 50%;
       color: #333;
       line-height: 1;
       font-size: 16px;
       overflow: hidden;
       display: -webkit-box;
       -webkit-box-orient: vertical;
       -webkit-line-clamp: 1;
   }

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

       .Post a {
           width: 100%;
           max-width: 100%;
           margin: 5px 0;
       }
   }

   /* 框架结构 */
   body {
       background: #fff;
   }

   .NyBigBox {
       padding-top: 30px;
       padding-bottom: 30px;
       position: relative;
       z-index: 9;
       overflow: hidden;
   }

   .NyBox {
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       align-items: flex-start;
   }

   .NyBox .NyLeft {
       width: 225px;
   }

   .NyBox .NyPage {
       width: calc(100% - 240px);
   }


   .NyLeftList {
       margin-bottom: 20px;
   }

   .NyLeftList h1.h1 {
       font-weight: 700;
       font-size: 14px;
       line-height: 2;
       color: #000;
       padding-left: 15px;
       border-bottom: 1px solid #c1c1c1;
       position: relative;
       display: flex;
       align-items: center;
   }

   .NyLeftList h1.h1::after {
       content: '';
       display: block;
       width: 4px;
       height: 14px;
       background: var(--color);
       position: absolute;
       left: 0;
   }

   .NyLeftList h1.h1::before {
       content: '';
       display: block;
       width: 80px;
       height: 1px;
       background: var(--color);
       position: absolute;
       left: 0;
       bottom: -1px;
   }

   /* 分类 */
   .NyNavBox {
       display: flex;
       flex-wrap: wrap;
   }

   .NyNavBox a {
       display: flex;
       align-items: center;
       grid-gap: 10px;
       width: 100%;
       color: #666;
       font-size: 12px;
       line-height: 1.5;
       height: 30px;
       border-bottom: 1px solid #dddddd;
       padding-left: 5px;

   }

   .NyNavBox a:hover {
       color: #3a78c1;
       background: #f5f6f6;
   }

   /* 新闻 */
   .NyLeftNews {
       display: block;
   }

   .NyLeftNews a {
       border-bottom: 1px solid #dddddd;
       padding-left: 15px;
       font-size: 12px;
       line-height: 2.5;
       color: #666;
       position: relative;
       overflow: hidden;
       display: -webkit-box;
       -webkit-box-orient: vertical;
       -webkit-line-clamp: 1;
   }

   .NyLeftNews a::after {
       content: '';
       display: block;
       width: 4px;
       height: 4px;
       background: var(--color);
       position: absolute;
       left: 0;
       top: 50%;
       transform: translateY(-50%);
   }

   .NyLeftNews a:hover {
       color: var(--color);
   }

   /* 联系我们 */
   .NyLeftContact {
       display: flex;
       flex-direction: column;
       grid-gap: 5px;
   }

   .NyLeftContact h4 {
       color: #666;
       font-size: 16px;
       line-height: 1.5;
       padding: 5px 0;
   }

   .NyLeftContact p {
       display: block;
       font-size: 12px;
       line-height: 1.5;
       color: #666;
   }




   @media screen and (max-width: 900px) {
       .NyLeft {
           display: none;
       }

       .NyBox .NyPage {
           width: 100%;
       }
   }


   /* 详情 */
   .NyContent {
       min-height: 300px;
       width: 100%;
       padding: 15px;
   }

   /* 定位 */
   .dian {
       position: relative;
       top: -90px;
   }

   @media (max-width: 640px) {
       .dian {
           position: relative;
           top: -60px;
       }
   }

   /* 新加代码 */