* {
    margin: 0;
    padding: 0;
}

.clear {
    clear: both;
}

.section {
    width: 1220px;
    margin: 0 auto;
}
.wrapper{
    height: 490px;
    width: 100%;
    background: url(../images/banner.png) no-repeat center;
}
.wrapper .Header{
    background-color: #fff;
    width: 100%;
    height:82px;
}
.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;
}
/* 搜索 */
.search_container{
  padding-top: 50px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid#fff;
  }
  /* 搜索框样式 */
  .search_input{
    color: #fff;
    margin-bottom: -19px;
    border: none;
    flex: 0.98;
    height: 60px;
    padding: 0 10px;
    font-size: 48px;
    background-color:#db071f;
  }
  
     input::placeholder {
    color: #fff; /* 设置placeholder文本颜色为蓝色 */
  }

  .search_container span{
    margin-right: 14px;
    display: inline-block;
    width: 2px;
    height: 80px;
    background-color: #fff;
  }
/* 放大镜图标样式 */
  .search_icon {
    width: 30px;
    height: 30px;
    background-image: url('../images/sousuo.png'); /* 请替换为实际图标路径 */
    background-size: cover;
  }
      
.search-h3{
  padding-top: 30px;
}
.search-h3{
  color:#fff;
  font-size: 24px;
}
/* 内容 */
/*证书样本*/
.content.mt30 {
    padding-top: 40px;
}
.content ul.showBox {
  width: 102%;
  overflow: hidden;
}
.content .showBox li {
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  width: 285px;
  margin-right: 20px;
  float: left;
}
.content .showBox img {
  max-width: 100%;
  height: 400px;
}
.showBox .textBox {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #ffffff;
  background-color: rgba(0,0,0,0.5);
  transition: all 0.6s;
  opacity: 0;
}
.showBox b {
  font-size: 24px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  display: inline-block;
  margin: 30px 0 15px;
}
.showBox i {
  display: block;
  background-color: rgb(246, 246, 246);
  width: 44px;
  height: 7px;
  border-radius: 4px;
  margin: 14px auto 40px;
}
.showBox a {
  display: block;
  font-size: 19px;
  color: rgb(255, 255, 255);
  border-radius: 10px;
  background-color: #db071f;
  width: 50%;
  height: 44px;
  line-height: 44px;
  position: absolute;
  left: 25%;
  bottom: 16px;
}
.showBox li:hover .textBox{
  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;
}
.qr-container {
  position: relative;
  display: inline-block;
}
.qr-code {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 150px;
  height: 150px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.qr-container:hover .qr-code {
  display: block;
}
.qr-code img {
    width: 100%;
}
.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;
}
