
    /* 全局样式重置 + 禁止横向滚动 */

   

    /* 容器：居中+内边距，适配布局 */

    .container {

      max-width: 1300px;

      margin: 0 auto;


      width: 100%;

    }

    .container1 {

     margin: 0 auto;max-width: 1290px;width: 100%; padding-left:8px;

    }


  .img-click-perfect-wrapper {

    position: relative;

    display: inline-block;

    overflow: hidden;

    border-radius: 4px;

    z-index: 10;

    pointer-events: auto;

  }



  .img-click-perfect-link {

    display: block;

    width: 100%;

    height: 100%;

    text-decoration: none;

  }



  /* 核心：图片同时添加 缩放+透明度 过渡，时长一致 */

  .img-click-perfect-img {

    width: 100%;

    height: auto;

    display: block;

    /* 双属性过渡：缩放+透明度，0.8秒缓慢变化，曲线更柔和 */

    transition: transform 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67), 

                opacity 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67);

    transform-origin: center center;

    opacity: 0.92; /* 初始略暗，点击后变亮 */

  }



  /* 点击按下时：放大+提亮，双效果同步 */

  .img-click-perfect-wrapper:active .img-click-perfect-img,

  .img-click-perfect-link:active .img-click-perfect-img,

  .img-click-perfect-link:focus .img-click-perfect-img {

    transform: scale(1.1); /* 放大1.1倍，比1.08更明显 */

    opacity: 1; /* 完全不透明，视觉上更亮 */

    outline: none;

  }



  /* 可选：悬浮时轻微变化，铺垫交互感 */

  .img-click-perfect-wrapper:hover .img-click-perfect-img {

    opacity: 0.98;

    transform: scale(1.02);

  }



    /* 核心网格：分两行独立布局，彻底解决重叠！ */

    /* 不共用单一列比例，而是用两个网格容器分别承载两行，避免重叠 */

    .row-wrapper {

      display: flex;

      flex-direction: column;

      gap: 15px; /* 两行之间的间距 */

      width: 100%;

    }



    /* 第一行网格：左窄右宽（36% 64%） */

    .row1 {

      display: grid;

      grid-template-columns: 36% 64%; /* 左窄右宽比例 */

      gap: 15px; /* 第一行内部卡片间距 */

      width: 100%;

      grid-template-rows: 500px; /* 行高 */

    }



    /* 第二行网格：左宽右窄（64% 36%） */

    .row2 {

      display: grid;

      grid-template-columns: 64% 36%; /* 左宽右窄比例（与第一行相反） */

      gap: 15px; /* 第二行内部卡片间距 */

      width: 100%;

      grid-template-rows: 500px; /* 行高 */

    }



    /* 第一行：左窄（card1） 右宽（card2）- 无重叠 */

    .card-1 {

      grid-column: 1 / 2;

      grid-row: 1 / 2;

      width: 100%;

      height: 100%;

      aspect-ratio: 675/500; /* 窄图比例 */

    }



    .card-2 {

      grid-column: 2 / 3;

      grid-row: 1 / 2;

      width: 100%;

      height: 100%;

      aspect-ratio: 1200/500; /* 宽图比例 */

    }



    /* 第二行：左宽（card3） 右窄（card4）- 无重叠 */

    .card-3 {

      grid-column: 1 / 2;

      grid-row: 1 / 2;

      width: 100%;

      height: 100%;

      aspect-ratio: 1200/500; /* 宽图比例 */

    }



    .card-4 {

      grid-column: 2 / 3;

      grid-row: 1 / 2;

      width: 100%;

      height: 100%;

      aspect-ratio: 675/500; /* 窄图比例 */

    }



    /* 图片卡片基础样式 */

    .stagger-card {

      position: relative;

      border-radius: 5px;

      overflow: hidden; /* 隐藏图片放大后超出卡片的部分，关键！ */

      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

      cursor: pointer; /* 鼠标悬浮显示手型，提示可点击 */

    }

    .card-img {

      width: 100%;

      height: 100%;

      object-fit: cover;

      object-position: center;

      display: block;

      /* 图片放大过渡效果：实现缓慢动画，不是瞬间放大 */

      transition: transform 0.6s ease-in-out;

    }

    /* 鼠标悬浮在卡片上时，图片放大效果 */

    .stagger-card:hover .card-img {

      transform: scale(1.08); /* 放大1.08倍，可调整数值（如1.1、1.05）控制放大幅度 */

    }

    /* 半透明遮罩：同步添加过渡，让效果更柔和 */

    .card-overlay {

      position: absolute;

      top: 0;

      left: 0;

      width: 100%;

      height: 100%;

      background-color: rgba(0, 0, 0, 0.05);

      z-index: 1;

      transition: background-color 0.6s ease-in-out;

    }

    /* 悬浮时遮罩略加深，增强交互感 */

    .stagger-card:hover .card-overlay {

      background-color: rgba(0, 0, 0, 0.3);

    }

    /* 文字+按钮定位（左下角） */

    .card-content {

      position: absolute;

      bottom: 30px;

      left: 30px;

      z-index: 2;

    }

    .card-title {

      color: #fff;

      font-size: 1.8rem;

      font-weight: 700;

      margin-bottom: 12px;

    }

    .explore-btn {

      display: inline-block;

      background-color: #ff7a00;

      color: #fff;

      font-size: 1rem;

      font-weight: 600;

      padding: 8px 20px;

      border-radius: 4px;

      text-decoration: none;

      transition: background-color 0.3s ease;

    }

    .explore-btn:hover {

      background-color: #e66a00;

    }



    /* 媒体查询：平板及以下适配 */

    @media (max-width: 1200px) {

      .row1, .row2 {

        grid-template-rows: auto; /* 取消固定行高，避免超屏 */

      }

    }

    @media (max-width: 768px) {

      .row1, .row2 {

        grid-template-columns: 1fr; /* 单列布局 */

        grid-template-rows: auto auto;

        gap: 10px;

      }

      /* 重置所有卡片位置，垂直排列 */

      .card-1, .card-2, .card-3, .card-4 {

        grid-column: 1 / 2;

      }

      .card-1 { grid-row: 1 / 2; }

      .card-2 { grid-row: 2 / 3; }

      .card-3 { grid-row: 1 / 2; }

      .card-4 { grid-row: 2 / 3; }

      .card-content { bottom: 20px; left: 20px; }

      .card-title { font-size: 1.5rem; }

      .row-wrapper { gap: 10px; }
	  
	  
	  


    }


		
		
/* 未滚动时：白色地球+白色文字 */
/* ============= 未滚动时：白色样式（地球+文字+箭头） ============= */
.language{
	float: left;
	display: inline-block;
	min-width: 60px;
	padding-left: 40px;
	margin-left:25px;
	margin-top:12px;
	/* 白色地球图标（路径确认） */
	background: url(/template/pc/skin/image/global-white.png) left center no-repeat;
	background-size: 22px 22px;
	font-size: 15px;
	color: #ffffff;
	font-weight: lighter;
	height: 80px;
	line-height: 80px;
	font-family: Arial, Helvetica, sans-serif;
	position: relative;
	cursor: pointer;
	z-index:998;
	text-align: left;
}

.language .top{
	padding-right: 26px;
	/* 白色下拉箭头（路径确认） */
	background: url(/template/pc/skin/images/l-down.png) right center no-repeat;
	background-size: 16px 8px;
	color: #ffffff;
	font-weight: 600;
}

/* ============= 滚动后：黑色样式（自定义类scroll-active，强制覆盖） ============= */
.scroll-active .language {
	/* 黑色地球图标（路径确认） */
	background: url(/template/pc/skin/image/global-black.png) left center no-repeat !important;
	background-size: 22px 22px !important;
	color: #000000 !important;
}

.scroll-active .language .top {
	color: #000000 !important; /* 文字变黑 */
	/* 黑色下拉箭头（若已准备，取消注释；未准备则删除该背景行） */
	background: url(/template/pc/skin/images/l-down-black.png) right center no-repeat !important;
	background-size: 16px 8px !important;
}

/* ============= 保留原有其他样式（无需修改） ============= */
.language {
    position: relative; /* 必加！绝对定位子元素的父容器，防止下拉框位置错乱 */
}
.language:before{
	position:absolute;
	left: 50%;
	top: 52px;
	content: "";
	display: none;
	border-top: 10px transparent dashed;
	border-left: 6px transparent dashed;
	border-right: 6px transparent dashed;
	border-bottom: 6px #eee solid;
    transform: translateX(-50%); /* 三角居中优化 */
}

.language .drop-down{
	display: none;
	position: absolute;
	top: 68px;
	width: 100%;
	left: 0;
    padding: 5px 10px; /* 核心：上下5px，左右各10单位间距（精准满足需求） */
	border: 1px solid #eee;
	background: #fff;
    box-sizing: border-box; /* 关键：防止padding撑大宽度，左右10px间距不超出原有宽度 */
}


.language .drop-down img{
padding-left:0px;
padding-right:10px;
}


.language .drop-down a{
	display: block;
	font-size: 15px;
	line-height: 30px;
	text-align: left; /* 强制居左，和国旗对齐 */
	color: #212121;
	font-weight: 500;
    padding: 0; /* 清空a标签内边距，让国旗紧贴下拉框左侧10px间距处，无额外偏移 */
}

.language .drop-down a:hover{
	color:#212121;
}

.language:hover:before{
	display: block;
}

.language:hover .drop-down{
	display: block;
}