/* 首页 */
.home-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.banner-w {
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem;
}

.banner-swiper {
  width: 100%;
  height: 100vh;
}

.banner-swiper .swiper-wrapper {
  /* height: 100%; */
}

.banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-swiper .swiper-slide .banner {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-swiper .swiper-slide .txt {
  position: absolute;
  z-index: 3;
  top: 10.25rem;
  left: 2.225rem;
}

.banner-swiper .rb {
  position: absolute;
  width: 17.5rem;
  height: 10.425rem;
  right: 0;
  bottom: -1.45rem;
  z-index: 3;
}

.banner-swiper .rb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-container .banner-swiper .swiper-slide .title {
  color: #fff;
  font-weight: 700;
  line-height: 1.75rem;
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.home-container .banner-swiper .swiper-slide.swiper-slide-active .title {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.3s;
}
.banner-swiper .swiper-slide {
  opacity: 0 !important;
}

.banner-swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.banner-swiper .swiper-slide .banner {
  transition: all 5s cubic-bezier(0.04, 0.79, 1, 1);
}
.banner-swiper .swiper-slide.swiper-slide-active .banner {
  transform: scale3d(1.1, 1.1, 1);
}

.home-container .banner-swiper .swiper-pagination {
  text-align: left;
  bottom: 2.25rem;
}

.home-container .banner-swiper .swiper-pagination-bullet {
  width: 2.125rem;
  border-radius: 0;
  background: transparent;
  border-bottom: 0.025rem solid #fff;
  color: #fff;
  height: 0.5rem;
  line-height: 0.5rem;
  font-size: 0.3rem;
  margin-right: 0.6rem;
  opacity: 1;
  text-align: right;
  position: relative;
  transform: all 0.5s;
  font-family: "Montserrat-Regular";
}

.home-container .banner-swiper .swiper-pagination-bullet-active {
  text-align: left;
}

.home-container .banner-swiper .swiper-pagination-bullet .bg {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: -0.025rem;
  height: 0.025rem;
  background: linear-gradient(90deg, #2f6349 0%, #89a53b 100%);
}

.home-container
  .banner-swiper
  .swiper-pagination-bullet.swiper-pagination-bullet-active
  .bg {
  transition: all 5s;
  width: 100%;
}

.home-container .banner-swiper .swiper-container .icon {
  z-index: 9;
  position: absolute;
  bottom: -1.25rem;
  right: 0.8rem;
  width: 15.8rem;
  height: 9rem;
}

.home-container .banner-swiper .swiper-container .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-container .news {
  height: 100vh;
  padding: 4rem 2.5rem 1rem;
  background: #f5f5f5;
  position: relative;
}

.home-container .news .tag {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.45rem;
}

.home-container .news .tag img {
  width: 100%;
}

.home-container .news .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.375rem;
  height: 0.525rem;
}

.home-container .news .header .title {
  color: #333;
}

.home-container .news .header .more {
  /*color: #333;*/
  color: #fff;
  /*line-height: 0.525rem;*/
  position: relative;
  transition: all 0.5s;
}

.home-container .news .header .more:hover {
  /*color: #2f6349;*/
}

.home-container .news .header .more .underline {
  position: absolute;
  left: 0;
  bottom: -0.05rem;
  width: 0;
  height: 0.025rem;
  background: #2f6349;
  transition: all 0.5s;
}

.home-container .news .header .more:hover .underline {
  width: 100%;
}

.home-container .news .body {
  height: calc(100% - 1.9rem);
  display: flex;
}

.home-container .news .body .ft {
  width: 21.2rem;
  height: 100%;
}

.home-container .news .body .ft a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.home-container .news .body .ft .mask {
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem 1.725rem 1rem 1.825rem;
}

.home-container .news .body .ft a .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.home-container .news .body .ft a .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.home-container .news .body .ft:hover a .bg img {
  transform: scale(1.05);
}

.home-container .news .title {
  color: #fff;
  line-height: 0.6rem;
}

.home-container .news .cont {
  width: 100%;
  color: #fff;
  line-height: 0.625rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0.375rem 0 0.8rem;
}

.home-container .news .bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-container .news .time {
  color: #fff;
  line-height: 1;
}

.home-container .news .learn {
  display: flex;
  align-items: center;
}

.home-container .news .learn .text {
  color: #fff;
  line-height: 1;
  margin-right: 0.15rem;
}

.home-container .news .learn svg {
  transition: all 0.5s;
  fill: #000;
}

.home-container .news .learn:hover svg {
  transform: rotate(-30deg);
}

.home-container .news .rt {
  height: 100%;
  width: calc(100% - 21.2rem);
  padding-left: 0.6rem;
}

.home-container .news .rt li {
  height: calc((100% - 1.5rem) / 3);
  background: #fff;
  transition: all 0.5s;
}

.home-container .news .rt li:hover {
  background: #1b4b8c;
}

.home-container .news .rt li:not(:last-child) {
  margin-bottom: 0.75rem;
}

.home-container .news .rt li a {
  width: 100%;
  height: 100%;
  display: flex;
}

.home-container .news .rt li .img {
  /* padding-right: 1rem; */
  width: 9.225rem;
  height: 100%;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-clip-path: polygon(0 0, 90% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(0 0, 90% 0%, 90% 100%, 0% 100%);
}

.home-container .news .rt li:hover .img {
  -webkit-clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
}

.home-container .news .rt li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-container .news .rt li .info {
  width: calc(100% - 9.225rem);
  padding: 0.8rem 0.45rem 0.5rem 0.275rem;
  display: flex;

  flex-direction: column;
}

.home-container .news .rt li .info .title {
  color: #333;
  transition: all 0.5s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.home-container .news .rt li:hover .info .title {
  color: #fff;
}

.home-container .news .rt li .info .cont {
  color: #9f9f9f;
  -webkit-line-clamp: 2;
  height: 1.3rem;
  /*margin-bottom: .875rem;*/
  transition: all 0.5s;
}

.home-container .news .rt li:hover .info .cont {
  color: #fff;
}

.home-container .news .rt li .info .time {
  color: #666;
  transition: all 0.5s;
}

.home-container .news .rt li:hover .info .time {
  color: #fff;
}

.home-container .news .rt li .info .learn .text {
  color: #333;
  transition: all 0.5s;
}

.home-container .news .rt li:hover .info .learn .text {
  color: #fff;
}

.home-container .news .rt li .info .learn svg {
  transition: all 0.5s;
}

.home-container .news .rt li .info .learn:hover svg {
  transform: rotate(-30deg);
}

.home-container .news .rt li .info .learn svg path {
  transition: all 0.5s;
}

.home-container .news .rt li:hover .info .learn svg path {
  transition: all 0.5s;
  fill: #fff;
}

.home-container .about {
  padding-top: 5.65rem;
  padding-left: 2.5rem;
  background: #f5f5f5;
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/*.home-container .about .tag {
    position: absolute;
    left: 0;
    top: 0;
    width: 4.45rem;
}

.home-container .about .tag img {
    width: 100%;
}*/

.ft-icon {
  z-index: -2;
  position: fixed;
  left: 0;
  top: 0;
  width: 4.45rem;
  height: 24rem;
  opacity: 0;
  transition: all 0.5s;
}

.ft-icon.show {
  opacity: 1;
}

.ft-icon.active {
  opacity: 1;
  position: absolute;
}

.ft-icon svg {
  width: 100%;
  height: 100%;
}

.ft-icon svg path {
  fill: #2f6349;
  /*transition: all 0.5s;*/
}

/*.ft-icon.trans svg path{
    fill: #1B4B8C;
}*/

.home-container .about .title {
  color: #333;
  line-height: 0.525rem;
}

.home-container .about .info {
  position: relative;
  z-index: 10;
  margin-top: 2.5rem;
  display: block;
  width: 22.5rem;
  padding: 1.5rem 1.65rem 1.75rem 2.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.125rem);
}

.home-container .about .info .name {
  color: #333;
  line-height: 1.25rem;
  font-weight: 700;
  transition: all 0.5s;
}

.home-container .about .info .name:hover {
  color: #006699;
}

.home-container .about .info .cont {
  margin: 0.6rem 0 1.25rem;
  color: #9f9f9f;
  line-height: 1.625;
  height: 5.2rem;
  overflow-y: auto;
  padding-right: 2.325rem;
  text-align: justify;
}

.home-container .about .info .cont::-webkit-scrollbar {
  width: 0.05rem;
}

.home-container .about .info .cont::-webkit-scrollbar-track {
  background-color: #fff;
}

.home-container .about .info .cont::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, #89a53b 70.57%, #2f6349 100%);
}

.learn-more {
  width: 3.5rem;
  height: 0.75rem;
  padding-left: 0.75rem;
  line-height: 0.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.learn-more:hover {
  padding-left: 0.9rem;
}

.home-container .about .rt-img {
  position: absolute;
  top: -4.5rem;
  right: -3.325rem;
  width: 38.5rem;
  height: calc(100% + 4.5rem);
  -webkit-clip-path: polygon(90% 55%, 100% 30%, 100% 100%, 0 100%, 45% 0);
  clip-path: polygon(90% 55%, 100% 30%, 100% 100%, 0 100%, 45% 0);
  padding-top: 4.5rem;
  padding-right: 3rem;
}

.home-container .about .rt-img .static {
  height: 110%;
  /* object-fit: cover; */
}

.home-container .about .rt-img .layer-bg,
.home-container .about .rt-img .layer-1,
.home-container .about .rt-img .layer-2,
.home-container .about .rt-img .layer-overlay,
.home-container .about .rt-img .layer-4 {
  position: absolute;
  top: 4.5rem;
  right: 3rem;
  width: calc(100% - 3rem);
  height: calc(100% - 4.5rem);
  object-fit: cover;
}

.home-container .about .rt-img .layer-bg {
  z-index: 0;
}

.home-container .about .rt-img .layer-1 {
  z-index: 1;
}

.home-container .about .rt-img .layer-2 {
  z-index: 2;
}

.home-container .about .rt-img .layer-overlay {
  z-index: 3;
}

.home-container .about .rt-img .layer-4 {
  z-index: 4;
}

.home-container .about .icon {
  z-index: 9;
  position: absolute;
  right: 4.7rem;
  bottom: 0;
  width: 12.4rem;
  /*animation: moveUpDown 1s infinite alternate linear;*/
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0);
  }
}

.home-container .about .icon img {
  width: 100%;
}

.home-container .products {
  height: 100vh;
  background: #f5f5f5;
  position: relative;
}

.home-container .products .title {
  position: absolute;
  top: 4rem;
  left: 2.5rem;
  color: #333;
  line-height: 0.525rem;
}

.home-container .products .products-swiper {
  width: 100%;
  height: 100%;
   overflow: hidden;
}

.home-container .products .swiper-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
 
}

.home-container .products .swiper-slide {
  position: absolute;
  height: 18rem;
  transition: all 0.8s;
  width: 49.075rem;
  
}
.home-container .products .swiper-slide.on{
    transition-delay: 0.52s;
    z-index: 4;

}
.home-container .products .swiper-slide.on .mask{
    opacity: 0;
}

.home-container .products .swiper-slide:nth-child(1) {
  transform: scale(0.7);
  left: -21.75rem;
  bottom: -3.2rem;
}
.home-container .products .swiper-slide.on:nth-child(1) {
  transform: scale(1);
  left: -13.75rem;
  bottom: -1.325rem;
}

.home-container .products .swiper-slide:nth-child(2) {
  transform: scale(0.7);
  top: -3.4rem;
  left: 5rem;
}
.home-container .products .swiper-slide.on:nth-child(2) {
  transform: scale(1);
  top: 0;
  left: 0.425rem;
}
.home-container .products .swiper-slide:nth-child(2) .item .info {
  padding-top: 7rem;
}

/* .home-container .products .swiper-slide:nth-child(2).swiper-slide-active {
    top: -10.8vh;
    right: -10.75rem;
}

.home-container .products .swiper-slide:nth-child(2).swiper-slide-active+.swiper-slide:nth-child(3) {
    right: -5rem;
    bottom: -39.2vh;
} */

.home-container .products .swiper-slide:nth-child(3) {
  transform: scale(0.7);
  width: 53.025rem;
  left: 17.875rem;
  top: 8.1rem;
  height: 25.175rem;
}
.home-container .products .swiper-slide.on:nth-child(3) {
  transform: scale(1);

     left: 10.875rem;
    top: 8.7rem
}

.home-container .products .swiper-slide:nth-child(3).swiper-slide-active {
  right: -20rem;
  bottom: -5.52vh;
}

.home-container .products .swiper-slide-active {
  z-index: 1;
  /* width: 49.1rem !important; */
}

.home-container .products .item {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(25% 0, 97% 0, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0, 97% 0, 75% 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.home-container .products .item .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  /* background: rgba(0, 0, 0, 0.4); */
}
.home-container .products .swiper-slide:nth-child(1) .mask {
  background: rgba(115, 138, 54, 0.9);
}
.home-container .products .swiper-slide:nth-child(2) .mask {
  background: rgba(47, 99, 73, 0.65);
}
.home-container .products .swiper-slide:nth-child(3) .mask {
  background: rgba(60, 97, 147, 0.9);
}
.home-container .products .item .info {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 3.7rem;
  padding-left: 16.05rem;
}

.home-container .products .swiper-slide:nth-child(3) .item {
  -webkit-clip-path: polygon(28% 0, 100% 0, 75% 100%, 0% 100%);
  clip-path: polygon(28% 0, 100% 0, 75% 100%, 0% 100%);
}

.home-container .products .swiper-slide:nth-child(3).swiper-slide-active .item {
  -webkit-clip-path: polygon(20% 0, 100% 0, 75% 100%, 0% 100%);
  clip-path: polygon(20% 0, 100% 0, 75% 100%, 0% 100%);
}

.home-container
  .products
  .swiper-slide:nth-child(2).swiper-slide-active
  + .swiper-slide:nth-child(3)
  .item {
  -webkit-clip-path: polygon(25% 0, 100% 0, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0% 100%);
}

.home-container
  .products
  .swiper-slide:nth-child(2).swiper-slide-active
  + .swiper-slide:nth-child(3)
  .tag {
  left: 10rem;
}

.home-container .products .item .name {
  color: #fff;
  line-height: 1.25rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.home-container .products .on .item .name {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.5s;
}

.home-container .products .item .cont {
  color: #fff;
  width: 7.5rem;
  line-height: 1.625;
  margin: 0.65rem 0 1.25rem;
  height: 1.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.home-container .products .on .item .cont {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.6s;
}

.home-container .products .item .t3 {
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.home-container .products .on .item .t3 {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.7s;
}

.home-container .products .item .tag {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  line-height: 2.425rem;
  transition: all 0.5s;
  font-weight: 400;
  /* opacity: 0;
    transform: translateY(0.3rem);
    visibility: hidden; */
}

.home-container .products .swiper-slide-active .item .tag {
  color: rgba(255, 255, 255, 0.5);
}
.home-container .products .swiper-slide.on{
  cursor: default;
}
.home-container .products .swiper-slide{
  cursor: pointer;
}
.home-container .products .swiper-slide:nth-child(1) .tag {
    right: 13rem;
    bottom: 1.325rem;
}

.home-container .products .swiper-slide:nth-child(1).swiper-slide-active .tag {
  right: 12rem;
}

.home-container .products .swiper-slide:nth-child(2) .tag {
    left: 3rem;
    bottom: .6rem;
}

.home-container .products .swiper-slide:nth-child(2) .two-tag {
  left: 2rem !important;
}

.home-container .products .swiper-slide:nth-child(2).swiper-slide-active .tag {
  left: 34rem;
}

.home-container .products .swiper-slide:nth-child(3) .tag {
    top: 14.4rem;
    left: 8rem;
}
.home-container .products .swiper-slide:nth-child(3).on .tag{
top: 12.4rem;
    left: 10rem;
}
.home-container .products .swiper-slide:nth-child(3).swiper-slide-active .tag {
  left: 10rem;
}

.home-container .products .swiper-pagination {
  text-align: left;
  left: 5.25rem;
  bottom: 2rem;
}

.home-container .products .swiper-pagination-bullet {
  width: 0.225rem;
  height: 0.225rem;
  margin: 0 0.3rem;
  opacity: 1;
  background: #fff;
  cursor: pointer;
}

.home-container .products .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.home-container .products .swiper-pagination-bullet-active {
  background: #2ec49c;
}

.home-container .develop {
  height: 100vh;
  display: flex;
  position: relative;
}

.home-container .develop .info {
  display: block;
  width: 23.675rem;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.home-container .develop .info .of{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.home-container .develop .info:hover .of{
    transform: scale(1.02);
}

.home-container .develop .info .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
      transition: all 0.5s;
}
.home-container .develop .info:hover .mask{
      background: rgba(0, 0, 0, 0.1);
}

.home-container .develop .info .info-ft {
  padding: 5.925rem 6.25rem 0 5.25rem;
  z-index: 3;
  position: relative;
}

.home-container .develop .info .name {
  color: #fff;
  line-height: 1.25rem;
  font-weight: 700;
  transition: all 0.5s;
}

.home-container .develop .info .name:hover {
  color: #006699;
}

.home-container .develop .info .cont {
  margin: 0.4rem 0 1.25rem;
  color: #fff;
  line-height: 1.625;
}

.home-container .develop .img-list {
  width: calc(100% - 23.675rem);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

.home-container .develop .img-list li:first-child {
  width: 100%;
  height: 56.5%;
}

.home-container .develop .img-list li {
  width: 50%;
  height: 43.5%;
  overflow: hidden;
  position: relative;
}

.home-container .develop .img-list li img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.home-container .develop .img-list li:hover img {
  transform: scale(1.05);
}

.home-container .develop .img-list li .mask {
  width: 100%;
  height: 100%;
  background: rgba(27, 75, 140, 0.8);
  padding: 1.8rem 4rem 0 1.3rem;
  opacity: 0;
  transition: all 0.5s;
}

.home-container .develop .img-list li:hover .mask {
  opacity: 1;
}
.home-container .develop .img-list li .mask{
    display: flex;
    align-items: flex-end;

}
.home-container .develop .img-list li .cont{
  padding-bottom: 1.5rem;
  padding-right: 3rem;
}

.home-container .develop .img-list li .cont {
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  transition: all 0.5s;
  text-align: justify;
  transform: translateY(0.5rem);
  visibility: hidden;

}

.home-container .develop .img-list li:hover .cont {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.2s;
}

.home-container .join {
  height: 100vh;
  background: #f5f5f5;
  display: flex;
  padding-left: 2.5rem;
  position: relative;
}

.home-container .join .ft {
  width: calc(100% - 23.7rem);
}

.home-container .join .title {
  color: #333;
  line-height: 0.525rem;
  padding-top: 4rem;
}

.home-container .join .info {
  display: block;
  padding-top: 2.6rem;
  padding-left: 2.5rem;
}

.home-container .join .info .name {
  color: #333;
  line-height: 1.25rem;
  font-weight: 700;
  transition: all 0.5s;
}

.home-container .join .info:hover .name {
  color: #006699;
}

.home-container .join .info .cont {
  width: 13.325rem;
  margin: 0.875rem 0 2.125rem;
  color: #666;
  line-height: 1.625;
  overflow-y: auto;
  padding-right: 2.325rem;
  text-align: justify;
}

.home-container .join .rt {
  width: 23.7rem;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.home-container .join .rt img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  /* height: 110%; */
  /* object-fit: cover; */
}

.home-container header {
  position: absolute;
  z-index: 6;
}

.mb-banner {
  display: none;
}

@media (max-width: 767px) {
  .banner-w {
    padding: 0 0.5rem;
  }
  .pc-banner {
    display: none;
  }
  .mb-banner {
    display: block;
  }
  .banner-swiper {
    height: 9rem;
  }
  .home-container .banner-swiper .swiper-slide {
    height: 9rem;
  }
  .home-container .banner-swiper .swiper-slide .title {
    padding-top: 4rem;
    padding-left: 0.5rem;
    font-size: 0.7rem;
    line-height: 1.4;
  }
  .home-container .banner-swiper .swiper-pagination {
    bottom: 1rem;
  }
  .home-container .news {
    padding: 1rem 0.5rem;
  }
  .home-container .news .tag {
    width: 3rem;
  }
  .home-container .news .body {
    flex-direction: column;
    height: auto;
  }
  .home-container .news .body .ft {
    width: 100%;
    height: 7rem;
  }
  .home-container .news .rt {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
  .home-container .news .body .ft a {
    padding: 0.5rem;
  }
  .home-container .news .cont {
    margin: 0.25rem 0 0.5rem;
  }
  .home-container .news .rt li {
    height: auto;
  }
  .home-container .news .rt li a {
    flex-direction: column;
  }
  .home-container .news .rt li .img {
    width: 100%;
    height: 5rem;
    padding-right: 0;
  }
  .home-container .news .rt li .info {
    width: 100%;
    padding: 0.5rem;
  }
  .home-container .news .rt li .info .cont {
    margin-bottom: 0.5rem;
  }
  .home-container .about {
    padding: 3rem 0.5rem 0;
    height: 15rem;
  }
  .home-container .about .title {
    padding-left: 1rem;
  }
  .home-container .about .info {
    margin-top: 1rem;
    width: 100%;
    padding: 0.5rem;
  }
  .home-container .about .info .name {
    font-size: 0.6rem;
  }
  .home-container .about .info .cont {
    margin: 0.25rem 0 0.5rem;
    padding-right: 0.5rem;
  }
  .home-container .about .rt-img {
    width: 100%;
  }
  .home-container .products {
    height: 13rem;
  }
  .home-container .products .nb {
    width: 70%;
    top: 3.5rem;
    height: 5.5rem;
    right: -0.3rem;
  }
  .home-container .products .title {
    top: 2.5rem;
    left: 0.5rem;
  }
  .home-container .products .nb-fe {
    width: 90%;
    height: 7rem;
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
  }
  .home-container .products .nb-fe .name {
    font-size: 0.6rem;
  }
  .home-container .products .nb-fe .cont {
    width: 6rem;
    margin: 0.25rem 0 1rem;
  }
  .home-container .products .p {
    width: 40%;
    height: 4rem;
  }
  .home-container .products .nb-fe .tag {
    font-size: 0.7rem;
    right: 4.2rem;
  }
  .home-container .products .nb .tag {
    font-size: 0.6rem;
    right: 1.6rem;
    bottom: -0.6rem;
  }
  .home-container .products .p .tag {
    font-size: 0.6rem;
    top: -0.8rem;
    left: 2.5rem;
  }
  .home-container .products .swiper-pagination {
    left: 73%;
    bottom: 0.5rem;
  }
  .home-container .develop {
    flex-direction: column;
    height: auto;
  }
  .home-container .develop .info {
    width: 100%;
    padding: 3rem 0.5rem 1.5rem;
  }
  .home-container .develop .img-list {
    width: 100%;
  }
  .home-container .develop .img-list li {
    height: 6rem !important;
  }
  .home-container .develop .img-list li .mask {
    padding: 1rem 0.5rem;
  }
  .home-container .develop .img-list li:first-child {
    padding-top: 0;
  }
  .home-container .join {
    width: 100%;
    padding: 0 0.5rem;
    flex-direction: column;
    height: auto;
  }
  .home-container .join .ft {
    width: 100%;
  }
  .home-container .join .title {
    padding-top: 2.5rem;
  }
  .home-container .join .info {
    padding: 1rem 0;
  }
  .home-container .join .info .name {
    font-size: 0.6rem;
  }
  .home-container .join .info .cont {
    width: 100%;
    padding-right: 0;
    margin: 0 0 0.75rem;
  }
  .home-container .join .rt {
    width: 100%;
    height: 7rem;
  }
  .home-container .about .tag {
    width: 3rem;
  }
}

/* 首页 */

/* 关于我们 */

.about-container .banner {
  width: 100%;
  height: 18.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-container .banner .title {
  padding-top: 9.25rem;
  padding-left: 5.225rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.75rem;
}

.about-container .introduce {
  position: relative;
  height: 22.075rem;
  padding-top: 4rem;
}

.about-container .introduce .lt {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.45rem;
}

.about-container .introduce .lt img {
  width: 100%;
}

.about-container .introduce .title {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.85rem;
}

.about-container .introduce .body {
  display: flex;
}

.about-container .introduce .body .ft {
  width: 26rem;
  height: 15.575rem;
  margin-top: 0.4rem;
  position: relative;
}

.about-container .introduce .body .ft .pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
}

.about-container .introduce .body .ft .triangle {
  position: absolute;
  bottom: 1.2rem;
  right: 0.5rem;
  width: 10.725rem;
  height: 12.875rem;
  object-fit: contain;
}

.about-container .introduce .body .rt {
  width: calc(100% - 26rem);
  padding-left: 1.3rem;
  padding-right: calc(50% - 19rem);
}

.about-container .introduce .name {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
}

.about-container .introduce .info {
  color: #9f9f9f;
  line-height: 1.625;
}

.about-container .introduce .info p:not(:last-child) {
  margin-bottom: 0.65rem;
}

.about-container .culture {
  background: #1b4b8c;
  backdrop-filter: blur(0.125rem);
  padding: 2.425rem 0 3.55rem;
}

.about-container .culture .title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.375rem;
  text-align: center;
}

.about-container .culture .culture-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-container .culture .culture-list li {
  width: calc((100% - 1rem) / 2);
  height: 7.5rem;
  position: relative;
}

.about-container .culture .culture-list li a {
  width: 100%;
  height: 100%;
  display: flex;
}

.about-container .culture .culture-list li .icon {
  width: 6rem;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container .culture .culture-list li .info {
  width: calc(100% - 6rem);
  height: 100%;
  background: #fff;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 67%, 70% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 67%, 70% 100%, 0% 100%);
  padding: 0.75rem 1.55rem 1rem 1.125rem;
  display: flex;
  flex-direction: column;
}

.about-container .culture .culture-list li .rb {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.1rem;
  height: 2.075rem;
  object-fit: contain;
  z-index: 99;
}

.about-container .culture .culture-list li .name {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.175rem;
  transition: all 0.5s;
}

.about-container .culture .culture-list li .name:hover {
  color: #006699;
}

.about-container .culture .culture-list li .cont {
  color: #9f9f9f;
  line-height: 1.625;
}

.about-container .culture .culture-list li .learn-more {
  margin-top: auto;
}

.about-container .history {
  background: #f5f5f5;
  padding: 3.125rem 0 3.05rem;
  position: relative;
}

.about-container .history .title {
  color: #333;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.about-container .history .swiper-container {
  margin-left: 4.55rem;
  position: relative;
}

.about-container .history .swiper-container .swiper-wrapper {
  padding-right: 3.375rem;
}

.about-container .history .swiper-container .bg {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-left: 2.875rem;
}

.about-container .history .swiper-container .bg img {
  width: 100%;
}

.about-container .history .swiper-slide {
  display: flex;
}

.about-container .history .swiper-slide:nth-child(1) {
  padding-top: 1.375rem;
}

.about-container .history .swiper-slide:nth-child(2) {
  padding-top: 3.4rem;
}

.about-container .history .swiper-slide:nth-child(3) {
  padding-top: 0.25rem;
}

.about-container .history .swiper-slide .label {
  writing-mode: vertical-rl;
  color: #1b4b8c;
  font-weight: 900;
  margin-right: 0.325rem;
  height: fit-content;
  letter-spacing: 0.16rem;
}

.about-container .history .swiper-slide .rt {
  width: 8.75rem;
}

.about-container .history .swiper-slide .pic {
  position: relative;
  width: 100%;
  padding-bottom: 0.25rem;
}

.about-container .history .swiper-slide .pic .pic-bg {
  z-index: -1;
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 100%;
  height: 5.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 0);
}

.about-container .history .swiper-slide .pic img {
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
  -webkit-clip-path: polygon(100% 0, 100% 73%, 80% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 73%, 80% 100%, 0 100%, 0 0);
}

.about-container .history .swiper-slide .cont {
  color: #9f9f9f;
  line-height: 1.625;
  margin-top: 0.675rem;
}

.about-container .history .rb {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-container .structure {
  height: 24.65rem;
  background: #fff;
  backdrop-filter: blur(0.125rem);
  padding: 2.575rem 0 2.2rem;
}

.about-container .structure .title {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
}

.about-container .structure img {
  width: 100%;
  height: 17.5rem;
  object-fit: cover;
  margin-top: 1.15rem;
}

.about-container .contact {
  height: 24.65rem;
  background: #f5f5f5;
  backdrop-filter: blur(0.125rem);
  padding-top: 2.95rem;
}

.about-container .contact .title {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 1.675rem;
}

.about-container .contact .body {
  position: relative;
}

.about-container .contact .body .ft {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 34.85rem;
  height: 19.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-container .contact .body .ft img {
  width: 34.2rem;
  height: 18.75rem;
  object-fit: cover;
  -webkit-clip-path: polygon(0 0, 100% 0%, 67% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 67% 100%, 0% 100%);
}

.about-container .contact .contact-list {
  position: absolute;
  top: 0;
  right: 0;
  width: 20.5rem;
}

.about-container .contact .contact-list li {
  padding: 1.4rem 0 1.325rem;
  display: flex;
  align-items: center;
}

.about-container .contact .contact-list li:nth-child(1) {
  padding-left: 6.75rem;
}

.about-container .contact .contact-list li:nth-child(2) {
  padding-left: 4.5rem;
}

.about-container .contact .contact-list li:nth-child(3) {
  padding-left: 2.25rem;
}

.about-container .contact .contact-list li:not(:last-child) {
  border-bottom: 0.025rem dashed rgba(0, 0, 0, 0.2);
}

.about-container .contact .contact-list li .icon {
  width: 3.05rem;
  height: 1.175rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.35rem;
}

.about-container .contact .contact-list li .label {
  width: calc(100% - 3.55rem);
  color: #333;
  font-weight: 600;
}

.about-container .contact .contact-list li .label:not(:first-child) {
  font-size: 0.5rem;
}

.about-container .contact .contact-list li .info {
  display: flex;
  align-items: center;
}

.about-container .contact .contact-list li .info .label {
  width: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.about-container .contact .contact-list li .media {
  display: flex;
  gap: 0.4rem;
  margin-left: 0.45rem;
}

.about-container .contact .contact-list li .media a {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
}

.about-container .contact .contact-list li .media a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .about-container .banner {
    height: 7rem;
  }
  .about-container .banner .title {
    padding-top: 3rem;
    padding-left: 1rem;
    font-size: 0.7rem;
  }
  .about-container .introduce {
    height: auto;
    padding-top: 1rem;
  }
  .about-container .introduce .lt {
    width: 2rem;
  }
  .about-container .introduce .title {
    font-size: 0.6rem;
    padding-left: 1rem;
    margin-bottom: 0.25rem;
  }
  .about-container .introduce .body {
    flex-direction: column;
  }
  .about-container .introduce .body .ft {
    width: 100%;
    height: 7rem;
  }
  .about-container .introduce .body .ft .pic {
    -webkit-clip-path: polygon(0 0, 47% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 47% 0, 100% 100%, 0% 100%);
  }
  .about-container .introduce .body .ft .triangle {
    width: 5rem;
    height: auto;
    bottom: 0.7rem;
    right: 0.3rem;
  }
  .about-container .introduce .body .rt {
    width: 100%;
    padding: 1rem 0.5rem;
  }
  .about-container .introduce .name {
    font-size: 0.6rem;
    margin-bottom: 0.25rem;
  }
  .about-container .introduce .info p:not(:last-child) {
    margin-bottom: 0.25rem;
  }
  .about-container .culture {
    padding: 1rem 0;
  }
  .about-container .culture .title {
    margin-bottom: 0.75rem;
    font-size: 0.6rem;
  }
  .about-container .culture .culture-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .about-container .culture .culture-list li {
    width: 100%;
    height: auto;
  }
  .about-container .culture .culture-list li a {
    flex-direction: column;
  }
  .about-container .culture .culture-list li .icon {
    width: 100%;
  }
  .about-container .culture .culture-list li .icon img {
    transform: scale(0.6);
  }
  .about-container .culture .culture-list li .info {
    width: 100%;
    padding: 0.1rem 0.5rem 1rem;
    height: 7rem;
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 65%, 65% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0, 100% 65%, 65% 100%, 0% 100%);
  }
  .about-container .culture .culture-list li .name {
    font-size: 0.5rem;
  }
  .about-container .history {
    padding: 1rem 0;
  }
  .about-container .history .title {
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
  }
  .about-container .history .swiper-container {
    margin-left: 0;
  }
  .about-container .history .swiper-slide .label {
    font-size: 0.8rem;
    margin-right: 0.25rem;
  }
  .about-container .history .swiper-container .bg {
    display: none;
  }
  .about-container .history .swiper-container .swiper-wrapper {
    padding-right: 0;
    height: 10.5rem !important;
  }
  .about-container .history .swiper-slide {
    padding-top: 0 !important;
    padding: 0 0.25rem;
  }
  .about-container .history .rb {
    width: 2rem;
  }
  .about-container .structure {
    height: 12rem;
    padding-top: 1rem;
  }
  .about-container .structure .title {
    font-size: 0.6rem;
  }
  .about-container .structure img {
    margin-top: 0.5rem;
    height: 8rem;
  }
  .about-container .contact {
    height: auto;
    padding-top: 1rem;
  }
  .about-container .contact .title {
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
  }
  .about-container .contact .body {
    height: 100%;
  }
  .about-container .contact .body .ft {
    width: 100%;
    height: 6rem;
    position: relative;
  }
  .about-container .contact .body .ft img {
    width: 97%;
    height: 6rem;
    -webkit-clip-path: polygon(0 0, 100% 0%, 66% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 66% 100%, 0% 100%);
  }
  .about-container .contact .contact-list {
    position: relative;
    padding: 0 0.5rem 1rem;
    width: 100%;
  }
  .about-container .contact .contact-list li {
    padding-left: 0 !important;
  }
  .about-container .contact .contact-list li {
    padding: 1rem 0;
  }
  .about-container .contact .contact-list li .label {
    width: calc(100% - 3.55rem);
    font-size: 0.45rem;
  }
  .about-container .contact .contact-list li:first-child .label {
    font-size: 0.6rem;
  }
}

/* 关于我们 */

/* 我们的产品 - 铌精矿 */

.product-container .banner {
  width: 100%;
  height: 18.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-container .banner .title {
  padding-top: 9.25rem;
  padding-left: 5.225rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.75rem;
}

.product-container .introduce {
  z-index: 1;
  position: relative;
  background: #f5f5f5;
  height: 21.825rem;
  padding-top: 4.45rem;
  padding-left: 5rem;
}

.product-container .introduce .lt {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.45rem;
}

.product-container .introduce .lt img {
  width: 100%;
}

.product-container .introduce .ft {
  width: 15.675rem;
}

.product-container .introduce .title {
  color: #333;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.product-container .introduce .cont {
  color: #9f9f9f;
  line-height: 1.625;
}

.product-container .introduce .cont p:not(:last-child) {
  margin-bottom: 0.65rem;
}

.product-container .introduce .rt {
  position: absolute;
  top: 0;
  right: 0;
  width: 32.75rem;
  height: 100%;
  -webkit-clip-path: polygon(47% 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(47% 0, 100% 0%, 100% 100%, 0% 100%);
}

.product-container .introduce .rt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-container .introduce .lb {
  position: absolute;
  left: 0;
  bottom: -0.025rem;
  width: 19.15rem;
  height: 5.6rem;
  background: linear-gradient(90deg, #004ea0 0%, #31cc9c 100%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  font-size: 3.2rem;
  padding-left: 1.75rem;
}

.product-container .introduce .tag {
  padding-left: 0.375rem;
}

.product-container .ingredient {
  background: #2f6349;
  display: flex;
}

.product-container .ingredient .ft {
  width: 24rem;
  height: 16.35rem;
}

.product-container .ingredient .ft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-container .ingredient .rt {
  width: calc(100% - 24rem);
  padding: 3rem 5rem 0 2.2rem;
}

.product-container .ingredient .title {
  color: #fff;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-container .ingredient .cont {
  color: #fff;
  line-height: 1.625;
}

.product-container .ingredient .cont p:not(:last-child) {
  margin-bottom: 0.65rem;
}

.product-container .craft {
  background: #fff;
  display: flex;
}

.product-container .craft .ft {
  width: 24rem;
  padding: 3.35rem 3.3rem 0 5rem;
}

.product-container .craft .title {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.65rem;
}

.product-container .craft .cont {
  color: #9f9f9f;
  line-height: 1.625;
}

.product-container .craft .cont p:not(:last-child) {
  margin-bottom: 0.65rem;
}

.product-container .craft .rt {
  width: calc(100% - 24rem);
  height: 15.375rem;
}

.product-container .craft .rt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .product-container .banner {
    height: 7rem;
  }
  .product-container .banner .title {
    padding-top: 3rem;
    padding-left: 1rem;
    font-size: 0.7rem;
  }
  .product-container .introduce {
    padding: 1rem 0 0;
    height: auto;
  }
  .product-container .introduce .ft {
    width: 100%;
    padding: 0 0.5rem;
  }
  .product-container .introduce .title {
    font-size: 0.6rem;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
  }
  .product-container .introduce .rt {
    position: relative;
    width: 100%;
  }
  .product-container .introduce .lb {
    position: relative;
    width: 100%;
    font-size: 2rem;
    height: 3.2rem;
    padding-left: 0.5rem;
  }
  .product-container .ingredient {
    flex-direction: column;
  }
  .product-container .ingredient .ft,
  .product-container .craft .rt {
    width: 100%;
    height: 8rem;
  }
  .product-container .ingredient .rt,
  .product-container .craft .ft {
    width: 100%;
    padding: 0.5rem 0.5rem 1rem;
  }
  .product-container .ingredient .title,
  .product-container .craft .title {
    font-size: 0.6rem;
    margin-bottom: 0;
  }
  .product-container .ingredient .cont p:not(:last-child),
  .product-container .craft .cont p:not(:last-child) {
    margin-bottom: 0.25rem;
  }
  .product-container .craft {
    flex-direction: column;
  }
  .product-container .introduce .lt {
    width: 2rem;
  }
}

/* 我们的产品 - 铌精矿 */

/* 业务领域  */

.field-container .banner {
  width: 100%;
  height: 18.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.field-container .banner .title {
  padding-top: 9.25rem;
  padding-left: 5.225rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.75rem;
}

.field-container .introduce {
  position: relative;
  background: #f5f5f5;
  padding: 3.85rem 4.7rem 3rem 5rem;
  display: flex;
  justify-content: space-between;
}

.field-container .introduce .lt {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.45rem;
}

.field-container .introduce .lt img {
  width: 100%;
}

.field-container .introduce .title {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
}

.field-container .introduce .cont {
  width: 17.075rem;
  color: #767676;
  line-height: 0.7rem;
}

.field-container .step {
  height: 15.675rem;
  background: #1b4b8c;
  display: flex;
}

.field-container .step .step-list {
  width: 13rem;
  padding-left: 4.9rem;
  padding-top: 2.45rem;
}

.field-container .step .step-list li {
  display: flex;
  align-items: center;
}

.field-container .step .step-list li:not(:last-child) {
  margin-bottom: 2rem;
}

.field-container .step .step-list li .text {
  padding: 0 0.65rem 0 0.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.field-container .step .img {
  width: calc(100% - 13rem);
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 32% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 32% 100%);
}

.field-container .step .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro {
  background: #f5f5f5;
  padding: 3.1rem 0 4rem;
}

.intro-list {
  display: flex;
  gap: 0.675rem;
}

.intro-list li {
  width: calc((100% - 2.025rem) / 4);
  position: relative;
}

.intro-list li .rb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.85rem;
  height: 1.275rem;
}

.intro-list li .rb svg {
  width: 100%;
  height: 100%;
}

.intro-list li .icon {
  width: 100%;
  height: 5.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-list li .info {
  background: #fff;
  height: 9.25rem;
  padding: 0.85rem 1rem 0 1.25rem;
  -webkit-clip-path: polygon(100% 0, 100% 82%, 74% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 82%, 74% 100%, 0 100%, 0 0);
}

.intro-list li .title {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.175rem;
  transition: all 0.5s;
}

.intro-list li:hover .title {
  color: #006699;
}

.intro-list li .cont {
  color: #9f9f9f;
  line-height: 1.625;
}

@media (max-width: 767px) {
  .field-container .banner {
    height: 7rem;
  }
  .field-container .banner .title {
    padding-top: 3rem;
    padding-left: 1rem;
    font-size: 0.7rem;
  }
  .field-container .introduce {
    padding: 1rem 0.5rem;
    flex-direction: column;
  }
  .field-container .introduce .title {
    font-size: 0.6rem;
    padding-left: 1rem;
  }
  .field-container .introduce .cont {
    width: 100%;
  }
  .field-container .step {
    flex-direction: column;
    height: auto;
  }
  .field-container .step .step-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 1rem;
    gap: 0.5rem;
  }
  .field-container .step .step-list li {
    width: calc((100% - 0.5rem) / 2);
  }
  .field-container .step .step-list li:not(:last-child) {
    margin-bottom: 0;
  }
  .field-container .step .step-list li svg {
    width: 0.8rem;
    height: 0.8rem;
  }
  .field-container .step .step-list li .text {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
  .field-container .step .img {
    width: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .intro {
    padding: 1rem 0 2rem;
  }
  .intro-list {
    flex-direction: column;
  }
  .intro-list li {
    width: 100%;
  }
  .intro-list li .icon {
    height: 3rem;
  }
  .intro-list li .icon img {
    transform: scale(0.6);
  }
  .intro-list li .info {
    height: 6rem;
    padding: 0.25rem 0.5rem 0;
    -webkit-clip-path: polygon(100% 0, 100% 74%, 78% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 74%, 78% 100%, 0 100%, 0 0);
  }
  .intro-list li .title {
    font-size: 0.5rem;
  }
  .field-container .introduce .lt {
    width: 2rem;
  }
}

/* 业务领域  */

/* 可持续发展  */

.develop-container {
  background: #f5f5f5;
}

.develop-container .banner {
  width: 100%;
  height: 18.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.develop-container .banner .title {
  padding-top: 9.25rem;
  padding-left: 5.225rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.75rem;
}

.develop-container .introduce {
  position: relative;
  background: #f5f5f5;
  padding: 3.85rem 4.7rem 3.675rem 5rem;
  display: flex;
  justify-content: space-between;
}

.develop-container .introduce .lt {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.45rem;
}

.develop-container .introduce .lt img {
  width: 100%;
}

.develop-container .introduce .title {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
}

.develop-container .introduce .cont {
  width: 17.075rem;
  color: #767676;
  line-height: 0.7rem;
}

.develop-container .intro-list li .info {
  height: 10.25rem;
}

.develop-container .intro-list li .info {
  -webkit-clip-path: polygon(100% 0, 100% 84%, 74% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 84%, 74% 100%, 0 100%, 0 0);
}

.develop-container .concept {
  width: 100%;
  height: 24rem;
  position: relative;
  background: linear-gradient(90deg, #004ea0 0%, #31cc9c 100%);
}

.develop-container .concept .img {
  width: 22.075rem;
  height: 24rem;
  -webkit-clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
}

.develop-container .concept .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.develop-container .concept .concept-list {
  position: absolute;
  top: 0;
  right: 0;
  width: 37.075rem;
  height: 24rem;
  padding-top: 2.825rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 1.85rem;
}

.develop-container .concept .concept-list li {
  display: flex;
}

.develop-container .concept .concept-list li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.develop-container .concept .concept-list li:nth-child(1) {
  padding-right: 6rem;
}

.develop-container .concept .concept-list li:nth-child(2) {
  padding-right: 4rem;
}

.develop-container .concept .concept-list li:nth-child(3) {
  padding-right: 2rem;
}

.develop-container .concept .concept-list li .icon {
  width: 1.175rem;
  height: 1.175rem;
  margin-right: 0.675rem;
}

.develop-container .concept .concept-list li .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.develop-container .concept .concept-list li .info {
  width: 22.75rem;
}

.develop-container .concept .concept-list li .title {
  color: #fff;
  font-weight: 700;
  line-height: 0.7rem;
  padding: 0.25rem 0 0.625rem;
}

.develop-container .concept .concept-list li .cont {
  color: #fff;
  line-height: 1.625;
}

.develop-container .promise {
  padding: 3.2rem 4.8rem 2.225rem 5rem;
}

.develop-container .promise-img img {
  width: 100%;
  height: 22.175rem;
  object-fit: cover;
}

.develop-container .intro {
  padding: 3rem 0 3.925rem;
}

@media (max-width: 767px) {
  .develop-container .banner {
    height: 7rem;
  }
  .develop-container .banner .title {
    padding-top: 3rem;
    padding-left: 1rem;
    font-size: 0.7rem;
  }
  .develop-container .introduce {
    padding: 1rem 0.5rem;
    flex-direction: column;
  }
  .develop-container .introduce .lt {
    width: 2rem;
  }
  .develop-container .introduce .title {
    font-size: 0.6rem;
    padding-left: 1rem;
  }
  .develop-container .introduce .cont {
    width: 100%;
  }
  .develop-container .concept {
    height: auto;
  }
  .develop-container .concept .img {
    width: 100%;
    height: 10rem;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .develop-container .concept .concept-list {
    position: relative;
    width: 100%;
    padding: 1rem 0.5rem;
    height: auto;
  }
  .develop-container .concept .concept-list li {
    width: 100%;
    padding-right: 0 !important;
  }
  .develop-container .concept .concept-list li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .develop-container .concept .concept-list li .icon {
    margin-right: 0.5rem;
  }
  .develop-container .concept .concept-list li .info {
    width: calc(100% - 1.675rem);
  }
  .develop-container .promise-img img {
    height: 6rem;
  }
  .develop-container .intro-list li .info {
    height: 8rem;
    -webkit-clip-path: polygon(100% 0, 100% 84%, 74% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 81%, 78% 100%, 0 100%, 0 0);
  }
}

/* 可持续发展  */

/* 新闻中心  */

.news-container .banner {
  width: 100%;
  height: 18.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-container .banner .title {
  padding-top: 9.25rem;
  padding-left: 5.225rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.75rem;
}

.news-container .company {
  position: relative;
  background: #f5f5f5;
  padding: 3.85rem 0 3.125rem;
}

.news-container .company .lt {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.45rem;
}

.news-container .company .lt img {
  width: 100%;
}

.news-container .company .title {
  display: flex;
  gap: 1.5rem;
}

.news-container .company h1 {
  font-weight: 700;
  line-height: 1.25rem;
  position: relative;
  color: rgba(51, 51, 51, 0.3);
  cursor: pointer;
}

.news-container .company h1:first-child:after {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: -0.725rem;
  width: 0.05rem;
  height: 0.85rem;
  background: #d9d9d9;
}

.news-container .company .active {
  color: #333;
}

.news-container .company .news-container {
  width: 100%;
  height: 11.8rem;
  margin: 1.25rem 0 ;
}

.news-container .company .news-container .swiper-wrapper {
  height: 100%;
}

.news-container .company .swiper-slide {
  width: 100%;
  height: 100%;
  background: #1b4b8c;
}

.news-container .company .swiper-slide a {
  display: flex;
  width: 100%;
  height: 100%;
}

.news-container .company .swiper-slide .img {
  width: 20.25rem;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}

.news-container .company .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-container .company .swiper-slide .info {
  width: calc(100% - 20.25rem);
  padding: 2.95rem 2.1rem 2.125rem 0.55rem;
}

.news-container .company .swiper-slide .info .time {
  color: #fff;
  line-height: 1;
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.news-container .company .swiper-slide.swiper-slide-active .info .time {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.3s;
}

.news-container .company .swiper-slide .info .title {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin: 0.4rem 0 0.8rem;
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.news-container .company .swiper-slide.swiper-slide-active .info .title {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.5s;
}

.news-container .company .swiper-slide .info .cont {
  color: #fff;
  line-height: 1.625;
  margin-bottom: 1.625rem;
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.news-container .company .swiper-slide.swiper-slide-active .info .cont {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.7s;
}

.news-container .company .swiper-slide .learn-more {
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.news-container .company .swiper-slide .learn-more:hover {
  transition-delay: 0s !important;
}

.news-container .company .swiper-slide.swiper-slide-active .learn-more {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.9s;
}

.news-container .company .swiper-pagination {
  top: 10rem;
  right: 21.5rem;
}

.news-container .company .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0.1rem 0;
  border-radius: 0;
  opacity: 1;
}

.news-container .company .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.news-container .company .company-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  gap: 0.95rem;
  padding-bottom: 2.5rem;
}

.news-container .company .company-list li {
  width: calc((100% - 1.9rem) / 3);
  position: relative;
}

.news-container .company .company-list li a {
  display: block;
  width: 100%;
}

.news-container .company .company-list li .rb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.85rem;
  height: 1.275rem;
}

.news-container .company .company-list li .rb svg {
  width: 100%;
  height: 100%;
}

.news-container .company .company-list li .img {
  width: 100%;
  height: 6.25rem;
  overflow: hidden;
}

.news-container .company .company-list li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.news-container .company .company-list li:hover .img img {
  transform: scale(1.05);
}

.news-container .company .company-list li .info {
  background: #fff;
  height: 6.75rem;
  padding: 0.8rem 1.15rem 0 1.225rem;
  -webkit-clip-path: polygon(100% 0, 100% 75%, 80% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 75%, 80% 100%, 0 100%, 0 0);
}

.news-container .company .company-list li .title {
  color: #333;
  font-weight: 700;
  line-height: 0.75rem;
  overflow: hidden;
  height: 1.5rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0.3rem;
  transition: all 0.5s;
}

.news-container .company .company-list li:hover .title {
  color: #006699;
}

.news-container .company .company-list li .cont {
  color: #9f9f9f;
  line-height: 1.625;
  height: 2rem;
  margin-bottom: 0.825rem;
}

.news-container .company .company-list li .time {
  color: #acacac;
  line-height: 1;
}

@media (max-width: 767px) {
  .news-container .banner {
    height: 7rem;
  }
  .news-container .banner .title {
    padding-top: 3rem;
    padding-left: 1rem;
    font-size: 0.7rem;
  }
  .news-container .company {
    padding: 1rem 0 2rem;
  }
  .news-container .company .title {
    padding-left: 1rem;
  }
  .news-container .company h1 {
    font-size: 0.6rem;
  }
  .news-container .company h1:first-child:after {
    height: 0.5rem;
    top: 0.4rem;
  }
  .news-container .company .news-container {
    margin: 0.5rem 0 1rem;
    height: 16rem;
  }
  .news-container .company .swiper-slide a {
    flex-direction: column;
  }
  .news-container .company .swiper-slide .img {
    width: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .news-container .company .swiper-slide .info {
    width: 100%;
    padding: 1rem 0.5rem;
  }
  .news-container .company .swiper-slide .info .title {
    margin-bottom: 0.5rem;
    font-size: 0.5rem;
  }
  .news-container .company .swiper-slide .info .cont {
    margin-bottom: 1rem;
  }
  .news-container .company .swiper-pagination {
    top: 91%;
    right: 1rem;
  }
  .news-container .company .company-list {
    padding-bottom: 1rem;
  }
  .news-container .company .company-list li {
    width: 100%;
  }
  .news-container .company .company-list li .img {
    height: 5rem;
  }
  .news-container .company .company-list li .info {
    padding: 0.5rem 0.5rem 0;
    height: 6rem;
    -webkit-clip-path: polygon(100% 0, 100% 75%, 79% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 75%, 79% 100%, 0 100%, 0 0);
  }
  .news-container .company .company-list li .title {
    font-size: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .news-container .company .company-list li .cont {
    margin-bottom: 0.5rem;
  }
  .news-container .company .lt {
    width: 2rem;
  }
}

/* 新闻中心  */

/* 新闻详情  */

.news-detail {
  background: #f5f5f5;
}

.news-detail .bread-crumb {
  padding-top: 3.45rem;
  color: #767676;
  font-size: 0.4rem;
  font-weight: 500;
  line-height: 1.25rem;
  display: flex;
}

.news-detail .bread-crumb a {
  color: inherit;
  display: flex;
  align-items: center;
}

.news-detail .bread-crumb a img {
  margin-right: 0.35rem;
  width: 0.625rem;
  height: 1.25rem;
  object-fit: contain;
}

.news-detail .detail-container {
  padding: 0 11rem;
}

.news-detail .title {
  color: #333;
  line-height: 1;
  font-weight: 700;
  padding: 1.75rem 0 0.75rem;
  text-align: center;
}

.news-detail .time {
  color: #acacac;
  line-height: 1;
  padding-bottom: 0.65rem;
  text-align: center;
}

.news-detail .cont {
  padding: 2rem 0;
  border-top: 0.025rem solid #d9d9d9;
  border-bottom: 0.025rem solid #d9d9d9;
  line-height: 0.7rem;
}

.news-detail .cont p:not(:last-child) {
  margin-bottom: 0.7rem;
}

.news-detail .cont img {
  max-width: 100%;
  display: inline-block;
  margin: 0.5rem 0;
}

.news-detail .jump {
  padding: 1rem 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-detail .jump .ft {
  width: calc(100% - 4rem);
}

.news-detail .jump .prev,
.news-detail .jump .next {
  color: #000;
  line-height: 1.75;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-detail .jump .learn-more:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .news-detail .bread-crumb {
    padding-top: 2rem;
  }
  .news-detail .detail-container {
    padding: 0 0.5rem;
  }
  .news-detail .title {
    padding: 0.5rem;
    font-size: 0.6rem;
    line-height: 1.3;
  }
  .news-detail .cont {
    padding: 1rem 0;
  }
  .news-detail .jump {
    flex-direction: column;
    align-items: start;
  }
  .news-detail .jump .ft {
    width: 100%;
  }
  .news-detail .jump .learn-more {
    margin-top: 0.5rem;
    margin-left: auto;
  }
}

/* 新闻详情  */

/* 招贤纳士  */

.join-container .banner {
  width: 100%;
  height: 18.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.join-container .banner .title {
  padding-top: 9.25rem;
  padding-left: 5.225rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.75rem;
}

.join-container .manage {
  position: relative;
  background: #f5f5f5;
  height: 12.85rem;
}

.join-container .manage .lt {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.45rem;
}

.join-container .manage .lt img {
  width: 100%;
}

.join-container .manage .swiper-container {
  overflow: visible;
  position: relative;
  height: 20.1rem;
}

.join-container .manage .swiper-slide {
  z-index: 2;
  position: relative;
}
.join-container .manage {
  position: relative;
}
.join-container .manage .ft {
  padding-top: 3.85rem;
  padding-left: 5rem;
  width: 17.075rem;
  position: absolute;
  top: 0;
  left: 0;
}

.join-container .manage .ft .title {
  color: #333;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 1.15rem;
}

.join-container .manage .ft:hover .title {
  color: #006699;
}

.join-container .manage .ft .cont {
  color: #767676;
  line-height: 0.7rem;
}

.join-container .manage .swiper-slide .rt {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 29.75rem;
  height: 20.1rem;
  background: #1b4b8c;
  padding-left: 3.375rem;
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.join-container .manage .swiper-slide .rt .img {
  width: 100%;
  height: 12.85rem;
}

.join-container .manage .swiper-slide .rt .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-container .manage .swiper-slide .rt .info {
  padding: 1.5rem 5rem 0 2rem;
}

.join-container .manage .swiper-slide .rt .title {
  color: #fff;
  font-weight: 700;
  line-height: 0.7rem;
  margin-bottom: 0.625rem;
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
}

.join-container .manage .swiper-slide.swiper-slide-active .rt .title {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.3s;
}

.join-container .manage .swiper-slide .rt .cont {
  color: #fff;
  line-height: 0.65rem;
  opacity: 0;
  transform: translateY(0.3rem);
  visibility: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.join-container .manage .swiper-slide.swiper-slide-active .rt .cont {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.4s;
}

.join-container .manage .swiper-pagination {
  left: 23.625rem;
  bottom: 1.075rem;
  text-align: left;
}

.join-container .manage .swiper-pagination .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0.175rem;
  border-radius: 0;
  opacity: 1;
}

.join-container .manage .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.join-container .recruit {
  position: relative;
}

.join-container .recruit .lt {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 26.675rem;
}

.join-container .recruit .lt img {
  width: 100%;
}

.join-container .recruit .title {
  display: flex;
  padding: 9rem 0 1.25rem;
  gap: 1.5rem;
}

.join-container .recruit h1 {
  font-weight: 700;
  line-height: 1.25rem;
  position: relative;
  color: rgba(255, 255, 255, 0.3);
}

.join-container .recruit h1:first-child:after {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: -0.725rem;
  width: 0.05rem;
  height: 0.85rem;
  background: #fff;
}

.join-container .recruit .active {
  color: #fff;
}

.join-container .table-box {
  padding: 2.35rem 0 2.625rem;
  font-family: "Montserrat-Medium";
}

.join-container table {
  width: 100%;
}

.join-container table thead tr {
  background-image: url(../../web/img/thead-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 0.15rem solid #f5f5f5;
}

.join-container table thead tr th {
  text-align: left;
  height: 2rem;
  color: #fff;
  font-size: 0.45rem;
  font-weight: 500;
  padding-left: 2.425rem;
}

.join-container table thead tr th:not(:last-child) {
  width: 6.825rem;
}

.join-container table tbody tr {
  background: #fff;
  border: 0.025rem solid #dedede;
}

.join-container table tbody tr td:not(:last-child) {
  width: 6.825rem;
}

.join-container table tbody tr td {
  height: 2rem;
  color: #000;
  font-size: 0.45rem;
  font-weight: 500;
  padding-left: 2.425rem;
}

.join-container table .tr {
  cursor: pointer;
}

.join-container table tr .expand {
  display: flex;
  align-items: center;
}

.join-container table tr .expand .text {
  margin-right: 3.15rem;
}

.join-container table tr .expand img {
  width: 0.35rem;
  height: 0.275rem;
  object-fit: contain;
  transition: all 0.5s;
}

.join-container table tr .expand .active {
  transform: rotate(180deg);
}

.join-container table tr .expand .icon2 {
  display: none;
}

.join-container table .require td {
  display: none;
  height: auto;
  padding: 1.25rem 1.825rem 1.4rem 2.6rem;
}

.join-container table .require td .apply {
  cursor: pointer;
  width: 4rem;
  height: 1.25rem;
  border-radius: 1.5rem;
  color: #ffffff;
  line-height: 1.25rem;
  text-align: center;
  background: linear-gradient(90deg, #004ea0 0%, #31cc9c 100%);
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.join-container table .require td .apply::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(144, 204, 177, 0.3);
  transition: all 0.5s;
  border-radius: 1.5rem;
}

.join-container table .require td .apply:hover::before {
  width: 100%;
}

.join-container .table-box .popup {
  z-index: 99;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 4rem;
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
  display: none;
  padding: 1rem;
}

.join-container .table-box .text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-container .table-box .popup .close-btn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0.5rem;
  color: #999;
}

.join-container table li {
  margin-bottom: 0.65rem;
}

.join-container table li .label {
  color: #2f6349;
  font-weight: 700;
  line-height: 0.65rem;
}

.join-container table li .cont {
  color: #767676;
  font-weight: 500;
  line-height: 0.65rem;
}

@media (max-width: 767px) {
  .join-container .banner {
    height: 7rem;
  }
  .join-container .banner .title {
    padding-top: 3rem;
    padding-left: 1rem;
    font-size: 0.7rem;
  }
  .join-container .manage {
    height: auto;
  }
  .join-container .manage .lt {
    width: 2rem;
  }
  .join-container .manage .swiper-slide .ft {
    margin: 0;
    padding: 1rem 0.5rem;
    width: 100%;
  }
  .join-container .manage .swiper-slide .ft .title {
    font-size: 0.6rem;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
  }
  .join-container .manage .swiper-slide .rt {
    position: relative;
    width: 100%;
    height: auto;
    padding-left: 0;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .join-container .manage .swiper-slide .rt .img {
    height: 6rem;
  }
  .join-container .manage .swiper-slide .rt .info {
    padding: 1rem 0.5rem 2rem;
  }
  .join-container .manage .swiper-slide .rt .title {
    font-size: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .join-container .manage .swiper-pagination {
    left: 0;
    bottom: 1rem;
  }
  .join-container .recruit .lt {
    width: 100%;
  }
  .join-container .recruit .title {
    padding: 3rem 0 0.5rem;
  }
  .join-container .recruit h1 {
    font-size: 0.6rem;
  }
  .join-container .recruit h1:first-child:after {
    height: 0.5rem;
    top: 0.4rem;
  }
  .join-container .table-box {
    padding: 1rem 0 2rem;
  }
  .join-container table thead tr th,
  .join-container table tbody tr td {
    text-align: center;
    vertical-align: top;
  }
  .join-container table thead tr th:not(:last-child),
  .join-container table tbody tr td:not(:last-child) {
    width: 16%;
  }
  .join-container table thead tr th:last-child,
  .join-container table tbody tr td:last-child {
    width: 36%;
  }
  .join-container table thead tr th,
  .join-container table tbody tr td {
    padding: 0.25rem;
  }
  .join-container table tr .expand .text {
    margin-right: 0.25rem;
  }
  .join-container table .require td {
    padding: 0.5rem;
    text-align: left;
  }
  .join-container table tr .expand {
    height: 100%;
  }
  .join-container .table-box .popup {
    width: 90%;
  }
}

/* 招贤纳士  */

.home-container .news .header {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .news.swiper-slide-active .header {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.5s;
}

.home-container .news .body .ft {
  opacity: 0;
  transform: translateX(-1rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}

.home-container .news.swiper-slide-active .body .ft {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0.6s;
}

.home-container .news .body .rt {
  opacity: 0;
  transform: translateX(1rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}

.home-container .news.swiper-slide-active .body .rt {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0.6s;
}

.home-container .about .title {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .about.swiper-slide-active .title {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.5s;
}

.home-container .about .tag {
  position: absolute;
  top: 0;
  left: 0;
}
.home-container .about .info {
  opacity: 0;
  transform: translateX(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .about.swiper-slide-active .info {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.6s;
}
.home-container {
  /* background-color: #000; */
}

.home-container .about .static {
  height: 110%;
  transform: translateY(0);

  transition: all 0.8s;
}
.home-container .about.on .static {
  transition-delay: 0.3s;
  transform: translateY(-9%);
}
.home-container .about .layer {
  transform: translateY(0%);

  transition: all 0.8s;
}
.home-container .about.on .layer {
  transition-delay: 0.3s;
  transform: translateY(-10%);
}


.home-container .products .title {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .products.swiper-slide-active .title {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.5s;
}

.home-container .develop .info .name {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .develop.swiper-slide-active .info .name {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.5s;
}

.home-container .develop .info .cont {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .develop.swiper-slide-active .info .cont {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.6s;
}

.home-container .develop .info .t3 {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .develop.swiper-slide-active .info .t3 {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.6s;
}


.home-container .join .title {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .join.swiper-slide-active .title {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.5s;
}

.home-container .join  .name {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .join.swiper-slide-active  .name {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.5s;
}

.home-container .join  .cont {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .join.swiper-slide-active  .cont {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.6s;
}

.home-container .join  .t3 {
  opacity: 0;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.home-container .join.swiper-slide-active  .t3 {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0.6s;
}
.home-container .join .static {

  transform: translateY(0);

  transition: all 0.8s;
}
.home-container .join.on .static {
  transition-delay: 0.3s;
  transform: translateY(-18%);
}
.footsid{
    height: auto !important;
}
.join{
    height: 17.5rem !important;
}

.main-wrapper {
    /* transition: cubic-bezier(0.91, 0.04, 0.58, 1); */
}
footer .line{
    bottom: 99% !important;
}

.file-btn1 {
    opacity: 0;
    height: 0;
    position: absolute;
    right: 1000%;
}

.more {
    cursor: pointer;
    width: 4rem;
    height: 1.25rem;
    border-radius: 1.5rem;
    color: #ffffff;
    line-height: 1.25rem;
    text-align: center;
    background: linear-gradient(90deg, #004ea0 0%, #31cc9c 100%);

    position: relative;
    overflow: hidden;
}
::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(144, 204, 177, 0.3);
  transition: all 0.5s;
  border-radius: 1.5rem;
}

.more:hover::before {
  width: 100%;
}


.job-dol {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  display: none;
}
.mak {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.job-dol .box {
  background-color: #fff;
  padding: 1rem 1rem 0.75rem;
}

.job-dol .box .t1 {
  line-height: 1;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.225rem;
}
.job-dol .box form {
  width: 100%;
}
.job-dol .box form .li {
  margin-top: 0.75rem;
}
.job-dol .box form .li .lab {
  font-weight: 500;

  color: #444444;
}
.job-dol .box form .li .lab span {
  color: #c1c1c1;
}
.job-dol .box form .li input {
  width: 13rem;
  height: 1.25rem;
  border-radius: 3px;
  border: 1px solid #d8d8d8;
  margin-top: 0.2rem;
  padding: 0 0.5rem;
}
.job-dol .box form .li .jlbox {
  width: 3rem;
  line-height: 1.15rem;
  background: #f0f0f0;
  border-radius: 3px;
  border: 1px solid #d8d8d8;
  font-weight: 500;
  font-size: 0.4rem;
  color: #444444;
  text-align: center;
  margin-top: 0.2rem;
  cursor: pointer;
}
.job-dol .box form .more {
  margin-top: 1rem;
  cursor: pointer;
}
.job-dol .box .close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
}
.job-dol .box .close svg {
  width: 0.5rem;
  height: 0.5rem;
  fill: #fff;
  transition: all 0.5s;
}
.job-dol .box .close:hover svg {
  transform: translate(-50%, -50%) rotate(306deg);
}