@charset "UTF-8";
.questionsPanlCon {
  margin: 20px 0;
}

.questionsPanlCon .container {
  background: #FFFFFF;
  height: 742px;
  display: flex;
  position: relative;
  color: #282828;
}

.questionsPanlCon .container .searchCon {
  position: relative;
  position: absolute;
  right: 0;
  top: -72px;
}

.questionsPanlCon .container .searchCon input {
  width: 300px;
  height: 34px;
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #E2E3E4;
  font-size: 14px;
  text-indent: 10px;
}

.questionsPanlCon .container .searchCon input::placeholder {
  color: #999999;
}

.questionsPanlCon .container .searchCon img {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  right: 10px;
  top: 5px;
  user-select: none;
  cursor: pointer;
}

.questionsPanlCon .container .left {
  user-select: none;
  width: 230px;
  box-sizing: border-box;
  border-right: 1px solid #E2E3E4;
  padding: 20px;
}

.questionsPanlCon .container .left .back {
  font-size: 14px;
  color: #0990EE;
  line-height: 20px;
  display: flex;
  align-items: center;
}

.questionsPanlCon .container .left .back::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 12px;
  background: url(../img/icon_arrow_back.png) no-repeat;
  background-size: 100% 100%;
  margin-right: 4px;
}

.questionsPanlCon .container .left .typeCon {
  box-sizing: border-box;
  margin-top: 34px;
}

.questionsPanlCon .container .left .typeCon .title {
  font-size: 16px;
  font-weight: 600;
  color: #282828;
  line-height: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E2E3E4;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li {
  padding: 15px 0;
  color: #282828;
  font-size: 14px;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li a {
  display: block;
  cursor: pointer;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li a:hover {
  color: #0990EE;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li a.curr {
  color: #0990EE;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li.hasSubMenu {
  position: relative;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li.hasSubMenu > a:after {
  content: '';
  transition: all .2s;
  display: block;
  width: 10px;
  height: 6px;
  background: url(../img/help_icon_arrow_down.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 22px;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li.hasSubMenu.open > a:after {
  transform: rotate(180deg);
  transform-origin: center center;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li.hasSubMenu .menuCon {
  display: none;
  margin-top: 15px;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li.hasSubMenu .menuCon li {
  padding: 15px 0;
  margin-left: 15px;
  color: #282828;
  font-size: 14px;
}

.questionsPanlCon .container .left .typeCon ul.menuCon > li.hasSubMenu .menuCon li:last-child {
  padding-bottom: 0px;
}

.questionsPanlCon .container .right {
  flex: 1;
  padding: 20px 0px 20px 20px;
}

.questionsPanlCon .container .right .title {
  font-size: 16px;
  color: #282828;
  line-height: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F3F6F9;
  margin-right: 20px;
}

.questionsPanlCon .container .right .title.classify {
  font-weight: bold;
}

.questionsPanlCon .container .right .questionsCon {
  overflow-y: overlay;
  max-height: calc(100% - 38px);
  padding-right: 20px;
}

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

.questionsPanlCon .container .right .questionsCon::-webkit-scrollbar-thumb {
  background: #E2E3E4;
  border-radius: 3px;
  /*内层轨道*/
}

.questionsPanlCon .container .right .questionsCon li {
  border-bottom: 1px solid #F3F6F9;
}

.questionsPanlCon .container .right .questionsCon li .name {
  font-size: 14px;
  color: #282828;
  line-height: 20px;
  padding: 15px 0;
  position: relative;
  user-select: none;
  cursor: pointer;
}

.questionsPanlCon .container .right .questionsCon li .name span {
  color: #0990EE;
}

.questionsPanlCon .container .right .questionsCon li .name:hover {
  background: #FAFBFC;
}

.questionsPanlCon .container .right .questionsCon li .name:after {
  content: '';
  transition: all .2s;
  display: block;
  width: 10px;
  height: 6px;
  background: url(../img/help_icon_arrow_down.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 22px;
  top: 24px;
}

.questionsPanlCon .container .right .questionsCon li .name.open {
  color: #0990EE;
}

.questionsPanlCon .container .right .questionsCon li .name.open:after {
  background: url(../img/help_icon_arrow_up.png) no-repeat;
  background-size: 100% 100%;
}

.questionsPanlCon .container .right .questionsCon li .name.curr {
  color: #0990EE;
}

.questionsPanlCon .container .right .questionsCon li .answer {
  display: none;
  margin-top: 5px;
  padding-bottom: 45px;
  font-size: 14px;
  color: #666666;
  line-height: 25px;
}

.questionsPanlCon .container .right .quesNone .adviseTitle {
  font-size: 16px;
  color: #282828;
  line-height: 22px;
  margin-top: 30px;
}

.questionsPanlCon .container .right .quesNone .adviseText {
  font-size: 14px;
  color: #666666;
  line-height: 25px;
  margin-top: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif !important;
}

.questionsPanlCon .container .right .quesNone .contactCon {
  margin-top: 64px;
  display: flex;
}

.questionsPanlCon .container .right .quesNone .contactCon > div {
  padding-left: 110px;
  padding-right: 60px;
  height: 85px;
}

.questionsPanlCon .container .right .quesNone .contactCon > div .tle {
  padding-bottom: 8px;
  font-size: 18px;
  color: #282828;
  line-height: 25px;
}

.questionsPanlCon .container .right .quesNone .contactCon .phoneService {
  background: url(../img/help_icon_phone.png) no-repeat;
  background-size: 80px 80px;
  background-position: 0 0;
  margin-left: 40px;
  border-right: 1px solid #E2E3E4;
}

.questionsPanlCon .container .right .quesNone .contactCon .phoneService .time {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
}

.questionsPanlCon .container .right .quesNone .contactCon .phoneService .phone {
  font-size: 18px;
  color: #0990EE;
  line-height: 25px;
  margin-top: 10px;
}

.questionsPanlCon .container .right .quesNone .contactCon .onlineService {
  background: url(../img/help_icon_service.png) no-repeat;
  background-size: 80px 80px;
  background-position: 0 0;
  margin-left: 60px;
}

.questionsPanlCon .container .right .quesNone .contactCon .onlineService .desc {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
}

.questionsPanlCon .container .right .quesNone .contactCon .onlineService button {
  width: 100px;
  height: 34px;
  background: #0990EE;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 10px;
}

.questionsPanlCon .container .right .quesNone .contactCon .onlineService button:hover {
  background-color: #0486E4;
}

.head-nav {
  display: none;
}
