     /* 框架 */
     section {
         position: relative;
         overflow: hidden;
         width: 100%;
     }

     /* 标题 */
     .indexTitle {
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .indexTitle h2 {
         font-size: 14px;
         text-align: center;
         color: #333333;
     }

     .indexTitle h1 {
         font-weight: 700;
         font-size: 42px;
         text-align: center;
         color: #333333;
     }

     @media (max-width: 1440px) {
         .indexTitle h1 {
             font-size: 40px;
         }
     }

     @media (max-width: 1200px) {
         .indexTitle h1 {
             font-size: 34px;
         }
     }

     @media (max-width: 720px) {
         .indexTitle h1 {
             font-size: 28px;
         }
     }

     /* 查看更多按钮 */

     a.AMore {
         display: flex;
         align-items: center;
         justify-content: space-evenly;
         border-radius: 4px;
         width: 148px;
         height: 42px;
         font-size: 14px;
         font-weight: bold;
         background: var(--color);
         color: #fff;
     }