main .banner {
  width: 100%;
  height: 100%;
  font-size: 0;
  position: relative;
}
main .banner img.bannerImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .banner .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
}
main .banner .content h4.title {
  font-size: 42px;
  font-family: PingFang SC-Semibold, PingFang SC;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
  margin-bottom: 40px;
}
main .banner .content h4.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(360deg, #2673DD 0%, rgba(61, 115, 214, 0) 100%);
}
main .banner .content .search {
  width: 520px;
  height: 40px;
  border-radius: 5px 5px 5px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .banner .content .search input {
  flex: 1;
  height: 100%;
  border-radius: 5px 0px 0px 5px;
  box-sizing: border-box;
  padding: 5px 20px;
  font-size: 16px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #000;
}
main .banner .content .search input::placeholder {
  color: #CCCCCC;
}
main .banner .content .search button {
  width: 120px;
  height: 40px;
  background: #2673DD;
  border-radius: 0px 5px 5px 0px;
  border: none;
  font-size: 18px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
}
main .container {
  position: relative;
  min-height: 400px;
}
main .container .moudle {
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
main .container .moudle .tips {
  width: 100%;
  height: 100%;
  font-size: 36px;
  color: #055CFF;
}
main .container .moudle .tips .iconfont {
  font-size: 36px;
}
main .container .moudle.show {
  display: block !important;
}
main .container h4.title {
  font-size: 36px;
  font-family: PingFang SC-Semibold, PingFang SC;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 60px;
}
main .container .frequently {
  width: 100%;
  margin-bottom: 60px;
}
main .container .frequently .list {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
main .container .frequently .list a {
  display: inline-block;
  width: 30%;
  margin-bottom: 40px;
  font-size: 16px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #666666;
  line-height: 1.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
main .container .frequently .list a:hover {
  color: #2673DD;
}
main .container .frequently .list a:nth-child(3n+2) {
  margin: 0 5% 40px;
}
main .container .questionType .list {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
main .container .questionType .list .item {
  width: 350px;
  height: 120px;
  background: #Fff;
  box-shadow: 0px 3px 20px 1px rgba(0, 0, 0, 0.05);
  border-radius: 16px 16px 16px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 65px;
}
main .container .questionType .list .item:nth-child(3n+2) {
  margin: 0 60px 65px;
}
main .container .questionType .list .item .left {
  width: 33px;
  height: 33px;
  background: #488CF7;
  border-radius: 6px 6px 6px 6px;
  margin-right: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .container .questionType .list .item .left img {
  width: 20px;
  height: 20px;
}
main .container .questionType .list .item .right {
  width: 200px;
}
main .container .questionType .list .item .right .title {
  font-size: 20px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
  margin-bottom: 15px;
}
main .container .questionType .list .item .right .tips {
  width: 100%;
  font-size: 16px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
main .container .questionType .list .item .right .tips:hover {
  color: #488CF7;
}
main .container .questionType .list .item:hover {
  background: linear-gradient(0deg, #F6FBFF 0%, #BDD9FB 100%);
}
