/* 全局重置 */
     
        /* 页面容器（控制整体宽度并居中） */
        .about-page {
            max-width: 950px; /* 核心居中宽度，和图中内容区一致 */
            margin: 0 auto;   /* 水平居中 */
            background-color: #fff;
        }

        /* 导航栏样式（about开头命名） */
        .about-nav {
            width: 100%;
            height: 60px;
            line-height: 60px;
            padding: 0 20px;
			text-align: center;
            border-bottom: 1px solid #eee;
        }
        .about-nav__item {
            display: inline-block;
            padding: 0 22px;
            font-size: 20px;
            color: #666;
            text-decoration: none;
            position: relative;
        }
        /* 分隔线 */
        .about-nav__item::after {
            content: "|";
            position: absolute;
            right: 0;
            color: #ccc;
        }
        .about-nav__item:last-child::after {
            content: "";
        }
        /* 选中状态 */
        .about-nav__item--active {
            color: #960000; /* 图中橙色选中色 */
        }

        /* 横幅区域 */
        .about-banner {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }
        .about-banner__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-banner__play {
            position: absolute;
            top: 50%;
            left: 45%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(0,0,0,0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .about-banner__play::after {
            content: "";
            border-left: 12px solid #fff;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }
        .about-banner__text {
            position: absolute;
            top: 50%;
            left: 55%;
            transform: translateY(-50%);
            color: #fff;
        }
        .about-banner__text small {
            font-size: 20px;
            display: block;
            margin-bottom: 8px;
        }
        .about-banner__text h2 {
            font-size: 42px;
            line-height: 1.2;
        }

        /* 内容区域（居中排版） */
        .about-content {
            padding: 60px 80px;
            color: #333;
        }
        .about-content__title {
            font-size: 28px;
            font-weight: normal;
            text-align: center;
            margin-bottom: 30px;
        }
        .about-content__desc {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
		
		
		
		
	 /* 外层容器：固定950px宽度，居中显示，移除背景色 */
        .about_an_container {
            width: 950px;
            margin: 0 auto;
            padding: 20px 0;
            background-color: #fff; /* 纯白色背景 */
        }

        /* 卡片网格布局 */
        .about_an_card_wrap {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4列均分950px宽度 */
            gap: 15px; /* 卡片间距 */
        }

        /* 核心卡片样式（无遮罩，纯图片背景） */
        .about_an_card {
            border-radius: 24px;
            height: 250px; /* 固定卡片高度 */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            color: #fff; /* 标题文字白色 */
            cursor: pointer; /* 鼠标手型 */
            transition: all 0.4s ease; /* 悬浮过渡动画 */
            /* 背景图片基础样式（仅保留图片，无遮罩） */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /* 去除a标签默认样式 */
            text-decoration: none;
        }

        /* 每张卡片自定义背景图（替换这里的URL即可） */
        .about_an_card.card1 {
            background-image: url("../img/about_k_1.jpg"); /* 产品库背景 */
        }
        .about_an_card.card2 {
            background-image: url("../img/about_k_2.jpg"); /* 渴物众筹背景 */
        }
        .about_an_card.card3 {
            background-image: url("../img/about_k_3.jpg"); /* 发现背景 */
        }
        .about_an_card.card4 {
            background-image: url("../img/about_k_4.jpg"); /* 新品上市背景 */
        }

        /* 标题样式（增强文字可读性） */
        .about_an_card-title {
            font-size: 48px;
            font-weight: 700;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); /* 加深文字阴影，适配无遮罩图片 */
            text-align: center;
        }

        /* 悬浮效果：突出阴影+轻微上移 */
        .about_an_card:hover {
            transform: translateY(-8px); /* 轻微上移 */
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* 突出阴影 */
        }

        /* 点击反馈 */
        .about_an_card:active {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

/* ====================== */
/* 手机端自动适配（不改变原有样式） */
/* ====================== */
@media (max-width: 768px) {
  .about-nav {
    height: auto;
    line-height: 50px;
    padding: 10px 0;
  }
  .about-nav__item {
    padding: 0 12px;
    font-size: 16px;
  }
  .about-banner {
    height: 220px !important;
  }
  .about_an_container {
    width: 100% !important;
    padding: 10px !important;
  }
  .about_an_card_wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .about_an_card {
    height: 160px !important;
  }
  .about_an_card-title {
    font-size: 28px !important;
  }
}