/* 智能报告页面 */

.header {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}

.header img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.banner-text {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.banner-text h2 {
  color: rgba(0, 68, 139, 1);
  font-size: 48px;
  text-align: center;
  font-family: PingFangSC-Semibold;
  margin-bottom: 0;
}

.banner-text p {
  line-height: 52px;
  color: rgba(78, 89, 102, 1);
  font-size: 20px;
  font-family: PingFangSC-Regular;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin: 0 50px;
  /* 添加以下属性，创建一个透明的"桥梁"区域 */
  padding-bottom: 12px;
  /* 与原来dropdown-content的margin-top相同 */
}

.dropbtn {
  color: #0858AB;
  font-weight: bold;
  margin: 0 14px;
  font-size: 18px;
  text-align: center;
  font-family: PingFangSC-Semibold;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
  background-color: transparent;
  border: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 6px;
  box-shadow: 0px 2px 10px -2px rgba(0, 68, 139, 0.3);
  z-index: 1;
  padding: 10px 0;
  /* 修改以下属性 */
  margin-top: 12px;
  /* 保持原来的间隙 */
  top: 100%;
  /* 确保下拉菜单在按钮下方 */
  left: 0;
  /* 确保下拉菜单与按钮左对齐 */
  min-width: 100%;
  /* 确保下拉菜单宽度不小于按钮 */
}

.dropdown-content a {
  color: #4E5966;
  padding: 6px 20px;
  font-size: 14px;
  font-family: PingFangSC-Regular;
  display: block;
  /* 确保链接占据整行 */
}

.dropdown-content a.active , .dropdown-content a:hover {
  color: #1377DF;
}

/* 修改hover效果，确保整个下拉区域都能保持展开状态 */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

/* 添加一个透明的"桥梁"元素，连接按钮和下拉菜单 */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  /* 与间隙大小相同 */
  background-color: transparent;
  z-index: 2;
  /* 确保它在下拉菜单上方 */
}

.report-content {
  margin: 0 auto;
}

.report-content section {
  padding: 80px 0 0;
  text-align: center;
}

.report-content h2 {
  color: rgba(31, 42, 54, 1);
  font-size: 36px;
  text-align: center;
  font-family: PingFangSC-Regular;
  font-weight: normal;
  margin: 0;
}

.comparison-section,
.process-section {
  background-color: #fff;
}

.comparison-section img {
  width: 1000px;
  margin: 80px auto 85px;
}

.scenarios-section {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 20%, #EBEFFC 70%, rgba(220, 231, 246, 0.40) 100%);
}

.scenarios-section img {
  margin: 50px 10px 66px;
  width: 324px;
  height: 424px;
}

.data-section .data-stats {
  max-width: 100%;
  height: 120px;
  margin: 42px 0 0px;
}

.data-section .section-title p {
  margin: 0;
  line-height: 30px;
  color: rgba(128, 136, 145, 1);
  font-size: 18px;
  font-family: PingFangSC-Regular;
}

.data-section .tips {
  color: rgba(51, 142, 238, 1);
  font-size: 14px;
  margin: 0;
  font-family: AlibabaPuHuiTi-Regular;
}

.data-section .description {
  color: rgba(128, 136, 145, 1);
  font-size: 14px;
  margin: 0;
  font-family: AlibabaPuHuiTi-Regular;
}

.data-section .bank-logos {
  max-width: 100%;
  height: 56px;
  margin: 40px 0 80px;
}

.process-section p {
  line-height: 30px;
  color: rgba(128, 136, 145, 1);
  font-size: 18px;
  margin: 0;
  font-family: PingFangSC-Regular;
}

.process-section .step {
  height: 346px;
  margin-top: 69px;
}

.process-section .cta-button {
  display: inline-block;
  padding: 12px 32px;
  margin: 56px 0 80px;
  border-radius: 4px;
  background-color: rgba(19, 119, 223, 1);
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  text-align: left;
  font-family: PingFangSC-Regular;
}