    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      background: #000000;
      color: #333;
      display: flex;
      flex-direction: column;
      justify-content: center; /* 居中内容 */
      align-items: center;     /* 居中内容 */
      margin: 0;
    }

    /* 容器 */
    .container {
      max-width: 720px;
      width: 100%;
      flex: 1;
    }

    /* 幻灯片区域 */
    .slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      height: 300px;
    }

    @media (min-width: 768px) {
      .slider {
        height: 400px;
      }
    }

    /* 幻灯片图片 */
    .slides {
      display: flex;
      transition: transform 0.6s ease-in-out;
      height: 100%;
    }

    .slide {
      min-width: 100%;
      height: 100%;
      user-select: none;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      user-select: none;
    }

    /* 幻灯片下面按钮组 */
    .buttons {
      margin-top: 15px;
      text-align: center;
    }

    .buttons a {
      display: inline-block;
      margin: 5px 8px;
      padding: 8px 18px;
      background-color: #24262b;
      color: #fff;
      text-decoration: none;
      border-radius: 25px;
      user-select: none;
	  width:44%;
    }

    .buttons a:hover,
    .buttons a:focus {
      background-color: #86f455;
      outline: none;
    }

       /* 底部导航 */
    footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #222;
      color: #eee;
      box-shadow: 0 -3px 10px rgba(0,0,0,0.3);
      display: flex;
      justify-content: center;
      padding: 10px 0;
      z-index: 1000;
    }

    footer nav {
      display: flex;
      gap: 35px; /* Adjust gap as needed */
      width: 100%;
      justify-content: center; /* Center navigation items */
      align-items: flex-start; /* Align items to the start for multi-line content */
    }

    footer nav a {
      color: #eee;
      text-decoration: none;
      font-size: 14px; /* Adjusted font size for better fit with icon */
      font-weight: 500;
      border-radius: 8px;
      transition: background-color 0.3s ease;
      user-select: none;
      display: flex; /* Use flexbox for layout */
      flex-direction: column; /* Stack icon and text vertically */
      align-items: center; /* Center icon and text horizontally */
      text-align: center; /* Ensure text is centered if it wraps */
	  width: 30%;
    }

    .footer-nav-icon {
      width: 30px; /* Adjust icon size as needed */
      height: 30px; /* Adjust icon size as needed */
      margin-bottom: 5px; /* Space between icon and text */
      object-fit: contain; /* Ensures the image scales correctly */
    }


    /* 幻灯片按钮容器 */
    .buttons-container {
      max-width: 1000px;
      margin: 10px auto 40px;
      text-align: center;
    }

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}


.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
        background-color: rgb(0 0 0 / 28%);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgb(0 0 0 / 28%);
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

.button-container {
    display: flex;
    flex-direction: column;  
    align-items: center;     
    gap: 18px;               
}

.button {
    display: flex;
    align-items: center;     
    justify-content: center; 
    background-color: #3dff00; 
    color: #d244ed;    
    padding: 10px 20px;      
    border: none; 
    border-radius: 5px;      
    text-decoration: none;    
    width: 80%;           
    transition: background-color 0.3s; 
	border-radius: 30px;
	box-shadow: rgb(8 49 112 / 24%) 0px 2px 8px 0px;
	font-weight:600;
}

.button:hover {
    background-color: ; 
}

.enter-icon {
    width: 20px; 
    height: 20px; 
    margin: 0 10px; 
}
.iconss{
   width: 40px;
   height: 40px;
   margin-left: -3px; 
   border-radius: 50%;
   object-fit: cover;
}
.button-text {
    flex: 1; 
    text-align: center;
	font-size: 18px;
}
