/* ###############外围结构############### */

.recruit-section {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  margin-bottom: 119px;
  /* background-color: bisque; */
}

.recruit-section .sidespan {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}

.recruit-section .recruit-box {
  /* width:calc(1920px - 655px + 25px);  */
  /* width: calc(1920px - 655px); */
  width: 1190px;
  height: 100%;
  /* background-color: bisque; */
}

.recruit-section .recruit-box .recruit-content {
  /* width: 1260px; */
  /* 360*3+55*3 */
  height: 1190px;
  /* 450*3+60*3 */
  /* transform: translate(300px,35px); */
}

/* ###############具体样式############### */
.headline {
  font-family: SourceHanSansCN-Bold;
  font-size: 28px;
  font-weight: bold;
  line-height: 56px;
  letter-spacing: 0em;
  color: #333333;
}

.heading {
  margin-bottom: 48px;
  /* width: 352px; */
  height: 24px;
  font-family: 'Noto Sans SC';
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0em;
  color: #3D3D3D;
}

.module {
  margin-bottom: 24px;
}

.number {
  vertical-align: top;
  display: inline-block;
  width: 40px;
  height: inherit;
}

.series {
  width: 40px;
  height: 40px;
  /* background: rgba(0, 93, 162, 0.25); */
  background: #005da2;
  border-radius: 20px;
  text-align: center;
  font-family: SourceHanSansCN-Bold;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  /* color: #333333; */
  color: #fff;
}

.line {
  margin: 24px 19.5px 0px 19.5px;
  height: calc(100% - 64px);
  width: 1px;
  background-color: rgba(199, 205, 209, 0.3);
}

.validate {
  position: relative;
  right: 8px;
  font-family: 'Noto Sans SC';
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #FF4D4F;
}

.title {
  margin-left: 18px;
  vertical-align: top;
  display: inline-block;
  width: 188px;
  height: inherit;
}

.main-title {
  font-family: SourceHanSansCN-Bold;
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 0em;
  color: #333333;
}

.sub-title {
  text-indent: 4px;
  font-family: 'Noto Sans SC';
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0em;
  color: #666666;
}

.info {
  display: inline-block;
  /* width: calc(100% - 255px); */
  width: 890px;
  height: inherit;
  border-bottom: 1px solid rgba(199, 205, 209, 0.3);
}

.table {
  margin: 0;
  position: relative;
  bottom: 12px;
}

.table td {
  border: none;
  padding: 0;
}

.table td:nth-of-type(2n-1) {
  text-align: right;
  height: 40px;
  /* width: 200px; */
  width: 23%;
  font-family: SourceHanSansCN-Bold;
  font-size: 16px;
  font-weight: bold;
  line-height: 64px;
  letter-spacing: 0em;
  color: #333333;
}

.table td:nth-of-type(2n) {
  text-align: left;
  /* width: 320px; */
  width: 27%;
  height: 64px;
}

.special {
  font-family: 'Noto Sans SC';
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0em;
  color: rgba(0, 0, 0, 0.65);
}

.table .input,
select {
  text-indent: 8px;
  margin: 12px 0px 12px 8px;
  width: 240px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.table select {
  color: rgba(0, 0, 0, 0.25);

}

option {
  color: black;
}

/* ********************************************************** */
.option {
  /*用div的样式代替select的样式*/
  /* margin: 100px; */
  width: 140px;
  height: 40px;
  /*border-radius: 5px;*/
  /*盒子阴影修饰作用,自己随意*/
  /* box-shadow: 0 0 5px #ccc;*/
  border: 1px solid #cccccc;
  position: relative;
}

.option select {
  /*清除select的边框样式*/
  border: none;
  /*清除select聚焦时候的边框颜色*/
  outline: none;
  /*将select的宽高等于div的宽高*/
  width: 100%;
  height: 40px;
  line-height: 40px;
  /*隐藏select的下拉图标*/
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /*通过padding-left的值让文字居中*/
  padding-left: 20px;
}

/*使用伪类给select添加自己想用的图标*/
.option:after {
  content: "";
  width: 14px;
  height: 8px;
  /* background: url(../assets/arrow-down.png) no-repeat center; */
  /*通过定位将图标放在合适的位置*/
  position: absolute;
  right: 20px;
  top: 41%;
  /*给自定义的图标实现点击下来功能*/
  pointer-events: none;
}

/* *********************************************************** */

/* select箭头样式 */
.table select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /* background: url(style/jiantou.png) no-repeat right 0.5rem center;
  background-size: 0.45rem 0.8rem; */
}

.select-icon {
  position: absolute;
  width: 25px;
  height: 25px;
}

.table input:focus,
select:focus {
  outline: none !important;
  border-color: #00B1EC !important;
}

.table input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none
}

/* .input[type="number"] {
  -moz-appearance:textfield
} */

.addbtn {
  float: right;
  background-color: rgba(0, 0, 0, 0);
  border: 0px !important;
  padding: 0;
  width: 60px;
  height: 64px;
  font-family: 'Noto Sans SC';
  font-size: 16px;
  font-weight: normal;
  line-height: 40px;
  letter-spacing: 0em;
  color: #00B1EC;
}

.btn {
  margin-right: 44px;
  float: right;
  padding: 0;
}

.cancel {
  width: 120px;
  height: 40px;
  background: #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #005DA2;
  font-family: 'Noto Sans SC';
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0em;
  color: #005DA2;
}

.submit {
  width: 120px;
  height: 40px;
  /* background: rgba(0, 0, 0, 0.04); */
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: 'Noto Sans SC';
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0em;
  color: rgba(0, 0, 0, 0.25);
  margin-left: 19px;
  background: rgba(0, 0, 0, 0.04);
}