   .header .navbar_nav li:nth-child(1) a {
       opacity: 1;
   }

   h1.title {
       font-family: PuHuiTi400;
       font-weight: 700;
       font-size: 48px;
       line-height: 1;
       color: #000000;
   }


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

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

   @media (max-width: 720px) {
       h1.title {
           font-size: 24px;
           font-weight: bold;
       }
   }



   @keyframes text {
       0% {
           transform: rotate(0deg);
       }

       100% {
           transform: rotate(360deg);
       }
   }

   .AMore {
       position: relative;
       overflow: hidden;
   }

   .AMore::after {
       content: "";
       display: block;
       position: absolute;
       z-index: -2;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       border: 1px solid var(--color);
       border-radius: 4px;
   }

   .AMore::before {
       content: "";
       display: block;
       position: absolute;
       z-index: -1;
       left: 0;
       right: auto;
       top: 0;
       bottom: auto;
       width: 50%;
       height: 50%;


   }

   .AMore:hover::before {
       background: #fff;

   }