/** 导航-常见问题hover展示 直播日常更新时需删除 **/
#root .nav-wrap > div > ul > li:nth-child(5):hover .hover-content {
  display: flex;
}

#root .nav-wrap > div > ul > li:nth-child(5) .hover-content {
  width: 258px;
  height: 104px;
  align-items: center;
  color: #03234b;
  font-size: 14px;
  line-height: 20px;
  padding: 12px;
  left: -93px;
}

#root .nav-wrap > div > ul > li:nth-child(5) .hover-content img {
  width: 80px;
  height: 80px;
  margin-right: 8px;
}

#root .nav-wrap > div > ul > li:nth-child(5) .hover-content p {
  font-weight: 400;
}

/** end **/

#root .part-solution {
  background: #eef1f3;
}

#root .part-solution .part-title {
  color: #03234b;
}

#root .part-solution .solution-groups > .solution-group:not(:last-child) {
  margin-bottom: 80px;
}

#root .part-solution .solution-group-header {
  background: #ffd202;
  padding: 30px 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 48px;
  color: #03234b;
  text-align: center;
}

#root .part-solution .solution-group-body {
  background: #fff;
  padding: 40px;
}

#root .part-solution .solution-group:last-child .solution-group-body {
  padding: 0;
}

#root .part-solution .solution-category:not(:last-child) {
  margin-bottom: 16px;
}

#root .part-solution .solution-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1120px;
  padding: 20px 32px;
  background: #eef1f3;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: pointer;
}

#root .part-solution .solution-category-header:hover {
  background: #f7f8fa;
}

#root .part-solution .solution-category-header.is-active {
  background: #03234b;
}

#root .part-solution .solution-category-header.is-active:hover {
  background: #03234b;
}

#root .part-solution .solution-category-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #03234b;
}

#root
  .part-solution
  .solution-category-header.is-active
  .solution-category-title {
  color: #ffd200;
}

#root .part-solution .solution-category-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  color: #03234b;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

#root
  .part-solution
  .solution-category-header.is-active
  .solution-category-arrow {
  color: #ffd200;
  transform: rotate(270deg);
}

#root .part-solution .solution-category-panel {
  width: 1120px;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

#root .part-solution .solution-category-panel.is-open {
  max-height: 400px;
  opacity: 1;
  padding: 16px 8px 8px;
}

#root .part-solution .solution-grid {
  display: flex;
  flex-wrap: wrap;
}

#root .part-solution .solution-grid > .solution-item {
  position: relative;
  width: 346px;
  min-height: 72px;
  margin-right: 24px;
  margin-bottom: 16px;
  padding: 12px 32px;
  background: #eef1f3;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default;
}

#root .part-solution .solution-grid > .solution-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ffd202;
  border-radius: 8px 0 0 8px;
  opacity: 0;
}

#root .part-solution .solution-grid > .solution-item:hover {
  background: #fffbe6;
}

#root .part-solution .solution-grid > .solution-item:hover::before {
  opacity: 1;
}

#root .part-solution .solution-item-text {
  margin: 0;
  width: 100%;
  max-width: 282px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #03234b;
  word-break: break-word;
}

#root .part-solution .solution-grid > .solution-item:nth-child(3n) {
  margin-right: 0;
}

#root .part-solution .solution-grid > .solution-item:nth-last-child(-n + 3) {
  margin-bottom: 0;
}

#root .part-solution .solution-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

#root .part-solution .solution-placeholder p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #74757c;
  text-align: center;
}

.success-modal .tip-title {
  display: flex;
  align-items: center;
  color: #3db4e6;
}

.success-modal .tip-title i {
  font-size: 26px;
  margin-right: 4px;
}
