html,body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif, "Noto Sans TC", sans-serif, "Noto Sans SC", sans-serif;
}
/* 整個捲軸 */
::-webkit-scrollbar { width: 10px; height: 10px;}
/* 捲軸的軌道 */
::-webkit-scrollbar-track { background: #CBCBCB; }
/*捲軸尚未滑到的軌道*/
::-webkit-scrollbar-track-piece{ background: #CBCBCB; }
/* 滑動的區塊 */
::-webkit-scrollbar-thumb { background: #cd0021;}
/* 滑鼠移到滑動的區塊上 */
::-webkit-scrollbar-thumb:hover { background: #cd0021; }

::selection {
	background: #cd0021;
	color: #fff;
}

/* nav */
.sm_navbar{
  padding: 15px 12px;
}
.navbar{
  position: fixed;
  width: 100%;
  z-index: 999;
}
.nav_scroll{
  background-color: transparent;
  transition: all 0.6s ease-in-out;
  box-shadow: none;
}
.logo{
  background: url('../image/logo.png') left center no-repeat;
  width: 170px;
  height: 35px;
  cursor: pointer;
  background-size: contain;
}
.navbar_area{
  max-width: 1420px;
  margin: 0px auto;
  padding: 0px 12px;
}
.nav_top{
  padding: 15px 0px;
}
.sm_collapse{
  justify-content: flex-end;
}
#inner .nav_scroll .nav_linkarea{
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.nav_scroll .nav_linkarea{
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.nav_linkarea{
  display: flex;
  border: solid 1px #fff;
  border-radius: 35px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#inner .nav_scroll .nav_linkarea .nav-link{
  color: #282828;
}
.nav_scroll .nav_linkarea .nav-link{
  color: #fff;
}
.nav_linkarea:hover{
  background-color: rgba(255, 255, 255, 1);
}
.nav_linkarea:hover .nav-link{
  color: #282828;
}
.nav_linkarea .nav-link{
  color: #282828;
  padding: 20px 30px !important;
  transition: 0.4s;
  font-size: 16px;
}
.nav_linkarea .nav-link:hover{
  opacity: 0.6;
}
.nav_right{
  display: flex;
  align-items: center;
  position: relative;
}
.nav_right .lang_drop{
  margin-right: 20px;
  padding: 14px 0px !important;
}
#inner .nav_scroll .lang_btn::after{
  content: "";
  background: url('../image/lang_icon_b.svg');
}
.nav_scroll .lang_btn::after{
  content: "";
  background: url('../image/lang_icon.svg');
}
.lang_btn:focus{
  box-shadow: none;
}
.lang_btn::after{
  content: "";
  background: url('../image/lang_icon_b.svg');
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}
.nav_scroll .nav_linkarea:hover .lang_btn::after{
  content: "";
  background: url('../image/lang_icon_b.svg');
}
.nav_scroll .cart_icon{
  background: url('../image/cart.svg') no-repeat center;
}
.cart{
  position: relative;
  margin-right: 15px;
  background-color: #cd0021;
  padding: 8px 25px;
  border-radius: 20px;
}
.cart a{
  color: #fff;
  display: block;
  text-decoration: none;
}
.cart_point{
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  right: 15px;
  top: 15px;
  margin-top: -8px;
  display: none;
  animation: hasitem 1s infinite;
}
.has_item .cart_point{
  display: block;
}
@keyframes hasitem{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.lang_dropmenu{
  background-color: #cd0021;
  border-radius: 0px;
  transform: translateX(-50%);
  margin-top: 0px !important;
  min-width: 100px;
  margin-left: 50%;
}
.lang_dropmenu .dropdown-item{
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.lang_dropmenu .dropdown-item:hover{
  background-color: transparent;
  color: #fff;
  opacity: 0.6;
}
.sm_navbar:hover .cart_icon{
  background: url('../image/cart_b.svg') no-repeat center;
}
/* dropdown_menu */
.sm_dropmenu{
  border: none;
  background-color: #cd0021;
  left: 50%;
  transform: translateX(-50%);
  padding: 0px;
  border-radius: 0;
}
.sm_dropmenu .dropdown-item{
  color: #fff;
  padding: 10px 15px;
  transition: 0.4s;
}
.sm_dropmenu .dropdown-item:hover{
  background-color: transparent;
  opacity: 0.6;
}
.sm_dropmenu .dropdown-item:active{
  background-color: transparent;
}
.sm_dropmenu .dropdown-item:focus{
  background-color: transparent;
}
@media(min-width: 991px){
  .sm_dropmenu li:hover .sub-menu{
    visibility: visible;
  }
  .dropdown:hover .sm_dropmenu{
    display: block;
  }
}
@media(max-width: 1399px){
  .logo{
    background: url('../image/logo.png') left center no-repeat;
    width: 160px;
    height: 30px;
    background-size: contain;
  }
  .nav_linkarea .nav-link{
    padding: 15px 20px !important;
  }
  .nav_right .lang_drop{
    padding: 10px 0px !important;
    margin-right: 10px;
  }
}
@media(max-width: 991px){
  .nav_scroll{
    background-color: #fff;
    padding: 0px;
  }
  .sm_navbar{
    padding: 0px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .navbar_area{
    position: relative;
    margin: 0px auto;
    padding: 0px;
    display: block !important;
  }
  .logo{
    margin: 8px 0px 8px 12px;
    width: 160px;
    height: 40px;
  }
  .nav_scroll .nav_linkarea{
    background-color: #f5f5f5;
  }
  .nav_linkarea{
    background-color: #f5f5f5;
    border-radius: 0px;
    box-shadow: none;
  }
  .nav_linkarea:hover{
    background-color: #f5f5f5;
  }
  .nav_linkarea .navbar-nav{
    text-align: center;
  }
  .sm_navbar:hover .nav_linkarea .nav-link{
    opacity: 1;
  }
  .nav_scroll .nav_linkarea .nav-link{
    color: #282828;
  }
  .nav_linkarea .nav-link{
    color: #282828;
    font-size: 14px;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    padding: 12px 0px !important;
  }
  .nav_linkarea .nav-link:nth-last-child(1){
    border-bottom: none;
  }
  .nav_linkarea .nav-link:hover{
    background-color: #cd0021;
    color: #fff;
  }
  .nav_linkarea .nav-link.show{
    background-color: #cd0021;
    color: #fff;
  }
  .nav_right{
    position: absolute;
    top: 8px;
    right: 45px;
    display: flex;
  }
  .nav_scroll .lang_btn::after{
    content: "";
    background: url('../image/lang_icon_b.svg');
  }
  .nav_right .lang_drop{
    padding: 0px !important;
  }
  .lang_dropmenu{
    margin-top: 11px !important;
  }
  .cart{
    font-size: 14px;
    padding: 5px 20px;
  }
  .cart_point{
    width: 4px;
    height: 4px;
    top: 15px;
    right: 12px;
  }
  .sm_dropmenu{
    box-shadow: none;
    left: 0;
    transform: translateX(0);
    text-align: center;
    border-radius: 0px;
    margin-top: 0px !important;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease-in-out;
  }
  .sm_dropmenu .dropdown-item{
    color: #fff;
    padding: 12px 0px;
    font-size: 14px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  }
  .sm_dropmenu .dropdown-item:hover{
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
  }
  .navbar-toggler{
    position: absolute;
    top: 10px;
    z-index: 2;
    right: 0px;
    border-radius: 100%;
    border: none;
    height: 40px;
    width: 55px;
    cursor: pointer;
    box-shadow: none !important;
  }
  .navbar-toggler .hamburguer_btn{
    width: 100%;
    height: 2px;
    background: #cd0021;
    margin: 5px auto;
    transition: all 0.3s;
    backface-visibility: hidden;
  }
  .navbar-toggler.on .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar-toggler.on .line2 {
    opacity: 0;
  }
  .navbar-toggler.on .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
@media(max-width: 575px){
  .logo{
    width: 140px;
    height: 35px;
  }
  .nav_right{
    top: 6px;
    right: 40px;
  }
  .nav_right .lang_drop{
    margin-right: 5px;
  }
  .lang_dropmenu{
    margin-top: 8px !important;
  }
  .navbar-toggler{
    top: 10px;
    height: 33px;
    width: 50px;
  }
}
@media(max-width: 450px){
  .logo{
    width: 125px;
    height: 30px;
    margin: 5px 0px 5px 12px;
  }
  .nav_right{
    top: 2px;
    right: 35px;
  }
  .lang_btn::after{
    width: 22px;
    height: 22px;
  }
  .nav_right .lang_drop{
    margin-right: 0px;
  }
  .lang_dropmenu{
    margin-top: 3px !important;
  }
  .cart{
    padding: 3px 15px;
  }
  .cart_point{
    top: 12px;
    right: 10px;
  }
  .navbar-toggler{
    top: 5px;
  }
}

/* banner */
.index_banner{
  padding: 0px;
}
.banner_block{
  position: relative;
  overflow: hidden;
}
.banner_cover{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}
.banner_tblock{
  position: absolute;
  max-width: 1444px;
  margin: auto;
  top: auto;
  bottom: 200px;
  left: 0px;
  right: 0px;
  z-index: 2;
  padding: 0px 24px;
}
.btitle_lg{
  max-width: 690px;
  font-size: 72px;
  color: #fff;
  font-weight: 500;
  line-height: 1.25;
}
.btitle_sm{
  max-width: 690px;
  font-size: 24px;
  color: #fff;
  letter-spacing: 3px;
}
/* arrow */
.banner_slick .slick-prev{
  width: 56px;
  height: 56px;
  left: auto;
  right: 19%;
  z-index: 1;
  top: auto;
  bottom: 200px;
}
.banner_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_w.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.banner_slick .slick-next{
  width: 56px;
  height: 56px;
  left: auto;
  right: 14%;
  z-index: 1;
  top: auto;
  bottom: 200px;
}
.banner_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_w.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.banner_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_b.svg');
  background-size: cover;
}
.banner_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_b.svg');
  background-size: cover;
}

@media(max-width: 1699px){
  .banner_tblock{
    bottom: 150px;
  }
  .btitle_lg{
    max-width: 650px;
    font-size: 68px;
  }
  .btitle_sm{
    max-width: 650px;
  }
  .banner_slick .slick-prev{
    right: 15%;
    bottom: 150px;
  }
  .banner_slick .slick-next{
    right: 10%;
    bottom: 150px;
  }
}
@media(max-width: 1599px){
  .banner_tblock{
    bottom: 100px;
  }
  .btitle_lg{
    max-width: 600px;
    font-size: 58px;
  }
  .btitle_sm{
    max-width: 600px;
  }
  .banner_slick .slick-prev{
    right: 12%;
    bottom: 100px;
  }
  .banner_slick .slick-next{
    right: 7%;
    bottom: 100px;
  }
}
@media(max-width: 1499px){
  .banner_tblock{
    bottom: 80px;
  }
  .btitle_lg{
    max-width: 550px;
    font-size: 52px;
  }
  .btitle_sm{
    max-width: 550px;
    font-size: 22px;
    letter-spacing: 1px;
  }
  .banner_slick .slick-prev{
    right: 9%;
    bottom: 80px;
  }
  .banner_slick .slick-next{
    right: 4%;
    bottom: 80px;
  }
}
@media(max-width: 1399px){
  .banner_tblock{
    bottom: 65px;
  }
  .btitle_lg{
    max-width: 530px;
    font-size: 48px;
  }
  .btitle_sm{
    max-width: 530px;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .banner_slick .slick-prev{
    right: 100px;
    bottom: 65px;
  }
  .banner_slick .slick-next{
    right: 24px;
    bottom: 65px;
  }
}
@media(max-width: 1299px){
  .banner_tblock{
    bottom: 50px;
  }
  .btitle_lg{
    max-width: 450px;
    font-size: 42px;
  }
  .btitle_sm{
    max-width: 450px;
    font-size: 20px;
    letter-spacing: 0px;
  }
  .banner_slick .slick-prev{
    width: 52px;
    height: 52px;
    right: 90px;
    bottom: 50px;
  }
  .banner_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .banner_slick .slick-next{
    width: 52px;
    height: 52px;
    right: 24px;
    bottom: 50px;
  }
  .banner_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .banner_slick .slick-prev{
    width: 46px;
    height: 46px;
    right: 85px;
    bottom: 50px;
  }
  .banner_slick .slick-prev:before{
    width: 45px;
    height: 45px;
  }
  .banner_slick .slick-next{
    width: 46px;
    height: 46px;
    right: 24px;
    bottom: 50px;
  }
  .banner_slick .slick-next:before{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 991px){
  .index_banner{
    padding: 58px 0px 0px 0px;
  }
  .banner_tblock{
    bottom: 40px;
  }
  .btitle_lg{
    max-width: 400px;
    font-size: 38px;
  }
  .btitle_sm{
    max-width: 400px;
    font-size: 18px;
  }
  .banner_slick .slick-prev{
    width: 42px;
    height: 42px;
    right: 80px;
    bottom: 40px;
  }
  .banner_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .banner_slick .slick-next{
    width: 42px;
    height: 42px;
    bottom: 40px;
  }
  .banner_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 575px){
  .index_banner{
    padding: 50px 0px 0px 0px;
  }
  .banner_tblock{
    bottom: 30px;
  }
  .btitle_lg{
    max-width: 300px;
    font-size: 28px;
    margin-bottom: 5px;
  }
  .btitle_sm{
    max-width: 300px;
    font-size: 16px;
  }
  .banner_slick .slick-prev{
    width: 36px;
    height: 36px;
    right: 75px;
    bottom: 30px;
  }
  .banner_slick .slick-prev:before{
    width: 35px;
    height: 35px;
  }
  .banner_slick .slick-next{
    width: 36px;
    height: 36px;
    bottom: 30px;
  }
  .banner_slick .slick-next:before{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 450px){
  .index_banner{
    padding: 40px 0px 0px 0px;
  }
  .banner_tblock{
    bottom: 20px;
  }
  .btitle_lg{
    max-width: 200px;
    font-size: 22px;
    margin-bottom: 3px;
  }
  .btitle_sm{
    max-width: 200px;
    font-size: 14px;
    margin-bottom: 0px;
  }
  .banner_slick .slick-prev{
    width: 32px;
    height: 32px;
    right: 60px;
    bottom: 12px;
  }
  .banner_slick .slick-prev:before{
    width: 30px;
    height: 30px;
  }
  .banner_slick .slick-next{
    width: 32px;
    height: 32px;
    right: 20px;
    bottom: 12px;
  }
  .banner_slick .slick-next:before{
    width: 30px;
    height: 30px;
  }
}

/* index_product */
.product_area{
  position: relative;
  overflow: hidden;
}
.product_area::after{
  content: "";
  width: 800px;
  height: 800px;
  border-radius: 100%;
  border: solid 1px #d9d9d9;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 100px;
  margin-right: -400px;
  z-index: -1;
}
.index_product{
  max-width: 1420px;
  margin: auto;
  padding: 150px 0px;
  align-items: center;
}
.p_title_area{
  text-align: center;
  margin-bottom: 65px;
}
.h_title_sm{
  font-size: 20px;
  color: #cd0021;
  margin-bottom: 10px;
}
.h_title_lg{
  font-size: 60px;
  color: #282828;
  margin-bottom: 0px;
  font-weight: 500;
  line-height: 1;
}
.h_p_left{
  padding-right: 50px;
}
.h_p_type{
  font-size: 18px;
  color: #cd0021;
}
.h_p_title{
  font-size: 32px;
  color: #282828;
  font-weight: 500;
  letter-spacing: 3px;
}
.h_model_block{
  display: flex;
  font-size: 18px;
  color: #282828;
  margin: 20px 0px;
}
.h_model_block p{
  margin-bottom: 0px;
}
.h_p_icon_block{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.h_p_icon{
  width: 12.5%;
  padding: 0px 3px;
}
.h_p_btn_block{
  margin-top: 50px;
}
.link_btn{
  background-color: #cd0021;
  color: #fff;
  display: inline-block;
  padding: 18px 65px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: none;
}
.link_btn:hover{
  background-color: #282828;
  color: #fff;
}
.p_p_slick{
  position: relative;
  background: url('../image/index_p_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.h_p_pic_area{
  padding: 50px;
  display: flex !important;
  justify-content: center;
}
.h_p_pic_area img{
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
/* arrow */
.p_p_slick .slick-prev{
  width: 56px;
  height: 56px;
  left: 0px;
  right: auto;
  z-index: 1;
  top: 50%;
  bottom: auto;
  margin-left: -25px;
}
.p_p_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_r.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.p_p_slick .slick-next{
  width: 56px;
  height: 56px;
  left: auto;
  right: 0px;
  z-index: 1;
  top: 50%;
  bottom: auto;
  margin-right: -25px;
}
.p_p_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_r.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.p_p_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_b.svg');
  background-size: cover;
}
.p_p_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_b.svg');
  background-size: cover;
}
/* Dots */
.p_p_slick.slick-dotted.slick-slider{
    margin-bottom: 0px;
}
.p_p_slick .slick-dots{
    position: absolute;
    bottom: auto;
    right: 0px;
    transform: translateY(-50%);
    top: 50%;
    display: flex !important;
    flex-direction: column;
    width: auto;
    margin-right: -80px;
}
.p_p_slick .slick-dots li{
    margin: 10px 0px;
}
.p_p_slick .slick-dots li button{
    padding: 0px;
}
.p_p_slick .slick-dots li button:before{
    font-size: 8px;
    opacity: .25;
    color: black;
}
.p_p_slick .slick-dots li.slick-active button:before{
    opacity: 1;
    color: #cd0021;
}

@media(max-width: 1699px){
  .p_p_slick .slick-dots{
    margin-right: -65px;
  }
}
@media(max-width: 1599px){
  .p_title_area{
    margin-bottom: 50px;
  }
  .h_title_lg{
    font-size: 52px;
  }
  .h_p_left{
    padding-right: 30px;
  }
  .p_p_slick{
    background-size: 90%;
  }
  .h_p_pic_area{
    padding: 80px;
  }
  .p_p_slick .slick-prev{
    margin-left: 12px;
  }
  .p_p_slick .slick-next{
    margin-right: 12px;
  }
  .p_p_slick .slick-dots{
    margin-right: -30px;
  }
}
@media(max-width: 1499px){
  .product_area::after{
    width: 700px;
    height: 700px;
    margin-top: 65px;
    margin-right: -350px;
  }
  .index_product{
    padding: 130px 0px;
  }
  .p_title_area{
    margin-bottom: 30px;
  }
  .h_title_lg{
    font-size: 42px;
  }
  .h_p_left{
    padding-right: 0px;
  }
  .p_p_slick{
    background-size: 85%;
  }
  .h_p_pic_area{
    padding: 90px;
  }
  .p_p_slick .slick-prev{
    margin-left: 25px;
  }
  .p_p_slick .slick-next{
    margin-right: 25px;
  }
  .p_p_slick .slick-dots{
    margin-right: 0px;
  }
}
@media(max-width: 1299px){
  .product_area::after{
    width: 600px;
    height: 600px;
    margin-top: 50px;
    margin-right: -300px;
  }
  .index_product{
    padding: 100px 0px;
  }
  .p_title_area{
    margin-bottom: 15px;
  }
  .h_title_lg{
    font-size: 38px;
  }
  .h_title_sm{
    font-size: 18px;
  }
  .h_p_title{
    font-size: 28px;
  }
  .h_p_btn_block{
    margin-top: 30px;
  }
  .link_btn{
    padding: 15px 50px;
  }
  .p_p_slick{
    background-size: 80%;
  }
  .h_p_pic_area{
    padding: 90px;
  }
  .p_p_slick .slick-prev{
    width: 52px;
    height: 52px;
    margin-left: 30px;
  }
  .p_p_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .p_p_slick .slick-next{
    width: 52px;
    height: 52px;
    margin-right: 30px;
  }
  .p_p_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .product_area::after{
    width: 550px;
    height: 550px;
    margin-top: 40px;
    margin-right: -275px;
  }
  .index_product{
    padding: 80px 0px;
  }
  .p_title_area{
    margin-bottom: 10px;
  }
  .h_title_lg{
    font-size: 36px;
  }
  .h_title_sm{
    font-size: 18px;
  }
  .h_p_type{
    font-size: 16px;
  }
  .h_p_title{
    font-size: 24px;
    letter-spacing: 1px;
  }
  .h_model_block{
    font-size: 16px;
    margin: 15px 0px;
  }
  .link_btn{
    padding: 15px 45px;
  }
  .p_p_slick{
    background-size: 80%;
  }
  .h_p_pic_area{
    padding: 65px;
  }
  .p_p_slick .slick-prev{
    width: 46px;
    height: 46px;
    margin-left: 30px;
  }
  .p_p_slick .slick-prev:before{
    width: 45px;
    height: 45px;
  }
  .p_p_slick .slick-next{
    width: 46px;
    height: 46px;
    margin-right: 30px;
  }
  .p_p_slick .slick-next:before{
    width: 45px;
    height: 45px;
  }
  .p_p_slick .slick-dots li{
    margin: 5px 0px;
  }
}
@media(max-width: 1099px){
  .index_product{
    padding: 65px 0px;
  }
}
@media(max-width: 991px){
  .product_area::after{
    width: 450px;
    height: 450px;
    margin-top: 25px;
    margin-right: -225px;
  }
  .index_product{
    padding: 50px 0px;
  }
  .h_title_lg{
    font-size: 32px;
  }
  .h_title_sm{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .h_p_type{
    margin-bottom: 10px;
  }
  .h_model_block{
    margin: 10px 0px;
  }
  .h_p_btn_block{
    margin-top: 20px;
  }
  .link_btn{
    padding: 12px 45px;
  }
  .p_p_slick{
    background-size: 85%;
  }
  .h_p_pic_area{
    padding: 50px;
  }
  .p_p_slick .slick-prev{
    width: 42px;
    height: 42px;
    margin-left: 20px;
  }
  .p_p_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .p_p_slick .slick-next{
    width: 42px;
    height: 42px;
    margin-right: 20px;
  }
  .p_p_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 850px){
  .h_p_pic_area{
    padding: 40px;
  }
}
@media(max-width: 767px){
  .product_area::after{
    width: 350px;
    height: 350px;
    margin-top: 25px;
    margin-right: -175px;
  }
  .h_title_lg{
    font-size: 28px;
  }
  .h_p_type{
    margin-bottom: 5px;
  }
  .h_p_title{
    font-size: 20px;
    letter-spacing: 0px;
  }
  .h_p_icon{
    width: 25%;
    padding: 3px;
  }
}
@media(max-width: 575px){
  .product_area::after{
    display: none;
  }
  .p_title_area{
    margin-bottom: 15px;
  }
  .h_p_icon{
    width: 12.5%;
    padding: 2px;
  }
  .p_p_slick{
    background-size: 95%;
  }
  .h_p_pic_area{
    padding: 30px;
  }
  .p_p_slick .slick-prev{
    width: 36px;
    height: 36px;
    margin-left: -10px;
  }
  .p_p_slick .slick-prev:before{
    width: 35px;
    height: 35px;
  }
  .p_p_slick .slick-next{
    width: 36px;
    height: 36px;
    margin-right: -10px;
  }
  .p_p_slick .slick-next:before{
    width: 35px;
    height: 35px;
  }
  .link_btn{
    font-size: 14px;
    padding: 10px 40px;
  }
}
@media(max-width: 450px){
  .p_p_slick .slick-prev{
    width: 32px;
    height: 32px;
  }
  .p_p_slick .slick-prev:before{
    width: 30px;
    height: 30px;
  }
  .p_p_slick .slick-next{
    width: 32px;
    height: 32px;
  }
  .p_p_slick .slick-next:before{
    width: 30px;
    height: 30px;
  }
  .link_btn{
    padding: 8px 35px;
  }
}

/* index_about */
.index_about{
  margin: 0px 100px;
  background: url('../image/about_bg.png');
  min-height: 650px;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0px;
  background-position: center;
  position: relative;
}
.h_a_inner{
  max-width: 1420px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.a_title_area{
  text-align: left;
  margin-bottom: 20px;
}
.a_title_area .h_title_sm{
  color: #fff !important;
}
.a_title_area .h_title_lg{
  color: #fff !important;
}
.h_a_text{
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 0px;
}
.h_a_btn_block{
  margin-top: 30px;
}
.h_a_btn_block .link_btn{
  border: solid 1px #fff;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
}
.h_a_btn_block .link_btn:hover{
  border: solid 1px #cd0021;
  background-color: #cd0021;
}
@media(max-width: 1799px){
  .index_about{
    margin: 0px 50px;
    min-height: 600px;
  }
}
@media(max-width: 1699px){
  .index_about{
    margin: 0px 24px;
    min-height: 550px;
  }
}
@media(max-width: 1599px){
  .index_about{
    margin: 0px 12px;
    min-height: 500px;
  }
}
@media(max-width: 1499px){
  .h_a_text{
    font-size: 16px;
  }
}
@media(max-width: 1299px){
  .index_about{
    min-height: 450px;
  }
}
@media(max-width: 991px){
  .index_about{
    min-height: 400px;
    padding: 30px 0px;
  }
  .index_about::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
  }
  .h_a_inner{
    position: relative;
    z-index: 1;
    padding: 0px 50px;
    text-align: center;
  }
  .a_title_area{
    margin-bottom: 15px;
    text-align: center;
  }
  .h_a_btn_block{
    margin-top: 15px;
  }
}
@media(max-width: 767px){
  .index_about{
    min-height: 300px;
  }
  .h_a_inner{
    padding: 0px 30px;
  }
}
@media(max-width: 575px){
  .index_about{
    min-height: 250px;
  }
  .h_a_inner{
    padding: 0px;
  }
  .a_title_area{
    margin-bottom: 10px;
  }
  .h_a_text{
    font-size: 14px;
    line-height: 1.25;
  }
}
@media(max-width: 450px){
  .about_area{
    padding: 0px;
  }
  .index_about{
    margin: 0px;
  }
}

/* index_media */
.media_area{
  background: url('../image/red_bg.png');
  background-repeat: no-repeat;
  background-size: 50% 68%;
  background-position: left bottom;
  position: relative;
  overflow: hidden;
}
.media_area::after{
  content: "";
  width: 800px;
  height: 800px;
  border-radius: 100%;
  border: solid 1px #d9d9d9;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 100px;
  margin-right: -400px;
  z-index: -1;
}
.index_media{
  max-width: 1660px;
  margin-left: auto;
  padding: 150px 0px;
}
.h_m_top{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1420px;
  margin-right: auto;
  padding-right: 12px;
}
.media_slide{
  margin-top: 200px;
  align-items: flex-start;
  position: relative;
}
.m_t_slick{
  padding-right: 100px;
  position: static !important;
}
.h_m_date_type{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.h_m_date{
  font-size: 16px;
  margin-bottom: 0px;
  margin-right: 15px;
  color: #fff;
}
.h_m_type{
  font-size: 16px;
  margin-bottom: 0px;
  color: #fff;
}
.h_m_title{
  font-size: 24px;
  color: #fff;
  margin-bottom: 0px;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.5;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.m_p_right{
  padding-right: 0px;
}
.m_p_slick .slick-list{
  padding-right: 150px;
}
.m_item_pic{
  padding: 0px 24px;
}
.media_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 65%;
  position: relative;
}
.media_pic img{
  transform: scale(1,1);
  transition: all 0.4s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.media_pic:hover img{
  transform: scale(1.05,1.05);
}
/* arrow */
.m_t_slick .slick-prev{
  width: 56px;
  height: 56px;
  left: 12px;
  right: auto;
  z-index: 1;
  top: auto;
  bottom: 0px;
  margin-bottom: -20px;
}
.m_t_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_w.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.m_t_slick .slick-next{
  width: 56px;
  height: 56px;
  left: 105px;
  right: auto;
  z-index: 1;
  top: auto;
  bottom: 0px;
  margin-bottom: -20px;
}
.m_t_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_w.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.m_t_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_b.svg');
  background-size: cover;
}
.m_t_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_b.svg');
  background-size: cover;
}

@media(max-width: 1599px){
  .media_area{
    background-size: 50% 65%;
  }
  .m_t_slick{
    padding-right: 65px;
  }
  .m_p_slick .slick-list{
    padding-right: 100px;
  }
  .m_item_pic{
    padding: 0px 20px;
  }
}
@media(max-width: 1499px){
  .media_area{
    background-size: 50% 65%;
  }
  .media_area::after{
    width: 700px;
    height: 700px;
    margin-top: 65px;
    margin-right: -350px;
  }
  .index_media{
    padding: 130px 0px;
  }
  .media_slide{
    margin-top: 180px;
  }
  .m_t_slick{
    padding-right: 65px;
  }
  .h_m_date_type{
    margin-bottom: 15px;
  }
  .h_m_date{
    margin-right: 10px;
  }
  .h_m_title{
    font-size: 20px;
    letter-spacing: 0px;
  }
  .m_item_pic{
    padding: 0px 12px;
  }
}
@media(max-width: 1299px){
  .media_area{
    background-size: 48% 65%;
  }
  .media_area::after{
    width: 600px;
    height: 600px;
    margin-top: 50px;
    margin-right: -300px;
  }
  .index_media{
    padding: 100px 0px;
  }
  .media_slide{
    margin-top: 150px;
  }
  .m_t_slick{
    padding-right: 30px;
  }
  .m_t_slick .slick-prev{
    width: 52px;
    height: 52px;
    left: 12px;
    margin-bottom: -20px;
  }
  .m_t_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .m_t_slick .slick-next{
    width: 52px;
    height: 52px;
    left: 80px;
    margin-bottom: -20px;
  }
  .m_t_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .index_media{
    padding: 80px 0px;
  }
  .media_area::after{
    width: 550px;
    height: 550px;
    margin-top: 40px;
    margin-right: -275px;
  }
  .media_slide{
    margin-top: 130px;
  }
  .m_t_slick{
    padding-right: 0px;
  }
  .h_m_date_type{
    margin-bottom: 10px;
  }
  .m_p_slick .slick-list{
    padding-right: 80px;
  }
  .m_t_slick .slick-prev{
    width: 46px;
    height: 46px;
    left: 12px;
    margin-bottom: -15px;
  }
  .m_t_slick .slick-prev:before{
    width: 45px;
    height: 45px;
  }
  .m_t_slick .slick-next{
    width: 46px;
    height: 46px;
    left: 75px;
    margin-bottom: -15px;
  }
  .m_t_slick .slick-next:before{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 1099px){
  .index_media{
    padding: 65px 0px;
  }
  .media_slide{
    margin-top: 115px;
  }
  .m_p_slick .slick-list{
    padding-right: 65px;
  }
}
@media(max-width: 991px){
  .media_area{
    background-size: 50% 70%;
  }
  .media_area::after{
    width: 450px;
    height: 450px;
    margin-top: 40px;
    margin-right: -225px;
  }
  .index_media{
    padding: 50px 0px;
  }
  .media_slide{
    margin-top: 100px;
  }
  .h_m_date{
    font-size: 14px;
  }
  .h_m_type{
    font-size: 14px;
  }
  .h_m_title{
    font-size: 18px;
    letter-spacing: 0px;
  }
  .m_p_slick .slick-list{
    padding-right: 150px;
  }
  .m_t_slick .slick-prev{
    width: 42px;
    height: 42px;
    left: 12px;
    margin-bottom: -15px;
  }
  .m_t_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .m_t_slick .slick-next{
    width: 42px;
    height: 42px;
    left: 70px;
    margin-bottom: -15px;
  }
  .m_t_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 850px){
  .m_p_slick .slick-list{
    padding-right: 100px;
  }
}
@media(max-width: 767px){
  .media_area::after{
    width: 350px;
    height: 350px;
    margin-top: 50px;
    margin-right: -175px;
  }
  .m_p_slick .slick-list{
    padding-right: 65px;
  }
}
@media(max-width: 575px){
  .media_area{
    background-size: 96% 78%;
  }
  .media_area::after{
    display: none;
  }
  .index_media{
    padding: 50px 0px;
  }
  .media_slide{
    margin-top: 50px;
  }
  .m_t_slick{
    padding-top: 0px;
  }
  .m_t_block{
    padding-right: 12px;
  }
  .h_m_date{
    font-size: 14px;
  }
  .h_m_type{
    font-size: 14px;
  }
  .h_m_title{
    font-size: 18px;
    letter-spacing: 0px;
  }
  .m_p_right{
    padding-left: 0px;
  }
  .m_p_slick{
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .m_p_slick .slick-list{
    padding-right: 100px;
  }
  .m_t_slick .slick-prev{
    width: 36px;
    height: 36px;
    left: 12px;
    margin-bottom: -45px;
  }
  .m_t_slick .slick-prev:before{
    width: 35px;
    height: 35px;
  }
  .m_t_slick .slick-next{
    width: 36px;
    height: 36px;
    left: 65px;
    margin-bottom: -45px;
  }
  .m_t_slick .slick-next:before{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 450px){
  .media_area{
    background-size: 95% 75%;
  }
  .media_slide{
    margin-top: 50px;
  }
  .m_p_slick{
    margin-top: 15px;
    padding-bottom: 15px;
  }
  .m_p_slick .slick-list{
    padding-right: 65px;
  }
  .m_t_slick .slick-prev{
    width: 32px;
    height: 32px;
    left: 12px;
    margin-bottom: -40px;
  }
  .m_t_slick .slick-prev:before{
    width: 30px;
    height: 30px;
  }
  .m_t_slick .slick-next{
    width: 32px;
    height: 32px;
    left: 55px;
    margin-bottom: -40px;
  }
  .m_t_slick .slick-next:before{
    width: 30px;
    height: 30px;
  }
}
@media(max-width: 390px){
  .media_area{
    background-size: 94% 73%;
  }
  .h_m_date_type{
    margin-bottom: 5px;
  }
  .m_p_slick{
    margin-top: 15px;
    padding-bottom: 15px;
  }
  .m_p_slick .slick-list{
    padding-right: 50px;
  }
}

/* footer */
.footer{
  background-color: #282828;
  margin-top: -1px;
  position: relative;
}
.footer_area{
  max-width: 1420px;
  margin: auto;
  padding: 150px 0px;
  justify-content: space-between;
}
.footer_logo{
  max-width: 170px;
}
.footer_add{
  display: inline-block;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.footer_add:hover{
  color: #fff;
  opacity: 0.5;
}
.f_copy_text{
  font-size: 16px;
  color: #c9c9c9;
  margin-bottom: 0px;
}
.f_copy_text a{
  color: #c9c9c9;
  margin: 0px 2px;
}
.footer_site{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.f_site_block{
  display: flex;
  flex-direction: column;
}
.site_top{
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.site_top:hover{
  color: #cd0021;
}
.site_item{
  color: #c9c9c9;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}
.site_item:hover{
  color: #c9c9c9;
  opacity: 0.5;
}
.f_phone_block{
  display: flex;
  align-items: center;
}
.f_phone_icon{
  width: 55px;
  height: 55px;
  background-color: #000;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.f_phone{
  width: 20px;
}
.f_phone_title{
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
}
.f_phone_num{
  font-size: 24px;
  color: #c9c9c9;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.f_phone_num:hover{
  color: #cd0021;
}
.f_btn_block{
  margin-top: 30px;
}
.f_btn_block .link_btn{
  width: 100%;
  text-align: center;
}
.f_btn_block .link_btn:hover{
  background-color: #cd0021;
}
.top_block{
  position: absolute;
  right: 24px;
  bottom: 24px;
  border: none;
  background-color: transparent;
}
.top_btn{
  width: 55px;
}

@media(max-width: 1499px){
  .footer_area{
    padding: 130px 0px;
  }
  .f_phone_icon{
    width: 50px;
    height: 50px;
  }
  .f_phone{
    width: 18px;
  }
  .f_phone_num{
    font-size: 22px;
  }
}
@media(max-width: 1399px){
  .footer_logo{
    max-width: 150px;
  }
}
@media(max-width: 1299px){
  .footer_area{
    padding: 100px 0px;
  }
  .footer_add{
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .f_copy_text{
    font-size: 14px;
  }
  .f_phone_icon{
    width: 40px;
    height: 40px;
  }
  .f_phone{
    width: 15px;
  }
  .f_phone_title{
    font-size: 14px;
  }
  .f_phone_num{
    font-size: 20px;
  }
  .f_btn_block{
    margin-top: 20px;
  }
  .top_btn{
    width: 50px;
  }
}
@media(max-width: 1199px){
  .footer_area{
    padding: 80px 0px;
  }
  .f_phone_num{
    font-size: 18px;
  }
  .top_btn{
    width: 45px;
  }
}
@media(max-width: 1099px){
  .footer_area{
    padding: 65px 0px;
  }
}
@media(max-width: 991px){
  .footer_area{
    padding: 50px 0px;
  }
  .footer_add{
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .f_copy_text{
    font-size: 12px;
  }
  .site_top{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .site_item{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .f_phone_icon{
    width: 35px;
    height: 35px;
  }
  .f_phone{
    width: 12px;
  }
  .f_phone_num{
    font-size: 18px;
  }
  .f_btn_block{
    margin-top: 15px;
  }
  .top_btn{
    width: 40px;
  }
}
@media(max-width: 767px){
  .f_site_map{
    margin-top: 30px;
  }
}
@media(max-width: 575px){
  .footer_area{
    padding: 30px 0px;
  }
  .f_site_map{
    display: none;
  }
  .top_btn{
    width: 35px;
  }
}
@media(max-width: 390px){
  .top_block{
    right: 5px;
    bottom: 5px;
  }
}

/* inner_banner */
.inner_banner{
  padding: 0px 12px;
  position: relative;
  height: 450px;
}
.inner_banner2{
  padding: 150px 12px 0px 12px;
}
.inner_banner .banner{
  max-width: 1420px;
  margin: auto;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_banner2 .banner{
  max-width: 1420px;
  margin: auto;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_banner_text{
  position: absolute;
  z-index: 1;
  text-align: center;
  margin-top: 20px;
}
.inner_btitle_lg{
  font-size: 42px;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1;
  letter-spacing: 5px;
}
.inner_btitle_sm{
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
  letter-spacing: 1px;
}
.sm_bread{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 0px 12px;
  width: 100%;
}
.sm_bread .breadcrumb-item a{
  color: #c9c9c9;
  text-decoration: none;
}
.inner_banner2 .breadcrumb-item a{
  color: #808080;
}
.sm_bread .breadcrumb-item{
  color: #c9c9c9;
  font-size: 14px;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.25;
}
.inner_banner2 .breadcrumb-item{
  color: #808080;
}
.sm_bread .active{
  color: #fff !important;
}
.inner_banner2 .sm_bread .active{
  color: #282828 !important;
}
.sm_bread .breadcrumb-item+.breadcrumb-item::before{
  content: var(--bs-breadcrumb-divider, "—") !important;
  color: #c9c9c9;
}
.inner_banner2 .sm_bread .breadcrumb-item+.breadcrumb-item::before{
  color: #808080;
}

@media(max-width: 1499px){
  .inner_banner{
    height: 400px;
  }
  .inner_btitle_lg{
    font-size: 38px;
    margin-bottom: 12px;
    letter-spacing: 5px;
  }
}
@media(max-width: 1299px){
  .inner_banner{
    height: 350px;
  }
  .inner_btitle_lg{
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 3px;
  }
}
@media(max-width: 1099px){
  .inner_banner{
    height: 300px;
  }
  .inner_btitle_lg{
    font-size: 28px;
  }
}
@media(max-width: 991px){
  .inner_banner{
    height: 250px;
    margin-top: 55px;
  }
  .inner_banner2{
    padding: 115px 12px 0px 12px;
  }
  .inner_banner_text{
    margin-top: 0px;
  }
  .sm_bread{
    padding: 0px 12px;
  }
  .sm_bread .breadcrumb{
    margin-bottom: 10px;
  }
}
@media(max-width: 767px){
  .inner_banner{
    height: 200px;
  }
  .inner_btitle_lg{
    font-size: 24px;
    margin-bottom: 5px;
  }
  .inner_btitle_sm{
    font-size: 14px;
  }
}
@media(max-width: 575px){
  .inner_banner2{
    padding: 100px 12px 0px 12px;
  }
  .sm_bread{
    padding: 0px 12px 0px 7px;
  }
  .sm_bread .breadcrumb-item{
    font-size: 12px;
    padding-left: 5px;
  }
  .sm_bread .breadcrumb-item+.breadcrumb-item::before{
    padding-right: 5px;
  }
}
@media(max-width: 450px){
  .inner_banner2{
    padding: 80px 12px 0px 12px;
  }
  .inner_banner{
    height: 150px;
    margin-top: 40px;
  }
  .inner_btitle_lg{
    font-size: 20px;
    margin-bottom: 5px;
  }
}

/* product */
.tab_area{
  padding: 0px;
}
.sm_dropdown_btn{
  display: none;
}
.tab_block{
  background-color: #cd0021;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0px;
  padding: 0px;
  position: relative;
  z-index: 99;
}
.tab_block .nav-item{
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab_block .nav-link{
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0px 30px;
  letter-spacing: 2px;
  position: relative;
}
.tab_block .nav-link span{
  opacity: 0.5;
}
.tab_block .nav-link .tab_arrow{
  opacity: 0.5;
}
.tab_block .active span{
  opacity: 1;
}
.tab_block .active .tab_arrow{
  opacity: 1;
}
.tab_block .nav-item .nav-link::after{
  content: '';
  width: 1px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-left: 30px;
  position: absolute;
  right: 0;
}
.tab_block .nav-item .nav-link:nth-last-child(1)::after{
  display: none;
}
.tab_arrow{
  width: 45px;
  margin-left: 30px;
}
.inner_block1{
  max-width: 1420px;
  margin: auto;
  padding: 150px 0px;
}
.page_title{
  font-size: 36px;
  color: #282828;
  margin-bottom: 0px;
}
.seo_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.p_type_list{
  margin-top: 100px;
}
.p_type_item{
  display: block;
  background-color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.p_type_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 0px 30px;
}
.p_type_title{
  font-size: 24px;
  color: #282828;
  margin-bottom: 10px;
}
.p_type_text{
  font-size: 16px;
  color: #808080;
  margin-bottom: 0px;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.p_type_arrow{
  background: url('../image/next_r.svg');
  width: 55px;
  height: 55px;
  background-size: cover;
  flex-shrink: 0;
}
.p_type_pic{
  padding-bottom: 80%;
  overflow: hidden;
  position: relative;
}
.p_type_pic img{
  position: absolute;
  bottom: 0px;
  margin-bottom: -25px;
  transition: all 0.3s ease-in-out;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
.p_type_item:hover{
  background-color: #cd0021;
}
.p_type_item:hover .p_type_pic img{
  margin-bottom: 0px;
}
.p_type_item:hover .p_type_title{
  color: #fff;
}
.p_type_item:hover .p_type_text{
  color: #fff;
}
.p_type_item:hover .p_type_arrow{
  background: url('../image/next_w.svg');
}

@media(max-width: 1599px){
  .tab_block .nav-link{
    padding: 0px 20px;
    letter-spacing: 1px;
  }
  .tab_block .nav-item .nav-link::after{
    height: 40px;
    margin-left: 20px;
  }
  .tab_arrow{
    width: 40px;
    margin-left: 20px;
  }
  .page_title{
    font-size: 32px;
  }
  .p_type_list{
    margin-top: 80px;
  }
}
@media(max-width: 1499px){
  .inner_block1{
    padding: 130px 0px;
  }
  .page_title{
    font-size: 28px;
  }
  .seo_text{
    font-size: 16px;
  }
  .p_type_list{
    margin-top: 65px;
  }
}
@media(max-width: 1299px){
  .tab_block .nav-link{
    padding: 0px 15px;
    letter-spacing: 0px;
  }
  .tab_block .nav-item .nav-link::after{
    height: 35px;
    margin-left: 15px;
  }
  .tab_arrow{
    width: 35px;
    margin-left: 15px;
  }
  .inner_block1{
    padding: 100px 0px;
  }
  .page_title{
    font-size: 24px;
  }
  .p_type_list{
    margin-top: 50px;
  }
  .p_type_title{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .p_type_arrow{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .inner_block1{
    padding: 80px 0px;
  }
  .p_type_list{
    margin-top: 30px;
  }
  .p_type_arrow{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 1099px){
  .inner_block1{
    padding: 65px 0px;
  }
  .p_type_top{
    padding: 24px 24px 0px 24px;
  }
}
@media(max-width: 991px){
  .tab_block .nav-link{
    padding: 0px 15px;
    letter-spacing: 0px;
    font-size: 16px;
  }
  .tab_block .nav-item .nav-link::after{
    height: 30px;
    margin-left: 10px;
  }
  .tab_arrow{
    width: 30px;
    margin-left: 15px;
  }
  .inner_block1{
    padding: 50px 0px;
  }
  .page_title{
    font-size: 20px;
  }
  .p_type_top{
    padding: 20px 20px 0px 20px;
  }
  .p_type_title{
    font-size: 18px;
  }
  .p_type_text{
    font-size: 14px;
  }
  .p_type_arrow{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 767px){
  .tab_block .nav-link{
    padding: 0px 12px;
    letter-spacing: 0px;
  }
  .tab_block .nav-item .nav-link::after{
    height: 25px;
    margin-left: 5px;
  }
  .tab_arrow{
    width: 25px;
    margin-left: 12px;
  }
  .page_title{
    margin-bottom: 10px;
  }
  .p_type_top{
    padding: 15px 15px 0px 15px;
  }
  .p_type_arrow{
    width: 30px;
    height: 30px;
  }
}
@media(max-width: 690px){
  .tab_block .nav-link{
    padding: 0px 8px;
    letter-spacing: 0px;
  }
  .tab_block .nav-item{
    padding: 15px 0px;
  }
  .tab_block .nav-item .nav-link::after{
    height: 20px;
    margin-left: 3px;
  }
  .tab_arrow{
    width: 20px;
    margin-left: 8px;
  }
}
@media(max-width: 575px){
  .sm_dropdown_btn{
    display: block;
    background-color: #cd0021;
    color: #fff;
    width: 100%;
    border-radius: 0px;
    padding: 12px;
    border: none;
  }
  .sm_dropdown_btn:focus{
    box-shadow: none;
  }
  .sm_dropdown_btn:hover{
    color: #fff;
  }
  .tab_block{
    display: none;
    margin-top: -2px !important;
  }
  .tab_block .nav-item{
    display: block;
    background-color: #f5f5f5;
    padding: 0px;
  }
  .tab_block .nav-link{
    justify-content: center;
    padding: 10px 0px;
    border-bottom: solid 1px #d9d9d9;
  }
  .tab_block .nav-link:nth-last-child(1){
    border: none;
  }
  .tab_block .nav-link span{
    opacity: 1;
    color: #282828;
  }
  .tab_block .active span{
    opacity: 1;
    color: #cd0021;
  }
  .tab_block .nav-link .tab_arrow{
    display: none;
  }
  .tab_block .nav-item .nav-link::after{
    display: none;
  }
  .page_title{
    margin-bottom: 5px;
  }
  .seo_text{
    font-size: 14px;
  }
  .p_type_top{
    padding: 24px 24px 0px 24px;
  }
}
@media(max-width: 390px){
  .page_title{
    font-size: 18px;
  }
  .p_type_top{
    padding: 20px 20px 0px 20px;
  }
  .p_type_title{
    font-size: 16px;
  }
  .p_type_text{
    font-size: 12px;
  }
}

/* product_list */
.p_list_item{
  display: block;
  text-decoration: none;
}
.p_item_pic{
  background-color: #f5f5f5;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
.p_icon_block{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px 0px;
}
.p_icon{
  width: 12.5%;
  padding: 0px 1px;
}
.p_item_title{
  font-size: 20px;
  color: #282828;
  margin-bottom: 5px;
}
.p_item_text{
  font-size: 14px;
  color: #808080;
  margin-bottom: 5px;
}
.p_list_item:hover .p_item_pic{
  background-color: #cd0021;
}
.sm_page{
  margin-top: 100px;
}
.sm_page .page-item{
  margin: 0px 5px;
}
.sm_page .disabled{
  opacity: 0.6;
}
.sm_page .page-link{
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #282828;
}
.sm_page .arrow_link{
  border: solid 1px #d9d9d9;
}
.sm_page .page-link:hover{
  background-color: #f5f5f5;
}
.sm_page .page-link:focus{
  box-shadow: none;
}
.sm_page .page-item.active .page-link{
  background-color: #cd0021 !important;
  color: #fff;
}
.page_arrow{
  width: 12px;
}
@media(max-width: 1599px){
  .sm_page{
    margin-top: 80px;
  }
}
@media(max-width: 1499px){
  .sm_page{
    margin-top: 65px;
  }
}
@media(max-width: 1299px){
  .p_item_pic{
    padding: 15px;
  }
  .p_item_title{
    font-size: 18px;
  }
  .sm_page{
    margin-top: 50px;
  }
  .sm_page .page-link{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 1199px){
  .sm_page{
    margin-top: 30px;
  }
}
@media(max-width: 991px){
  .p_icon{
    width: 20%;
    padding: 2px;
  }
  .sm_page .page-item{
    margin: 0px 3px;
  }
}
@media(max-width: 767px){
  .p_icon_block{
    margin: 12px 0px;
  }
  .p_icon{
    width: 12.5%;
    padding: 1px;
  }
}
@media(max-width: 575px){
  .p_icon_block{
    margin: 10px 0px;
  }
  .p_icon{
    width: 20%;
    padding: 1px;
  }
  .sm_page .page-link{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 390px){
  .p_icon{
    width: 25%;
    padding: 1px;
  }
  .p_item_title{
    font-size: 16px;
  }
  .p_item_text{
    font-size: 12px;
  }
  .sm_page .page-item{
    margin: 0px 2px;
  }
  .sm_page .page-link{
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* product_detail */
.p_det_top{
  max-width: 1660px;
  margin-right: auto;
  align-items: center;
}
.p_det_pic{
  background-color: #f5f5f5;
  padding: 50px;
}
.p_det_right{
  padding-left: 80px;
}
.p_det_tblock{
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 15px;
}
.pdet_model{
  font-size: 16px;
  color: #808080;
  margin-bottom: 5px;
}
.pdet_title{
  font-size: 36px;
  color: #282828;
  margin-bottom: 0px;
  line-height: 1;
}
.pdet_icon_block{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.pdet_icon{
  width: 12.5%;
  padding: 0px 1px;
}
ul li::marker{
  color: #cd0021;
}
.pdet_feature{
  padding: 30px 0px;
  border-bottom: solid 1px #d9d9d9;
}
.feature_title{
  font-size: 20px;
  color: #282828;
  font-weight: 500;
}
.feature_ul{
  font-size: 18px;
  color: #282828;
  padding-left: 20px;
  margin-bottom: 0px;
}
.feature_ul li{
  margin-bottom: 10px;
}
.feature_ul li:nth-last-child(1){
  margin-bottom: 0px;
}
.pdet_btn_block{
  margin-top: 30px;
}
.p_det_table .table{
  margin-bottom: 0px;
  font-size: 18px;
  white-space: nowrap;
}
.p_det_table .table thead{
  background-color: #f5f5f5;
  border-top: solid 1px #cd0021;
}
.p_det_table .table thead tr th{
  border-bottom-color: #d9d9d9 !important;
  font-weight: 400;
  padding: 15px;
}
.p_det_table .table tbody tr th{
  padding: 15px;
  font-weight: 400;
  color: #cd0021;
  border-right: solid 1px #d9d9d9;
}
.p_det_table .table tbody tr td{
  padding: 15px;
  border-right: solid 1px #d9d9d9;
}
.p_det_table .table tbody tr td:nth-last-child(1){
  border-right: none;
}
.det_btn_block{
  margin-top: 100px;
  text-align: center;
}
@media(max-width: 1599px){
  .det_btn_block{
    margin-top: 80px;
  }
}
@media(max-width: 1499px){
  .p_det_right{
    padding-left: 50px;
  }
  .pdet_title{
    font-size: 32px;
  }
  .feature_title{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .feature_ul li{
    margin-bottom: 5px;
  }
  .det_btn_block{
    margin-top: 65px;
  }
}
@media(max-width: 1299px){
  .p_det_right{
    padding-left: 30px;
  }
  .pdet_title{
    font-size: 28px;
  }
  .feature_title{
    font-size: 18px;
    margin-bottom: 5px;
  }
  .feature_ul{
    font-size: 16px;
  }
  .feature_ul li{
    margin-bottom: 5px;
  }
  .p_det_table .table{
    font-size: 16px;
  }
  .p_det_table .table thead tr th{
    padding: 12px;
  }
  .p_det_table .table tbody tr th{
    padding: 12px;
  }
  .p_det_table .table tbody tr td{
    padding: 12px;
  }
  .det_btn_block{
    margin-top: 50px;
  }
}
@media(max-width: 1199px){
  .p_det_right{
    padding-left: 15px;
  }
  .pdet_title{
    font-size: 24px;
  }
  .pdet_feature{
    padding: 20px 0px;
  }
  .feature_title{
    font-size: 16px;
  }
  .pdet_btn_block{
    margin-top: 20px;
  }
  .det_btn_block{
    margin-top: 30px;
  }
}
@media(max-width: 991px){
  .p_det_right{
    padding-left: 0px;
  }
  .p_det_tblock{
    padding-bottom: 10px;
  }
  .pdet_model{
    font-size: 14px;
  }
  .pdet_title{
    font-size: 20px;
  }
  .pdet_feature{
    padding: 15px 0px;
  }
  .feature_ul li{
    line-height: 1.25;
    margin-bottom: 3px;
  }
  .pdet_btn_block{
    margin-top: 15px;
  }
}
@media(max-width: 767px){
  .p_det_top{
    margin: auto;
    padding: 50px 0px 0px 0px;
  }
  .p_det_tblock{
    margin-top: 30px;
  }
}
@media(max-width: 575px){
  .pdet_icon_block{
    justify-content: flex-start;
    margin-top: 15px;
  }
  .feature_ul{
    font-size: 14px;
  }
  .p_det_table .table{
    font-size: 14px;
  }
  .p_det_table .table thead tr th{
    padding: 10px;
  }
  .p_det_table .table tbody tr th{
    padding: 10px;
  }
  .p_det_table .table tbody tr td{
    padding: 10px;
  }
}
@media(max-width: 390px){
  .p_det_tblock{
    margin-top: 20px;
  }
  .pdet_icon_block{
    margin-top: 10px;
  }
}

/* media */
.m_news_list{
  margin-top: 50px;
}
.media_item{
  display: block;
  border: solid 1px #d9d9d9;
  padding: 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.media_bt{
  padding: 30px 0px 0px 0px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.media_tblock{
  padding-right: 12px;
}
.media_type{
  font-size: 14px;
  color: #cd0021;
  margin-bottom: 5px;
}
.media_title{
  font-size: 18px;
  color: #282828;
  margin-bottom: 5px;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.25;
  height: 65px;
}
.media_date{
  font-size: 14px;
  color: #808080;
  margin-bottom: 0px;
}
.media_item:hover .media_pic img{
  transform: scale(1.05,1.05);
}
.media_item:hover{
  border: solid 1px #cd0021;
}
@media(max-width: 1499px){
  .m_news_list{
    margin-top: 30px;
  }
  .media_item{
    padding: 20px;
  }
  .media_bt{
    padding: 20px 0px 0px 0px;
  }
}
@media(max-width: 991px){
  .m_news_list{
    margin-top: 20px;
  }
  .media_item{
    padding: 15px;
  }
  .media_bt{
    padding: 15px 0px 0px 0px;
  }
}
@media(max-width: 390px){
  .media_type{
    font-size: 12px;
    margin-bottom: 3px;
  }
  .media_title{
    font-size: 16px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 55px;
  }
  .media_date{
    font-size: 12px;
  }
}

/* media_catalog */
.catalog_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 140%;
  position: relative;
}
.catalog_pic img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.catalog_title{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.25;
}
.download_icon{
  background: url('../image/download_icon.svg');
  width: 55px;
  height: 55px;
  background-size: cover;
  flex-shrink: 0;
}
@media(max-width: 1299px){
  .download_icon{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .download_icon{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 991px){
  .download_icon{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 767px){
  .download_icon{
    width: 30px;
    height: 30px;
  }
}
@media(max-width: 390px){
  .catalog_title{
    font-size: 16px;
  }
}

/* media_video */
.video_item{
  overflow: hidden;
  position: relative;
}
.video_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 55%;
  position: relative;
}
.video_pic img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.video_cover{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.video_icon{
  width: 80px;
  height: 80px;
  transition: all 0.3s ease-in-out;
}

.media_item:hover .video_cover{
  background-color: rgba(0, 0, 0, 0.3);
}
.media_item:hover .video_icon{
  transform: scale(0.85);
}
@media(max-width: 1299px){
  .video_icon{
    width: 70px;
    height: 70px;
  }
}
@media(max-width: 1099px){
  .video_icon{
    width: 65px;
    height: 65px;
  }
}
@media(max-width: 991px){
  .video_icon{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 767px){
  .video_icon{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 390px){
  .video_icon{
    width: 35px;
    height: 35px;
  }
}

/* media_detail */
.mdet_block{
  max-width: 991px;
  margin: auto;
  padding: 150px 0px;
}
.mdet_title{
  font-size: 24px;
  color: #282828;
  text-align: center;
}
.mdet_date_type{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.mdet_date_type .media_type{
  margin-bottom: 0px;
  margin-left: 15px;
}
.mdet_inner{
  padding: 50px 0px;
  border-bottom: solid 1px #d9d9d9;
  font-size: 16px;
}
.mdet_inner img{
  width: 100%;
  max-width: 100%;
}
.mdet_btn_block{
  margin-top: 50px;
  text-align: center;
}
@media(max-width: 1499px){
  .mdet_block{
    padding: 130px 0px;
  }
}
@media(max-width: 1299px){
  .mdet_block{
    padding: 100px 0px;
  }
  .mdet_title{
    font-size: 20px;
  }
  .mdet_date_type{
    margin-top: 15px;
  }
  .mdet_inner{
    padding: 30px 0px;
  }
  .mdet_btn_block{
    margin-top: 30px;
  }
}
@media(max-width: 1199px){
  .mdet_block{
    padding: 80px 0px;
  }
}
@media(max-width: 1099px){
  .mdet_block{
    padding: 65px 0px;
  }
}
@media(max-width: 991px){
  .mdet_block{
    padding: 50px 0px;
  }
  .mdet_title{
    font-size: 18px;
  }
}
@media(max-width: 767px){
  .mdet_date_type{
    margin-top: 10px;
  }
}
@media(max-width: 390px){
  .mdet_title{
    font-size: 16px;
  }
  .mdet_date_type{
    margin-top: 5px;
  }
  .mdet_inner{
    padding: 15px 0px;
    font-size: 14px;
  }
  .mdet_btn_block{
    margin-top: 15px;
  }
}

/* about */
.about_block1{
  align-items: center;
  overflow: hidden;
}
.about_block1_left{
  padding-right: 65px;
}
.a_title_block .a_title_lg{
  margin-top: 50px;
}
.a_title_sm{
  font-size: 16px;
  color: #282828;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}
.a_title_sm::before{
  content: '';
  display: inline-block;
  margin-right: 15px;
  width: 8px;
  height: 8px;
  background-color: #cd0021;
}
.a_title_lg{
  font-size: 24px;
  color: #282828;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.a_text_block{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  line-height: 1.75;
}
.a_text_block span{
  color: #cd0021;
}
.about_block2{
  background: url('../image/grey_bg.png');
  background-repeat: no-repeat;
  background-size: 100% 70%;
  overflow: hidden;
}
.a_block2_area{
  max-width: 1660px;
  margin-right: auto;
}
.a_block2_box{
  padding-left: 0px;
}
.about_block2_bg{
  background: url('../image/about_bg2.png');
  height: 550px;
  background-size: cover;
  position: relative;
  background-position: center right;
}
.a_block2_tblock{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25%;
  margin: 50px;
  padding: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.about_block3{
  text-align: center;
}
.a_block3_tblock .a_title_lg span{
  color: #cd0021;
}
.a_block3_contact{
  font-size: 130px;
  color: #282828;
  font-weight: 500;
  line-height: 1;
}
.a_block3_contact span{
  color: #cd0021;
}
.a_c_btn_block{
  margin-top: 30px;
}
@media(max-width: 1599px){
  .about_block2_bg{
    height: 500px;
  }
  .a_block2_tblock{
    width: 30%;
    margin: 30px;
    padding: 30px;
  }
}
@media(max-width: 1499px){
  .about_block1_left{
    padding-right: 30px;
  }
  .a_title_block .a_title_lg{
    margin-top: 40px;
  }
  .a_title_lg{
    margin-bottom: 15px;
  }
  .a_block3_contact{
    font-size: 115px;
  }
}
@media(max-width: 1299px){
  .about_block1_left{
    padding-right: 0px;
  }
  .a_title_block .a_title_lg{
    margin-top: 30px;
  }
  .a_title_lg{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .a_text_block{
    font-size: 16px;
  }
  .about_block2_bg{
    height: 450px;
  }
  .a_block2_tblock{
    width: 35%;
    margin: 24px;
    padding: 24px;
  }
  .a_block3_contact{
    font-size: 100px;
  }
  .a_c_btn_block{
    margin-top: 20px;
  }
}
@media(max-width: 1199px){
  .about_block2_bg{
    height: 400px;
  }
  .a_block3_contact{
    font-size: 80px;
  }
}
@media(max-width: 1099px){
  .a_title_block .a_title_lg{
    margin-top: 15px;
  }
  .about_block2_bg{
    height: 350px;
  }
}
@media(max-width: 991px){
  .a_title_sm{
    font-size: 14px;
  }
  .a_title_sm::before{
    margin-right: 10px;
    width: 6px;
    height: 6px;
  }
  .a_title_block .a_title_lg{
    margin-top: 10px;
  }
  .a_title_lg{
    font-size: 18px;
    letter-spacing: 0px;
  }
  .a_text_block{
    line-height: 1.3;
  }
  .about_block2_bg{
    height: 300px;
  }
  .a_block3_contact{
    font-size: 68px;
  }
}
@media(max-width: 767px){
  .about_block1_left{
    margin-bottom: 20px;
  }
  .a_title_block .a_title_lg{
    margin-top: 10px;
  }
  .a_title_lg{
    margin-top: 10px;
  }
  .about_block2_bg{
    height: 250px;
  }
  .a_block2_tblock{
    width: 45%;
    margin: 15px;
    padding: 15px;
  }
  .a_block3_contact{
    font-size: 58px;
  }
}
@media(max-width: 575px){
  .about_block1_left{
    margin-bottom: 15px;
  }
  .a_title_sm::before{
    margin-right: 5px;
    width: 5px;
    height: 5px;
  }
  .a_title_lg{
    font-size: 16px;
  }
  .a_text_block{
    font-size: 14px;
    line-height: 1.25;
  }
  .about_block2_bg{
    height: 230px;
  }
  .a_block2_tblock{
    width: 50%;
  }
  .a_block3_contact{
    font-size: 48px;
  }
  .a_c_btn_block{
    margin-top: 15px;
  }
}
@media(max-width: 500px){
  .about_block2{
    background-size: 100% 75%;
  }
  .a_block2_tblock{
    width: 55%;
  }
  .a_block3_contact{
    font-size: 36px;
  }
}
@media(max-width: 390px){
  .about_block2{
    background-size: 100% 80%;
  }
  .about_block2_bg{
    height: 220px;
  }
  .a_block2_tblock{
    width: 70%;
  }
}

/* history */
.history_top_text{
  text-align: center;
}
.history_top_text .a_title_lg{
  line-height: 1.5;
}
.history_item{
  align-items: center;
  margin-top: 50px;
}
.history_block1{
  overflow: hidden;
}
.history_block1 .history_item:nth-child(even) .history_p_block{
  order: 1;
}
.history_block1 .history_item:nth-child(even) .history_t_block{
  order: 2;
}
.history_block1 .history_item:nth-child(even) .about_block1_left{
  padding-right: 0px;
  padding-left: 65px;
}
.a_title_block{
  position: relative;
}
.history_number{
  position: absolute;
  font-size: 130px;
  color: #efefef;
  line-height: 1;
  z-index: -1;
  top: 0;
  left: 0;
  margin-top: -50px;
  margin-left: 10%;
  font-weight: 500;
}
.history_bt_text{
  max-width: 850px;
  text-align: center;
  margin: 100px auto 0px auto;
}
.history_bt_text .a_title_lg{
  line-height: 1.5;
}
.history_block2{
  background: url('../image/history_bg.png');
  background-size: cover;
  padding: 100px 12px;
  background-position: center;
}
.timeline_area{
  max-width: 1420px;
  margin: auto;
  position: relative;
}
.time_slick::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
  top: 50%;
  margin-top: -4px;
}
.time_item{
  display: flex;
  position: relative;
}
.year_point{
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
}
.year_point::after{
  content: '';
  width: 1px;
  height: 220px;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  position: absolute;
  left: 3px;
}
.time_year{
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}
.time_text{
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
  font-weight: 300;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  line-height: 22px;
  height: 132px;
}
.timeline_area .slick-slide:nth-last-child(odd) .time_item .year_tblock{
  padding: 0px 15px 15px 15px;
}
.timeline_area .slick-slide:nth-last-child(even) .time_item .year_tblock{
  padding: 15px 15px 0px 15px;
}
.timeline_area .slick-slide:nth-last-child(odd) .time_item .year_point{
  bottom: 0;
}
.timeline_area .slick-slide:nth-last-child(odd) .time_item .year_point::after{
  bottom: 0;
}
.timeline_area .slick-slide:nth-last-child(even) .time_item .year_point{
  top: 0;
}
.timeline_area .slick-slide:nth-last-child(even) .time_item .year_point::after{
  top: 0;
}
.timeline_area .slick-slide:nth-last-child(even) .time_item{
  margin-top: 186px;
}
/* Dots */
.time_slick.slick-dotted.slick-slider{
  margin-bottom: 0px;
}
.time_slick .slick-dots{
  bottom: auto;
}
.time_slick .slick-dots li{
  margin: 10px 0px;
}
.time_slick .slick-dots li button{
  padding: 0px;
}
.time_slick .slick-dots li button:before{
  font-size: 8px;
  opacity: .25;
  color: #efefef;
}
.time_slick .slick-dots li.slick-active button:before{
  opacity: 1;
  color: #fff;
}
@media(max-width: 1599px){
  .history_number{
    font-size: 100px;
    margin-top: -40px;
    margin-left: 10%;
  }
}
@media(max-width: 1499px){
  .history_block1 .history_item:nth-child(even) .about_block1_left{
    padding-left: 30px;
  }
  .history_bt_text{
    margin: 80px auto 0px auto;
  }
}
@media(max-width: 1299px){
  .history_item{
    margin-top: 30px;
  }
  .history_number{
    font-size: 80px;
    margin-top: -30px;
    margin-left: 12%;
  }
  .history_block1 .history_item:nth-child(even) .about_block1_left{
    padding-left: 0px;
  }
  .history_bt_text{
    margin: 50px auto 0px auto;
  }
  .history_block2{
    padding: 80px 12px;
  }
}
@media(max-width: 1199px){
  .timeline_area .slick-slide:nth-last-child(even) .time_item{
    margin-top: 198px;
  }
  .time_year{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .time_text{
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    line-height: 22px;
    height: 154px;
  }
}
@media(max-width: 1099px){
  .history_number{
    font-size: 68px;
    margin-top: -23px;
    margin-left: 15%;
  }
}
@media(max-width: 991px){
  .history_bt_text{
    max-width: 790px;
    margin: 30px auto 0px auto;
  }
  .history_block2{
    padding: 50px 12px;
  }
  .timeline_area .slick-slide:nth-last-child(odd) .time_item .year_tblock{
    padding: 0px 0px 15px 15px;
  }
  .timeline_area .slick-slide:nth-last-child(even) .time_item .year_tblock{
    padding: 15px 0px 0px 15px;
  }
}
@media(max-width: 767px){
  .history_item{
    margin-top: 48px;
  }
  .history_block1 .history_item:nth-child(even) .history_p_block{
    order: 2;
  }
  .history_block1 .history_item:nth-child(even) .history_t_block{
    order: 1;
  }
  .history_number{
    font-size: 56px;
    margin-top: -18px;
    margin-left: 8%;
  }
  .history_top_text .a_title_lg{
    margin: 0px;
  }
  .history_bt_text .a_title_lg{
    margin: 0px;
  }
}
@media(max-width: 690px){
  .time_slick::after{
    top: 0%;
    margin-top: 4px;
  }
  .timeline_area .slick-slide:nth-last-child(even) .time_item{
    margin-top: 0px;
  }
  .timeline_area .slick-slide:nth-last-child(odd) .time_item .year_point{
    top: 0;
    bottom: auto;
  }
  .timeline_area .slick-slide:nth-last-child(odd) .time_item .year_point::after{
    top: 0;
    bottom: auto;
  }
  .timeline_area .slick-slide:nth-last-child(odd) .time_item .year_tblock{
    padding: 15px 15px 0px 15px;
  }
  .timeline_area .slick-slide:nth-last-child(even) .time_item .year_tblock{
    padding: 15px 15px 0px 15px;
  }
  .time_text{
    -webkit-line-clamp: 5;
    line-height: 22px;
    height: 110px;
  }
}
@media(max-width: 575px){
  .history_item{
    margin-top: 24px;
  }
  .history_number{
    font-size: 48px;
    margin-top: -15px;
    margin-left: 12%;
  }
  .history_bt_text{
    margin: 20px auto 0px auto;
  }
  .time_year{
    font-size: 18px;
  }
  .time_text{
    font-size: 14px;
    -webkit-line-clamp: 6;
    line-height: 20px;
    height: 120px;
  }
}
@media(max-width: 450px){
  .time_text{
    font-size: 14px;
    -webkit-line-clamp: 4;
    line-height: 20px;
    height: 80px;
  }
}
@media(max-width: 390px){
  .history_number{
    font-size: 42px;
    margin-top: -10px;
    margin-left: 16%;
  }
}

/* esg */
.esg_block1{
  overflow: hidden;
}
.esg_item{
  position: relative;
  margin-top: 100px;
}
.esg_pic{
  position: relative;
}
.esg_pic img{
  width: 100%;
}
.esg_letter{
  width: 100px;
  height: 100px;
  font-size: 72px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  background-color: #cd0021;
}
.esg_t_block{
  position: absolute;
  background-color: #fff;
  top: 0;
  padding: 0px 100px 100px 100px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  width: 50%;
}
.esg_item:nth-child(even){
  justify-content: flex-end;
}
.esg_item:nth-child(odd) .esg_letter{
  left: 12px;
}
.esg_item:nth-child(even) .esg_letter{
  right: 12px;
}
.esg_item:nth-child(odd) .esg_t_block{
  right: 12px;
}
.esg_item:nth-child(even) .esg_t_block{
  left: 12px;
}
.esg_ul{
  font-size: 18px;
  color: #282828;
  padding-left: 20px;
  margin-bottom: 0px;
}
.esg_ul li{
  margin-bottom: 10px;
}
@media(max-width: 1499px){
  .esg_item{
    margin-top: 80px;
  }
  .esg_t_block{
    padding: 0px 65px 65px 65px;
  }
  .esg_ul li{
    margin-bottom: 5px;
  }
  .esg_letter{
    width: 85px;
    height: 85px;
    font-size: 62px;
  }
}
@media(max-width: 1299px){
  .esg_item{
    margin-top: 50px;
  }
  .esg_t_block{
    padding: 0px 50px 50px 50px;
  }
  .esg_ul{
    font-size: 16px;
  }
  .esg_letter{
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}
@media(max-width: 1099px){
  .esg_t_block{
    padding: 0px 30px 30px 30px;
  }
  .esg_letter{
    width: 65px;
    height: 65px;
    font-size: 36px;
  }
}
@media(max-width: 767px){
  .esg_t_block{
    padding: 0px 15px 15px 15px;
  }
  .esg_ul li{
    margin-bottom: 3px;
  }
  .esg_letter{
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}
@media(max-width: 575px){
  .esg_item{
    margin-top: 24px;
  }
  .esg_t_block{
    width: 100%;
    position: relative;
    box-shadow: none;
    padding: 15px 0px;
  }
  .esg_item:nth-child(odd) .esg_t_block{
    left: 0px;
    right: 0px;
  }
  .esg_item:nth-child(even) .esg_t_block{
    left: 0px;
    right: 0px;
  }
  .esg_ul{
    font-size: 14px;
  }
  .esg_letter{
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .esg_item:nth-child(even) .esg_letter{
    right: auto;
    left: 12px;
  }
}

/* contact */
.contact_area{
  background: url('../image/red_bg.png');
  background-repeat: no-repeat;
  background-size: 31% 100%;
  background-position: right;
}
.contact_left{
  padding-right: 65px;
}
.c_info_area{
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.c_info_item{
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.info_icon_block{
  width: 55px;
  height: 55px;
  border-radius: 100%;
  border: solid 1px #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info_icon{
  width: 28px;
}
.c_info_tblock{
  margin-left: 10px;
}
.info_title{
  font-size: 18px;
  color: #cd0021;
  margin-bottom: 3px;
  font-weight: 500;
}
.info_text{
  font-size: 16px;
  color: #282828;
  margin-bottom: 0px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.c_info_item a:hover{
  color: #282828;
  opacity: 0.6;
}
.social_area .info_title{
  margin-bottom: 15px;
}
.social_block{
  display: flex;
  align-items: center;
}
.social_item{
  width: 55px;
  height: 55px;
  border-radius: 100%;
  border: solid 1px #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
.social_item:hover{
  border: solid 1px #cd0021;
}
.social_icon{
  width: 23px;
}
.form_area{
  background-color: #f5f5f5;
  padding: 50px;
}
.form_title{
  font-size: 24px;
  color: #282828;
  margin-bottom: 5px;
  font-weight: 500;
}
.form_text{
  font-size: 16px;
  color: #282828;
  margin-bottom: 0px;
}
.sm_input{
  border: none;
  border-radius: 0px;
  border-bottom: solid 1px #d9d9d9;
  background-color: transparent;
}
.sm_input:focus{
  box-shadow: none;
  border-bottom: solid 1px #cd0021;
  background-color: transparent;
}
.sm_form .form-select{
  padding: 16px 6px;
}
.code_block{
  position: relative;
}
.reset_block{
  position: absolute;
  right: 6px;
  top: 16px;
}
.reset_btn{
  border: none;
  background-color: transparent;
}
.reset_icon{
  width: 14px;
}
.code_block .form-control.is-invalid, .was-validated .form-control:invalid{
  background-image: url();
}
.contact_submit{
  margin-top: 15px;
}

@media(max-width: 1299px){
  .contact_left{
    padding-right: 50px;
  }
  .c_info_area{
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .c_info_item{
    margin-top: 30px;
  }
  .info_icon_block{
    width: 45px;
    height: 45px;
  }
  .info_icon{
    width: 25px;
  }
  .info_title{
    font-size: 16px;
  }
  .social_area .info_title{
    margin-bottom: 10px;
  }
  .social_item{
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  .form_area{
    padding: 30px;
  }
  .form_title{
    font-size: 20px;
  }
}
@media(max-width: 991px){
  .contact_left{
    padding-right: 0px;
  }
  .c_info_area{
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .c_info_item{
    margin-top: 20px;
  }
  .info_icon_block{
    width: 40px;
    height: 40px;
  }
  .info_icon{
    width: 20px;
  }
  .social_item{
    width: 40px;
    height: 40px;
  }
  .social_icon{
    width: 20px;
  }
  .form_title{
    font-size: 18px;
  }
}
@media(max-width: 767px){
  .contact_area{
    background-size: 100% 30%;
    background-position: bottom;
  }
  .contact_left{
    margin-bottom: 30px;
  }
  .info_icon_block{
    width: 35px;
    height: 35px;
  }
  .info_icon{
    width: 18px;
  }
  .info_title{
    font-size: 16px;
    margin-bottom: 0px;
  }
  .info_text{
    font-size: 14px;
  }
  .social_item{
    width: 35px;
    height: 35px;
    margin-right: 5px;
  }
  .social_icon{
    width: 18px;
  }
  .c_info_tblock{
    margin-left: 5px;
  }
  .form_area{
    padding: 24px;
  }
}
@media(max-width: 575px){
  .c_info_area{
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .c_info_item{
    margin-top: 15px;
  }
}

/* inquiry */
.inquiry_block{
  margin-top: 50px;
}
.inquiry_top{
  background-color: #f5f5f5;
  border-top: solid 1px #cd0021;
  border-bottom: solid 1px #d9d9d9;
  padding: 10px 0px;
  margin: auto;
}
.inquiry_item{
  padding: 15px 0px;
  border-bottom: solid 1px #d9d9d9;
  align-items: center;
  margin: auto;
}
.inq_left{
  display: flex;
  align-items: center;
}
.inq_p_pic{
  max-width: 125px;
  padding: 15px;
  background-color: #f5f5f5;
}
.inq_t_count{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.inq_t_block{
  text-decoration: none;
  margin-left: 15px;
}
.inq_p_title{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.inq_p_text{
  font-size: 14px;
  color: #808080;
  margin-bottom: 0px;
}
.qty{
  border: solid 1px #CBCBCB;
  display: flex;
  margin-top: 5px;
  width: max-content;
}
.count_btn{
  background-color: transparent;
  border: none;
}
.count{
  background-color: transparent;
  border: none;
  max-width: 30px;
  text-align: center;
}
.inq_delete{
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: #cd0021;
  border: none;
}
.delete_icon{
  width: 16px;
}
@media(max-width: 1299px){
  .inquiry_block{
    margin-top: 30px;
  }
  .inq_p_pic{
    max-width: 100px;
    padding: 10px;
  }
  .inq_p_title{
    font-size: 16px;
  }
  .inq_delete{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 1099px){
  .inq_p_pic{
    max-width: 80px;
  }
}
@media(max-width: 991px){
  .inquiry_block{
    margin-top: 20px;
  }
  .inq_p_pic{
    padding: 5px;
  }
  .inq_t_count{
    display: block;
    margin-left: 10px;
  }
  .inq_t_block{
    margin-left: 0px;
  }
  .inq_p_title{
    font-size: 14px;
  }
  .inq_p_text{
    font-size: 12px;
  }
  .inq_delete{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 575px){
  .inquiry_top{
    font-size: 14px;
  }
}

/* cookie */
.privacyBox{
  position: fixed;
  bottom: 0%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 1.5;
  padding: 15px 30px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
  transition: 400ms;
  z-index: 999;
  width: 100%;
}
.privacyBox .cookie_block{
  display: flex;
  align-items: center;
  margin: auto;
  max-width: 800px;
  font-size: 14px;
}
.privacyBox .cookie_block p{
  margin-bottom: 0px;
}
.privacyBox a{
  color: #cd0021;
}
.privacyBox .closePrivacy{
  background: #cd0021;
  border: 0;
  color: #fff;
  margin-left: 2rem;
  padding: 12px 48px;
  border-radius:10px;
  cursor: pointer;
  white-space:nowrap;
}
.privacy_cname{
  color: #cd0021;
  font-weight: 500;
}
.privacy_text{
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}
.privacy_title{
  font-size: 24px;
  color: #282828;
  margin-bottom: 15px;
}
@media(max-width: 1299px){
  .privacy_title{
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media(max-width: 991px){
  .privacy_text{
    font-size: 16px;
    letter-spacing: 0px;
  }
}
@media(max-width: 575px){
  .privacy_title{
    font-size: 18px;
  }
}
@media(max-width: 450px){
  .privacyBox{
    padding: 15px 25px;
  }
  .privacyBox .cookie_block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 12px;
    text-align: center;
  }
  .privacyBox .closePrivacy{
    margin-left: 0px;
    margin-top: 15px;
    padding: 10px 45px;
  }
}

/* submit */
.submit_area{
  max-width: 1420px;
  margin: auto;
  padding: 250px 0px 200px 0px;
  text-align: center;
}
.submit_block{
  text-align: center;
}
.send_icon{
  width: 120px;
}
.submit_title{
  font-size: 28px;
  color: #282828;
  margin-top: 30px;
}
.submit_text{
  font-size: 18px;
  color: #282828;
}
.back_btn_block{
  margin-top: 30px;
}
@media(max-width: 1499px){
  .submit_area{
    padding: 200px 0px 150px 0px;
  }
}
@media(max-width: 1299px){
  .submit_area{
    padding: 180px 0px 130px 0px;
  }
}
@media(max-width: 991px){
  .submit_area{
    padding: 150px 0px 100px 0px;
  }
  .send_icon{
    width: 100px;
  }
  .submit_title{
    font-size: 24px;
    margin-top: 20px;
  }
  .back_btn_block{
    margin-top: 20px;
  }
}
@media(max-width: 575px){
  .send_icon{
    width: 80px;
  }
  .submit_title{
    font-size: 20px;
  }
  .submit_text{
    font-size: 16px;
  }
}
@media(max-width: 390px){
  .send_icon{
    width: 75px;
  }
  .submit_title{
    font-size: 18px;
  }
  .submit_text{
    font-size: 14px;
  }
}

/* 404 */
.error_title{
  font-size: 130px;
  color: #cd0021;
  margin-bottom: 0px;
  font-weight: 700;
}
.error_text{
  font-size: 20px;
  color: #282828;
  margin-bottom: 0px;
}
@media(max-width: 1299px){
  .error_title{
    font-size: 100px;
  }
}
@media(max-width: 991px){
  .error_title{
    font-size: 86px;
  }
  .error_text{
    font-size: 18px;
  }
}
@media(max-width: 575px){
  .error_title{
    font-size: 72px;
  }
  .error_text{
    font-size: 16px;
  }
}