.query-form-con {
  display: flex;
  width: var(--main-width);
  margin: 0.4rem auto 0;
}
.query-form-con .select-con {
  position: relative;
  width: 4rem;
  height: 0.5rem;
  margin-right: 0.25rem;
  border-radius: 4px;
  background-color: #f5f5f7;
}
.query-form-con .select-con .dropdown-toggle {
  display: flex;
  padding: 0 0.3rem;
  height: 100%;
  align-items: center;
  cursor: pointer;
}
.query-form-con .select-con .dropdown-toggle .dropdown-text {
  flex: 1;
  font-size: 0.16rem;
  color: #757575;
}
.query-form-con .select-con .dropdown-toggle .dropdown-icon {
  transition: all 0.3s ease;
}
.query-form-con .select-con .dropdown-toggle .dropdown-icon:after {
  font-size: 0.16rem;
  color: #000407;
  content: '\e627';
  font-family: "iconfont";
}
.query-form-con .select-con .active .dropdown-text {
  color: #000000;
}
.query-form-con .select-con .dropdown-icon-active {
  transform: rotate(180deg);
}
.query-form-con .select-con .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 0 0 4px 4px;
  background-color: #ffffff;
  z-index: 2;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.query-form-con .select-con .dropdown-menu > div {
  font-size: 0.16rem;
  padding: 0 0.3rem;
  height: 0.5rem;
  line-height: 0.5rem;
  cursor: pointer;
  color: #5f5f5f;
}
.query-form-con .select-con .dropdown-menu > div:hover {
  background-color: var(--active-color);
  color: #ffffff;
}
.query-form-con .search-con {
  flex: 1;
  display: flex;
  height: 0.5rem;
  border-radius: 4px;
  padding-left: 0.3rem;
  padding-right: 0.05rem;
  background-color: #f5f5f7;
  align-items: center;
}
.query-form-con .icon-con:after {
  font-size: 0.2rem;
  color: var(--active-color);
  content: '\e8b9';
  font-family: "iconfont";
}
.query-form-con .input-con {
  flex: 1;
  height: 100%;
}
.query-form-con .input-con > input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  color: #000000;
  padding: 0 0.1rem;
  font-size: 0.16rem;
}
.query-form-con .input-con > input::-moz-placeholder {
  color: #757575;
}
.query-form-con .input-con > input::placeholder {
  color: #757575;
}
.query-form-con .button-con {
  width: 1.2rem;
  height: 0.4rem;
}
.query-form-con .button-con > button {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: var(--active-color);
  color: #ffffff;
  font-size: 0.16rem;
  cursor: pointer;
}
.job-list-con {
  width: var(--main-width);
  margin: 0.4rem auto 0;
}
.job-list-con .job-item-con {
  width: 100%;
}
.job-list-con .job-item-header {
  width: 100%;
  padding: 0.3rem 0.4rem;
  display: flex;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 1px solid var(--border-color);
  color: #00070d;
}
.job-list-con .active .job-item-header {
  background-image: url("/static/1/content/images/job/job-detail-bg.png");
  color: #ffffff;
}
.job-list-con .active .right-icon:after {
  content: '\e6aa';
}
.job-list-con .active .small-con {
  color: #ffffff;
}
.job-list-con .active .job-detail-con {
  max-height: 100vh;
}
.job-list-con .name-con {
  width: 40%;
}
.job-list-con .address-con {
  width: 30%;
}
.job-list-con .type-con {
  width: 30%;
}
.job-list-con .right-icon {
  width: 0.6rem;
  display: flex;
  align-items: center;
}
.job-list-con .right-icon:after {
  font-size: 0.3rem;
  content: '\e81a';
  font-family: "iconfont";
}
.job-list-con .small-con {
  font-size: 0.14rem;
  color: #757575;
}
.job-list-con .title-con {
  font-size: 0.24rem;
  margin-top: 0.16rem;
}
.job-list-con .job-detail-con {
  display: flex;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.job-list-con .detail-con {
  flex: 1;
  color: #00070d;
  padding: 0.4rem 0.5rem 0.8rem 0.4rem;
}
.job-list-con .job-title {
  font-size: 0.24rem;
}
.job-list-con .job-content {
  margin-top: 0.2rem;
}
.job-list-con .job-content > p {
  font-size: 0.16rem;
  line-height: 0.3rem;
}
.job-list-con .button-con {
  width: 1.5rem;
  height: 0.4rem;
  margin-top: 0.4rem;
  background-color: var(--active-color);
  color: #ffffff;
  font-size: 0.16rem;
  border-radius: 4px;
  text-align: center;
  line-height: 0.4rem;
  cursor: pointer;
}
.job-list-con .button-con > span {
  transition: all 0.3s ease;
  display: inline-block;
}
.job-list-con .button-con:hover > span {
  transform: scale(1.05);
}
.dialog-pop-con {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 5rem;
  transform: translate(-50%, -50%);
  background-color: var(--theme-color);
  color: #ffffff;
  padding: 0.2rem 0.3rem 0.4rem 0.3rem;
  display: none;
}
.dialog-pop-con .dialog-header {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.dialog-pop-con .dialog-header .title {
  font-size: 0.24rem;
}
.dialog-pop-con .dialog-header .close-icon {
  cursor: pointer;
}
.dialog-pop-con .dialog-header .close-icon:hover:after {
  transform: rotate(180deg);
  font-weight: bold;
}
.dialog-pop-con .dialog-header .close-icon:after {
  display: inline-block;
  font-size: 0.24rem;
  content: '\e612';
  font-family: "iconfont";
  transition: all 0.3s ease;
}
.dialog-pop-con .dialog-header .abs-logo {
  position: absolute;
  top: -0.14rem;
  left: 50%;
  width: 0.28rem;
  height: auto;
  transform: translateX(-50%);
}
.dialog-pop-con .form-con {
  margin-top: 0.1rem;
}
.dialog-pop-con .input-con {
  width: 100%;
  margin-top: 0.4rem;
  background-color: #ffffff;
}
.dialog-pop-con .input-con > input {
  width: 100%;
  height: 0.4rem;
  border: none;
  font-size: 0.16rem;
  color: #000000;
  padding: 0 0.26rem;
}
.dialog-pop-con .input-con > input::-moz-placeholder {
  color: #757575;
}
.dialog-pop-con .input-con > input::placeholder {
  color: #757575;
}
.dialog-pop-con .upload-file {
  width: 100%;
  height: 1.46rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  margin-top: 0.4rem;
  color: #757575;
  cursor: pointer;
}
.dialog-pop-con .upload-file:hover {
  box-shadow: inset 0 0 0.5rem rgba(0, 51, 159, 0.5);
}
.dialog-pop-con .upload-file > input {
  display: none;
}
.dialog-pop-con .upload-file .upload-icon {
  text-align: center;
  width: 100%;
}
.dialog-pop-con .upload-file .upload-icon > img {
  width: 0.6rem;
  height: auto;
}
.dialog-pop-con .upload-file .text-con {
  font-size: 0.16rem;
  color: #757575;
  margin-top: 0.2rem;
}
.dialog-pop-con .hover {
  box-shadow: inset 0 0 0.5rem rgba(0, 51, 159, 0.5);
}
.dialog-pop-con #file-list {
  margin-top: 0.2rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.dialog-pop-con .form-info {
  margin-top: 0.1rem;
  font-size: 0.14rem;
  color: #757575;
}
.dialog-pop-con .button-con {
  text-align: center;
  margin-top: 0.4rem;
}
.dialog-pop-con .button-con > button {
  width: 1.5rem;
  height: 0.4rem;
  background-color: var(--active-color);
  color: #ffffff;
  font-size: 0.16rem;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .query-form-con {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
  }
  .query-form-con .select-con {
    width: 100%;
    margin-right: 0;
    margin-top: 0.4rem;
  }
  .query-form-con .search-con {
    margin-top: 0.4rem;
    width: 100%;
  }
  .job-list-con .title-con {
    font-size: 0.18rem;
    margin-top: 0.16rem;
  }
}
