.level_title {
  width: 100%; }
  .level_title h3 {
    text-align: center;
    font-size: 30px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 33px; }
  .level_title .line {
    width: 60px;
    height: 3px;
    background: #23b396;
    margin: 16px auto; }
  .level_title .sub {
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    text-align: center; }

.level_title.white h3 {
  color: #fff;
  font-weight: 400; }
.level_title.white .line {
  background: #fff; }
.level_title.white .sub {
  color: #fff; }

.common_problem {
  width: 100%;
  padding: 75px 0 45px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative; }
  .common_problem .problem_wrap {
    width: 100%;
    position: relative; }
  .common_problem h3 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 30px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333; }
  .common_problem .title_wrap, .common_problem .answer {
    width: 100%;
    display: flex;
    justify-content: space-around; }
  .common_problem .title_wrap {
    margin-bottom: 50px; }
  .common_problem .title {
    width: 345px;
    display: flex;
    justify-content: flex-start; }
    .common_problem .title .icon {
      width: 30px;
      height: 30px;
      color: #e6e6e6;
      background: #c8c8c8;
      border-radius: 50%;
      text-align: center;
      flex-shrink: 0;
      line-height: 30px;
      margin-right: 10px;
      font-size: 20px; }
    .common_problem .title .content {
      font-size: 22px;
      font-family: Microsoft YaHei;
      font-weight: 400;
      color: #333333; }
    .common_problem .title .responce {
      font-size: 18px;
      font-family: Microsoft YaHei;
      font-weight: 400;
      color: #666666;
      line-height: 30px; }
  .common_problem .line {
    width: 1px;
    position: absolute;
    background: #d2d2d2;
    top: 0;
    height: 100%; }
  .common_problem .line:nth-of-type(1) {
    left: 33%; }
  .common_problem .line:nth-of-type(2) {
    left: 66%; }

.custom_select {
  width: 100%;
  height: 100%;
  position: relative; }
  .custom_select .select_wrap {
    width: 250px;
    font-size: 14px;
    height: 26px;
    line-height: 24px;
    text-indent: 1em;
    border: 1px solid #cccccc;
    outline: 0;
    color: #333;
    cursor: pointer;
    position: relative;
    z-index: 10;
    padding-bottom: 1px; }
  .custom_select .select_wrap:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 3px 1px #20B09F;
    color: #20B09F;
    padding-bottom: 0px; }
    .custom_select .select_wrap:focus + .icon {
      border-top-color: #20B09F; }
  .custom_select .icon {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    position: absolute;
    border-top-color: #333;
    top: 50%;
    margin-top: -2.5px;
    left: 230px;
    z-index: 11;
    pointer-events: none; }
  .custom_select .options_list {
    width: calc(100% + 2px);
    height: auto;
    max-height: 300px;
    position: absolute;
    left: 0;
    top: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    z-index: 12;
    cursor: pointer;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3);
    display: none; }
  .custom_select .options {
    width: 100%;
    display: flex;
    align-items: center;
    height: 28px; }
    .custom_select .options span {
      width: 100%;
      height: 100%;
      display: inline-block;
      text-overflow: ellipsis;
      white-space: nowrap;
      word-break: break-all;
      overflow: hidden;
      color: #20B09F;
      font-size: 14px;
      text-indent: 1em; }
  .custom_select .options.hover, .custom_select .options:hover {
    background: #20B09F; }
    .custom_select .options.hover span, .custom_select .options:hover span {
      color: #fff; }

.custom_checkbox input, .custom_radio input {
  opacity: 0;
  width: 0;
  height: 0; }
.custom_checkbox label, .custom_radio label {
  font-size: 14px;
  line-height: 1; }
.custom_checkbox .check, .custom_radio .check {
  display: none;
  font-size: 10px;
  line-height: 12px;
  vertical-align: super;
  color: #fff;
  font-weight: 600;
  transform: scale(1.6, 0.9);
  text-align: center; }

.custom_checkbox .icon {
  display: inline-block;
  position: relative;
  border: 1px solid #666666;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  background-color: #fff;
  z-index: 1;
  -webkit-transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  transition: border-color .25s;
  vertical-align: text-top;
  margin-top: 2px; }
.custom_checkbox .icon::after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  content: "";
  border: 2px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 3px;
  position: absolute;
  top: 0px;
  -webkit-transform: rotate(45deg) scaleY(0);
  transform: rotate(45deg) scaleY(0);
  width: 4px;
  -webkit-transition: -webkit-transform .15s ease-in .05s;
  transition: -webkit-transform .15s ease-in .05s;
  transition: transform .15s ease-in .05s;
  transition: transform .15s ease-in .05s,-webkit-transform .15s ease-in .05s;
  -webkit-transform-origin: center;
  transform-origin: center; }
.custom_checkbox input[type=checkbox]:checked + .icon {
  background: #20b09f;
  border-color: #20b09f; }
.custom_checkbox input[type=checkbox]:checked + .icon::after {
  transform: rotate(45deg) scaleY(1);
  -webkit-transform: rotate(45deg) scaleY(1); }

.custom_radio .icon {
  display: inline-block;
  position: relative;
  border: 1px solid #666666;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  background-color: #fff;
  z-index: 1;
  -webkit-transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  transition: border-color .25s;
  vertical-align: text-top;
  margin-top: 2px; }
.custom_radio .icon::after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  content: "";
  border: 2px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 3px;
  position: absolute;
  top: 0px;
  -webkit-transform: rotate(45deg) scaleY(0);
  transform: rotate(45deg) scaleY(0);
  width: 4px;
  -webkit-transition: -webkit-transform .15s ease-in .05s;
  transition: -webkit-transform .15s ease-in .05s;
  transition: transform .15s ease-in .05s;
  transition: transform .15s ease-in .05s,-webkit-transform .15s ease-in .05s;
  -webkit-transform-origin: center;
  transform-origin: center; }
.custom_radio input[type=radio]:checked + .icon {
  background: #20b09f;
  border-color: #20b09f; }
.custom_radio input[type=radio]:checked + .icon::after {
  transform: rotate(45deg) scaleY(1);
  -webkit-transform: rotate(45deg) scaleY(1); }

/*# sourceMappingURL=components.css.map */
