.Concept {
  width: 100%;
  padding: 50px 0 100px;
  background: #fff;
}

.Concept .Concept_cen {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Concept .Concept_cen .Concept_prc {
  width: 43.75%;
  border-radius: 16px;
}
.Concept .Concept_cen .Concept_prc img {
  display: block;
  width: 100%;
  object-fit: cover;
  max-height: 540px;
}
.Concept .Concept_cen .Concept_r {
  width: 56.25%;
  padding: 0 4.5vw;
}

.Concept .Concept_cen .Concept_r .Concept_title {
  font-size: 40px;
  line-height: 1.2;
  color: #141414;
  font-weight: 500;
}

.Concept .Concept_cen .Concept_r .Concept_text {
  font-size: 16px;
  line-height: 2;
  color: #666666;
  font-weight: 500;
  text-indent: 2em;
  margin-top: 30px;
}

.Recruitment {
  padding: 100px 0;
  background: #f7f7f7;
}
.Recruitment .maodian{
  position: relative;
}
.Recruitment .maodian a{
  position: absolute;
  left: 0;
  top: -200px;
}
.Recruitment .Recruitment_title {
  text-align: center;
  font-size: 40px;
  line-height: 48px;
  color: #141414;
  font-weight: 500;
}

.Recruitment .Recruitment_bom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.Recruitment .Recruitment_l {
  width: 300px;
  border: 1px solid #e6e6e6;
  padding: 30px 20px 90px;
  background: #fff;
  height: 100%;
}

.Recruitment .Recruitment_l .Recruitment_tit {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #333333;
}
.Recruitment .Recruitment_l .Recruitment_Search_bom {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.Recruitment .Recruitment_l .Recruitment_Search_bom .input input {
  width: 100%;
  height: 40px;
  border: 1px solid #e6e6e6;
  outline: none;
  text-indent: 1em;
  border-radius: 3px;
}

.Recruitment_l .Recruitment_Search_bom .input input::placeholder {
  color: #b2b2b2;
}
.Recruitment_l .Recruitment_Search_bom .button {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #81ccdb;
  cursor: pointer;
  color: #fff;
  margin-top: 10px;
  border: 0;
}

.Recruitment_l .Recruitment_tit {
  margin-top: 30px;
}
.Recruitment_l .ipt {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #666666;
  line-height: 20px;
  margin-top: 14px;
}
.Recruitment_l .ipt label {
  display: block;
  width: calc(100% - 16px);
}

.Recruitment .Recruitment_r {
  width: calc(100% - 330px);
}

.Recruitment .Recruitment_r .Recruitment_box {
  width: 100%;
  transition: all 0.3s;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #e6e6e6;
  margin-bottom: 20px;
}

.Recruitment .Recruitment_r .Recruitment_box:hover {
  background: #81ccdb;
  color: #fff;
  box-shadow: 0 0 15px rgba(129, 204, 219, 0.5);
  border-color: #81ccdb;
}

.Recruitment_box .box_top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: #141414;
  transition: all 0.3s;
}

.Recruitment_box:hover .box_top {
  color: #fff;
}

.Recruitment_box .box_top .boxTname {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  min-width: 300px;
}
.Recruitment_box .box_top .addresss {
  width: 25%;
}
.Recruitment_box .box_top .type {
  width: 25%;
}
.Recruitment_box .box_top .boxTname .boxTname_ico {
  height: 20px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fb0000;
  color: #fb0000;
  border-radius: 2px;
  transition: all 0.3s;
  margin-left: 6px;
  font-size: 14px;
  font-weight: 500;
}

.Recruitment_box:hover .box_top .boxTname .boxTname_ico {
  color: #fff;
  border-color: #fff;
}

.Recruitment_box .box_top .boxTname .boxTname_ico.orangeYellow {
  color: #ee7600;
  border-color: #ee7600;
}

.Recruitment_box:hover .box_top .boxTname .boxTname_ico.orangeYellow {
  color: #fff;
  border-color: #fff;
}

.Recruitment_box .box_bom {
  font-size: 16px;
  color: #999999;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.3s;
  display: none;
}
.Recruitment_box.active .box_bom {
  padding: 30px;
  display: block;
}
.Recruitment_box.active:hover .box_bom{
  color: #ffffff;
}

.fyq {
  padding-top: 20px;
}

/* 弹窗 */
/* 弹窗遮罩层 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 弹窗容器 */
.modal-container {
  width: 1000px;
  max-width: 96%;
  max-height: 90vh;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  animation: slideIn 0.4s ease;
  padding: 40px 60px 50px;
}

@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.modal-container .applicationModal_title {
  text-align: center;
  font-size: 24px;
  line-height: 33px;
  font-weight: bold;
  color: #1a1a1a;
}
.modal-container .modal-content {
  margin-top: 20px;
}
.modal-container .modal-content form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.modal-container .modal-content form .input {
  min-width: 250px;
  width: 47.8%;
  margin-bottom: 20px;
}
.modal-content form .input .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #666666;
  font-size: 16px;
}
.form-label .required-star {
  color: #e74c3c;
}
.modal-content form .input .form-input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 44px;
  text-indent: 1em;
  font-size: 16px;
  transition: border 0.3s;
}
.modal-content form .input .input_bom {
  position: relative;
  background: #f4f6fb;
  border: 2px dashed #ccc;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  color: #333333;
  font-size: 15px;
}
.modal-content form .input .input_bom:hover {
  border-color: #81ccdb;
}
.modal-content form .input .input_bom input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}
.modal-content form .input .file-format-hint {
  padding: 0 20px;
  font-size: 12px;
  line-height: 19px;
  color: #999999;
  font-weight: 500;
}
.modal-content form .submit-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}
.modal-content form .submit-section .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 46px;
  color: #fff;
  background: #81ccdb;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 8px;
  border: 0;
}

/* 响应式设计 */
@media (max-width: 1500px) {
  .Concept {
    padding: 40px 0 80px;
  }
  .Concept .Concept_cen .Concept_r .Concept_title {
    font-size: 36px;
  }
  .Concept .Concept_cen .Concept_r .Concept_text {
    font-size: 15px;
    line-height: 1.9;
  }
  .Recruitment {
    padding: 80px 0;
  }
  .Recruitment .maodian a{
    top: -180px;
  }
  .Recruitment .Recruitment_title {
    font-size: 36px;
  }
  .modal-container {
    padding: 30px 50px 40px;
  }
}

@media (max-width: 1200px) {
  .Concept .Concept_cen .Concept_r .Concept_title {
    font-size: 32px;
  }
  .Recruitment .Recruitment_title {
    font-size: 32px;
  }
  .Recruitment .Recruitment_l {
    width: 280px;
  }
  .Recruitment .Recruitment_r {
    width: calc(100% - 310px);
  }
  .Recruitment_box .box_top {
    padding: 18px 25px;
    font-size: 17px;
  }
  .Recruitment_box .box_bom {
    padding: 25px;
    font-size: 15px;
    line-height: 28px;
  }
  .modal-container {
    padding: 25px 40px 35px;
  }
  .modal-container .applicationModal_title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .Concept {
    padding: 30px 0 60px;
  }
  .Concept .Concept_cen {
    flex-direction: column;
    align-items: flex-start;
  }
  .Concept .Concept_cen .Concept_prc {
    width: 100%;
    margin-bottom: 30px;
  }
  .Concept .Concept_cen .Concept_r {
    width: 100%;
    padding: 0;
  }
  .Concept .Concept_cen .Concept_r .Concept_title {
    font-size: 28px;
  }
  .Recruitment {
    padding: 60px 0;
  }
  .Recruitment .maodian a{
    top: -160px;
  }
  .Recruitment .Recruitment_title {
    font-size: 28px;
  }
  .Recruitment .Recruitment_bom {
    flex-direction: column;
  }
  .Recruitment .Recruitment_l {
    width: 100%;
    margin-bottom: 30px;
    padding: 25px;
  }
  .Recruitment .Recruitment_r {
    width: 100%;
  }
  .modal-container .modal-content form .input {
    width: 47.5%;
  }
}

@media (max-width: 768px) {
  .Concept {
    padding: 30px 20px;
  }
  .Concept .Concept_cen .Concept_r .Concept_title {
    font-size: 24px;
  }
  .Concept .Concept_cen .Concept_r .Concept_text {
    font-size: 14px;
    line-height: 1.8;
    text-indent: 0;
  }
  .Recruitment {
    padding: 40px 0px;
  }
  .Recruitment .maodian a{
    top: -140px;
  }
  .Recruitment .Recruitment_title {
    font-size: 24px;
  }
  .Recruitment .Recruitment_bom {
    margin-top: 25px;
  }
  .Recruitment .Recruitment_l {
    padding: 20px;
  }
  .Recruitment_box .box_top {
    padding: 15px 20px;
    font-size: 16px;
  }
  .Recruitment_box .box_bom {
    padding: 20px;
    font-size: 14px;
    line-height: 26px;
  }
  .Recruitment_box .box_top .boxTname {
    width: 100%;
    max-width: 100%;
    padding-bottom: 12px;
  }
  .Recruitment_box .box_top .addresss {
    width: 50%;
  }
  .Recruitment_box .box_top .type {
    width: 50%;
  }
  .modal-container {
    width: 98%;
    padding: 20px;
    max-height: 95vh;
  }
  .modal-container .applicationModal_title {
    font-size: 18px;
  }
  .modal-container .modal-content form {
    /* flex-direction: column; */
  }
  .modal-container .modal-content form .input {
    /* width: 100%; */
    min-width: auto;
    margin-bottom: 10px;
  }
  .modal-container .modal-content form .input:nth-child(9){
    width: 100%;
  }
  .modal-container .modal-content form .input:nth-child(10){
    width: 100%;
  }
  .modal-content form .input .form-input{
    height: 34px;
    font-size: 14px;
  }
  .modal-content form .input .input_bom{
    height: 34px;
    font-size: 14px;
  }
  .modal-content form .input .file-format-hint{
    padding: 0;
  }
  .modal-content form .submit-section {
    margin-top: 15px;
  }
  .modal-content form .submit-section .submit-btn {
    width: 180px;
    height: 34px;
    font-size: 17px;
  }
  .Recruitment_box .box_top .boxTname .boxTname_ico {
    font-size: 13px;
    padding: 0 6px;
  }
}
