@charset "utf-8";
/* CSS Document */

@font-face {
font-family: 'MiSansSemibold';
src: url('/fonts/MiSansSemibold.woff2') format('truetype');
font-weight: normal;
font-style: normal;
}

@media (max-width: 420px) {
  .EggPointShowCard {
    max-width: 90vw; /* 卡片最多占90%的屏幕宽度 */
  }

  .ImageWrapper img {
    min-width: unset;
    width: 100%;
  }
}

body{
	font-family: 'MiSansSemibold', sans-serif;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

a{
	text-decoration: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.image-rounded {
border-radius: 7px; /* 设置圆角的半径 */
}

.index_dl_dhl {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
	border-bottom: 1px solid black;
	font-family: 'MiSansSemibold', sans-serif;
}

.index_dl_li {
    float: left;
}

.index_dl_dhl_a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	transition: all 0.5s ease-out;
}

.index_dl_dhl a:hover {
    background-color: #d3d3d3;
}

.EggPointBigIcon {
	align: center;
	font-size: 50px;
	margin: auto;
	text-align: center;
}

/* 容器：纵向排列，一行一个，居中显示 */
.EggContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

/* 卡片本体样式 */
.EggPointShowCard {

  width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* 鼠标悬停时抬升 + 增强阴影 */
.EggPointShowCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* 图片外层容器，控制显示区域和渐隐遮罩 */
.ImageWrapper {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.ImageWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-width: 400px; /* 默认拉伸小图 */
  max-width: 100%;
}

.EggPointShowTextTitle {
  color: black;
  text-align: left;
  font-size: 20px;
  margin: 10px;
}

.EggPointShowText {
  color: #565656;
  text-align: left;
  margin: -10px 20px 10px;
}

@media (max-width: 420px) {
  .EggPointShowCard {
    max-width: 90vw; /* 卡片最多占90%的屏幕宽度 */
  }

  .ImageWrapper img {
    min-width: auto !important;
    width: 100%;
  }
}

.EggPointIconImage{
	width: 61px;
	height: 28px;
	display: block;
	margin: 0 auto;
}

@media (prefers-color-scheme: dark) {
	.EggPointShowCard {
    border: 1px solid #000;
    
  }
}

.grunch {
  max-width: 90vw;    /* 不超过视口宽度90% */
  max-height: 70vh;   /* 不超过视口高度70% */
  width: auto;
  height: auto;
}
