   body {
	 overflow:scroll
     font-family: 'Inter', sans-serif;
     min-height: 100vh; /* Set the body to fill the viewport height */
     position: relative; /* Set the position to relative */
     margin-bottom: 100px; // 页脚的高度 + 一定的额外空间
   }
    .icon { 
	   color: #4F46E5;
	}

   /* Footer Styles */
   footer {
     padding: 20px 0;
     text-align: center;
     position: relative; /* Set the position to absolute */
     bottom: 0; /* Position the footer at the bottom of the page */
     width: 100%; /* Set the width to 100% */
   }
   footer .contain {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
   }
   footer .col {
     flex: 1;
     text-align: left;
     padding: 0 20px;
   }
   footer .group-head-link {
     font-weight: bold;
     margin-bottom: 10px;
   }
   footer ul {
     list-style: none;
     padding: 0;
   }
   footer ul li {
     margin-bottom: 5px;
   }
   footer .foot {
	 position: relative;
	 bottom: 0;
	 width: 100%;
     color: #000000;
     padding: 5px 0;
   }