/* ========== 全局重置样式 ========== */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: 2px;
  box-sizing: border-box;
  font-style: normal;
}

/* ========== 全局基础样式 ========== */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, "Times New Roman", 宋体, SimSun, serif;
  /* font-family: SimSun, Arial, "Microsoft YaHei UI",sans-serif; */
}

button,input,textarea {
  font-size: 16px;
  line-height: 1.5;
  padding: 10px;
  font-family: 宋体 !important;

}

html{
  scroll-behavior: auto;
}

a {
  text-decoration: none; /* 去掉下划线 */
  color: #808080;
  cursor: pointer;
}

a:hover {
  /* color: #e1aa00; */
  color: #C35F00;
}

.container-1260 {
  width: 1260px;
  margin: 0 auto;
}

.main-center.container-1260 {
  opacity: 0;
  transition: opacity 0.6s ease;
  padding-top: 214px;
}

.main-center.container-1260.loaded {
  opacity: 1;
}

.main-center .main-content {
  background-color: #E6F5FF;
  width: 100%;
  border: 5px solid #C1E5FF;
  padding: 10px 25px;
}

.main-center .main-content .loading-text {
  display: block;
  padding: 20px 0;
}

.clear-both {
  clear: both;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.scroll-top-arrow {
  position: absolute;
  top: 8px;
  right: 5px;
  cursor: pointer;
  user-select: none;
  width: 37px;
  height: 37px;
  background-image: url('../../images/new2/icon_dingbu1.png');
  background-size: 62% 62%;
  background-repeat: no-repeat;
  background-position: center top;
}

.scroll-top-arrow:hover {
  background-image: url('../../images/new2/icon_dingbu2.png');
  background-size: 60% 60%;
  background-position: center top;
}

 /* ========== 字典小标题切换样式 ========== */
 .sub-title-content {
  overflow: hidden;
  /* 清除浮动 */
}

.dict-title-left,
.dict-title-right {
  text-decoration: none;
}

.dict-title-left {
  float: left;
}

.dict-title-right-container {
  float: right;
}

.dict-title-right {
  display: inline-block;
  margin-left: 25px;
}

/* 当前选中状态 (current=true) */
.dict-title-left[data-current="true"],
.dict-title-right[data-current="true"] {
  cursor: default;
  color: inherit;
  /* 使用默认颜色 */
  pointer-events: none;
  /* 禁用点击 */
}

/* 非选中状态 (current=false) */
.dict-title-left[data-current="false"],
.dict-title-right[data-current="false"] {
  cursor: pointer;
  color: #4F5051;
  transition: color 0.3s ease;
}

/* 非选中状态的hover效果 */
.dict-title-left[data-current="false"]:hover,
.dict-title-right[data-current="false"]:hover {
  color: #E1AA00;
}