.mobile{
  display: none;
}
.main .main_visual{
  position: relative;
}
.main .main_visual .main_visual_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  user-select: none;
  pointer-events: none;
  display: none;
}
.not_find{
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}
.not_find h4{
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.main .main_visual .main_visual_logo img {
  width: 250px;
  display: block;
  filter: brightness(0) invert(1);
}
.main .main_visual .main_slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .main_visual .main_slide .swiper-wrapper .swiper-slide img {
  width: 100.5%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1921/700;
  min-height: 600px;
  /* filter: brightness(0.5); */
}
.main .main_visual .main_slide .swiper-pagination {
  left: 50%;
  bottom: 5%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
}
.main .main_visual .main_slide .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #fff;
  opacity: 0.5;
}
.main .main_visual .main_slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
  width: 15px;
  height: 15px;
}
.main .content {
  margin: 100px 0;
}
.main .content .inner .item_container {
  position: relative;
}
.main .content .inner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #002060;
  margin: 10px 0;
}
.main .content .inner > p {
  font-size: 1rem;
  color: #666666;
}
.main .content .inner .item_wrap {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 20vw;
}
@media screen and (max-width: 1100px) {
  #main .content .item_wrap{
    margin: 50px 0 300px;
  }

}

.main .content .inner .item_box {
  width: 22%;
  cursor: pointer;
}
.main .content .inner .item_box .item_img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid #dcdcdc;

  border-radius: 30px;
}
.main .content .inner .item_box .item_img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.main .content .inner .item_box .item_img img {
  height: 100%;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main .content .inner .item_box.active .item_img::after {
  transition: all 0.5s;
  display: none;
}
.main .content .inner .item_box.active .item_txt .arrow {
  transform: rotate(-90deg);
}
.main .content .inner .item_box .item_txt {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: #002060;
  margin: 10px;
}
.main .content .inner .item_box .item_txt .arrow {
  transition: all 0.5s;
}
.main .content .inner .show_box {
  display: flex;
  gap: 25px;
  width: 100%;
  color: #fff;
  position: absolute;
  top: 105%;
}
.main .content .inner .show_box .box {
  width: calc(20% - 20px);
  background: #002060;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
  cursor: pointer;
}
.main .content .inner .show_box .box p {
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.main .content .inner .show_box .box .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
}
.main .content .inner .show_box .box .more a {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #fff;
  padding: 3px 10px;
  border-radius: 15px;
}
.main .find_product {
  background: #002060;
  color: #fff;
  padding: 50px 0;
}
.main .find_product a{
  color: #fff;
}
.main .find_product .inner h2 {
  color: #fff !important;
}
.main .find_product .inner > p {
  color: #999999 !important;
}
.main .find_product .inner .find_box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}
.main .find_product .inner .find_box .swiper {
  width: 100%;
  position: relative;
  padding-top: 50px;
}
.main .find_product .inner .find_box .swiper .swiper-button-next,
.main .find_product .inner .find_box .swiper .swiper-button-prev {
  right: 0;
  top: 6%;
  background: url(../images/slide_next.png) no-repeat center center/contain;
}
.main .find_product .inner .find_box .swiper .swiper-button-next::after,
.main .find_product .inner .find_box .swiper .swiper-button-prev::after {
  font-size: 0;
}
.main .find_product .inner .find_box .swiper .swiper-button-prev {
  top: 5.8%;
  right: 34px;
  left: unset;
  transform: rotate(180deg);
}
.main .find_product .inner .find_box .swiper .swiper-wrapper .swiper-slide .img_box {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: #fff;
  border-radius: 10px;
}
.main .find_product .inner .find_box .swiper .swiper-wrapper .swiper-slide .img_box img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  object-fit: cover;
}
.main .find_product .inner .find_box .swiper .swiper-wrapper .swiper-slide .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}
.main .find_product .inner .find_box .swiper .swiper-wrapper .swiper-slide .more p {
  font-size: 0.85rem;
  font-weight: 500;
}
.main .new .news_wrap {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
}
.main .new .news_wrap .left,
.main .new .news_wrap .right {
  width: 48%;
}
.main .new .news_wrap .left > p,
.main .new .news_wrap .right > p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.main .new .news_wrap .left .swiper,
.main .new .news_wrap .right .swiper {
  width: 100%;
  position: relative;
  padding-top: 50px;
  margin-top: -50px;
  height: calc(100% + 50px);
}
.main .new .news_wrap .left .swiper .swiper-button-next,
.main .new .news_wrap .left .swiper .swiper-button-prev,
.main .new .news_wrap .right .swiper .swiper-button-next,
.main .new .news_wrap .right .swiper .swiper-button-prev {
  right: 0;
  top: 25px;
}
.main .new .news_wrap .left .swiper .swiper-button-next,
.main .new .news_wrap .right .swiper .swiper-button-next{
  background: url(../images/gray_next.png) no-repeat center center/contain;
}
.main .new .news_wrap .left .swiper .swiper-button-prev,
.main .new .news_wrap .right .swiper .swiper-button-prev {
  background: url(../images/gray_prev.png) no-repeat center center/contain;
}
.main .new .news_wrap .left .swiper .swiper-button-next::after,
.main .new .news_wrap .left .swiper .swiper-button-prev::after,
.main .new .news_wrap .right .swiper .swiper-button-next::after,
.main .new .news_wrap .right .swiper .swiper-button-prev::after {
  font-size: 0;
}
.main .new .news_wrap .left .swiper .swiper-button-prev,
.main .new .news_wrap .right .swiper .swiper-button-prev {
  left: unset;
  right: 34px;
}
.main .new .news_wrap .left .swiper .swiper-wrapper .swiper-slide .img_box,
.main .new .news_wrap .right .swiper .swiper-wrapper .swiper-slide .img_box {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.main .new .news_wrap .left .swiper .swiper-wrapper .swiper-slide .img_box img,
.main .new .news_wrap .right .swiper .swiper-wrapper .swiper-slide .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 540/310;
  /* aspect-ratio: 1/1; */
}
.main .new .news_wrap .left .swiper .swiper-wrapper .swiper-slide .txt_box a,
.main .new .news_wrap .right .swiper .swiper-wrapper .swiper-slide .txt_box a {
  display: flex;
  margin-top: 10px;
  align-items: center;
  justify-content: space-between;
}
.main .new .news_wrap .left .swiper .swiper-wrapper .swiper-slide .txt_box button,
.main .new .news_wrap .right .swiper .swiper-wrapper .swiper-slide .txt_box button {
  width: 100px;
  text-align: center;
  display: block;
  background: #002060;
  color: #fff;
  padding: 5px 0;
  border-radius: 15px;
  font-size: 0.85rem;
  cursor: pointer;
}
.main .new .news_wrap .left .swiper .swiper-wrapper .swiper-slide .txt_box p:nth-of-type(1),
.main .new .news_wrap .right .swiper .swiper-wrapper .swiper-slide .txt_box p:nth-of-type(1) {
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main .new .news_wrap .left .swiper .swiper-wrapper .swiper-slide .txt_box p:nth-of-type(2),
.main .new .news_wrap .right .swiper .swiper-wrapper .swiper-slide .txt_box p:nth-of-type(2) {
  width: 75px;
  min-width: 75px;
}
.main .new .news_wrap .left .swiper .swiper-wrapper .swiper-slide .txt_box p,
.main .new .news_wrap .right .swiper .swiper-wrapper .swiper-slide .txt_box p {
  font-size: 0.85rem;
}
.main .contact .inner .box {
  margin: 40px 0px 30px;
}
.main .contact .inner .box .tel_box {
  display: flex;
  margin-top: 5px;
  gap: 20px;
}
.main .contact .inner .map_box {
  display: block;
}
.main .contact .inner .map_box iframe {
  width: 100%;
}

@media (max-width: 1024px) {
  #main .find_product .inner .find_box {
    flex-direction: column;
  }
  #main .new .news_wrap {
    flex-direction: column;
    gap: 50px;
  }
  #main .new .news_wrap .left,
  #main .new .news_wrap .right {
    width: 80%;
    margin: 0 auto;
  }
  #main .content {
    margin:  50px 0;
  }
}
@media (max-width: 850px) {
  #main .content .show_box {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #main .content .show_box .box {
    width: 45%;
    max-width: 200px;
  }
  #main .content .item_wrap {
    margin: 50px 0 460px;
  }
  #main .content .item_txt p {
    font-size: 14px;
  }
}
@media (max-width: 630px) {
  #main .new .news_wrap .left,
  #main .new .news_wrap .right {
    width: 95%;
  }
}
@media (max-width: 600px) {
  #main .item_container .item_wrap .item_txt {
    margin: 10px 0;
  }
  #main .item_container .item_wrap .item_txt p {
    font-size: 11px;
  }
}
@media (max-width: 550px) {
  #main .find_product .find_box .select_box {
    width: 70%;
    margin: 50px auto 0;
    min-width: 300px;
  }
  #main .find_product .find_box .select_box select {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  #main .find_product .find_box .select_box select option {
    text-align: center;
  }
  #main .content .inner .item_box .item_img{
    border-radius: 15px;
  }
}
@media (max-width: 530px) {
  #main .new .news_wrap .left .txt_box a,
  #main .new .news_wrap .right .txt_box a {
    gap: 10px;
  }
  #main .new .news_wrap .left button,
  #main .new .news_wrap .right button {
    font-size: .75rem;
  }
}
@media (max-width: 460px) {
  #main .content .item_wrap {
    margin: 50px 0 420px;
  }
}
@media (max-width: 400px) {
  #main .more > a {
    font-size: 11px;
    padding: 3px 5px;
  }
}
@media (max-width: 359px) {
  #main .item_container .item_wrap .item_txt p {
    font-size: 10px;
  }
}
