.banner {
  width: 100%;
  height: 310px;
  position: relative;
  background-image: url('../imgs/banner.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.search-input {
  display: flex;
  align-items: center;
  position: absolute;
  left: 380px;
  top: 190px;
}

.input {
  width: 324px;
  height: 46px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 6px 0 0 6px;
}

.input input {
  border: none;
  outline: none;
  width: 100%;
  margin-left: 10px;
  font-size: 14px;
  color: #759889;
}

.input input::placeholder {
  color: #759889;
}

.search-btn {
  width: 78px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(180deg, #199867, #8acbb1);
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.nav {
  width: 100%;
  height: 60px;
  background-color: #d3e6da;
  padding: 0 390px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.nav .nav-item {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #222;
  background-color: #e7f3eb;
  cursor: pointer;

}



.nav .nav-item>div {
  margin-right: 10px;
}

.nav .nav-item .nav-icon1 {
  width: 20px;
  height: 20px;
  background-image: url('../imgs/person.png');
}

.nav .nav-item .nav-icon2 {
  width: 24px;
  height: 21px;
  background-image: url('../imgs/company.png');
}

.nav .nav-item .nav-icon3 {
  width: 25px;
  height: 23px;
  background-image: url('../imgs/sign.png');
}

.nav .active {
  background: linear-gradient(180deg, #eafaf0, #fff);
  color: #118755;
}

.nav .active .nav-icon1 {
  background-image: url('../imgs/person-active.png');
}

.nav .active .nav-icon2 {
  background-image: url('../imgs/company-active.png');
}

.nav .active .nav-icon3 {
  background-image: url('../imgs/sign-active.png');
}

.classify {
  width: 100%;
  padding: 30px 390px;
  box-sizing: border-box;
  border-bottom: 1px solid #dfdfdf;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px 390px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
}

.classify .area {
  width: 164px;
  height: 46px;
  padding: 0 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid #e5e5e5;
  background-color: #eee;
  border-radius: 46px;
  cursor: pointer;
  position: relative;
  z-index: 999;
}

.classify .area .districts {
  display: none;
  width: 900px;
  position: absolute;
  left: 0;
  top: 60px;
  background-color: #fff;
  box-shadow: 0 -1px 13px 0px #ccc;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 14px;

}

.classify .area .districts::before {
  content: '';
  width: 0px;
  height: 0px;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  top: -19px;
  left: 50px;
}

.classify .area .districts .current-area {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
}


.classify .area .districts .current-area .district {
  font-size: 15px;
  color: #07855a;
  display: flex;
  align-items: center;
}

.classify .area .districts .current-area .district span {
  background-color: #eee;
  border-radius: 30px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;

}

/* .classify .area .districts .district-item {
  margin-top: 20px;
} */

.classify .area .districts .district-item span {
  margin-right: 20px;
  margin-top: 20px;
  display: inline-block;
  cursor: pointer;
  padding: 6px 20px;
  border-radius: 30px;
}

.classify .area .districts .district-item span:hover {
  background-color: #033f2a;
  color: #fff;

}

.classify .area p {
  display: flex;
  align-items: center;
}

.classify .area p img {
  margin-right: 6px;
}

.classify .classify-items {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  z-index: 888;
}

.classify .classify-items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.classify .classify-items .item .top {
  background-color: #f1f1f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.classify .person .item .top {
  width: 102px;
  height: 64px;
}

.classify .company .item .top {
  width: 74px;
  height: 66px;
}

.classify .classify-items .item .top .iconfont {
  font-size: 32px;
  color: #033f2a;
}

.classify .classify-items .active .top .iconfont {
  color: #fff;
}

.classify .classify-items .item span {
  margin-top: 24px;
}

.classify .classify-items .active .top {
  background: linear-gradient(180deg, #30a078, #058559);
}

.classify .classify-items .active span {
  color: #058559;
  font-weight: bold;
}

.classify .classify-items .active::after {
  content: '';
  width: 70px;
  height: 2px;
  background-color: #058559;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
}

.content {
  padding:10px 10% 30px 21%;
  box-sizing: border-box;
  width: 1920px;
}

.content>div {
  clear: both;
}
/*.content .personList>div {
  clear: both;
}
.content .companyList>div {
  clear: both;
}*/

.content .title {
  /* display: flex;
  align-items: center; */
  margin: 20px 0 0 0;
  display: inline-block;
}

.content .title span {
  font-weight: bold;
  font-size: 18px;
}

.content .title img {
  margin-right: 10px;
  display: inline-block;
}

.content .list .list-item {
  width: 560px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 14px 0px #f1f1f1;
  float: left;
  margin-top: 20px;
  cursor: pointer;
}

.content .list .list-item:nth-child(2n-1) {
  margin-right: 20px;
}

.content .list .list-item .arrow {
  width: 10px;
  height: 9px;
  background: url('../imgs/arrow-b.png');
}

.content .list .list-item:hover {
  background-color: #07855a;
  color: #fff;
}

.content .list .list-item:hover .arrow {
  width: 27px;
  background: url('../imgs/arrow.png');
}

/* 遮罩 */
.dialog_mask {
  display: none;
}

.mask {
  box-sizing: border-box;
  padding: 45px 50px;
}

.mask .top p {
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
  line-height: 33px;
}

.mask .top ul {
  margin-top: 20px;
}

.mask .top ul li {
  display: inline-block;
  margin-right: 32px;
  font-size: 16px;
  color: rgba(23, 112, 227, 1);
  line-height: 22px;
  position: relative;
  cursor: pointer;
}

.mask .top ul li:first-of-type {
  cursor: pointer;
  color: #333;
}

.mask .top ul li:first-of-type:hover {
  text-decoration: none;
}

.mask .top ul li:hover {
  text-decoration: underline;
}

.mask .top ul li::after {
  content: url('../../images/down_style_3.png');
  width: 14px;
  height: 14px;
  position: absolute;
  right: -20px;
  top: 5px;
  transform: rotate(270deg);
}


.mask .top ul li:last-of-type::after {
  display: none;
}

.mask .center {
  margin-top: 20px;
  /* min-height: 200px; */
}

.mask .center ul li {
  width: 120px;
  height: 40px;
  background: rgba(241, 242, 243, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  font-size: 16px;
  color: #1B172E;
  line-height: 22px;
  cursor: pointer;
  margin: 0 20px 20px 0;
  transition: all .3s;
  font-weight: 500;
  color: #333333;
  text-align: center;
  box-sizing: border-box;
  padding: 5px;
}

.mask .center ul li:nth-of-type(6n) {
  margin-right: 0;
}

.mask .center ul li:hover {
  background: rgba(23, 112, 227, 1);
  color: #fff;
}

.mask .footers {
  margin-top: 80px;
}

.mask .footers .first,
.mask .footers .second {
  text-align: center;
}

.mask .footers .cancel,
.mask .footers .prev {
  font-size: 16px;
  font-weight: 500;
  color: rgba(102, 102, 102, 1);
  line-height: 22px;
  cursor: pointer;
  display: inline-block;
}

.mask .footers .second {
  display: none;
}

.mask .footers .next,
.mask .footers .submit {
  font-size: 16px;
  font-weight: 500;
  color: rgba(23, 112, 227, 1);
  line-height: 22px;
  margin-left: 45px;
  cursor: pointer;
  display: inline-block;
}