html,
body,
div,
span,
applet,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: normal;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  vertical-align: middle;
}

/* custom */
a {
  outline: none;
  color: #16418a;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}

a:focus {
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}

/*
定义容器的display属性
*/
.bbox {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -moz-flex;
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*
  主轴对齐方式
  */

/*容器主轴居中对齐*/
.bbox.xcenter {
  -moz-box-pack: center;
  /*Firefox*/
  -webkit-box-pack: center;
  /*Safari,Opera,Chrome*/
  box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*容器主轴左对齐(默认)*/
.bbox.xleft {
  -moz-box-pack: start;
  /*Firefox*/
  -webkit-box-pack: start;
  /*Safari,Opera,Chrome*/
  box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

/*容器主轴右对齐*/
.bbox.xright {
  -moz-box-pack: end;
  /*Firefox*/
  -webkit-box-pack: end;
  /*Safari,Opera,Chrome*/
  box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*容器主轴两端对齐*/
.bbox.xbetween {
  -moz-box-pack: justify;
  /*Firefox*/
  -webkit-box-pack: justify;
  /*Safari,Opera,Chrome*/
  box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*容器主轴平均分布*/
.bbox.xaround {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*
  交叉轴对齐方式
  */

/*顶部对齐*/
.bbox.ytop {
  -moz-box-align: start;
  /*Firefox*/
  -webkit-box-align: start;
  /*Safari,Opera,Chrome*/
  box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*底部对齐*/
.bbox.ybottom {
  -moz-box-align: end;
  /*Firefox*/
  -webkit-box-align: end;
  /*Safari,Opera,Chrome*/
  box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*居中对齐*/
.bbox.ycenter {
  -moz-box-align: center;
  /*Firefox*/
  -webkit-box-align: center;
  /*Safari,Opera,Chrome*/
  box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

.bbox.ybaseline {
  -moz-box-align: baseline;
  /*Firefox*/
  -webkit-box-align: baseline;
  /*Safari,Opera,Chrome*/
  box-align: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}

.bbox.ystretch {
  -moz-box-align: stretch;
  /*Firefox*/
  -webkit-box-align: stretch;
  /*Safari,Opera,Chrome*/
  box-align: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*
  *水平垂直居中
  */
.bbox.xycenter {
  -moz-box-pack: center;
  /*Firefox*/
  -webkit-box-pack: center;
  /*Safari,Opera,Chrome*/
  box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-box-align: center;
  /*Firefox*/
  -webkit-box-align: center;
  /*Safari,Opera,Chrome*/
  box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

/*
  *子元素显示方向
  */
.bbox.lr {
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  /*Firefox*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  /*Safari,Opera,Chrome*/
  box-orient: vertical;
  box-direction: normal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.bbox.rl {
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  /*Firefox*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  /*Safari,Opera,Chrome*/
  box-orient: vertical;
  box-direction: reverse;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.bbox.tb {
  -moz-box-direction: normal;
  /*Firefox*/
  -webkit-box-direction: normal;
  /*Safari,Opera,Chrome*/
  box-direction: normal;
  -moz-box-orient: horizontal;
  /*Firefox*/
  -webkit-box-orient: horizontal;
  /*Safari,Opera,Chrome*/
  box-orient: horizontal;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.bbox.bt {
  -moz-box-direction: reverse;
  /*Firefox*/
  -webkit-box-direction: reverse;
  /*Safari,Opera,Chrome*/
  box-direction: reverse;
  -moz-box-orient: horizontal;
  /*Firefox*/
  -webkit-box-orient: horizontal;
  /*Safari,Opera,Chrome*/
  box-orient: horizontal;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/*
  * 换行
  */
.bbox.nowrap {
  -moz-box-lines: single;
  /*Firefox*/
  -webkit-box-lines: single;
  /*Safari,Opera,Chrome*/
  box-lines: single;
  -moz-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.bbox.wrap {
  -moz-box-lines: multiple;
  /*Firefox*/
  -webkit-box-lines: multiple;
  /*Safari,Opera,Chrome*/
  box-lines: multiple;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.bbox.wrap-reverse {
  -moz-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

/*
  *多主轴对齐
  */
.bbox.ytop-m {
  -moz-align-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex -start;
}

.bbox.ycenter-m {
  -moz-align-content: center;
  -webkit-align-content: center;
  align-content: center;
}

.bbox.ybottom-m {
  -moz-align-content: flex-end;
  -webkit-align-content: flex-end;
  align-content: flex-end
}

.bbox.ybetween-m {
  -moz-align-content: space-between;
  -webkit-align-content: space-between;
  align-content: space-between;
}

.bbox.yaround-m {
  -moz-align-content: space-around;
  -webkit-align-content: space-around;
  align-content: space-around;
}

.bbox.ystretch-m {
  -moz-align-content: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
}


/**
  **子元素属性
  **/
.bbox .fauto {
  -webkit-box-flex: auto;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: auto;
  /* OLD - Firefox 19- */
  -webkit-flex: auto;
  /* Chrome */
  -ms-flex: auto;
  /* IE 10 */
  flex: auto;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .fnone {
  -webkit-box-flex: none;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: none;
  /* OLD - Firefox 19- */
  -webkit-flex: none;
  /* Chrome */
  -ms-flex: none;
  /* IE 10 */
  flex: none;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f0 {
  -webkit-box-flex: 0;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 0;
  /* OLD - Firefox 19- */
  -webkit-flex: 0;
  /* Chrome */
  -ms-flex: 0;
  /* IE 10 */
  flex: 0;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f1 {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f2 {
  -webkit-box-flex: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 2;
  /* OLD - Firefox 19- */
  -webkit-flex: 2;
  /* Chrome */
  -ms-flex: 2;
  /* IE 10 */
  flex: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f3 {
  -webkit-box-flex: 3;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 3;
  /* OLD - Firefox 19- */
  -webkit-flex: 3;
  /* Chrome */
  -ms-flex: 3;
  /* IE 10 */
  flex: 3;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f4 {
  -webkit-box-flex: 4;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 4;
  /* OLD - Firefox 19- */
  -webkit-flex: 4;
  /* Chrome */
  -ms-flex: 4;
  /* IE 10 */
  flex: 4;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f5 {
  -webkit-box-flex: 5;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 5;
  /* OLD - Firefox 19- */
  -webkit-flex: 5;
  /* Chrome */
  -ms-flex: 5;
  /* IE 10 */
  flex: 5;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f6 {
  -webkit-box-flex: 6;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 6;
  /* OLD - Firefox 19- */
  -webkit-flex: 6;
  /* Chrome */
  -ms-flex: 6;
  /* IE 10 */
  flex: 6;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f7 {
  -webkit-box-flex: 7;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 7;
  /* OLD - Firefox 19- */
  -webkit-flex: 7;
  /* Chrome */
  -ms-flex: 7;
  /* IE 10 */
  flex: 7;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f8 {
  -webkit-box-flex: 8;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 8;
  /* OLD - Firefox 19- */
  -webkit-flex: 8;
  /* Chrome */
  -ms-flex: 8;
  /* IE 10 */
  flex: 8;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.bbox .f9 {
  -webkit-box-flex: 9;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 9;
  /* OLD - Firefox 19- */
  -webkit-flex: 9;
  /* Chrome */
  -ms-flex: 9;
  /* IE 10 */
  flex: 9;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/*
  * 子元素单独对齐方式
  */

.bbox .selftop {
  -webkit-ailgn-self: flex-start;
  -moz-align-self: flex-start;
  align-self: flex-start;
}

.bbox .selfbottom {
  -webkit-ailgn-self: flex-end;
  -moz-align-self: flex-end;
  align-self: flex-end;
}

.bbox .selfcenter {
  -webkit-ailgn-self: center;
  -moz-align-self: center;
  align-self: center;
}

.bbox .selfbaseline {
  -webkit-ailgn-self: baseline;
  -moz-align-self: baseline;
  align-self: baseline;
}

.bbox .selfstretch {
  -webkit-ailgn-self: stretch;
  -moz-align-self: stretch;
  align-self: stretch;
}

#scaledElement {
 
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  transform-origin: 0px 0px;
  width: 1920px;
}



/* 页面最小宽度设置 */

html {
  min-width: 1500px;
  overflow-x: auto;
  /* 当宽度小于1600px时显示水平滚动条 */
}
/* 垂直滚动条设置 - 隐藏但保留功能 */
body {
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox 隐藏垂直滚动条 */
}

/* Chrome, Safari 和 Opera 隐藏垂直滚动条 */
html::-webkit-scrollbar {
  width: 0;
}

/* 美化水平滚动条 */
html::-webkit-scrollbar {
  height: 8px;
}

html::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: rgba(0, 18, 39, 0.1);
  border-radius: 10px;
  transition: background 0.3s ease;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 18, 39, 0.3);
}

.otherT {
  margin-top: 20px
}

.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 半透明黑色 */
  z-index: 999;
  /* 确保遮罩层在页面内容之上 */
  cursor: pointer;
  /* 点击遮罩层可关闭弹窗 */
}

/* 2. 地区选择弹窗：居中显示 */
/* 弹窗整体：调整宽度、阴影 */
.region-modal {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; /* 加宽弹窗 */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* 增强阴影 */
  z-index: 1000;
  padding: 16px; /* 增加内边距 */
}

/* 弹窗标题：调整字体、底部边框 */
.modal-title {
  font-size: 16px; /* 缩小字体 */
  font-weight: 600; /* 中等加粗 */
  color: #333;
  margin-bottom: 20px; /* 增加底部间距 */
  border-bottom: 1px solid #e5e7eb; /* 浅灰色边框 */
  padding-bottom: 12px;
}
.modal-title div{
  font-weight: 600; 
}
.modal-close{
  width: 20px;
  height: 20px;
  cursor: pointer;
}
/* 地区列表：行内布局，按钮自动换行 */
.region-list {
  display: flex;
  flex-wrap: wrap; /* 自动换行 */
  gap: 8px; /* 按钮间距 */
  margin-bottom: 24px; /* 增加与按钮组的间距 */
}

/* 单个地区按钮：调整样式为示例图的“浅灰边框+蓝色选中” */
.region-btn {
  padding: 8px 16px; /* 缩小内边距 */
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #F5F7FA; /* 浅灰边框 */
 
  font-size: 14px;
  white-space: nowrap; /* 防止文字换行 */
  transition: all 0.2s;
  background: #F5F7FA;
}

/* 选中的地区按钮：蓝色边框+文字，无背景色 */
.region-btn.active {
  background: rgba(22,119,255,0.1);
  border-color: #1677FF; /* 蓝色边框 */
  color: #1677FF; /* 蓝色文字 */
 
}

/* 弹窗按钮组：调整按钮顺序和样式 */
.modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #e5e7eb; 
  padding-top: 16px;
}

/* 上一级按钮：浅灰边框+文字 */
.prev-btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #dfe1e5; /* 浅灰边框 */
  background: #1677FF;
  color: #fff;
  font-size: 14px;
}

/* 取消按钮：浅灰边框+文字 */
.cancel-btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #dfe1e5; /* 浅灰边框 */
  background: #FAFAFA;
  color: #666;
  font-size: 14px;
}

/* 确认按钮：蓝色背景+白色文字 */
.confirm-btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  background: #1677FF;
  color: #fff;
  font-size: 14px;
}
.layui-input, .layui-select, .layui-textarea{
  border-radius: 4px !important;
  border-color: #ccc !important;
}
.layui-btn{
  border-radius: 4px !important;
}
.layui-breadcrumb>*{
  font-size: 16px !important;
}
.layui-input::placeholder {
  color: #999 !important; /* 使用 !important 确保覆盖默认样式 */
}

/* 兼容旧版浏览器（如 Safari） */
.layui-input:-webkit-input-placeholder {
  color: #999 !important;
}

.layui-input:-moz-placeholder {
  color: #999 !important;
}

.layui-input::-moz-placeholder {
  color: #999 !important;
}

.layui-input:-ms-input-placeholder {
  color: #999 !important;
}