p {
  background: transparent !important;
}

/* header  */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.nav {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 110px;
  min-width: 1200px;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}
.nav .nav_left {
  width: 373px;
  height: 70px;
}
.nav .nav_left .logo {
  position: absolute;
  z-index: 2;
  display: inline-block;
  height: 70px;
  width: 300px;
}
.nav .nav_left .logo img {
  object-fit: contain;
}

.nav .nav_right {
  display: inline-block;
  width: calc(100% - 377px);
}
.nav .phone_nav_hide {
  display: none;
  width: 50vw;
  position: absolute;
  right: 0;
  top: 60px;
  float: left;
  z-index: 9999;
}

.nav .nav_item {
  margin: 10px 0 0 20px;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
  z-index: 99;
}
.nav .nav_right_bottom {
  display: flex;
  justify-content: flex-end;
}
.nav_item_box {
  color: rgba(49, 229, 121, 1);
}
.nav .nav_item_box {
  padding-bottom: 10px;
  white-space: nowrap;
}

.nav .nav_item_box a {
  color: rgba(255, 255, 255, 1);
}
.nav .nav_item_box a.active {
  color: rgba(49, 229, 121, 1);
}
.nav .nav_item:hover .nav_item_box a {
  color: rgba(49, 229, 121, 1);
}
.nav .nav_right .nav_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: -6px 0 0 10px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  cursor: pointer;
}
.nav .nav_right .nav_link a {
  color: rgba(255, 255, 255, 0.8);
}

/* banner */
.banner_news {
  width: 100%;
  background-color: rgba(39, 41, 56, 0.3);
  padding: 10px 0;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 100;
  bottom: 150px;
  color: rgba(255, 255, 255, 0.8);
}

.banner_news p {
  margin: 0 auto;
  width: 90%;
  min-width: 1200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.banner_news p:nth-child(1) {
  font-size: 40px;
}

.banner_news p:nth-child(2) {
  font-size: 30px;
}
.banner_news {
  width: 100%;
  background-color: rgba(39, 41, 56, 0.3);
  padding: 10px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 100;
  bottom: 60px;
}

.banner_news p {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.banner_news p:nth-child(1) {
  font-size: 20px;
}

.banner_news p:nth-child(2) {
  font-size: 16px;
}

/* 下拉列表 */
.nav .nav_item:hover .subNav {
  display: block;
}

.nav .nav_item .subNav {
  position: absolute;
  left: 50%;
  top: 30px;
  display: none;
  width: 120px;
  padding-right: 10px;
  transform: translateX(-50%);
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 9;
}

.nav .nav_item .subNav dd {
  display: flex;
  justify-content: center;
}

.nav .nav_item .subNav dd a {
  line-height: 40px;
  color: rgba(255, 255, 255, 1);
}
.nav .nav_item .subNav dd a:hover {
  color: rgba(49, 229, 121, 1);
}

/* 手机导航栏 */
.mobile-inner-nav {
  background: rgba(16, 109, 50, 1);
  width: 100%;
  position: absolute;
  left: 0px;
  padding-top: 10px;
  padding-bottom: 25px;
}

.mobile-inner-nav ul a {
  display: inline-block;
  line-height: 45px;
  text-decoration: none;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.mobile-inner-nav li {
  position: relative;
  padding: 0 20px;
}

.mobile-inner-nav li a {
  text-indent: 15px;
}

/* 图标 */
.mobile-inner-nav li strong {
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 45px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.strong_active {
  transform: rotate(45deg);
}

.mobile-inner-nav ul a {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: returnToNormal;
  animation-name: returnToNormal;
}

@-webkit-keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.mobile_subNav {
  display: none;
  padding-left: 10px;
}

.mobile-inner-nav dd a {
  height: 35px;
  line-height: 35px;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
}

.mobile_search {
  clear: both;
  position: relative;
  height: 36px;
  margin: 10px 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  overflow: hidden;
}

.mobile_search input.notxt {
  width: 80%;
  margin-left: 13px;
  background-color: rgba(16, 109, 50, 1);
  border: none;
  height: 36px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.8);
}

.mobile_search input.notxt1 {
  width: 55px;
  background-color: rgba(16, 109, 50, 1);
  background: url(../images/fr_right.png) no-repeat center center;
  border: none;
  height: 36px;
  line-height: 36px;
  float: left;
}

.mobile,
.mobile .top_nav {
  display: block;
}

.mobile .top_nav {
  text-align: center;
  float: right;
  padding: 5px 10px;
}

.logo2 {
  width: calc(338% / 6.45);
  float: right;
}

.phone_nav_hide .top_nav {
  width: 100%;
  float: right;
  padding: 5px 20px;
  text-align: center;
}
.top_nav a {
  position: relative;
  display: block;
  width: 100%;
  height: 32px;
  margin: 5px 0;
  margin-right: 20px;
  line-height: 32px;
  border-radius: 16px;
  vertical-align: top;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}
.phone_nav_hide input.notxt1 {
  position: absolute;
  border: none;
  right: 0;
  font-size: 18px;
  color: #fff;
}
/* 手机搜索 */
.nav_link_input {
  background-color: #751714;
  border: 1px solid #751714;
  width: 150px;
  height: 100%;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 20px 0 10px 20px;
  color: #ddd;
}

/* banner */
.banner_bpx {
  position: relative;
  min-width: 1200px;
}

.banner {
  width: 100%;
  height: calc(100vh - 110px);
  background-color: #1a0130;
  position: relative;
  overflow: hidden;
  min-width: 1200px;
}

.banner .JQ-slide-content {
  width: 100%;
  height: calc(100vh - 110px);
  position: relative;
  overflow: hidden;
}

.banner .JQ-slide-content li {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
}
.banner .JQ-slide-content li:first-child {
  z-index: 1;
  opacity: 1;
}

.JQ-slide-nav {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 20px;
  width: 100%;
  height: 20px;
}

.JQ-slide-nav li {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
  cursor: pointer;
  z-index: 99;
  margin: auto 10px;
}
.JQ-slide-nav li.on {
  width: 15px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
}
.JQ-slide-nav li .banner_news {
  left: 0;
  display: none;
}
.JQ-slide-nav li.on .banner_news {
  display: block !important;
}

/* 适配 */
@media screen and (max-width: 780px) {
  .nav {
    position: static;
    height: 60px;
    padding: 0 20px;
    min-width: 0;
    overflow: hidden;
    /* background-color: rgba(16, 109, 50, 1) !important; */
    background: linear-gradient(
      rgba(16, 109, 50, 1) 0%,
      rgba(16, 109, 50, 1) 100%
    );
  }
  .nav .nav_left {
    height: 30px;
    width: 225px;
  }
  .nav .nav_left .logo {
    left: 0;
    height: 30px;
    width: 245px;
  }
  .nav .nav_left .logo img {
    object-fit: contain;
  }
  .nav .nav_right {
    width: 0;
    display: none;
  }

  .nav .phone_nav_right {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("../images/nav_phone.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .phone_nav_right_active {
    height: 20px !important;
    width: 20px !important;
    background-image: url(../images/X.png) !important;
  }
  .banner_bpx {
    min-width: 0 !important;
  }

  .banner {
    min-width: 0 !important;
    height: 40vw;
    margin-top: 60px;
  }

  .banner > .JQ-slide-content {
    width: 100%;
    height: 40vw;
    position: relative;
  }
}

/* 二级banner */
.secbanner {
  height: 360px;
  background: url(../images/banner1.png) no-repeat center;
  background-size: cover;
}

/* 面包屑导航 */
.breadcrumb {
  position: absolute;
  right: calc(50% - 500px);
  bottom: 20px;
  display: flex;
}
.breadcrumb li {
  color: rgba(135, 136, 136, 1);
}
.breadcrumb li::before {
  color: rgba(135, 136, 136, 1);
  content: "/ ";
  padding: 0 5px;
}

.breadcrumb li:nth-child(1):before {
  content: "";
}

/* 左导航切换 */
.tabLeft {
  width: 20%;
}
.tabLeft ul {
  width: calc(100% - 40px);
  padding-bottom: 10px;
  border-radius: 20px 20px 0 0;
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.3);
  background-color: #106d32;
  overflow: hidden;
}
.tabLeft li {
  width: 100%;
  height: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
}
.tabLeft li a {
  color: #fff;
}
.tabLeft li:first-child {
  font-weight: bold;
}

.tabLeft .leftsidebar {
  cursor: pointer;
}

.tabLeft .leftsidebar:hover,
.tabLeft .leftsidebar.active {
  width: calc(100% - 20px);
  margin-left: 20px;
  padding-right: 20px;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  border: 0;
  cursor: pointer;
}
.tabLeft .leftsidebar:hover a,
.tabLeft .leftsidebar.active a {
  position: relative;
  color: #106d32;
}
.tabLeft .leftsidebar.active a::after {
  content: ">>";
  position: absolute;
  right: -25px;
}

.content {
  width: 100%;
}

.talent .container {
  display: flex;
  height: auto;
  margin: 0 auto;
  padding: 60px 0 30px;
}
.talent .container .talent_content {
  width: 100%;
}
/* 右边的标题 */
.content .title {
  position: relative;
  width: 100%;
  border-bottom: rgb(184, 183, 183) 1px solid;
}

.content .title p {
  position: absolute;
  bottom: -2px;
  display: inline-block;
  width: auto;
  height: 40px;
  font-weight: bold;
}
.content .title img {
  position: absolute;
  bottom: -4px;
  width: 80px;
  height: 5px;
}

/* 列表页码索引 */
.content .index {
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
}

.content .index li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0 6px;
  background-color: #fff;
  border: #b6b6b4 1px solid;
  border-radius: 50%;
}
.content .index li a {
  display: block;
  width: 50%;
  height: 50%;
  line-height: 15px;
  text-align: center;
  color: #6a6a6a;
}
.content .index li a img {
  object-fit: scale-down;
}

.content .index li.active {
  background-color: rgba(0, 175, 109, 1);
}
.content .index li.active a {
  color: #fff;
}

.breadcrumb ul li {
  white-space: nowrap;
}

@media only screen and (min-width: 780px) {
  /* 固定1200 */
  .container {
    width: 1200px;
  }
  .talent .container {
    min-height: calc(100vh - 575px) !important;
  }
}

@media only screen and (max-width: 780px) {
  /* 移动端 自适应 */
  .secbanner {
    height: 32vw;
    margin-top: 60px;
  }
  /* 面包屑导航 */
  .breadcrumb {
    right: 0;
  }

  .container {
    width: 95vw;
    min-height: calc(100vh - 560px) !important;
  }

  .tabLeft {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  /* 列表页码索引 */
  .content .index li {
    width: 25px;
    height: 25px;
    margin: 0 2px;
  }
}

/* footer */
.footer {
  width: 100%;
  height: 200px;
  min-width: 1200px;
  background: url(../images/footer/bg.png) no-repeat center;
  background-size: cover;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.footer .centerBox {
  height: 200px;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  margin: 0 auto;
}

.footer .centerBox > div {
  height: 100%;
  width: calc(100% / 3);
  color: #fff;
}
.footer .centerBox .footerleft .footer_text_box {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.footer .centerBox .footerleft .footer_text_box li {
  display: flex;
  height: 20%;
  width: 100%;
  padding-top: 5px;
}
.footer .centerBox .footerleft .footer_text_box li span:nth-child(1) {
  height: 70%;
}
.footer .centerBox .footerleft .footer_text_box li span:nth-child(2) {
  padding: 3px 0 0 10px;
}
.footer .centerBox .footerleft .footer_text_box li img {
  object-fit: contain;
}
.footer .centerBox .footer_logo {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.footer .centerBox .footer_logo a {
  display: block;
  height: 120px;
  text-align: center;
}
.footer .centerBox .footer_logo img {
  width: auto;
}
.footer .centerBox .footer_logo .flogo_phone {
  display: none;
}
.footer .centerBox .footerright {
  padding-top: 10px;
  /* border-left: 1px solid rgba(255, 255, 255, 0.4); */
}
.footer .centerBox .footerright div {
  width: 70%;
  margin: 0 auto;
  padding: 0 15px;
  line-height: 30px;
  color: #fff;
}
.footer .centerBox .footerright form {
  width: 70%;
  margin: 0 auto;
}
.footer .centerBox .footerright select {
  width: 100%;
  height: 30px;
  padding: 0 15px;
  margin-top: 10px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  /* 右侧箭头 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/footer/select.png) 251px center no-repeat;
  background-size: 10px;
  cursor: pointer;
}
.footer .centerBox .footerright option {
  color: #000;
}
.footer .footer_bottom {
  height: 70px;
  padding: 10px 0;
  background-color: rgba(4, 36, 16, 1);
}
.footer .footer_bottom div {
  width: 30vw;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
@media screen and (max-width: 780px) {
  .footer {
    min-width: 0;
    height: 370px;
    padding-bottom: 30px;
    background-size: 102% 375px;
    position: static;
  }

  .footer .centerBox {
    position: relative;
    width: 100%;
    min-width: 0;
    height: auto;
    /* padding: ; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer .centerBox > div {
    width: auto;
  }
  .footer .centerBox .footerleft {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer .centerBox .footerleft .footer_text_box {
    position: absolute;
    top: 62px;
    flex-direction: column;
    align-items: center;
    height: 110px;
    margin: 10px 0;
  }
  .footer .centerBox .footerleft .footer_text_box li span:nth-child(1) {
    height: 100%;
  }
  .footer .centerBox .footer_logo {
    position: absolute;
    top: 17px;
    height: 50px;
    border: 0;
  }
  .footer .centerBox .footer_logo .flogo_pc {
    display: none;
  }
  .footer .centerBox .footer_logo .flogo_phone {
    display: block;
    width: 270px;
    height: 35px;
  }
  .footer .centerBox .footer_logo img {
    object-fit: contain;
  }
  .footer .centerBox .footerright {
    position: absolute;
    top: 192px;
    border: 0;
    width: 80%;
    margin-top: 8px;
  }
  .footer .centerBox .footerright div {
    width: 90%;
    line-height: 15px;
  }
  .footer .centerBox .footerright form {
    width: 92%;
  }
  .footer .centerBox .line {
    position: absolute;
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer .centerBox .line1 {
    top: 63px;
  }
  .footer .centerBox .line2 {
    top: 198px;
  }
  .footer .footer_bottom {
    position: relative;
    bottom: -256px;
    height: 60px;
  }
  .footer .footer_bottom div {
    width: 80vw;
    margin-top: 5px;
  }
}
