ul,
li {
  padding: 0;
  margin: 0;
}
body {
  font-family: PingFangSC,PingFangSC-Regular,Microsoft YaHei,hiragino sansgb,microsoft yahei ui,microsoft yahei,simsun,\5b8b\4f53,sans-serif;
}
.info-container {
  background-color: #f6f6f6;
}

.info-container .breadcrumb {
  display: flex;
  align-items: center;
  padding: 25px 0;
  font-size: 14px;
  color: #808285;
  letter-spacing: 0.17px;
  line-height: 20px;
  width: 1200px;
  margin: auto;
}

.info-container .breadcrumb a {
  color: #808285;
}

.info-container .breadcrumb a:hover {
  text-decoration: underline;
}

.info-container .breadcrumb .active {
  color: #ff4800;
}

.info-content {
  position: relative;
  width: 1200px;
  margin: 0 auto 80px;
  padding: 50px;
  background-color: #fff;
  box-sizing: border-box;
}

.info-content .title {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.90);
  text-align: center;
  font-weight: 600;
}

.info-content .desc {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.80);
  line-height: 32px;
  font-weight: 400;
  padding: 17px 0 10px;
}

.list-search-wrap {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 20px 0;
  margin: 30px 0 20px;
  box-sizing: border-box;
}
/* 下拉选择框 */
/* 自定义下拉框容器 */
.custom-dropdown {
    position: relative;
    width: 240px;
}

/* 下拉框触发按钮 */
.dropdown-trigger {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgba(230, 231, 232, 1);
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(0, 0, 0, 0.80);
    transition: border-color 0.2s;
}

.dropdown-trigger.active {
    outline: none;
    border-color: #ff4800;
}

.dropdown-trigger .icon {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 12px;
    top: 12px;
    margin: auto;
}

.dropdown-trigger .arrow {
    flex-shrink: 0;
    content: "";
    width: 16px;
    height: 16px;
    background: url(/app_inc/bank/v2025/images/arrow/arrow-top-icon.svg) no-repeat;
    transform: rotate(180deg);
    background-size: 100% 100%;
    transition: transform 0.2s;
}

.dropdown-trigger .clear {
    display: none;
    flex-shrink: 0;
    content: "";
    width: 16px;
    height: 16px;
    background: url(/app_inc/bank/v2025/images/common/clear-small-icon.svg) no-repeat;
    background-size: 100% 100%;
}

.dropdown-trigger.open .arrow {
    transform: rotate(0);
}

.option-select {
    color: rgba(0, 0, 0, 0.44);
    font-size: 14px;
    width: 100%;
    padding: 10px 40px 10px 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.option-select.active {
    color: rgba(0, 0, 0, 0.9);
}

/* 下拉选项列表 */
.dropdown-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 300px;
    padding: 10px 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.06);
    list-style: none;
    overflow-y: auto;
    z-index: 1000;
}

.dropdown-options::-webkit-scrollbar {
    width: 4px;
    height: 2px;
    background-color: #fff;
}

.dropdown-options::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: #fff;
}

.dropdown-options::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    padding: 9px 30px;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.80);
    transition: color 0.2s;
    cursor: pointer;
}

.dropdown-option.active,
.dropdown-option:hover,
.dropdown-option:focus {
    color: #ff4800;
    background: rgba(0, 0, 0, 0.02);
}

.dropdown-option[disabled] {
    color: #999;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.dropdown-option[disabled]:hover {
    background-color: #f9f9f9;
}
/* 输入 */
.list-search-input-wrap {
  position: relative;
  color: rgba(0, 0, 0, 0.9);

}

.list-search-input {
  width: 360px;
  height: 40px;
  font-size: 14px;
  line-height: 20px;
  margin: 0 8px;
  padding: 10px 40px 10px 20px;
  outline: none;
  border: 1px solid rgba(230, 231, 232, 1);
  border-radius: 4px;
  box-sizing: border-box;
}

.list-search-input.ie {
  padding: 10px 20px;
}

.list-search-input:focus {
  border: 1px solid #ff4800;
}

.list-search-input::placeholder,
.list-search-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.44);
}

.input-close {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  visibility: hidden;
  width: 24px;
  height: 24px;
}

.input-close.active {
  visibility: visible;
  cursor: pointer;
}

.list-search-btn {
  width: 72px;
  height: 40px;
  margin: 0 24px 0 16px;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
  background-color: #e6e7e8;
  border-radius: 8px;
}

.list-search-btn.active {
  background: #ff4800;
  cursor: pointer;
}

.table-info {
  width: 100%;
  border-spacing: 0;
  /* table-layout: fixed; */
}

.table-info th {
  padding: 10px;
  background-color: #F6F6F6;
  box-sizing: border-box;
}

.table-info thead th {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.44);
  line-height: 20px;
  font-weight: 500;
}

.table-info th,
.table-info td {
  text-align: left;
}

.table-info th:first-child,
.table-info td:first-child {
  text-align: center;
}

.table-info tbody td {
  padding: 16px 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.80);
  line-height: 20px;
  background-color: #fff;
  box-sizing: border-box;
}

.table-info tbody tr td,
.table-info thead th {
  border-bottom: 1px solid rgba(230, 231, 232, 1);
  border-left: 1px solid rgba(230, 231, 232, 1);
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal
  box-sizing: border-box;
}

.table-info thead th {
  border-top: 1px solid rgba(230, 231, 232, 1);
}

.table-info tbody tr td:last-child,
.table-info thead th:last-child {
  border-right: 1px solid rgba(230, 231, 232, 1);
}

.table-info tbody tr td a {
  color: #f05a23;
}

.pagination-wrap {
  position: relative;
  display: none;
}

.nodata td {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.80);
  text-align: center;
}

.tips {
  margin-top: 30px;
  color: #343434;
  font-size: 14px;
  line-height: 22px;
}

/* loading */
.loading {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #FF4800;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}