html {
  overflow-y: scroll;
}

.btn-3d {
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0 30px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  transition: all ease 0.2s;
}

.btn-3d:hover {
  box-shadow: 0 0 5px #118cdf, 0 0 10px #118cdf, 0 0 20px #118cdf,
    0 0 30px #118cdf;
}

.btn-3d::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #118cdf;
  transform-origin: center;
  transform: translate3d(-50%, -50%, 0) scale(0, 0);
  transition: transform 0.45s ease-in-out;
}

.btn-3d:hover::before {
  transform: translate3d(-50%, -50%, 0) scale(15, 15);
}

/**头部样式*/
.header {
  z-index: 999;
  width: 100%;
  transform: translate(0px);
}

#main .content {
  margin-top: 70px;
}

.nav ul li {
  position: relative;
}
.header .box .nav ul li.recycled {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .box .nav ul li.recycled a {
  background-color: rgba(144, 183, 40, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  line-height: 40px;
  padding: 0;
  padding: 0 16px 0 10px;
  border-radius: 8px;
  transition: all ease 0.3s;
}
.header .box .nav ul li.recycled:hover {
  animation: shake-bottom 1.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header .box .nav ul li.recycled:hover a {
  background-color: rgb(144 183 40);
}

.header .box .nav ul li.recycled a span {
  white-space: nowrap;
  margin: 0 4px;
}
.nav ul li.recycled img {
  width: 20px;
}

@keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
}

@media (min-width: 921px) {
  .nav ul li.active:after {
    display: block;
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    height: 3px;
    background: #0666ab;
    bottom: 17%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
  }
}

.nav ul li.active > a {
  font-weight: bold;
  /* background-color: antiquewhite; */
  color: #0666ab !important;
  text-shadow: none !important;
}

.footer .box {
  background-color: #edf0f8;
  padding: 18px 20px 10px !important;
}

/* 测导航 */
.slider {
  width: 355px;
}
.slider .title {
  color: #25345a;
  font-size: 20px;
  font-weight: bold;
}
.slider > ul {
  margin-top: 20px;
}
.slider ul li {
  width: 100%;
  position: relative;
  font-size: 14px;
}
.slider ul a {
  color: #8196cb;
}
.slider ul .on_active a {
  color: #25345a;
}
.slider ul a:hover {
  font-weight: bold;
  color: #25345a;
}
.slider ul li i {
  position: absolute;
  top: 7px;
  left: 0;
  font-size: 19px;
  cursor: pointer;
}

.slider ul li > .off {
  display: block;
}
.slider ul li.on > .off,
.slider ul li > .open {
  display: none;
}
.slider ul li.on > .open {
  display: block;
}

.slider ul li {
  line-height: 30px;
}
.slider #first ul {
  display: none;
}

.slider ul > li > a {
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 3px 0;
}
.slider ul li.active > a {
  font-weight: bold;
  color: #f9f1f1;
  background-color: #0666ab;
}

/*内页小点*/
.page-point p {
  position: relative;
  padding-left: 16px;
}

.page-point p::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #0666ab;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}

.section.culture {
  margin-top: 2%;
}

.section .culture-list {
  display: flex;
  flex-wrap: wrap;
}

.culture .culture-list .item {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  background: #fff;
  padding: 4px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 4px 2px rgba(219, 219, 219, 40%);
  cursor: pointer;
}

.culture .culture-list .item:nth-child(3n) {
  margin-right: 0%;
}
.culture .culture-list .item div.img {
  overflow: hidden;
}
.culture .culture-list .item div.img img {
  height: 230px;
  transition: all ease 0.3s;
  object-fit: fill;
}
.culture .culture-list .item:hover div.img img {
  transform: scale(1.1);
}
.culture .culture-list .item span {
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  display: block;
  color: #0666ab;
}

@media (min-width: 1200px) {
  .industry .section_content {
    margin-right: -20px;
    margin-top: 20px;
  }

  .industry .section_content .item {
    width: calc(13.33% - 6px);
    margin-right: 10px !important;
    padding: 8px;
    overflow: hidden;
    font-size: 0;
  }

  .industry .section_content .item .text_wrap {
    padding: 1%;
  }

  .industry .item .text_wrap .text {
    margin-top: 0;
  }
  .industry .section_content {
    display: flex;
    flex-wrap: wrap;
  }
}


.future-wrap .job-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 10px
}

.future-wrap .job-item{
  display: flex;
  width: 31.8611111111%;
  height: 130px;
  background-color: #fff;
  border-radius: 1px;
  box-shadow: -2px 4px 3px rgba(38,40,53,.03);
  cursor: pointer;
  margin-top: 26px
}

.future-wrap .job-item a{
  display: flex;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: #000;
}

@media screen and (max-width: 1440px) {
  .future-wrap .job-item {
      width:31.9444444444%
  }
}

.future-wrap .job-item:hover {
  box-shadow: 2px 12px 20px rgba(0,0,0,.03)
}

.future-wrap .job-item:hover .job-item__img .fut_right {
  width: 150px
}

@media screen and (max-width: 1024px) {
  .future-wrap .job-item:hover {
      box-shadow:unset
  }

  .future-wrap .job-item:hover .job-item__img .fut_right {
      width: 114px
  }
}

.future-wrap .job-item__name {
  align-items: flex-start;
  padding: 32px 0 38px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%
}

@media screen and (max-width: 1024px) {
  .future-wrap .job-item__name {
      padding:5px 32px;
      align-items: flex-start;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center
  }
}

@media screen and (max-width: 768px) {
  .future-wrap .job-item__name {
      padding:5px
  }
}

.future-wrap .job-item__name .name {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 1440px) {
  .future-wrap .job-item__name .name {
      font-size:22px
  }
}

@media screen and (max-width: 1024px) {
  .future-wrap .job-item__name .name {
      font-size:18px;
      white-space: nowrap;
      width: 100%
  }
}

.future-wrap .job-item__name .name_en {
  font-size: 14px;
  color: rgba(0,0,0,.65);
  line-height: 1.5;
  margin-top: 6px;
  width: 100%
}

@media screen and (max-width: 1024px) {
  .future-wrap .job-item__name .name_en {
      font-size:12px;
      white-space: nowrap
  }
}

.future-wrap .job-item__img {
  display: flex;
  width: 150px;
  position: relative
}

@media screen and (max-width: 750px) {
  .future-wrap .job-item__img {
      display:none
  }
}

.future-wrap .job-item__img img {
  width: 100%
}

.future-wrap .job-item__img .fut_left {
  width: 36px;
  position: absolute;
  left: 0;
  bottom: 0
}

.future-wrap .job-item__img .fut_right {
  width: 114px;
  position: absolute;
  overflow: hidden;
  right: 0;
  height: 100%;
  transition: width .4s ease-out
}

.future-wrap .job-item__img .fut_right img {
  width: 150px;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  max-width: initial;
  height: 100%;
  object-fit: fill;
}

.future-wrap .pre_fix {
  width: 3px;
  height: 14px
}

.future-wrap .name_icon {
  margin-top: 20px;
  margin-left: 9px;
  font-size: 32px
}

@media screen and (max-width: 768px) {
  .future-wrap .name_icon {
      font-size:20px
  }
}

@media screen and (max-width: 1024px) {
  .future-wrap .job-item {
      margin-top:20px;
      width: calc(50% - 8px)
  }

  .future-wrap .job-item:hover {
      transform: none
  }

  .future-wrap .job-item:last-child {
      display: none
  }

  .future-wrap .job-list {
      padding-bottom: 64px;
      padding-top: 0
  }

  .future-wrap .el-tabs__active-bar {
      height: 2px
  }
}

@media screen and (max-width: 768px) {
  .future-wrap .job-item {
      margin-top:20px;
      height: 80px;
      padding: 12px
  }

  .future-wrap .job-list {
      padding-bottom: 20px
  }
}

@media screen and (max-width: 640px) {
  .future-wrap .job-item {
      margin-top:20px;
      height: 18.6666666667vw;
      padding: 12px
  }

  .future-wrap .el-tabs__item {
      font-size: 16px;
      padding: 0 30px 0 0;
      line-height: 30px;
      height: auto
  }

  .future-wrap .job-list {
      padding-bottom: 0
  }

  .future-wrap .pre_fix {
      height: 12px
  }

  .future-wrap .el-tabs__nav-wrap:after {
      content: "";
      width: 190px
  }

  .future-wrap .name_icon {
      margin-top: 10px
  }
}

@media screen and (max-width: 460px) {
  .future-wrap .job-item {
      height:80px
  }
}
