/* --- homePAGE style--- */
.index-page {
	background-color: #010101; /* Links to your background image, which you can also replace with a URL. */
	background-size: cover; /* Image covers page. */
	background-repeat: no-repeat; /* Image does not repeat. */
	background-attachment: fixed; /* Image doesn't move when you scroll up or down. */
	background-position: top;
	text-align: center;
	color: white; /* Text color. */
	font-family: 'Helvetica'; /* Font: sans-serif included in case browser doesn't support first option. */
}

h1 {
	font-size: 50px;
}

.button-container {
  display: flex; /* Flexbox to keep the buttons horizontally aligned */
  justify-content: space-between; /* Place buttons on the left and right */
  width: 20%; /* Ensure container takes up the full width */
  margin: 0 auto; /* Center the button container */
}

.custom-btn {
  min-width: 125px;
  margin-right: 10px;
  background-color: #222;
  border: none;
  color: #fff;
  font-size: 1.4em;
  height: 35px;
  padding: 10px 10px;            /* or padding: 0 30px; for more width */
  display: inline-flex;
  align-items: center;        /* vertical centering */
  justify-content: center;    /* horizontal centering */
  text-align: center;
  border-radius: 5px;
  font-family:'Helvetica'; 
  /* vertical-align not needed with flex */
}

.expandable-menu {
  display: none; /* Hide the menu initially */
  margin-top: 10px; /* Space between the buttons */
  animation: slideDown 0.3s ease; /* Add animation for smooth dropdown */
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* This just centers the header container vertically on the page. */
.container-fluid {
	height: 200px;
	width: 100%;
	
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.header-image {
  width: 100%; /* Adjust the width to fill the container */
  max-width: 200px; /* Optional: set a max width for the image */
  display: block; /* Ensure the image is displayed as a block element */
  margin: -60px auto 0px auto; /* Optional: center the image and add some space below it */
}

/* Styling for icons. */
.fa {
	color: white;
	margin: 10px 5px;
	font-size: 3em !important;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
}


/* --- Share style --- */
.share-page {
  background-color: #000 !important;  /* 只对带有share-page类的页面生效 */
  color: #fff;
  font-family: 'Helvetica';
}

.share-container {
  margin-top: 30px;
  text-align: left;
  max-width: 700px;
  margin-left: 40px;
}

.share-container .title {
  color: #fff;        /* 或根据背景调整 */
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 2px;
  font-family: 'Helvetica'; 
}

.share-container p {
  font-family: 'Helvetica';  /* 自定义段落字体 */
  font-size: 1.1em;
  color: #fff;
}

.dot-list {
  list-style-type: disc;
  padding-left: 22px;
  margin-top: 0;
}

.dot-list li {
  margin-bottom: 16px;
  font-size: 1.15em;
  color: #fff;        /* 深色字更好阅读，可根据背景调整 */
  font-family: 'Helvetica'; 
}

.dot-list a {
  color: #b31b03;
  text-decoration: underline;
  font-weight: 500;
  display: block;
  font-family:'Helvetica'; 
}
.dot-list a:hover {
  color: #800000;
}