.crumb {
  width: 100%;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  padding: 16px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  color: #fff;
}
.crumb > div {
  display: flex;
  align-items: center;
}
  .crumb > div a {
       color: #fff;
    flex: 0 0 auto;
  }
  .crumb > div a:last-child {
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

.header {
  background-color: #fff;
}
.banner {
  position: relative;
  width: 100%;
  margin-top: 100px;
 
}
.banner img {
  width: 100%;
}
.banner .banner_info {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}
.banner .banner_info .subtit {
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.banner .banner_info .tit {
  font-weight:600;
  text-align: center;
  color: #fff;
}
.products_main {
  padding: 100px 0;
}
.products_main .wrap .tit {
  font-weight: 500;
  text-align: left;
  color: #004ea2;
}
.products_main .wrap .main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.products_main .wrap .main > div {
  flex: 0 0 calc((100% - 84px)/2);
}
.products_main .wrap .main > div:nth-child(2n) {
  float: left;
  margin-top: 140px;
}
.products_main .wrap .main > div:nth-child(2n-1) {
  float: right;
}
.products_main .wrap .main > div .image {
  text-align: center;
  width: 100%;
  position: relative;
}
.products_main .wrap .main > div .image > a {
  display: block;
  width: 100%;
  height: 546px;
  overflow: hidden;
  border-radius: 10px;
}
.products_main .wrap .main > div .image > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
}
.products_main .wrap .main > div:hover .image > a img {
  transform: scale(1.05);
}
.products_main .wrap .main > div .image .foot {
  width: 74%;
  height: auto;
  text-align: left;
  border-radius: 0 10px 0 0;
  background-color: #fff;
  padding: 30px 30px 20px 0px;
  font-weight: 500;
  color: #004ea2;
  margin-top: -86px;
  position: relative;
  z-index: 2;
}
.products_main .wrap .main > div .image .foot > a {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight:600;
}
.products_main .wrap .main > div .image .foot .toPage {
  position: absolute;
  right: calc(-13% - 25px);
  top: -25px;
  z-index: 2;
  transform: translateY(50%) translateX(50%);
  
}
.products_main .wrap .main > div .image .foot .toPage a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 100%;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.products_main .wrap .main > div .image .foot .toPage svg {
    width: 20px;
    height: 20px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.products_main .wrap .main > div:hover .image .foot .toPage a {
  background-color: #004ea2;
}
.products_main .wrap .main > div:hover .image .foot .toPage a svg {
  transform: rotate(180deg);
}
.products_main .wrap .main > div:hover .image .foot .toPage a svg path {
  fill: #ffffff;
}
.products_main .wrap .main > div .mes {
  margin-top: 15px;
  font-weight: 300;
  color: #333333;
  line-height: 1.5;
}
.products_main .wrap .main > div:nth-child(1) .image {
  background-position: 0% 0%;
}
.products_main .wrap .main > div:nth-child(2) .image {
  background-position: 95% 95%;
}
.products_main .wrap .main > div:nth-child(3) .image {
  background-position: 65% 65%;
}
.products_main .wrap .main > div:nth-child(4) .image {
  background-position: 35% 35%;
}
.products_main .wrap .main > div:nth-child(5) .image {
  background-position: 50% 50%;
}
.products_main .wrap .main > div:nth-child(6) .image {
  background-position: 30% 30%;
}
.products_main .wrap .main > div:nth-child(7) .image {
  background-position: 80% 80%;
}
.products_main .wrap .main > div:nth-child(8) .image {
  background-position: 95% 95%;
}
.products_main .wrap .main > div:nth-child(9) .image {
  background-position: 15% 15%;
}
@media only screen and (max-width: 1600px) {
  .products_main {
    padding: 5.2083vw 0;
  }

  .products_main .wrap .main > div .image .foot .toPage {
    right: -60px;
  }
  .products_main .wrap .main > div:nth-child(2n) {
    margin-top: 7.2917vw;
  }
 
  .products_main .wrap .main > div .image > a {
    height: 480px;
  }
  .products_main .wrap .main > div:nth-child(2n) {
    margin-top: 7.2917vw;
  }
 
}
@media only screen and (max-width: 1440px) {
  .products_main .wrap .main > div .image > a {
    height: 430px;
  }
  .products_main .wrap .main > div {
    flex: 0 0 calc((100% - 80px)/2);
  }
}
@media only screen and (max-width: 1200px) {
  .products_main .wrap .main > div .image > a {
    height: 420px;
  }
  .products_main .wrap .main > div {
    flex: 0 0 calc((100% - 30px)/2);
  }
}
@media only screen and (max-width: 1000px) {
  .products_main .wrap .main > div .image > a {
    height: 350px;
  }
  .banner {
    margin-top: 100px;
  }
  .crumb {
    top: 0;
  }

  
}
@media only screen and (max-width: 768px) {
    .banner {
    margin-top: 13.33vw;
  }
  .banner img {
    height: 240px;
    object-fit: cover;
  }
  .products_main .wrap .main > div .image .foot {
    padding: 20px 0 0 0;
  }
  .products_main .wrap .main > div .mes {
    margin-top: 10px;
  }
  .products_main .wrap .main > div .image .foot {
    width: calc(100% - 80px);
  }
  .products_main .wrap .main > div .image .foot .toPage {
    right: -40px;
  }
  .products_main .wrap .main > div .image > a {
    height: 72.35vw;
  }
  .products_main .wrap .main > div .image .foot {
    margin-top: 0;
  }
  .products_main .wrap .main > div .image .foot .toPage a {
    background-color: #004ea2;
  }
  .products_main .wrap .main > div .image .foot .toPage a path {
    fill: #fff;
  }
  .products_main .wrap .main > div:nth-child(2n - 1) {
    float: none;
  }
  .products_main .wrap .main > div {
    flex: 0 0 100%;
  }
  .products_main {
    padding: 40px 0;
  }
  .banner {
    margin-top: 13.33vw;
  }
  .banner img {
    height: 240px;
    object-fit: cover;
  }
  .products_main .wrap .main > div:nth-child(2n),
  .products_main .wrap .main > div:nth-child(2n - 1){
      margin-top: 20px;
  }
   .products_main .wrap .main > div:nth-child(1){
       margin-top: 0;
   }
}
