/* 全局基础重置（新增：统一盒模型+清除默认边距） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* 解决宽高包含内边距/边框的问题 */
}
html,body{
  height:100%;
  width:100%;
  overflow-x: hidden; /* 防止移动端横向滚动溢出 */
}
body{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-family:"微软雅黑","SF Pro SC","SF Pro Display","SF Pro Icons","PingFang SC",BlinkMacSystemFont,-apple-system,"Segoe UI","Microsoft Yahei","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Arial",sans-serif;
  font-weight:400;
  padding-top:0px!important;
  font-size: 14px; /* 移动端基准字体 */
}
a{
  -webkit-transition:all 0.35s;
  -moz-transition:all 0.35s;
  transition:all 0.35s;
  color:#fdcc52;
  text-decoration: none; /* 清除默认下划线 */
}
a:hover,a:focus{
  color:#fcbd20;
}
hr{
  max-width:100px;
  margin:25px auto 0;
  border-width:1px;
  border-color:rgba(34,34,34,0.1);
}
hr.light{
  border-color:white;
}
h1,h2,h3,h4,h5,h6{
  font-weight:200;
  letter-spacing:1px;
}
p{
  font-size: 14px; /* 移动端缩小字体 */
  line-height:1.5;
  margin:0 auto; 
  margin-bottom:5px; 
  color:#6e6e6e;
  letter-spacing: 1px; /* 移动端缩小字间距 */
}
main.content{
  min-height:calc(100vh - 580px);
  padding: 0 5px; /* 移动端添加左右内边距 */
}
/* 导航栏适配 */
.navbar{
  background:url(../img/index/logo.png) no-repeat left top;
  height:100px;
  margin-bottom:0px;
  background-size: contain; /* 适配logo在移动端显示 */
  padding: 0 10px; /* 移动端内边距 */
}
.navbar-brand img{
  width:400px;
  max-width: 100%; /* 移动端logo自适应宽度 */
  height: auto; /* 保持比例 */
}
li{
  list-style:none;
}
.lr-4{
  /*  margin: 0 4px!important; */
  border-left:  4px solid #fff;
  /* 左右4像素间距 */
}
.search_title{
  font-size:18px; /* 移动端缩小标题 */
  font-weight:600;
  color:#666;
  line-height:180%;
  padding-left:10px;
}
.search_box{
  height:auto;
  overflow:hidden;
  padding: 12px 8px;
  background: #ffffff;
  border-radius: 6px;
  margin: 0 0 12px 0;
  border: 1px solid #f0f0f0;
  width: 100%;
}
.seardh_div {
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* 搜索条件布局：移动端上下排列，电脑端同一行 */
dl.search_where{
display: flex;
    margin: 10px 0;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    background: transparent;
}

dl.search_where dt{
  width: 95px;
  height: auto;
  background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%);
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  margin-right: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 139, 152, 0.2);
}

dl.search_where dd{
  display: flex;
  align-items: center;
  align-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  background: transparent;
  gap: 8px;
}

/* 类型选择按钮：移动端几行几列平均分布，从左往右排列 */
dl.search_where.type_where dd {
  gap: 8px;
}

dl.search_where.type_where dd a {
  flex: 1;
  min-width: calc(33.333% - 5.33px);
  max-width: calc(33.333% - 5.33px);
  text-align: center;
  padding: 10px 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #495057;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

dl.search_where.type_where dd a:hover {
  background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 139, 152, 0.15);
}

/* 电脑端同一行显示 */
@media screen and (min-width: 992px) {
  /* 电脑端所有search_where元素同一行显示 */
  dl.search_where {
    flex-direction: row;
    align-items: center;
    align-content: center;
    gap: 12px;
  }
  
  /* 电脑端dt元素样式 */
  dl.search_where dt {
    margin-bottom: 0;
    margin-right: 12px;
    margin-left: 0;
  }
  
  /* 电脑端dd元素样式 */
  dl.search_where dd {
    width: auto;
    max-width: 900px;
    flex: 1;
    flex-wrap: nowrap;
    gap: 4px!important;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  /* 隐藏滚动条 */
  dl.search_where dd::-webkit-scrollbar {
    display: none;
  }
  
  /* 电脑端类型选择按钮恢复正常布局 */
  
  /* 电脑端类型选择按钮恢复正常布局 */
  dl.search_where.type_where dd a {
    flex: 0 0 auto;
    min-width: auto;
    max-width: none;

    padding: 8px 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-block;
  }
  
  /* 电脑端按钮hover和active样式 */
  dl.search_where.type_where dd a:hover,
  dl.search_where.type_where dd a.active,
  dl.search_where dd a:hover,
  dl.search_where dd a.active {
    background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%);
    color: #fff;
    border-color: #008b98;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 139, 152, 0.15);
    text-decoration: none;
  }
  
  /* 表单元素同一行 */
  .search-form {
    flex-wrap: nowrap;
  }
  
  .param-selector {
    flex-wrap: nowrap;
  }
  
  .fanwei {
    flex-wrap: nowrap;
  }
  
  .code-input {
    flex-wrap: nowrap;
  }
}
dl.search_where dd span{
  color:#666;
  padding:0px 6px;
  white-space: nowrap;
}
dl.search_where dd a{
  display:inline-block;
  padding:6px 12px;
  background-color:#f0f0f0;
  color:#333;
  border-radius:4px;
  margin:0px 4px 6px;
  width:auto;
  white-space: nowrap;
  font-size: 13px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
dl.search_where dd a:hover,
dl.search_where dd a.active {
  background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%) !important;
  color: #fff !important;
  text-decoration: none !important;
  border-color: #008b98 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 6px rgba(0, 139, 152, 0.15) !important;
}
dl.search_where dd a.all{
  width:auto;
}
.fanwei{
  display:flex;
  align-items:center;
  align-content:center;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
}
.fanwei .form-control{
  height:34px;
  line-height:34px;
  font-size:13px;
  width:85px;
  margin-bottom: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0 8px;
  box-shadow: none;
  transition: border-color 0.2s ease;
}
.fanwei .form-control:focus {
  border-color: #008b98;
  outline: none;
  box-shadow: none;
}
.fanwei .form-control-lg{
  height:34px;
  line-height:34px;
  font-size:13px;
  width: calc(100% - 100px);
  margin-bottom: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0 10px;
  box-shadow: none;
  transition: border-color 0.2s ease;
}
.fanwei .form-control-lg:focus {
  border-color: #008b98;
  outline: none;
  box-shadow: none;
}
.buttom_div{
    margin:12px 0;
  }
.bg-f51041{
  background-color:#008b98;
  box-shadow: none;
}
.color-fff{
  color:#fff;
}
.buttom_div .btn i{
  margin-right:4px;
}
.buttom_div .btn{
  margin:3px;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 4px;
  border: none;
  box-shadow: none;
  transition: all 0.2s ease;
}
.buttom_div .btn:hover {
  opacity: 0.9;
  box-shadow: none;
}
.buttom_div .btn:active {
  transform: translateY(1px);
  box-shadow: none;
}
/* 当前筛选条件布局适配 */
#now_where{
  background-color:#eee;
  padding:8px 5px; /* 移动端缩小内边距 */
  height:auto;
  overflow:hidden;
  display:flex;
  align-items:center;
  align-content:center;
  flex-wrap: wrap; /* 移动端自动换行 */
}
.where_dl{
  display:flex;
  align-items:center;
  align-content:center;
  margin:0px 8px 8px 0; /* 移动端调整间距+底间距 */
  float: none; /* 清除浮动，改用Flex */
}
.where_dl dt{
  padding:5px 8px; /* 移动端缩小内边距 */
  background-color:#fcbd20;
  border-bottom-left-radius:2px;
  border-top-left-radius:2px;
  color:#fff;
  float: none; /* 清除浮动 */
}
.where_dl dd{
  background-color:#fff;
  color:#222;
  padding:5px 8px; /* 移动端缩小内边距 */
  position:relative;
  float: none; /* 清除浮动 */
}
.where_dl dd::after{
  position:absolute;
  content:'X';
  display:none;
  width:15px;
  height:15px;
  background-color:#f00;
  color:#fff;
  text-align:center;
  line-height:15px;
  font-size:12px; /* 放大关闭按钮字体，更易点击 */
  border-radius:50%;
  top:-6px;
  right:-6px;
}
.where_dl dd:hover::after{
  display:inline-block;
}
input[type=text]{
  outline:none;
  border:1px solid #eee;
  padding: 0 5px; /* 移动端添加内边距 */
}
input[type=text]:focus{
  outline:none;
  box-shadow:0 0 5px #095f86;
}
.yut img{
  padding:0px;
  max-width: 100%; /* 图片自适应 */
  height: auto;
}
.type_sm{
  padding: 15px 5px; /* 移动端重置内边距 */
  margin: 0;
}
.type_sm::before{
  content: ""; 
  width: 100%;
  height: 1px;
  background-color:#cfd2d9;
  display: block;
  margin-top: 20px; /* 移动端缩小上边距 */
}
.table-bordered thead{
  background-color:#008b98;
  border-bottom:0px; 
  color:#fff;
}
.text-bolod{
  font-weight:500;
  font-size: 16px; /* 移动端缩小字体 */
  width: auto; /* 取消固定宽度 */
  height: auto;
  line-height: 1.5;
  margin: 5px 0;
}
.footer{
  height:auto;
  padding: 0 5px;
}
.font_dow{
  display: flex;
  flex-wrap: wrap; /* 移动端换行 */
  justify-content: center; /* 居中对齐 */
}
.font_dow .xiaz{
  float:none; /* 清除浮动 */
  margin:5px 10px; /* 移动端缩小间距 */
  height:auto;
  line-height: 1.5;
}
.font_dow .xiaz a{
  display:block;
  background-color:#222;
  height:40px; /* 移动端缩小高度 */
  line-height:40px;
  padding:0px 15px; /* 移动端缩小内边距 */
  text-align: center;
}
.footer_bq{
  padding:15px 5px; /* 移动端缩小内边距 */
  color:#fff!important;
  background-color:#333333!important;
  clear:both;
  font-size: 12px; /* 移动端缩小字体 */
}
.main_box ul,.main_box li{
  margin:0px;
  padding:0px;
}
/* 表格容器：移动端添加横向滚动 */
.main_box{
  margin:5px 0px;
  height:auto;
  overflow:hidden;
  width: 100%;
}

/* PC端隐藏横向滚动条 */
@media screen and (min-width: 992px) {
  .main_box{
    overflow-x: hidden; /* PC端不显示横向滚动条 */
  }
}

/* 移动端保持横向滚动 */
@media screen and (max-width: 991px) {
  .main_box{
    overflow-x: auto; /* 移动端显示横向滚动条 */
  }
}
.main_header{
  height:auto; /* 取消固定高度 */
  line-height: 1.5; /* 重置行高 */
  font-size:16px; /* 移动端缩小字体 */
  font-weight:600;
  color:#222;
  margin:0;
  padding: 10px 5px; /* 移动端添加内边距 */
}
.bg_3686a8{
  background-color:#0894a2;
}
.main_header .chanshu_head{
  float:none; /* 清除浮动 */
  width: 100%; /* 占满宽度 */
  height: auto;
  padding: 5px 0;
}
.brand_head{
  background-color:#d5d5d5;
  height:auto;
  overflow:hidden;
  width:100%;
  padding: 5px;
}
.brand_head .brand_bt{
  height:auto;
  line-height: 1.5;
  font-size:14px;
  margin-bottom: 5px;
}
.brand_head .brand_bt_fbt,.brand_head .brand_bt_fbt2{
  font-size:12px;
}
.brand_head .brand_bt_fbt .pull-left{
  width: 30%; /* 移动端自适应宽度 */
  min-width: 80px;
  text-align:center;
  font-size:10px;
  height:30px;
  line-height:30px;
  margin:0px;
  padding:0px;
  border-right:1px solid #fff;
  border-top:1px solid #fff;
}
.brand_head .brand_bt_fbt2 .pull-left{
  width: 15%; /* 移动端自适应宽度 */
  min-width: 60px;
  text-align:center;
  font-size:10px;
  height:30px;
  line-height:30px;
  margin:0px;
  padding:0px;
  border-right:1px solid #fff;
  border-top:1px solid #fff;
}
.main_header_canshu{
  width: 100%; /* 表格宽度适应容器 */
  min-width: 100%;
  height:auto;
  overflow: visible; /* 确保行内容完整显示，由父容器控制滚动 */
}
.main_header_canshu li{
  float:left;
  min-width: 100px; /* 移动端缩小最小宽度 */
  font-size:12px; 
  text-align:center;
  height: auto;
  line-height: 1.5;
  padding: 8px 0;
}
.h60{
  height:auto!important;
  line-height:1.5!important;
  padding: 10px 0;
}
.gbj_li{}
.main_header_canshu.chanshu_header{
  height:auto!important;
  line-height:1.5!important;
  font-size:14px;
  font-weight:bold;
  padding: 0px 0;
}
.main_header_canshu.chanshu_heade li{
  height:auto!important;
  line-height:1.5!important;
  padding: 8px 0;
}
.chanshu_ul li{}
.main_header_canshu.chanshu_header .fbt span{
  font-weight:500!important;
  font-size:12px;

  width:49%;
  text-align:center;
}
.chanshu_li.canshua.gbj_li span{
  font-weight:500!important;
  font-size:12px;
  display:inline-block;
  width:40%;
  text-align:center;
}
.chanshu_li.canshua{
  font-weight:bold;
  cursor:pointer;
}
.chanshu_li .color_bluer{ 
  cursor: pointer; 
}
.color_bluer{
  color:#00a0e9!important;
}
.color_bluer:hover{
  cursor:pointer;
}
.chanshu_li_fg{
  background:#e7f2f3 url(../img/index/csbg.png) repeat-y right top!important;
  background-size: contain!important; /* 背景图适配 */
}
.main_header_canshu,.main_header_canshu li{
  background:#e7f2f3;
}
.hover_bg,.hover_bg li{
  background-color:#f9fefe!important;
}
.main_header_canshu:hover li{
  background-color:#b1e6eb!important;
}
li.chanshu{
  color:#fff; 
  padding-left:5px; /* 移动端缩小内边距 */
  box-sizing:border-box; /* 修正盒模型语法 */
}
li.chanshu,li.chanshu_li{
  border-right:1px solid #fff!important; 
  display:flex; 
  align-content:center;
  align-items: center; /* 垂直居中 */
  padding: 8px 0;
}
li.chanshu_li{
  height:auto!important;
  line-height:1.5!important;
  padding-left:5px!important; /* 移动端缩小内边距 */

}

.page_div{
  margin:10px 5px; /* 移动端缩小边距 */
  text-align: center; /* 分页居中 */
}
/* 数据表格：移动端添加横向滚动容器 */
.dataTable{
  min-height:300px;
  margin-top:23px;
  text-align:center;
  padding-bottom:50px; /* 移动端缩小底间距 */
  margin:10px 5px; /* 移动端缩小边距 */
  width: 100%;
  overflow-x: auto; /* 表格横向滚动 */
}
.dataItemTable{
  width: max-content; /* 表格宽度自适应内容 */
  min-width: 100%;
  background-color:#fff;
}
.dataTable .dataItemTable thead tr{
  background-color:#f3f3f3;
  height:39px;
  font-weight:bold;
  font-size: 12px; /* 移动端缩小字体 */
}
.dataTable .dataItemTable thead .tableOneName{
  font-size:16px; /* 移动端缩小字体 */
}
.dataTable .dataItemTable tbody tr{
  line-height: 1.5; /* 重置行高 */
  padding: 8px 0; /* 移动端添加内边距 */
  margin-top:5px; /* 移动端缩小间距 */
  background-color:#fafdff;
}
.dataTable .dataItemTable tbody tr td,.dataTable .dataItemTable thead tr th{
  padding: 8px 5px; /* 移动端缩小内边距 */
  font-size: 12px; /* 移动端缩小字体 */
}
.dataTable .dataItemTable tbody tr td:last-child,.dataTable .dataItemTable thead tr th:last-child{
  border-right:0;
}
.dataItemTable tbody tr:nth-child(odd){
  background:#fafdff;
}
.dataItemTable tbody tr:nth-child(even){
  background:#f9f9f9;
}
.dataItemTable .textunder{
  margin:0px;
}
.dataItemTable .textunder a{
  color:#00a0e9;
}
.dataTable .dataItemTable tbody tr:hover{
  background-color:#b1e6eb!important;
}
map,area{
  position:relative;
  z-index:99999;
  pointer-events:auto; /* 修复移动端点击无效 */
}
.chanshu_li .pull-left{
  padding-left:8px; /* 移动端缩小内边距 */
  line-height: 1.5;
  margin-top: 0; /* 清除多余边距 */
}
.chanshu_li .pull-right{
  padding-right:8px; /* 移动端缩小内边距 */
  padding-top:5px;
  margin-top: 0;
}
.chanshu_li .pull-right .glyphicon{
  width:20px;
  display:block;
  height:20px;
  line-height:20px;
  color:#ccc;
}
.chanshu_li .pull-right .glyphicon.hover{
  color:#00a0e9;
}
/* 地图容器适配 */
#pageContent{
  width:100%; /* 移动端占满宽度 */
  height:auto;
  overflow:hidden;
  position:relative;
  margin: 0 auto;
  padding: 0 5px;
}
#imgContainer{
  width:100%; /* 移动端占满宽度 */
  height:auto;
}
#positionButtonDiv{
  background:rgba(194,232,249,.8);
  border:solid 1px #98defd;
  color:#fff;
  padding:5px; /* 移动端缩小内边距 */
  text-align:left;
  position:absolute;
  left:10px; /* 移动端调整位置 */
  top:10px; /* 移动端调整位置 */
  font-size: 12px; /* 移动端缩小字体 */
  z-index: 999;
}
#positionButtonDiv .positionButtonSpan img{
  float:right;
  border:0;
  max-width: 20px; /* 移动端缩小图片 */
}
.positionMapClass area{
  cursor:pointer;
}
.zoomButton{
  border:0;
  cursor:pointer;
  max-width: 30px; /* 移动端缩小按钮 */
}
.typehover:hover{ 
  background-color: #f00;
}

/* 媒体查询：平板/移动端（767px及以下） */
@media screen and (max-width:767px){
  /* 整体布局优化 */
  body {
    background-color: #f8f9fa;
  }
  
  main.content {
    min-height: 300px;
    padding: 5px;
    background: #fff;
    /* background: #f8f9fa; */
  }
  
  /* 搜索容器美化 */
  .search_box {
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    margin: 0 0 15px 0;
    /* border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
  }
  
  .seardh_div {
    background: transparent;
  }
  
  /* 搜索条件样式：移动端上下排列 */
  dl.search_where {
    flex-wrap: wrap;
    margin: 10px 0;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
  }
  
  dl.search_where dt {
    width: 75px;
    height: auto;
    background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%);
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 139, 152, 0.2);
  }
  
  dl.search_where dd {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    background: transparent;
    gap: 8px;
  }
  
  /* 类型选择按钮：移动端几行几列平均分布，从左往右排列 */
  dl.search_where.type_where dd {
    gap: 8px;
  }
  
  dl.search_where.type_where dd a {
    flex: 1;
    min-width: calc(33.333% - 5.33px);
    max-width: calc(33.333% - 5.33px);
    text-align: center;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  dl.search_where dd a:hover, dl.search_where dd a.active {
    background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%);
    color: #fff;
    text-decoration: none;
    border-color: #008b98;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 139, 152, 0.2);
  }
  
  /* 搜索表单美化 */
  .search-form {
    flex-direction: column;
    display: flex;
    gap: 12px;
    background: transparent;
  }
  
  /* 参数选择区域美化：移动端严格同一行显示 - 强制生效 */
  .param-selector {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    flex: 1 !important;
    min-width: 0 !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    width: 100% !important;
  }
  
  /* 确保下拉框在同一行 */
  .param-selector select.form-control {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
  }
  
  /* 确保fanwei和code-input在需要显示时同一行 */
  .param-selector .fanwei,
  .param-selector .code-input {
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  
  /* 确保fanwei内部元素同一行 */
  .fanwei {
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .fanwei .form-control {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }
  
  /* 下拉选择框美化：移动端更窄宽度 */
  select.form-control {
    width: 75px!important;
    height: 36px;
    padding: 5px 8px;
    font-size: 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  select.form-control:focus {
    border-color: #008b98;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 139, 152, 0.1);
  }
  
  /* 范围输入区域美化：移动端同一行显示 */
  .fanwei {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex-wrap: nowrap;
    width: auto;
    flex-shrink: 0;
  }
  
  .fanwei .form-control {
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    width: 75px;
    margin-bottom: 0;
    padding: 0 8px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  
  .fanwei .form-control:focus {
    border-color: #008b98;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 139, 152, 0.1);
  }
  
  .fanwei span {
    color: #6c757d;
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  /* Class/Code输入区域：移动端同一行显示 */
  .code-input {
    display: none;
    min-width: 0;
    width: auto;
    flex-shrink: 0;
  }
  
  .code-input input {
    width: 130px;
    min-width: auto;
    height: 38px;
    padding: 0 10px;
    font-size: 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  
  .code-input input:focus {
    border-color: #008b98;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 139, 152, 0.1);
  }
  
  /* 代码输入区域美化 */
  .code-input {
    display: none;
    min-width: 0;
    width: 100%;
  }
  
  .code-input input {
    width: 100%;
    min-width: auto;
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
  }
  
  .code-input input:focus {
    border-color: #008b98;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 139, 152, 0.1);
  }
  
  /* 按钮容器美化 */
  .buttom_div {
    display: flex;
    gap: 12px;
    white-space: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: stretch;
  }
  
  /* 按钮容器：移动端独立一行显示，内容一行 */
  .buttom_div {
    display: block !important;
    width: 100% !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    clear: both !important;
  }
  
  /* 按钮容器内部：一行显示按钮 */
  .buttom_div::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
  }
  
  /* 按钮容器内部使用flex布局 */
  .buttom_div {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 10px 0 !important;
  }
  
  /* 按钮美化：移动端一行显示 */
  .buttom_div .btn {
    margin: 0 !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    border: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
  }
  
  .buttom_div .btn.bg-f51041 {
    background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%);
    color: #fff;
  }
  
  .buttom_div .btn.btn-success {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
  }
  
  .buttom_div .btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .buttom_div .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }
  
  /* 数据表格样式 */
  .dataTable {
    min-height: 200px;
    margin-top: 20px;
    padding-bottom: 50px;
    margin: 10px 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
  }
  
  /* 分页样式：移动端不换行，横向滚动，左对齐 */
  .page_div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding: 10px 0;
    gap: 5px;
  }
  
  .page_div .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  
  .page_div .pagination > li {
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  
  .page_div .pagination > li > a,
  .page_div .pagination > li > span {
    margin: 0 2px;
    padding: 6px 12px;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  
  /* 导航栏样式 */
  .navbar {
    background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%) url(../img/index/logo.png) no-repeat left center;
    height: 60px;
    margin-bottom: 0;
    background-size: auto 80%, contain;
    background-position: right center, left center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand {
    padding: 0;
  }
  
  .navbar-brand img {
    width: 200px;
  }
  
  /* 其他样式优化 */
  .yf_gs {
    padding: 0 !important;
    margin-top: 15px;
  }
  
  #imageFullScreen {
    width: 100% !important;
    height: auto !important;
  }
  
  .yf_box {
    width: 100%;
    overflow-x: auto;
    margin-top: 15px;
    background: #ffffff;
    border-radius: 12px;
    padding: 0px!important;

    border: 0px solid #e9ecef;
  }
  
  /* 隐藏不必要的元素 */
  .buttom_div .btn-danger {
    display: none;
  }
  
  #positionButtonDiv {
    display: none;
  }
  
  /* 卡片式布局优化 */
  .main_box {
    margin: 0;
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 0px;
 
    border: 1px solid #e9ecef;
  }
  
  /* 页脚样式 */
  .footer_bq {
    padding: 15px;
    background: linear-gradient(135deg, #343a40 0%, #212529 100%) !important;
    border-radius: 12px 12px 0 0;
    margin-top: 20px;
  }
  
  /* 表格容器样式 */
  #pageContent {
    width: 100%;
    height: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
  }
  
  #imgContainer {
    width: 100%;
    height: 190px;
  }
}

/* 新增：小屏手机适配（576px及以下） */
@media screen and (max-width:576px){
  /* 搜索标题优化 */
  .search_title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
  }
  
  /* 搜索容器内边距调整 */
  .search_box {
    padding: 12px;
  }
  
  /* 搜索条件优化：保持上下排列 */
  dl.search_where {
    margin: 8px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  
  dl.search_where dt {
    width: 88px;
    padding: 7px 11px;
    font-size: 13px;
    margin-right: 0;
    margin-bottom: 8px;
  }
  
  dl.search_where dd {
    width: 100%;
    gap: 6px;
  }
  
  /* 类型按钮优化：小屏显示4列 */
  dl.search_where.type_where dd a {
    min-width: calc(15% - 4.5px);  
    padding: 8px 8px;
    font-size: 13px;
    margin: 0;
    gap: 0;
  }
  
  /* 参数选择区域优化：小屏严格同一行显示 - 强制生效 */
  .param-selector {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
    flex: 1 !important;
    min-width: 0 !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    width: 100% !important;
  }
  
  /* 确保下拉框在小屏同一行 */
  .param-selector select.form-control {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
  }
  
  /* 确保fanwei和code-input在需要显示时同一行 */
  .param-selector .fanwei,
  .param-selector .code-input {
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  
  /* 确保fanwei在需要显示时同一行 */
  .fanwei {
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  /* 移除可能的换行样式 */
  [class*="form-control"] {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  
  /* 下拉选择框优化：小屏更窄宽度 */
  select.form-control {
    width: 70px;
    height: 34px;
    padding: 4px 7px;
    font-size: 11px;
  }
  
  /* 范围输入优化 */
  .fanwei {
    gap: 5px;
  }
  
  .fanwei .form-control {
    width: 70px;
    padding: 0 6px;
    font-size: 11px;
    height: 36px;
    line-height: 36px;
  }
  
  .fanwei span {
    font-size: 11px;
  }
  
  /* Class/Code输入优化 */
  .code-input input {
    width: 110px;
    height: 36px;
    padding: 0 8px;
    font-size: 11px;
  }
  
  /* 按钮容器优化：小屏独立一行显示，内容一行 */
  .buttom_div {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 !important;
    padding: 0 !important;
    clear: both !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 8px 0 !important;
  }
  
  /* 按钮优化：小屏一行显示 */
  .buttom_div .btn {
    padding: 8px 12px !important;
    font-size: 12px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    width: auto !important;
  }
  
  /* 筛选条件优化 */
  .where_dl {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 8px;
    /* border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
  }
  
  /* 下载按钮优化 */
  .font_dow .xiaz {
    width: 100%;
    text-align: center;
    margin: 8px 0;
  }
  
  .font_dow .xiaz a {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 139, 152, 0.2);
  }
  
  .font_dow .xiaz a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 139, 152, 0.3);
    color: #fff;
    text-decoration: none;
  }
  
  /* 表格样式优化 */
  .dataItemTable thead tr th,
  .dataItemTable tbody tr td {
    padding: 6px 4px;
    font-size: 12px;
    font-weight: 500;
  }
  
  /* 数据表格容器优化 */
  .dataTable {
    padding: 12px;
  }
  
  /* 分页样式：小屏不换行，左对齐 */
  .page_div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding: 8px 0;
  }
  
  .page_div .pagination {
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  
  .page_div .pagination > li {
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  
  .page_div .pagination > li > a,
  .page_div .pagination > li > span {
    margin: 0 1px;
    padding: 5px 10px;
    font-size: 12px;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  
  /* 移动端分页样式：适配 simple 分页的 pager 类 */
  .page_div .pager {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
    padding: 10px 0;
  }
  
  .page_div .pager > li > a,
  .page_div .pager > li > span {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    background-color: #3686a8;
    color: white;
    border: 1px solid #3686a8;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  
  .page_div .pager > li > a:hover,
  .page_div .pager > li > span:hover {
    background-color: #2a7594;
    border-color: #2a7594;
    color: white;
    text-decoration: none;
  }
  
  .page_div .pager > .disabled > a,
  .page_div .pager > .disabled > span {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
  }
  
  .page_div .pager > .disabled > a:hover,
  .page_div .pager > .disabled > span:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
  }
}

/* 大屏平板适配（768px-1300px） */
@media screen and (max-width:1300px) and (min-width:768px){
  .type_sm{
    margin:0px!important;
    clear:both!important;
    padding:15px;
  }
  .main_header_canshu li{
    min-width: 120px;
  }
  .fanwei .form-control-lg{
    width: 180px;
  }
}

/* 搜索表单基础样式 - 默认移动端样式 */
.search-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    background: transparent;
    justify-content: flex-start;
}

/* 搜索行基础样式 - 默认移动端样式 */
.search-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

/* 搜索标签基础样式 */
.search-label {
    width: 140px;
    max-width: 150px!important;




    font-weight: 600;
    color: #fff!important;

    background: linear-gradient(135deg, #008b98 0%, #00a0b0 100%);
    padding: 8px 12px;
    border-radius: 6px;

    text-align: center;
    margin-right: 0;

    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 139, 152, 0.2);
}

/* 搜索控件区域基础样式 */
.search-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

/* 按钮组基础样式 */
.button-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* 电脑端样式 - 水平排列 */
@media screen and (min-width: 992px) {
    /* 搜索表单电脑端样式 */
    .search-form {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    /* 搜索行电脑端样式 */
    .search-row {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: nowrap;
        width: auto;
        flex: 1;
    }
    
    /* 搜索标签电脑端样式 */
    .search-label {
        width: auto;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    /* 搜索控件区域电脑端样式 */
    .search-controls {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        width: auto;
        flex: 1;
        overflow-x: visible;
    }
    
    /* 按钮组电脑端样式 */
    .button-group {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: auto;
        flex: 0 0 auto;
        margin-top: 0;
    }
}

/* 调整按钮大小，让按钮组更紧凑 */
.search-btn,
.btn-secondary,
.btn-reset {
    padding: 6px 14px !important;
    font-size: 13px !important;
    height: 36px !important;
    min-width: 70px !important;
    line-height: 1.5 !important;
}

/* 调整输入框大小，让搜索控件更紧凑 */
.param-select {
    width: 100px !important;
    height: 36px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
}

.range-input {
    width: 80px !important;
    height: 36px !important;
    padding: 6px 8px !important;
    font-size: 13px !important;
}

.code-input-field {
    width: 150px !important;
    height: 36px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
}

/* 搜索行样式 - 默认移动端垂直排列 */
.search-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* 电脑端搜索行样式 - 水平排列 */
@media screen and (min-width: 992px) {
    .search-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px !important;
        flex-wrap: nowrap !important;
        width: auto !important;
        flex: 1 1 auto !important;
    }
    
    .search-label {
        width: auto !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    
    .search-controls {
        flex: 1 !important;
        overflow-x: visible !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: auto !important;
        gap: 10px !important;
    }
    
    /* 确保搜索控件内部元素不换行 */
    .search-controls > * {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    
    /* 确保范围输入区域不换行 */
    .search-range {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        align-items: center !important;
    }
    
    /* 确保Code输入区域不换行 */
    .search-code {
        display: none !important;
    }
    
    /* 确保Code输入区域在需要显示时不换行 */
    .search-code[style*="display: block"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
}

.search-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    width: 100%;
}

.search-controls {
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

/* 参数选择器样式 */
.param-select {
    width: 120px;
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: none;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
}

.param-select:focus {
    border-color: #008b98;
    outline: none;
    box-shadow: none;
}

/* 范围输入区域样式 - 强制同一行显示 */
.search-range {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    background: transparent !important;
    width: auto !important;
    white-space: nowrap !important;
    overflow: visible !important;
    min-width: 0 !important;
}

.search-range > * {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
}

.range-input {
    width: 70px !important;
    height: 40px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    min-width: 70px !important;
}

.range-input:focus {
    border-color: #008b98 !important;
    outline: none !important;
    box-shadow: none !important;
}

.range-separator {
    color: #6c757d !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 4px !important;
    min-width: 15px !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* 代码输入区域样式 - 强制同一行显示 */
.search-code {
    display: none !important;
    width: auto !important;
    max-width: none !important;
    flex-shrink: 0 !important;
}

.search-code[style*="display: block"],
.search-code[style*="display: flex"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.code-input-field {
    width: 150px !important;
    height: 40px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    min-width: 150px !important;
}

.code-input-field:focus {
    border-color: #008b98 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 按钮组样式 */
.button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 5px;
}

.search-btn,
.btn-secondary,
.btn-reset {
    height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-shrink: 0;
}

.search-btn {
    background-color: #008b98;
    color: #ffffff;
}

.search-btn:hover {
    background-color: #007a8a;
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: #ffffff;
    text-decoration: none;
}

.btn-reset {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-reset:hover {
    background-color: #e9ecef;
    color: #495057;
    text-decoration: none;
}

/* 表单控件通用样式 */
.form-control {
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px!important;
    box-shadow: none;
    transition: all 0.2s ease;
    -webkit-border-radius: 6px!important;
    -moz-border-radius: 6px!important;
    -ms-border-radius: 6px!important;
    -o-border-radius: 6px!important;
}

.form-control:focus {
    border-color: #008b98;
    outline: none;
    box-shadow: none;
}


/* 移动端适配 */
@media screen and (max-width: 767px) {
    /* 确保搜索表单和参数选择器垂直排列 */
    .search-form,
    .search-form.param-selector {
        display: flex !important;
        flex-direction: column !important;
    }
  
     .param-select {
        width: auto !important;
        min-width: 70px !important;
    }
    /* 确保搜索行和按钮组垂直排列 */
    .search-row {
        margin-bottom: 15px;
    }
    
    .button-group {
        margin-top: 15px;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    
    .search-controls {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        scrollbar-width: none !important; /* Firefox */
    }
    
    /* 隐藏 WebKit 浏览器的滚动条 */
    .search-controls::-webkit-scrollbar {
        display: none !important;
    }
    
    /* 隐藏 IE 和 Edge 浏览器的滚动条 */
    .search-controls {
        -ms-overflow-style: none !important;
    }
    
   
    
    .search-range {
        width: auto !important;
        justify-content: center !important;
    }
    
    .range-input {
        flex: 1;
        min-width: 80px;
    }
    
    .search-code {
        max-width: none !important;
        width: auto !important;
    }
    
    .search-btn,
    .btn-secondary,
    .btn-reset {
        flex: 1;
        min-width: calc(33.333% - 7px);
        max-width: none;
        width: auto;
        justify-content: center;
    }

    .search-btn .fa, .btn-secondary .fa, .btn-reset .fa{
      display: none;
    }
}

/* 主页面样式补充 */
.yut {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
#pageContent {
    width: 100%;
    overflow: auto;
}
#imgContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
}
#smartZoomContainer1611648330610 {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
}
#imageFullScreen {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transform-origin: center center !important;
}

/* 搜索页面样式补充 */
#now_where {
    padding: 10px;
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 4px;
  
}
.pull-left2 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.where_dl {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
    background: white;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
    /* border: 1px solid #e9ecef; */
}

/* 确保where_dl内部的dt和dd元素横排 */
.where_dl dt,
.where_dl dd {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.where_dl dt {
    margin-right: 5px;
    font-weight: 600;
}
.yf_box {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    padding: 20px;
}

/* PC端调整表格布局，确保内容完整显示且无滚动条 */
@media screen and (min-width: 992px) {
  .yf_box {
    overflow: visible;
  }
  
  /* 确保表格容器自适应宽度，不固定最小宽度 */
  .main_header,
  .main_header_canshu {
    width: 100%;
  }
}
.main_header,
.main_header_canshu {
    display: flex;
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
   
    /* 移除固定min-width，允许表格自适应屏幕宽度 */
}
.main_header {
    background: linear-gradient(135deg, #3686a8 0%, #2a7594 100%);
    border-radius: 6px 6px 0 0;
    font-weight: 600;
}
.main_header li {
    padding: 15px 12px;
    text-align: center;
    color: white;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Parameter列占据特定宽度 */
.main_header .chanshu_head.chanshu.bg_3686a8 {
    flex: 0 0 40%; /* Parameter列固定占据40%宽度 */
}
/* Index Catalog列占据剩余宽度 */
.main_header .brand_head {
    flex: 0 0 60%; /* Index Catalog列固定占据60%宽度 */
}

/* 参数标题行：精确控制前四列总宽度等于Parameter列 */
.main_header_canshu.chanshu_header {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
}
/* GBJ Type、nd、vd、nF-nC四列总宽度等于Parameter列(40%) */
.main_header_canshu.chanshu_header .chanshu_li:nth-child(1),
.main_header_canshu.chanshu_header .chanshu_li:nth-child(2),
.main_header_canshu.chanshu_header .chanshu_li:nth-child(3),
.main_header_canshu.chanshu_header .chanshu_li:nth-child(4) {
    flex: 0 0 10%; /* 每列占据10%，四列总共40%，与Parameter列一致 */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 品牌列占据Index Catalog列宽度(60%) */
.main_header_canshu.chanshu_header .chanshu_li:not(:nth-child(-n+4)) {
    flex: 1; /* 平均分配剩余宽度给品牌列 */
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 数据行：与标题行保持一致的宽度分配 */
.main_header_canshu:not(.chanshu_header) {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
}
/* 数据行前四列总宽度等于Parameter列(40%) */
.main_header_canshu:not(.chanshu_header) .chanshu_li:nth-child(1),
.main_header_canshu:not(.chanshu_header) .chanshu_li:nth-child(2),
.main_header_canshu:not(.chanshu_header) .chanshu_li:nth-child(3),
.main_header_canshu:not(.chanshu_header) .chanshu_li:nth-child(4) {
    flex: 0 0 10%; /* 每列占据10%，四列总共40%，与Parameter列一致 */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 数据行品牌列占据Index Catalog列宽度(60%) */
.main_header_canshu:not(.chanshu_header) .chanshu_li:not(:nth-child(-n+4)) {
    flex: 1; /* 平均分配剩余宽度给品牌列 */
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.main_header_canshu {
    transition: all 0.3s ease;
}
.main_header_canshu:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.main_header_canshu li {
    flex: 1;
    padding: 14px 12px;
    text-align: center;
    border-right: 1px solid #e9ecef;
    word-wrap: break-word;
    word-break: break-all;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #495057;
}
.main_header_canshu li:last-child,
.main_header li:last-child {
    border-right: none;
}
.chanshu_header {
    background: #EDEDED;
    font-weight: 600;
    /* border-top: 1px solid #e9ecef; */
}
.chanshu_header .chanshu_li {
    background: #EDEDED;
    font-weight: 600;
    color: #495057;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.zbt {
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
}
.fbt {
    font-size: 12px;
    color: #6c757d;
}
.color_bluer {
    color: #3686a8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.color_bluer:hover {
    color: #2a7594;
    text-decoration: none;
    border-bottom: 1px solid #3686a8;
}

/* 分页样式补充 - 统一电脑端和移动端样式 */
.page_div {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    margin-top: 20px;
    border-radius: 6px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* 移除所有滚动条相关样式 */
.page_div {
    overflow-x: visible !important;
}

.page_div::-webkit-scrollbar {
    display: none !important;
}

.page_div {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* 统一分页样式 - 不换行、无滚动条、居中 */
.page_div ul.pager,
.page_div ul.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: visible;
}

.page_div ul.pager > li,
.page_div ul.pagination > li {
    margin: 0;
    padding: 0;
}

.page_div ul.pager > li > a,
.page_div ul.pager > li > span,
.page_div ul.pagination > li > a,
.page_div ul.pagination > li > span {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    background-color: #3686a8;
    color: white;
    border: 1px solid #3686a8;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.page_div ul.pager > li > a:hover,
.page_div ul.pager > li > span:hover,
.page_div ul.pagination > li > a:hover,
.page_div ul.pagination > li > span:hover {
    background-color: #2a7594;
    border-color: #2a7594;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.page_div ul.pager > .disabled > a,
.page_div ul.pager > .disabled > span,
.page_div ul.pagination > .disabled > a,
.page_div ul.pagination > .disabled > span {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.page_div ul.pager > .disabled > a:hover,
.page_div ul.pager > .disabled > span:hover,
.page_div ul.pagination > .disabled > a:hover,
.page_div ul.pagination > .disabled > span:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
    transform: none;
}

.page_div ul.pager .page-info {
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    min-width: 50px;
    text-align: center;
}

.page_div ul.pager .page-info span {
    background: transparent;
    border: none;
    color: #6c757d;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
}

/* 移除默认active样式，因为我们使用简洁分页 */
.page_div ul.pagination > .active > a,
.page_div ul.pagination > .active > span {
    background-color: #3686a8;
    border-color: #3686a8;
    color: white;
}

/* 优化表格滚动体验 */
.main_box::-webkit-scrollbar {
    height: 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.main_box::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 4px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.05);
}
.main_box::-webkit-scrollbar-thumb {
    background: #3686a8;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.main_box::-webkit-scrollbar-thumb:hover {
    background: #2a7594;
    box-shadow: 0 0 4px rgba(54, 134, 168, 0.4);
}

/* 其他样式补充 */


.btn-danger{
  background-color: #009EA9!important;
  color:#fff;
}
.btn-success{
  background-color:#4d4d4d!important;
}
.btn-lg:hover{
  background-color:#8c8c8c!important;
}
.table-bordered > thead > tr > th, 
.table-bordered > tbody > tr > th, 
.table-bordered > tfoot > tr > th, 
.table-bordered > thead > tr > td, 
.table-bordered > tbody > tr > td, 
.table-bordered > tfoot > tr > td {
  border: 1px solid #f4f4f4;
  text-align: center;
  padding: 8px 5px;
}
.table-condensed > thead > tr > th, 
.table-condensed > tbody > tr > th, 
.table-condensed > tfoot > tr > th, 
.table-condensed > thead > tr > td, 
.table-condensed > tbody > tr > td, 
.table-condensed > tfoot > tr > td {
  padding: 8px 10px; /* 移动端缩小内边距 */
}
.pull-left{
  margin-top:0; /* 清除多余上边距 */
  float:none!important;
}
.table-condensed{
  margin:0 auto;
  width: max-content;
  min-width: 100%;
}
.right{
  float: right!important; /* 修复语法错误（多余冒号） */
}
#positionButtonDiv>p{
  margin:0!important;
  text-align:left!important;
  width:50px;
  font-size: 11px;
}
p {
  font-family:Arial!important; 
  letter-spacing: 1px; /* 移动端缩小字间距 */
}
h2{
  font-family:Arial!important; 
  color:#222!important;
  display:none;
  font-size: 18px;
}
h3{
  font-family:Arial!important; 
  color:#222!important;
  margin-bottom:0px!important;
  font-size: 16px;
}
.slidBox_con_w p{
  font-size:12px!important;
  color:#666;
  letter-spacing:0;
}
.slidBox{
  top:60px; /* 适配移动端导航栏高度 */
}
.xldw{
  position:fixed;
  background-color:#ffffff;
  max-width:100%!important;
  z-index:5;
  top: 60px; /* 适配移动端导航栏高度 */
  left: 0;
  right: 0;
  padding: 5px;
}
.xlxgwz{
  width:100%!important; /* 小屏占满宽度 */
}