* {
    margin: 0;
    padding: 0;
}

.clear {
    clear: both;
}

.section {
    width: 1220px;
    margin: 0 auto;
}
.wrapper{
    height: 320px;
    width: 100%;
    background: url(../images/banner.png) no-repeat center;
}
.wrapper .Header{
    background-color: #fff;
    width: 100%;
    height: 54px;
}
.wrapper .Header_fl{
    width: 50%;
}
.wrapper .Header_fl ul{
    width: 100%;
}
.wrapper .Header_fl ul li {
    list-style: none;
    float: left;
    width: 14%;
    margin: 18px 0; 
    padding-right: 12px; 
}
.wrapper .Header_fl ul .bold{
    width: 27%;
}
.wrapper .Header_fl ul .bold a{
    font-weight: bold;
}
.wrapper .Header_fl ul li a{
    font-size: 17px;
    color:#db071f;
    text-decoration: none;
    padding-right: 12px;
    font-weight: 500;
    display: block;
    
}
.wrapper .Header_fl ul li a:hover{
    border-bottom: 2px solid #db071f;
}
 .wechat-wrapper {
            position: relative;
            display: inline-block;
            margin:18px auto;
            text-align: center;
        }
        .wechat-title {
      
            color: #db071f;
            font-size: 17px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .wechat-title:hover {
          border-bottom: 2px solid #db071f;
            transform: translateY(-2px);
            /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
        }
        .qrcode-container {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 150px;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            z-index: 100;
        }
        .wechat-wrapper:hover .qrcode-container {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(20px);
        }
        .qrcode-container::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            margin-left: -8px;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent white transparent;
        }
        .qrcode-img {
            width: 100%;
            height: auto;
            border: 1px solid #f0f0f0;
        }
        .qrcode-text {
            margin-top: 8px;
            font-size: 12px;
            color: #666;
        }
/* 基础容器样式 */
.top-nav {
    float: right;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between; /* 左右分布布局 ‌:ml-citation{ref="2" data="citationList"} */
    align-items: center;
  }
  
  /* 右侧导航容器 */
  .nav-right {
    gap: 4px;  /* 元素间距控制 ‌:ml-citation{ref="5" data="citationList"} */
    align-items: center;
  }
  
  /* 分隔线样式 */
  .divider {
    color: #ddd;
    font-weight: 300;
  }
  .nav-left a {
    padding-right: 34px;
}
  
  /* 文字链接交互 */
  .top-nav a {
    font-size: 17px;
    color: #db071f;
    transition: color 0.3s;
  }
  .top-nav a:hover {
    border-bottom:2px solid #db071f;  /* 悬停颜色变化 ‌:ml-citation{ref="7" data="citationList"} */
  }

.nav .logo {
    display: block;
    float: left;
    margin: 0 30px 0 20px;
}
.nav .logo img{
    width: 336px!important;
    height: 91px!important;
    max-height: none!important;
    margin-top: 24px!important;
}
.nav-r{
    float: right;
    padding-top: 18px;
}

.hover-card {
    display: inline-block;  /* 保证点击区域稳定性 */
    cursor: pointer;
    transition: transform 0.5s;  /* 可选悬停效果 */
  }
   
  /* 可选悬停效果 */
  .hover-card:hover {
    transform: translateY(-2px);
  }
  .nav-r a:hover{
    opacity: 0.7;
    transition: opacity 0.5s ease-in-out;
  }
  ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}


/* 导航菜单 ‌:ml-citation{ref="5,7" data="citationList"} */
.navbar {
float: right;
    position: relative;
}

.primary-menu {
    display: flex;
    list-style: none;
    position: relative;
}

.primary-menu > li {
    position: relative;
}

.primary-menu li a {
 
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 25px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: bold;
}
.primary-menu li a:hover{
  font-weight: 800;
}
.primary-menu li .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.primary-menu li:hover .underline {
    width: 100%;
}

/* .primary-menu li a:hover {
    background: #fff;
} */

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.submenu a:hover{
  color: #db071f;
}
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
  display: block;
  color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.submenu li:last-child a {
    border-bottom: none;
}

/* 用户操作区 ‌:ml-citation{ref="3" data="citationList"} */
.user-actions {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 500;
}

.btn-login {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-register {
    background: #2d3436;
    color: white;
}
/* About */
.About{
  margin-top: 30px;
  width: 100%;
  float: left;
}
.About h1{
  color: #db071f;
}
.About p{
  margin-top: 20px;
  text-align: justify;
}
.About h2{
  padding-top: 50px;
}
/* 基础容器样式 */
.top-nav {
    float: right;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between; /* 左右分布布局 ‌:ml-citation{ref="2" data="citationList"} */
    align-items: center;
  }
  
  /* 右侧导航容器 */
  .nav-right {
    gap: 4px;  /* 元素间距控制 ‌:ml-citation{ref="5" data="citationList"} */
    align-items: center;
  }
  
  /* 分隔线样式 */
  .divider {
    color: #ddd;
    font-weight: 300;
  }
  .nav-left a {
    padding-right: 34px;
}
  
  /* 文字链接交互 */
  .top-nav a {
    font-size: 17px;
    color: #db071f;
    transition: color 0.3s;
  }
  .top-nav a:hover {
    border-bottom:2px solid #db071f;  /* 悬停颜色变化 ‌:ml-citation{ref="7" data="citationList"} */
  }

.nav .logo {
    display: block;
    float: left;
    margin: 0 30px 0 20px;
}
.nav .logo img{
    width: 336px!important;
    height: 91px!important;
    max-height: none!important;
    margin-top: 24px!important;
}
.nav-r{
    float: right;
    padding-top: 18px;
}

.hover-card {
    display: inline-block;  /* 保证点击区域稳定性 */
    cursor: pointer;
    transition: transform 0.5s;  /* 可选悬停效果 */
  }
   
  /* 可选悬停效果 */
  .hover-card:hover {
    transform: translateY(-2px);
  }
  .nav-r a:hover{
    opacity: 0.7;
    transition: opacity 0.5s ease-in-out;
  }
  ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}


/* 导航菜单 ‌:ml-citation{ref="5,7" data="citationList"} */
.nav-links {
    float: right;
    margin: 40px 0 0 74px;
    display: flex;
    gap: 54px;
}

.nav-links li a {
    font-size: 16px;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: #ffffff;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* 用户操作区 ‌:ml-citation{ref="3" data="citationList"} */
.user-actions {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 500;
}

.btn-login {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-register {
    background: #2d3436;
    color: white;
}
/*导航下拉*/
.dropdown {
  position: relative;
  z-index: 100%;
}

.dropdown .dropdown-content {
  width: 90px;
  position: absolute;
  top: 30px;
  left: -2px;
  background-color: #fff;
  display: none;
  z-index: 999;
}

.dropdown .dropdown-content li {
  position: relative;
}

.dropdown .dropdown-content li a {

  color: #db071f;
  display: block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding-bottom: 0 !important;
}
.dropdown .dropdown-content li a:hover{
  color: #db071f;
  border-bottom: 1px solid #db071f;
}


.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content .dropdown-item {
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #ffffff;
  display: none;
  z-index: 100;
}

.dropdown-content li:hover .dropdown-item {
  display: block;
}
/* 内容 */
.download{
    width: 100%;
    padding-top: 30px;
}
.download .download_1 h2{
    color: #db071f;
    padding-bottom: 16px;
}
.download .download_1 p{
  padding-bottom: 35px;
    color:#d0d0d0;
    font-size: 56px;
    font-weight: bold;

}
.content {
    margin-top: 56px;
}
.content .title{
    float: left;
}
.content .title a{
    font-weight: 600;
    font-size: 20px;
    display: block;
    width: 300px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    text-decoration: none;
    border: 2px solid#000;
    color: #000;
    margin-bottom: 30px;
}
.content .title a:hover{
    border:2px solid #000;
    background-color: #000;
    color: #fff;
}
/* 展开收起交互 */
#toggle-content:checked ~ .content-container {
  width: 100%;
  max-height: 500px; /* 根据实际内容调整 */ 
  opacity: 1;
}
.content-container {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease; /* 平滑过渡效果 */
}

/* 图片横向滚动布局 */
.tg_grid {
  float: left;
  white-space: nowrap; /* 禁止换行 */
  padding: 15px 0;
  overflow-x: auto;
}
.img-link {
  display: inline-block;
  width: 100%;
  height: 400px;
  margin-right: 20px;
  text-decoration: none; /* 去除a标签下划线 */
  border: 0; /* 去除图片边框 */
}

/* 按钮样式 */
.toggle-btn {
  text-align: center;
  float: right;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: block;
  padding: 10px;
  background: #f0f0f0;
  cursor: pointer;
}
.content .tg_grid ul li{
  list-style: none;
    float: left;
    width: 33%;
}
.content .tg_grid ul li a{
    display: block;
    color: #db071f;
   font-weight: bold;
    text-decoration: none;
    font-style: 14px;
}
.content .tg_grid ul li img{
  padding-left: 100px;
  max-width: 46%;
}
.content .tg_grid ul li p{
padding-top: 20px;
font-size: 18px;
display: block;
text-align:center;
} 
/* 搜索 */
/* 容器布局 */
.search-wrapper {
  width: 100%;
  display: flex;
  gap: 30px;  /* 间距控制 ‌:ml-citation{ref="1,3" data="citationList"} */
}

/* 基础搜索框样式 */
.search-box {
  border-radius: 30px 0 0 30px;
  width: 400px;
  height: 60px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

/* 左侧单边圆角 */
.left-rounded {
  border-radius: 30px 0 0 30px;  /* 四值定义法 ‌:ml-citation{ref="4" data="citationList"} */
}

/* 文字与图标对齐 */
.text {
  color:#999;
  flex-grow: 1;  /* 文字靠左 ‌:ml-citation{ref="1,2" data="citationList"} */
}
.right-icon {
  margin-left: auto;  /* 图片靠右 ‌:ml-citation{ref="5,6" data="citationList"} */
  cursor: pointer;
}
.right-icon img {
  display: block;  /* 消除图片间隙 ‌:ml-citation{ref="5" data="citationList"} */
}

/* 下拉交互 */
.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f4f4f4;
  padding: 10px 0;
  z-index: 2;
}
.dropdown-options  a {
    border: 1px solid #eee;
  color: #999;
  display: block;
  padding: 12px 48px;
  position: relative;
  cursor: pointer;
}
/* 空心方块 */
.dropdown-options a:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #666;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* 点击触发显示 */
#toggle-dropdown:checked ~ .dropdown-options {
  display: block;  /* 状态切换 ‌:ml-citation{ref="5,6" data="citationList"} */
}
.queding a{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  display: block;
  width: 300px;
  height: 54px;
  line-height: 54px;
  text-decoration: none;
color: #db071f;
border: 2px solid #db071f;
}
.queding a:hover{
 background-color: #db071f;
 color: #fff;
}
/*  */
.facet {

  width: 100%;
}
.facet  .column_attr {
  width: 100%;
  border-top: 1px solid #dadada;
  margin-top: 20px;
}
.facet .column_attr .facetwp{
  width: 48%;float: left;
}.facet .column_attr .facetwp p{
  padding: 16px;
  font-size: 16px;font-weight: 500;
}
.facetwp_pager{
  padding-top: 18px;
  float: right;
}
.facetwp_pager p{
  padding-right: 20px;
  font-weight: 500;
  float:left;
  font-size: 16px;font-weight: 500;
}
.facetwp_pager a{ 
  padding-right: 10px;
  font-weight: 500; 
  float: left;
  text-decoration: none;
  display: block;
  font-size: 16px;
}
.facetwp_pager a:hover{
  color: #db071f;
}
.xiahuaxian{
  border-bottom: 1px solid #dadada;
  margin-top: 54px;
}
/* 新闻中心 */
.news{
  float: left;
  padding-top: 40px;
  width: 100%;
}
    /* 主容器 */
    .container {
      width: 1920px;
      margin: 0 auto;
      padding: 30px 0;
      display: grid;
      grid-template-columns: repeat(5, 362px);
      justify-content: center;
      gap: 22px;
  }

  /* 卡片容器 */
  .card {
      width: 362px;
      height: 480px; /* 根据常见比例设置 */
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s;
  }

  /* 背景图片 */
  .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* 文字容器 */
  .text-wrapper {
      position: absolute;
      top: 75%;
      left: 30px;
      width: calc(100% -60px);
      transform: translateY(-40%);
      color: white;
      z-index: 2;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* 统一竖线 */
  .text-wrapper::before {
      content: '';
      position: absolute;
      left: -15px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: rgba(255,255,255,0.9);
  }

  /* 文字项 */
  .text-item {
    font-weight: 800;
      margin: 20px 0;
      padding-left: 5px;
      font-size: 18px;
      width:300px;
  }

  /* 遮罩层 */
  .mask {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0);
      transition: background 0.3s;
      z-index: 1;
  }

  /* 激活状态 */
  .card.active {
      transform: scale(0.98);
  }
  .card.active .mask {
      background: rgba(0,0,0,0.6);
  }
  .card.active .text-wrapper {
      transform: translateY(-60%);
  }
  /* 添加悬停效果 */
.card:hover .text-wrapper::before {
  background: #fff;
  opacity: 1;
}

/* 底部 */
.footer {
  margin-top: 30px;
    width: 100%;
    height: 640px;
    background-color: #f0f0f0;

  }
  .footer .footer_action{
    margin-bottom: 30px;
  padding-top: 30px;
  text-align: center;

  }
  .footer .footer_action ul{
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 30px;
    padding-top: 30px;
    text-align: center;
    font-size: 110%;
  }                                                                                                                                                                                                                                                                                                                                                                                                                            
  .footer .footer_action ul li{
    
    float: left;
    width: 23%;
  }
  .footer_action a {
    font-size: 28px;
    max-width: 198px;
    display: block;
    margin: 0 auto;
    color: #1d1d1b!important;
    cursor: pointer;
    font-weight: bold;
}
.footer_action p{
  height: 36px;
  line-height: 36px;
  text-align: center;
  padding-top: 20px;
}
.footer_action a img{
height: 50px;
}
.footer_action a:hover p{

  color: #db071f;
    border-bottom:2px solid #db071f;
}
.widgets_wrapper{
    padding-top: 40px;
}
.container_3{
    padding-top: 180px;
    border-bottom: 2px solid #d0d0d0;
}
.column{
   width: 32%;
    float:left;
    text-align: center;
    padding-left: 6px;
    padding-right: 6px
}
.column .column_1{
    margin-top: 60px;
}
.column H3{
    font-size: 30px;
    line-height: 38px;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
}
.column p{
    padding-top: 24px;
    letter-spacing: 0;
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 900;
}
.textwidget p{
    line-height: 30px;
    font-size: 14px;
    color: #666;
    font-weight: 400;


}
.textwidget a{
    font-size: 14px;
    color: #666;
    font-weight: 400;

}
.textwidget a:hover{
    color: #db071f;
    text-decoration: underline;
}

 .one-fourth{
    width: 100%;
    border-top: 2px solid #d0d0d0;
    margin-top: 25px;
}
.img_column {
    padding-top: 30px;
    margin: 0 30px;
    float: left;
    display: flex;
    gap: 261px;  /* 图片间距控制‌:ml-citation{ref="5" data="citationList"} */
  }
  
  /* 图片样式 */
  .img_column a img {
    max-height: 30px;  /* 固定高度^用户需求^ */
    width: auto;  /* 保持原始宽高比‌:ml-citation{ref="3" data="citationList"} */
    display: block;  /* 消除行内元素间隙‌:ml-citation{ref="4" data="citationList"} */
  }
  .footer_copy{
    width: 100%;
    padding-top: 40px;
  }
  .footer_copy .copyright{
    float: left;
    width: 67%;
  }
  .footer_copy .copyright p{
    font-size: 18px;
    color: #d0d0d0!important;
    font-weight: 700;

  }
  .footer_copy .copyright a:hover{
    color: #db071f;
    text-decoration: underline;
  }
 /* 垂直右对齐容器 */
.icon-container {
   width: 33%;
   float: right;
}
.icon-container ul{
    width: 100%;
    list-style: none;
    margin-left: 100px;
}
.icon-container ul li{
float: left;
width: 12%;
text-align: center;
}
.icon-container ul li img{
    max-height: 34px;
}
.icon-container ul li a{
    margin-bottom: 10px;
}

