.ask-module {
  margin-top: 30px;
  border: 1px solid #eaf4f7;
  font-size: 14px;
}
.ask-module .ask-module-top {
  padding: 30px 30px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-bottom: 1px solid #eaf4f7;
  line-height: 2;
}
.ask-module .ask-module-top-title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-right: 10px;
}
.ask-module .ask-module-top-title.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: red;
  left: 0;
  bottom: 0;
}
.ask-module .ask-question {
  padding: 30px;
}
.ask-module .askuser {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ask-module .askuser .askuser-image {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.ask-module .askuser .askuser-image img {
  width: 100%;
}
.ask-module .askuser .askuser-info {
  line-height: 1.5;
}
.ask-module .askuser .askuser-name {
  color: #333;
}
.ask-module .askuser .askuser-time {
  color: #999;
  font-size: 12px;
}
.ask-module .ask-question-title h1 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
}
.ask-module .ask-answer {
  position: relative;
}
.ask-module .ask-answer-item {
  padding: 30px;
  border-bottom: 1px solid #eaf4f7;
}
.ask-module .ask-answer-item .ask-answer-content {
  margin-top: 30px;
}
.ask-module .ask-answer-item .ask-answer-content p {
  line-height: 2.5;
}
.ask-module .ask-answer-item .ask-answer-content a {
  position: relative;
  color: #333 !important;
  border-bottom: 1px solid #c3c3c3;
}
.ask-module .ask-answer-item:last-child {
  border-bottom: 0;
}
.ask-module .answer-form {
  padding: 30px;
}
.form-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 20px;
}
.btn {
  line-height: 1.499;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  height: 32px;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.65);
  background-color: #fff;
  border: 1px solid #d9d9d9;
}
.btn:active,
.btn:focus,
.btn:hover {
  text-decoration: none;
  background: #fff;
}
.btn-primary {
  color: #fff;
  background-color: #1890ff;
  border-color: #1890ff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-primary:focus,
.btn-primary:hover {
  color: #fff;
  background-color: #40a9ff;
  border-color: #40a9ff;
}
.input {
  position: relative;
  display: inline-block;
  margin: 0;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-variant: tabular-nums;
  list-style: none;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
}
.input:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.input:focus,
.input:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.input:placeholder-shown {
  text-overflow: ellipsis;
}
textarea.input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  -webkit-transition: all 0.3s, height 0s;
  transition: all 0.3s, height 0s;
}
.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.form-sumbit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #999;
}
.form-sumbit a {
  text-decoration: underline;
  color: #1890ff;
}
.form-sumbit a:hover {
  color: red;
}
.ask-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
}
.ask-images .img-container {
  width: 33.33333333%;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ask-images .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ask-tab-content ul{
  display: none;
}
.ask-tuijian {
  width: 100%;
}
.ask-tuijian ul {
  padding: 15px 0;
  overflow: hidden;
}
.ask-tuijian li {
  float: left;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 20px 20px;
  line-height: 36px;
  border-bottom: 1px solid #eaf4f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ask-tuijian li:last-child {
  border-bottom: none;
}
.ask-tuijian dt,
dd {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ask-tuijian dt,
dd a {
  text-decoration: none;
}
.ask-tuijian dt {
  font-size: 16px;
  font-weight: bold;
}
.ask-tuijian dd {
  font-size: 14px;
}
.ask-wen {
  color: #D9001B;
}
.ask-da {
  color: #02A7F0;
}
.ask-da-text {
  text-overflow: ellipsis;
  overflow: hidden;
}
.ask-lookmore {
  color: #7F7F7F;
}
.smartphoto {
  z-index: 99999 !important;
}
