@charset "UTF-8";
body {
  user-select: none;
}

.moudleTitle {
  font-size: 32px;
  font-weight: 400;
  color: #282828;
  line-height: 45px;
  text-align: center;
  padding-top: 50px;
}

.headerCon {
  height: 320px;
  background: #fff url(../img/help_banner1.png) no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.headerCon .container {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headerCon .container .title {
  font-size: 40px;
  line-height: 56px;
  margin-top: 72px;
}

.headerCon .container .inputCon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  position: relative;
}

.headerCon .container .inputCon input {
  width: 594px;
  height: 56px;
  border-radius: 2px 0px 0px 2px;
  outline: none;
  border: none;
  text-indent: 20px;
  font-size: 15px;
  line-height: 21px;
}

.headerCon .container .inputCon input::placeholder {
  font-size: 15px;
  color: #999999;
}

.headerCon .container .inputCon input:focus ~ .resList {
  display: block;
}

.headerCon .container .inputCon button {
  cursor: pointer;
  width: 100px;
  height: 56px;
  background: #0990EE;
  border-radius: 0px 2px 2px 0px;
  border: none;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 28px;
}

.headerCon .container .inputCon button:hover {
  background: #0486E4;
}

.headerCon .container .inputCon .resList {
  display: none;
  z-index: 2;
  box-sizing: border-box;
  max-height: 352px;
  width: 594px;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px 0px rgba(178, 178, 178, 0.2);
  border-radius: 0px 0px 2px 2px;
  border: 1px solid #E5E8EC;
  position: absolute;
  left: 0;
  top: 56px;
  overflow-y: scroll;
}

.headerCon .container .inputCon .resList:hover {
  display: block !important;
}

.headerCon .container .inputCon .resList:empty {
  border: none;
}

.headerCon .container .inputCon .resList::-webkit-scrollbar {
  width: 6px;
  background: #fff;
  border-radius: 10px;
  /*外层轨道*/
}

.headerCon .container .inputCon .resList::-webkit-scrollbar-thumb {
  background: #E2E3E4;
  border-radius: 3px;
  /*内层轨道*/
}

.headerCon .container .inputCon .resList li {
  height: 50px;
  color: #666;
  line-height: 50px;
  text-indent: 20px;
  cursor: pointer;
  font-size: 15px;
}

.headerCon .container .inputCon .resList li span {
  color: #0990EE;
}

.headerCon .container .inputCon .resList li:hover {
  background-color: #FAFBFC;
}

.headerCon .container .advise {
  width: 694px;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  line-height: 22px;
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.headerCon .container .advise a {
  color: #FFFFFF;
  margin-right: 20px;
}

.headerCon .container .advise a:hover {
  color: #0990EE;
}

.hotQuestionCon {
  height: 341px;
  background: #FFFFFF;
}

.hotQuestionCon .container .title {
  text-align: center;
  font-size: 32px;
  padding-top: 50px;
  color: #282828;
  line-height: 45px;
}

.hotQuestionCon .container .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  margin-top: 40px;
  height: 169px;
}

.hotQuestionCon .container .list li {
  flex: 1;
  padding-left: 84px;
  position: relative;
  cursor: pointer;
}

.hotQuestionCon .container .list li:hover .name {
  color: #0990EE;
}

.hotQuestionCon .container .list li::before {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  left: 40px;
  top: 0;
  background: url(../img/icon_question.png) no-repeat;
  background-size: 100%;
}

.hotQuestionCon .container .list li .name {
  font-size: 17px;
  color: #282828;
  line-height: 24px;
  width: 327px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hotQuestionCon .container .list li .answer {
  width: 282px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  color: #999999;
  line-height: 21px;
  margin-top: 12px;
  padding-bottom: 13px;
}

.commonQuestionCon {
  height: 428px;
  background: #F6F8FB;
}

.commonQuestionCon .container .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.commonQuestionCon .container .list > li {
  margin-top: 30px;
  box-sizing: border-box;
  padding: 30px;
  width: 406px;
  height: 247px;
  background: #FFFFFF;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.08);
}

.commonQuestionCon .container .list > li:hover {
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

.commonQuestionCon .container .list > li .title {
  font-size: 18px;
  color: #282828;
  line-height: 25px;
  position: relative;
  padding-left: 18px;
}

.commonQuestionCon .container .list > li .title::before {
  content: '';
  width: 3px;
  height: 17px;
  background: #EE2A4A;
  position: absolute;
  left: 0;
  top: 4px;
}

.commonQuestionCon .container .list > li .abstractQue {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

.commonQuestionCon .container .list > li .abstractQue a {
  font-size: 14px;
  color: #282828;
  line-height: 20px;
  margin-top: 14px;
  cursor: pointer;
}

.commonQuestionCon .container .list > li .abstractQue a:hover {
  color: #0990EE;
}

.serviceChannelCon {
  background: #FFFFFF;
}

.serviceChannelCon .container .tabCon {
  height: 510px;
  margin-top: 34px;
}

.serviceChannelCon .container .tabCon .tabList {
  display: flex;
  border-bottom: 1px solid #E5E8EC;
}

.serviceChannelCon .container .tabCon .tabList li {
  font-size: 16px;
  color: #282828;
  line-height: 22px;
  margin-right: 63px;
  cursor: pointer;
  transform: translateY(1px);
}

.serviceChannelCon .container .tabCon .tabList li.curr {
  color: #0990EE;
}

.serviceChannelCon .container .tabCon .tabList li.curr:after {
  content: '';
  display: block;
  width: 96px;
  height: 3px;
  background: #0990EE;
  margin-top: 11px;
}

.serviceChannelCon .container .tabCon .tabContent {
  display: none;
  padding-bottom: 50px;
}

.serviceChannelCon .container .tabCon .tabContent.curr {
  display: block;
}

.serviceChannelCon .container .tabCon .onlineContent {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.serviceChannelCon .container .tabCon .onlineContent li {
  margin-top: 31px;
  box-sizing: border-box;
  padding: 30px;
  width: 625px;
  height: 180px;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px 0px rgba(178, 178, 178, 0.2);
  border: 1px solid #E5E8EC;
  background: url(../img/help_img_line.png) no-repeat;
  background-size: 432px 80px;
  background-position: top right;
}

.serviceChannelCon .container .tabCon .onlineContent li:hover {
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

.serviceChannelCon .container .tabCon .onlineContent li .title {
  font-size: 20px;
  font-weight: 600;
  color: #282828;
  line-height: 28px;
  padding-bottom: 11px;
}

.serviceChannelCon .container .tabCon .onlineContent li .item {
  line-height: 27px;
}

.serviceChannelCon .container .tabCon .branch {
  user-select: none;
  box-sizing: border-box;
  margin-top: 31px;
  height: 389px;
  border: 1px solid #E5E8EC;
  background: url(../img/help_img_map.png) no-repeat;
  background-size: 680px 388px;
  background-position: 510px 0;
  padding: 66px 0 0 80px;
  color: #282828;
}

.serviceChannelCon .container .tabCon .branch .name {
  font-size: 28px;
  line-height: 40px;
}

.serviceChannelCon .container .tabCon .branch .dataCon {
  margin-top: 46px;
  display: flex;
}

.serviceChannelCon .container .tabCon .branch .dataCon li {
  display: flex;
  flex-direction: column;
  margin-right: 73px;
}

.serviceChannelCon .container .tabCon .branch .dataCon li .nu {
  font-size: 30px;
  font-weight: 500;
  color: #0990EE;
  line-height: 42px;
}

.serviceChannelCon .container .tabCon .branch .dataCon li .for {
  font-size: 16px;
  line-height: 22px;
  margin-top: 5px;
}

.serviceChannelCon .container .tabCon .branch .desc {
  width: 288px;
  height: 40px;
  border: 1px solid #E5E8EC;
  margin-top: 38px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.supervise {
  background: #F6F8FB;
}

.supervise .container .title {
  padding-top: 40px;
  font-size: 20px;
  color: #282828;
  line-height: 28px;
}

.supervise .container .mainCon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666666;
  line-height: 27px;
  padding-bottom: 50px;
  margin-top: 12px;
}

.supervise .container .mainCon p {
  width: 812px;
}

.supervise .container .mainCon .splitLine {
  width: 1px;
  height: 98px;
  background: #E5E8EC;
}

.supervise .container .mainCon .contact {
  width: 338px;
  position: relative;
}

.rightArrowMore {
  font-size: 14px;
  color: #0990EE;
  line-height: 20px;
  margin-top: 24px;
  cursor: pointer;
}

.rightArrowMore i {
  font-size: 12px;
  display: inline-block;
  margin-left: 2px;
  width: 12px;
  height: 7px;
  transition: all 0.2s;
}

.rightArrowMore:hover i {
  transform: translateX(5px);
}

.blueLink {
  color: #0990EE;
  cursor: pointer;
}
