body {
	margin-left: 0px;
	margin-top: 0px;
	font-size:16px;font-family:微软雅黑;
}
select{font-size:16px;font-family:微软雅黑;}
input{font-size:16px;font-family:微软雅黑;}

.hlong *{display:inline-block;vertical-align:middle}

/* 新增的浮动按钮样式 */
.float-buttons {
    position: fixed;
    right: 100px;
    z-index: 999;
}
.float-btn {
    width: 50px;
    height: 50px;
    background-color: #CC0000;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s;
}
.float-btn:hover {
    background-color: #FF6600;
    transform: scale(1.1);
}

/* 新增的中部按钮样式 - 与其他按钮保持一致但颜色不同 */
.float-btn.middle {
    background-color: #FF9900;
}
.float-btn.middle:hover {
    background-color: #FFCC00;
}

    /* ==============================
     * 客服信息区域样式
     * ============================== */
    .shengming-container {
        margin: 1rem 0;
        font-family: Arial, sans-serif;
    }

    .shengming {
        font-size: 1rem;
        text-align: center;
        color: #666;
        line-height: 1.6;
        margin: 0.5rem 0;
    }

    .shengming-sub {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.5;
        margin: 0.3rem 0;
        color: #666;
    }

    .shengming a, 
    .shengming-sub a {
        text-decoration: none !important;
    }

    .shengming-sub a font {
        color: #12B7F5 !important; /* QQ品牌蓝 */
    }

    .shengming-sub strong {
        color: #333;
        font-weight: bold;
    }

/* 固定头部样式 */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 确保头部在最上层 */
}

/* 占位符高度（与头部高度一致） */
.header-placeholder {
  height: 80px; /* 80px = 10px（橙色条） + 70px（红色导航栏） */
}

/* 修改下拉菜单整体样式 */
select {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 18px;       /* 字体大小 */
    font-weight: bold;     /* 加粗 */
    color: #CC0000;        /* 字体颜色（红色） */
    background-color: #FFF;
    border: 1px solid #000;
    padding: 5px 10px 5px 10px; /* 调整左右内边距（右边留出箭头空间） */
	margin-bottom: 20px; /* 底部间距20px */
    border-radius: 0px;
    width: 180px;          /* 关键：固定宽度 */
    min-width: 100px;      /* 关键：最小宽度 */
    box-sizing: border-box; /* 确保宽度计算包含 padding 和 border */
    
    /* 移除默认样式并自定义箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 26px;
    cursor: pointer;
}

/* 修改下拉选项样式 */
select option {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    background-color: #FFF;
    padding: 5px;
}

/* 悬停和焦点效果 */
select:hover {
    border-color: #FF6600;
}

select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.3);
}

/* 市场名称SELECT专属样式（加宽） */
select.market-select {
    width: 280px !important;  /* 比普通下拉框更宽 */
    min-width: 280px !important;
    background-color: #FFF8E1; /* 浅黄色背景 */
    border: 2px solid #FF9900; /* 橙色边框 */
    font-weight: bold;
    color: #CC0000; /* 红色文字 */
    padding: 8px 15px;
    margin-right: 15px; /* 右侧间距 */
}

/* 鼠标悬停效果 */
select.market-select:hover {
    border-color: #FF6600;
    background-color: #FFF2CC;
}

/* 获得焦点效果 */
select.market-select:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
    outline: none;
}

/* 通过name属性选择"选择小类"的下拉框 */
select[name="pid1"] {
	width: auto; /* 自适应内容宽度 */
    display: inline-block; /* 确保宽度基于内容 */
    min-width: 200px !important;
    background-color: #FFF8E1;
    border: 2px solid #FF9900;
    font-weight: bold;
    color: #CC0000;
    padding: 8px 15px;
    margin-right: 10px;
}

select[name="pid1"]:hover {
    border-color: #FF6600;
    background-color: #FFF2CC;
}

select[name="pid1"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
    outline: none;
}


select[name="pid2"] {
	width: auto; /* 自适应内容宽度 */
    display: inline-block; /* 确保宽度基于内容 */
    min-width: 200px !important;
    background-color: #FFF8E1;
    border: 2px solid #FF9900;
    font-weight: bold;
    color: #CC0000;
    padding: 8px 15px;
    margin-right: 10px;
}

select[name="pid2"]:hover {
    border-color: #FF6600;
    background-color: #FFF2CC;
}

select[name="pid2"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
    outline: none;
}

select[name="pid3"] {
	width: auto; /* 自适应内容宽度 */
    display: inline-block; /* 确保宽度基于内容 */
    background-color: #FFF8E1;
    border: 2px solid #FF9900;
    font-weight: bold;
    color: #CC0000;
    padding: 8px 15px;
    margin-right: 10px;
}

select[name="pid3"]:hover {
    border-color: #FF6600;
    background-color: #FFF2CC;
}

select[name="pid3"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
    outline: none;
}

/* 日期输入框统一基础样式 */
input[name="st"], 
input[name="et"] {
    width: 128px !important;
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #FFF !important;  /* 红色文字与SELECT一致 */
    background-color: #FFF !important;
    border: 1px solid #000 !important;
    padding: 5px 10px 5px 10px !important;
    border-radius: 0px !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    vertical-align: middle !important;
	height: 38px; /* 与按钮高度一致 */
    line-height: 38px; /* 垂直居中 */
    vertical-align: middle;
    margin: 0 5px; /* 左右间距 */
}

/* 开始日期特殊样式（黄色系） */
input[name="st"] {
    background-color: #FFF !important; /* 浅黄背景 */
    border-color: #FF9900 !important; /* 橙色边框 */
}

/* 结束日期特殊样式（红色系） */
input[name="et"] {
    background-color: #FFF !important; /* 浅红背景 */
    border-color: #CC0000 !important; /* 红色边框 */
}

/* 悬停效果 */
input[name="st"]:hover, 
input[name="et"]:hover {
    border-color: #FF6600;
    background-color: #FFF2CC;
    transition: all 0.3s;
}

/* 焦点效果 */
input[name="st"]:focus, 
input[name="et"]:focus {
    outline: none !important;
    border-color: #FF6600 !important;
	 box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
}

/* 日历图标样式 */
input[name="st"]::-webkit-calendar-picker-indicator,
input[name="et"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    opacity: 0.7;
    padding-left: 20px;
}

/* 禁用状态的样式 */
input[name="st"][readonly],
input[name="et"][readonly] {
    background-color: #FFF !important;
    color: #666 !important;
}

/* 严格匹配你的代码格式 */
.black-date-text {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    margin-right: 10px; /* 与右侧元素间隔 */
    display: inline-block; /* 确保间距生效 */
}

input[type="submit"] {
    width: 100px;
    height: 38px;
    background-color: #CC0000;
    color: #FFFFFF;
    font-size: 16px;
    font-family: "微软雅黑", sans-serif;
    font-weight: bold;
    border: 1px solid #990000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0 5px;

    /* 修正对齐方案 */
    display: inline-block;          /* 改为行内块级元素 */
    line-height: 36px;              /* 高度-2px（补偿边框） */
    text-align: center;
    vertical-align: middle;         /* 关键：与其他行内元素垂直对齐 */
    padding: 0;
    box-sizing: border-box;         /* 防止边框影响尺寸 */
}

/* 悬停状态效果 */
input[type="submit"]:hover {
    background-color: #FF3333;        /* 悬停时变亮红 */
    transform: translateY(-1px);      /* 轻微上浮效果 */
    box-shadow: 0 3px 6px rgba(0,0,0,0.15); /* 阴影加深 */
}

/* 点击状态效果 */
input[type="submit"]:active {
    background-color: #990000;        /* 点击时变深红 */
    transform: translateY(1px);       /* 按下效果 */
}
.bold-cell {
    font-family: "SimHei", "黑体", sans-serif;  /* 黑体优先 */
    font-weight: bold;      /* 加粗 */
    font-size: 18px;        /* 字体大小 */
    color: #000000;         /* 字体颜色（深灰色，可自定义） */
    /* 保留原有背景色和居中对齐 */
    background-color: #EFEFEF;
    text-align: center;
}

/* 原有 Arial 粗体样式 */
.data-cell {
 font-family: Tahoma, Arial, sans-serif;  /* 紧凑且对齐 */
    font-feature-settings: "tnum";          /* 启用表格数字（等宽） */
    font-size: 20px;
    color: #000;
    white-space: nowrap;
}

/* 新增宋体样式 - 常规 */
.data-cell1 {
    font-family: "SimSun", "宋体", serif;  /* 宋体优先 */
    font-size: 18px;
    color: #000;
    white-space: nowrap;
	font-weight: bold;
}

/* 新增宋体样式 - 加粗 */
.data-cell2 {
    font-family: "SimSun", "宋体", serif;  /* 宋体优先 */
    font-weight: bold;                     /* 加粗 */
    font-size: 14px;
    color: #000;
    white-space: nowrap;
}
/* 原有样式保留 */
.data-cell3 {
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
    font-size: 14px;
    color: blue;
    white-space: nowrap;
}

/* 新增专门针对链接的样式 */
a.data-cell3,
.data-cell3 a {
    text-decoration: none;
}

/* 悬停状态样式 */
a.data-cell3:hover,
.data-cell3 a:hover {
    text-decoration: none;
    color: #000; /* 保持悬停颜色不变，或根据需要修改 */
}

.data-cell4 {
 font-family: Tahoma, Arial, sans-serif;  /* 紧凑且对齐 */
    font-feature-settings: "tnum";          /* 启用表格数字（等宽） */
    font-size: 20px;
    color: #000;
    white-space: nowrap;
	font-weight: bold;
}

/* 头部容器 */

/* 全局样式重置 */
.fixed-header * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 固定头部 */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* 顶部橙色条 */
.header-top-bar {
  height: 10px;
  background-color: #FF6600;
}

/* 主头部红色区域 */
.header-main {
  height: 70px;
  background-color: #CC0000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 头部内容容器 */
.header-container {
  width: 1000px;
  display: flex;
  align-items: flex-end; /* 关键：使所有内容底部对齐 */
  height: 100%;
}

/* 左侧logo区域 */
.header-logo {
  width: 300px;
  height: 100%;
  display: flex;
  align-items: flex-end; /* logo底部对齐 */
  padding-bottom: 5px; /* 微调垂直位置 */
}

.logo-img {
  width: 256px;
  height: 54px;
  vertical-align: middle;
  border: 0;
}

/* 右侧导航容器 */
.header-nav-container {
  display: flex;
  align-items: center; /* 垂直居中 */
  height: 100%;
  margin-left: auto; /* 关键：右对齐 */
}

/* 导航项 */
.nav-item {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 10px; /* 项间距10px */
}

/* 返回链接样式 */
.return-link {
  color: #FFFF00;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.list-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  border: 0;
  margin-right: 2px;
}

/* 用户信息样式 */
.user-info-container {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.wechat-link {
  color: #FFFFFF;
  text-decoration: none;
}

.wechat-link strong {
  color: #FFFFFF;
}

.logout-link {
  color: yellow;
  text-decoration: none;
}

/* 占位符 */
.header-placeholder {
  height: 80px;
}

/* 全局样式 */
.fixed-header * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 固定头部 */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* 顶部橙色条 */
.header-top-bar {
  height: 10px;
  background-color: #FF6600;
}

/* 主头部红色区域 */
.header-main {
  height: 70px;
  background-color: #CC0000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 头部内容容器 */
.header-container {
  width: 1000px;
  display: flex;
  align-items: center;
  height: 100%;
}

/* 左侧logo区域 */
.header-logo {
  width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 256px;
  height: 54px;
  vertical-align: middle;
  border: 0;
}

/* 右侧导航容器 */
.header-nav-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 2px; /* 控制菜单项间距 */
}




/* 正方形菜单项 - 更丝滑的背景变长效果 */
.square-menu-item {
    font-family: "SimHei", "黑体", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #CC0000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: white;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 20px 0 0 0;
    position: relative;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), background-color 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    white-space: nowrap;
    min-width: 40px;
}

.square-menu-item:hover {
    width: max-content;
    min-width: 120px;
    background-color: #FFF2F5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.square-menu-item::before {
    content: "";
}

.square-menu-item:hover::before {
    content: attr(title);
    position: relative;
    padding-left: 8px;
    color: #CC0000;
    font-size: 20px;
    font-weight: bold;
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.square-menu-item:hover {
    color: transparent;
}


/* 底部链接*/
.Main_Bottom{margin-top:20px; text-align:center;border-top:4px solid #FF3300;}
.Main_Bottom .AboutLink{margin-top:10px; font-size:14px;color:#282828; line-height:25px;}
.Main_Bottom .AboutLink a{font-size:14px; color:#282828; text-decoration:none;}
.Main_Bottom .AboutLink a:hover{color:#F00;}

/* ==============================
 * 底部区域
 * ============================== */
/* 全屏横线容器 */
.fullwidth-bottom-wrapper {
    width: 100%;
    position: relative;
    margin-top: 20px;
    padding-top: 4px; /* 为横线留出空间 */
}

/* 全屏红色横线 */
.fullwidth-bottom-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 4px;
    background-color: #FF3300;
    margin-left: calc(-50vw + 50%); /* 关键：居中计算 */
}

/* 底部内容容器 */
.fullwidth-bottom-content {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: #282828;
    line-height: 20px;
    position: relative;
	margin: 20px auto 0; /* 关键：横线与下方内容的间距 = 20px */
}

fullwidth-bottom-content a.about-links,
.fullwidth-bottom-content .about-links a {
    font-size: 14px !important;
    color: #282828 !important;
    text-decoration: none !important;
}

.fullwidth-bottom-content a.about-links:hover,
.fullwidth-bottom-content .about-links a:hover {
    color: #F00 !important;
}

/* 新增查询按钮垂直居中样式 */
.form-center-container {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    margin: 6px auto;
}

.form-center-container input[type="submit"] {
    margin: 0 0 0 10px; /* 只保留左侧间距 */
    vertical-align: middle; /* 确保垂直对齐 */
}


/* 专有的表格样式类 */
.custom-table-style {
  border: 1px solid #000;  /* 表格外边框：1px黑色实线 */
  border-collapse: collapse; /* 合并边框，避免双线 */
  width: 1000px; /* 固定宽度1000px */
  font-size: 18px;
  font-weight: bold;
}

.custom-table-style td,
.custom-table-style th  {
  border: 1px solid #222;  /* 每个单元格都有1px黑色边框 */
  padding: 4px; /* 替换原cellpadding="4" */}