.authentication-info-top {
  padding-top: 80px;
  padding-bottom: 90px;
}
.authentication-info-card {
  background: #f7f9fb;
  border-radius: 16px;
  display: flex;
  padding: 30px 60px;
  width: 100%;
  margin-top: 40px;
  position: relative;
  align-items: flex-start;
}
.authentication-info-item {
  width: 50%;
  display: flex;
  align-items: center;
}
.info-item-icon {
  width: 80px;
}
.info-item-text {
  padding-left: 30px;
}
.info-item-name {
  font-weight: bold;
  font-size: 22px;
  color: #252b3a;
}
.info-item-decs {
  margin-top: 10px;
  font-size: 16px;
  color: #252b3a;
  line-height: 28px;
}
.info-item-decs {
  width: 100%;
}

/* 新增滑动容器样式 */
.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* 优化移动端滑动体验 */
  /* margin-top: 20px; */
}

.authentication-table {
  width: auto; /* 改为自适应宽度 */
  min-width: 800px; /* 设置最小宽度以支持大表格 */
  table-layout: fixed;
  border-collapse: collapse;
  margin: 20px 0;
}

.info-table-box {
  padding-top: 100px;
}
.info-table-box:last-child {
  padding-bottom: 100px;
}
.info-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-table-header-text {
  font-weight: bold;
  font-size: 24px;
  color: #252b3a;
}
.authentication-info-btn {
  width: 170px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #0086f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  color: #0086f1;
  font-size: 18px;
  position: relative;
}
.authentication-info-btn::after {
  transform: translateY(-1px);
  content: "";
  transition: all 0.4s ease;
  font-family: "iconfont";
  display: inline-block;
  vertical-align: middle;
}
.authentication-info-btn:hover::after {
  content: "\e683";
  margin-left: 5px;
  margin-top: 3px;
}
.info-btn-box {
  display: flex;
}
.info-btn-box .authentication-banner-btn {
  margin-top: 0;
}
.authentication-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 20px 0;
}
.authentication-table th,
.authentication-table td {
  width: 12.5%; /* 四列平分 */
  padding: 16px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
  color: #252b3a;
}
.authentication-table-title {
  font-size: 18px !important;
}
.authentication-table th {
  background-color: #f5f5f5;
}
/* 特殊合并列调整 */
.authentication-table td[colspan="6"] {
  width: 75%; /* 3列合并=25%*3 */
}
.info-table-bold {
  font-weight: bold;
}
.info-table-bg {
  background: #eff5fe;
}
.learning-crumbs-box {
  display: flex;
  align-items: center;
  margin-top: 48px;
}
.learning-crumbs-link {
  padding-right: 15px;
  margin-right: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #575d6c;
  position: relative;
}
.learning-crumbs-link::after {
  content: ">";
  position: absolute;
  right: 0;
}
.learning-crumbs-link:last-child {
  padding-right: 0;
  margin-right: 0;
}
.learning-crumbs-link:last-child::after {
  content: "";
}
.learning-title {
  margin-top: 40px;
  text-align: left !important;
}
.learning-option-card {
  margin-top: 20px;
  width: 100%;
  min-height: 268px;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
}
.learning-resource-body {
  background: #f7f7f7;
}
.learning-option-row {
  display: flex;
}
.learning-option-title {
  font-size: 16px;
  color: #252b3a;
}
.learning-option-content {
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
  width: calc(85% - 100px);
}
.learning-option-content label {
  display: flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #252b3a;
}
.learning-option-col5 label {
  width: 20%;
}
.learning-option-content label input {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.learning-num-title {
  font-size: 16px;
  color: #252b3a;
  margin-top: 60px;
}
.learning-item-list {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
}
.learning-item-box {
  display: block !important;
  width: calc((100% - 120px) / 4);
  margin-right: 40px;
  margin-bottom: 40px;
}
.learning-item-box:nth-child(4n) {
  margin-right: 0;
}
.learning-item-img {
  width: 100%;
}
.learning-item-cont {
  height: 160px;
  padding: 20px 20px 0 20px;
  background: #ffffff;
  box-shadow: 0px 4px 34px 0px rgba(209, 216, 227, 0.4);
  border-radius: 0px 0px 12px 12px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.learning-item-box:hover .learning-item-cont {
  box-shadow: 0px 8px 34px 0px rgba(209, 216, 227, 0.7);
}
.learning-item-name {
  font-size: 22px;
  color: #252b3a;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.learning-item-text {
  padding-top: 30px;
  font-size: 16px;
  color: #575d6c;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.learning-item-box:hover .learning-item-text {
  color: #0086f1;
}
.learning-pages-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learning-pages-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.learning-pages-text {
  font-size: 16px;
  color: #252b3a;
}
.learning-resource-main {
  padding-bottom: 110px;
}
.learning-pages-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.learning-pages-num {
  font-size: 16px;
  color: #252b3a;
  margin: 0 30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.learning-pages-num:hover,
.learning-pages-on {
  color: #0086f1;
}
.learning-pages-prev {
  width: 7px;
  height: 10px;
  margin: 0 30px;
  background: url(../../img2025/renzheng2025/info/btn-info-left-nor.png) no-repeat;
  background-size: 100% 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.learning-pages-prev:hover {
  background: url(../../img2025/renzheng2025/info/btn-info-left-sel.png) no-repeat;
  background-size: 100% 100%;
}
.learning-pages-next {
  width: 7px;
  height: 10px;
  margin: 0 30px;
  background: url(../../img2025/renzheng2025/info/btn-info-right-nor.png) no-repeat;
  background-size: 100% 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.learning-pages-next:hover {
  background: url(../../img2025/renzheng2025/info/btn-info-right-sel.png) no-repeat;
  background-size: 100% 100%;
}
.learning-pages-text {
  margin-right: 20px;
}
/* 下拉菜单样式 */
.learning-dropdown {
  position: relative;
  display: inline-block;
}

.learning-dropdown-btn {
  font-size: 16px;
  cursor: pointer;
  box-sizing: border-box;
  width: 128px;
  height: 41px;
  border-radius: 4px;
  border: 1px solid #575d6c;
  margin: 0 30px 0 0;
  padding-right: 30px;
  position: relative;
  background: none;
}
.learning-dropdown-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  width: 12px;
  height: 5px;
  background: url(../../img2025/renzheng2025/info/btn-info-bottom.png) no-repeat;
  background-size: 100% 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.learning-dropdown-btn-show::after {
  transform: rotate(180deg); /* 旋转180度 */
}

.learning-dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 128px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 4px;
  margin-top: -1px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  top: 0;
  transform: translateY(-100%);
}

.learning-dropdown-content label {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #252b3a;
}
.learning-dropdown-content label input {
  opacity: 0;
}

.learning-dropdown-content label:hover {
  background-color: #f1f1f1;
}
.learning-pages-right {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #252b3a;
}
.learning-pages-right input {
  text-align: center;
  width: 60px;
  height: 41px;
  border-radius: 4px;
  border: 1px solid #575d6c;
  margin: 0 20px;
}
@media screen and (min-width: 1000px) and (max-width: 1699px) {
}

@media screen and (min-width: 1000px) and (max-width: 1499px) {
  .authentication-info-card {
    padding: 30px 40px;
    margin-top: 40px;
  }
  .info-item-name {
    font-size: 20px;
  }
  .info-item-decs {
    margin-top: 5px;
  }
  .info-item-text {
    padding-left: 20px;
  }
  .info-table-box {
    padding-top: 40px;
  }
  .info-table-box:last-child {
    padding-bottom: 40px;
  }
  .learning-option-content label {
    margin-right: 30px;
  }
  .learning-option-col5 label {
    width: 25%;
    margin-right: 0;
  }
  .learning-option-content {
    width: calc(100% - 100px);
  }
  .learning-item-box {
    display: block !important;
    width: calc((100% - 80px) / 4);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .learning-item-name {
    font-size: 18px;
    color: #252b3a;
  }
  .learning-item-cont {
    height: 140px;
  }
  .learning-item-text {
    padding-top: 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1399px) and (max-width: 1499px) {
}
@media screen and (min-width: 1000px) and (max-width: 1399px) {
}
@media screen and (min-width: 1000px) and (max-width: 1249px) {
}
@media screen and (min-width: 1000px) and (max-width: 1149px) {
}
@media screen and (max-width: 999px) {
  .authentication-info-card {
    flex-direction: column;
    padding: 30px 20px;
    margin-top: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .authentication-info-item {
    width: 100%;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(209, 219, 228, 0.5);
  }
  .authentication-info-item:nth-child(2n) {
    padding-left: 0;
    margin-top: 20px;
    padding-bottom: 0;
    border-bottom: 0px solid rgba(209, 219, 228, 0.5);
  }
  .info-item-text {
    padding-left: 20px;
  }
  .authentication-info-top {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .info-table-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .info-table-header-text {
    font-weight: bold;
    font-size: 16px;
  }
  .authentication-info-btn {
    width: 120px;
    height: 36px;
    font-size: 14px;
    margin-right: 10px;
  }
  .info-btn-box {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
    /* padding-bottom: 20px; */
  }
  .info-table-header-text p {
    margin-bottom: 20px;
  }
  .authentication-table th,
  .authentication-table td {
    font-size: 12px;
    padding: 10px;
  }
  .authentication-table td {
    width: 5% !important;
  }
  .authentication-table td:nth-child(1) {
    width: 3% !important;
  }
  .authentication-table td:nth-child(2) {
    width: 5% !important;
  }
  .authentication-table {
    table-layout: auto;
  }
  .table-scroll-wrapper {
    margin-top: 0;
  }
  .authentication-banner-main {
    top: 35%;
  }
  .authentication-table-title {
    font-size: 15px !important;
  }
  .info-table-box {
    padding-top: 40px;
  }
  .info-table-box:last-child {
    padding-bottom: 40px;
  }
  .learning-option-card {
    min-height: 268px;
    padding: 20px;
  }
  .learning-title {
    margin-top: 30px;
  }
  .learning-num-title {
    margin-top: 30px;
  }
  .learning-item-box {
    display: block !important;
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .learning-option-content {
    width: calc(100% - 80px);
  }
  .learning-item-box:nth-child(2n) {
    margin-right: 0;
  }
  .learning-option-content label {
    font-size: 14px;
  }
  .learning-option-col5 label {
    width: 33.3%;
    margin-right: 0;
  }
  .learning-pages-num {
    margin: 0 15px;
    font-size: 18px;
  }
  .learning-pages-prev,
  .learning-pages-next {
    margin: 0 15px;
    font-size: 18px;
  }
  .learning-resource-main {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 499px) {
  .learning-option-title {
    font-size: 14px;
  }
  .learning-option-content {
    padding-left: 10px;
    width: calc(100% - 70px);
  }
  .learning-option-content label {
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .learning-option-row {
    margin-bottom: 10px;
  }
  .learning-option-col5 label {
    width: auto;
  }
  .learning-item-box {
    display: block !important;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .learning-item-list {
    padding: 20px 0;
  }
  .learning-item-name {
    font-size: 18px;
  }
  .learning-item-cont {
    height: auto;
    padding: 14px;
  }
  .learning-item-text {
    font-size: 14px;
    padding: 20px 0 0;
  }
  .learning-pages-num {
    font-size: 16px;
  }
  .learning-pages-prev,
  .learning-pages-next {
    font-size: 16px;
  }
}
