.table {
  width: 100%;
  border-top: 1px solid #fed136;
}

@media screen and (max-width: 568px) {
  .table {
    width: calc( 100% + 40px );
    margin-left: -20px;
  }
}

.table th {
  background-color: rgba(254, 209, 54, 0.6);
  height: 60px;
  border-bottom: 1px solid #fed136;
  color: #666;
  font-weight: normal;
}

.table td {
  text-align: center;
  height: 50px;
  border-bottom: 1px solid #f0f0f0;
  color: #888;
}

.table td a {
  color: #888;
}

.table td a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 568px) {
  .table .date {
    font-size: 12px;
  }
}

.sub__top__bg {
  background-image: url("/resources/imgs/question/bg_top.jpg");
}

.wrap__contact {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 568px) {
  .wrap__contact {
    display: block;
  }
}

.wrap__number {
  padding: 24px 80px;
  border-left: 1px solid #adadad;
  text-align: center;
  width: 100%;
}

.wrap__number:first-child {
  border-left: none;
}

.wrap__number i {
  font-size: 56px;
}

.wrap__number .contact__title {
  font-size: 32px;
  font-weight: bold;
  padding: 24px 0 16px;
}

.wrap__number .contact__desc {
  font-size: 20px;
}

@media screen and (max-width: 568px) {
  .wrap__number {
    border-left: none;
    border-top: 1px solid #adadad;
    padding: 24px 12px;
  }

  .wrap__number:first-child {
    border-top: none;
  }

  .wrap__number i {
    font-size: 48px;
  }

  .wrap__number .contact__title {
    font-size: 24px;
    font-weight: bold;
    padding: 24px 0 16px;
  }

  .wrap__number .contact__desc {
    font-size: 16px;
  }
}

.wrap__form {
  display: flex;
  justify-content: space-between;
}

.wrap__form > div {
  width: 100%;
  padding: 0 30px;
}

.wrap__form .right__area {
  border-left: 1px solid #f0f0f0;
}

@media screen and (max-width: 568px) {
  .wrap__form {
    display: block;
  }

  .wrap__form .right__area {
    border-top: 1px solid #f0f0f0;
    margin-top: 60px;
    padding-top: 60px;
    border-left: none;
  }

  .wrap__form > div {
    padding: 0;
  }
}

.question__form .form__item {
  padding-bottom: 20px;
}

.question__form .question__label {
  font-size: 18px;
  display: block;
  padding-bottom: 4px;
}

.question__form .question__input {
  border: 1px solid #adadad;
  height: 50px;
  width: 60%;
  padding-left: 10px;
  font-size: 16px;
}

.question__form .question__content {
  border: 1px solid #adadad;
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
  max-height: 250px;
  min-height: 250px;
  padding: 20px 24px;
  font-size: 20px;
}

.question__complete {
  font-size: 20px;
}

.confirm__form {
  background-color: #f0f0f0;
  text-align: center;
  padding: 30px 0;
}

.question__write__btn {
  margin: 32px auto 0;
  display: block;
  height: 50px;
  line-height: 48px;
  width: 240px;
  text-align: center;
  border: 1px solid #fed136;
  background-color: rgba(254, 209, 54, 0.9);
  box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.3);
  color: #666;
  font-size: 18px;
}

.question__write__btn:hover {
  background-color: #fed136;
}

.my__question__content {
  text-align: left;
  padding: 0 20px;
}

.my__question__content .name {
  font-size: 24px;
  padding-bottom: 16px;
}

.my__question__content .question__text {
  background-color: #fff;
  font-size: 18px;
}

.my__question__content .question__item {
  margin-top: 12px;
  word-break: break-all;
  line-height: 2;
}

.my__question__content .question__item .state {
  font-size: 12px;
  border: 1px solid #000;
  border-radius: 12px;
  margin-right: 8px;
  padding: 4px 8px;
}

.my__question__content .question__item .date {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #adadad;
  font-size: 18px;
}

.my__question__content .question__item .select__input {
  display: none;
}

.my__question__content .question__item .wrap__question__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height, 0.4s;
  margin-top: 10px;
}

.my__question__content .question__item .select__input:checked + .wrap__question__content {
  max-height: 500px;
  overflow: auto;
}

.my__question__content .question__item .question__text {
  padding: 8px 16px;
}

.my__question__content .question__item .answer__text {
  border: 1px solid #000;
  padding: 8px 16px;
  margin-top: 12px;
}

