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: rgb(227, 0, 34);}
/* 滑鼠移到滑動的區塊上 */
::-webkit-scrollbar-thumb:hover { background: rgb(227, 0, 34); }

/* nav */
.sdf_navbar{
  padding: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.navbar{
  background-color: #fff;
  transition: 0.6s;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.nav_scroll{
  background-color: transparent;
  transition: 0.6s;
  box-shadow: none;
}
.logo{
  background: url('../image/logo_b.svg') left center no-repeat;
  width: 200px;
  height: 75px;
  cursor: pointer;
  background-size: contain;
}
#index .nav_scroll .logo{
  background: url('../image/logo_w.svg') left center no-repeat;
}
#index .sdf_navbar:hover .logo{
  background: url('../image/logo_b.svg') left center no-repeat;
}
.sdf_navbar:hover .logo{
  background: url('../image/logo_b.svg') left center no-repeat;
}
.navbar_area{
  max-width: 1720px;
  margin: 0px auto;
  padding: 0px 24px;
}
.nav_top{
  padding: 15px 0px;
}
.nav_linkarea{
  justify-content: flex-end;
}
.nav_linkarea .nav-link{
  color: #282828;
  background-color: transparent;
  border: none;
  padding: 30px 30px !important;
  transition: 0.4s;
  font-size: 18px;
  position: relative;
}
.nav_scroll .nav_linkarea .nav-link{
  color: #282828;
}
#index .nav_scroll .nav_linkarea .nav-link{
  color: #fff;
}
.sdf_navbar:hover{
  background-color: #fff;
}
#index .sdf_navbar:hover .nav_linkarea .nav-link{
  color: #282828;
}
.nav_linkarea .nav-item:hover .nav-link{
  color: #e30022 !important;
}
.nav_linkarea .nav-link::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #e30022;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.nav_linkarea .nav-item:hover .nav-link::after{
  opacity: 1;
}
.nav_right{
  display: flex;
  align-items: center;
  position: relative;
}
.lang_btn{
  background: url('../image/lang_icon_b.svg') no-repeat center;
  width: 24px;
  height: 24px;
  border: none;
}
.lang_btn:focus{
  box-shadow: none;
}
#index .nav_scroll .lang_btn{
  background: url('../image/lang_icon.svg') no-repeat center;
}
#index .sdf_navbar:hover .lang_btn{
  background: url('../image/lang_icon_b.svg') no-repeat center;
}
.cart_btn{
  position: relative;
  width: 150px;
  height: 50px;
  border-radius: 25px;
  background-color: #e30022;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 30px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.cart_btn:hover{
  color: #fff;
}
.contact_btn{
  width: 150px;
  height: 50px;
  border-radius: 25px;
  background-color: #fabe00;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_btn:hover{
  color: #fff;
}
.cart_point{
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #fabe00;
  position: absolute;
  right:24px;
  top: 12px;
  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: #e30022;
  border-radius: 0px;
  margin-top: 30px !important;
  min-width: 100px;
  left: 50% !important;
  transform: translateX(-50%);
}
.lang_dropmenu .dropdown-item{
  color: #fff;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.lang_dropmenu .dropdown-item:hover{
  background-color: transparent;
  color: #fff;
  opacity: 0.6;
}
/* dropdown_menu */
.sdf_dropmenu{
  border: none;
  background-color: #fff;
  padding: 0px;
  border-radius: 0px;
  margin-top: 0px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  left: 50% !important;
  transform: translateX(-50%);
}
.sdf_sec_dropmenu{
  border: none;
  background-color: #fff;
  padding: 0px;
  border-radius: 0px;
  margin-top: 0px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-left: 0px !important;
}
.sdf_first_dropitem{
  position: relative;
  display: flex;
  align-items: center;
}
.sdf_first_dropitem::after{
  content: "";
  background-image: url('../image/right_arrow.svg');
  width: 6px;
  height: 12px;
  background-size: cover;
  background-position: right center;
  position: absolute;
  right: 12px;
}
.sdf_dropmenu .dropdown-item{
  color: #282828;
  padding: 10px 15px;
  transition: 0.4s;
  font-size: 18px;
}
.sdf_dropmenu .dropdown-item:hover{
  background-color: #f5f5f5;
}
.sdf_dropmenu .dropdown-item:active{
  background-color: transparent;
}
.sdf_dropmenu .dropdown-item:focus{
  background-color: transparent;
}

@media(min-width: 991px){
  .sdf_dropmenu li:hover .sub-menu{
    visibility: visible;
  }
  .dropdown:hover .sdf_dropmenu{
    display: block;
  }
  .lang_dropmenu li:hover .sub-menu{
    visibility: visible;
  }
  .navbar-nav li:hover>ul.dropdown-menu {
    display: block;
  }
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu>.dropdown-menu {
    top: 0%;
    left: 100%;
    margin-top: -3px;
  }
}
@media(max-width: 1499px){
  .logo{
    width: 180px;
    height: 65px;
  }
  .nav_linkarea .nav-link{
    padding: 30px 20px !important;
  }
  .cart_btn{
    width: 120px;
    height: 40px;
    border-radius: 20px;
    margin: 0px 20px;
  }
  .contact_btn{
    width: 120px;
    height: 40px;
    border-radius: 20px;
  }
  .cart_point{
    right: 15px;
    top: 10px;
  }
}
@media(max-width: 1299px){
  .logo{
    width: 150px;
    height: 55px;
  }
  .nav_linkarea .nav-link{
    font-size: 16px;
    padding: 25px 20px !important;
  }
  .cart_btn{
    width: 100px;
    height: 35px;
    border-radius: 18px;
    margin: 0px 20px;
    font-size: 16px;
  }
  .contact_btn{
    width: 100px;
    height: 35px;
    border-radius: 18px;
    font-size: 16px;
  }
  .cart_point{
    width: 5px;
    height: 5px;
    right: 12px;
    top: 8px;
  }
  .sdf_dropmenu .dropdown-item{
    font-size: 16px;
  }
  .lang_dropmenu .dropdown-item{
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .nav_scroll{
    background-color: #fff;
    padding: 0px;
  }
  .sdf_navbar{
    padding: 0px;
  }
  .navbar_area{
    position: relative;
    margin: 0px auto;
    padding: 0px;
  }
  .logo{
    margin: 8px 0px 8px 12px;
    width: 140px;
    height: 50px;
  }
  #index .sdf_navbar .logo{
    background: url('../image/logo_b.svg') left center no-repeat;
  }
  .nav_linkarea{
    background-color: #36455f;
  }
  .nav_linkarea .navbar-nav{
    text-align: center;
  }
  .sdf_navbar:hover .nav_linkarea .nav-link{
    color: #fff;
  }
  .nav_scroll .nav_linkarea .nav-link{
    color: #fff;
  }
  #index .sdf_navbar:hover .nav_linkarea .nav-link{
    color: #fff;
  }
  .nav_linkarea .nav-link{
    color: #fff;
    font-size: 14px;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    padding: 15px 0px !important;
  }
  .nav_right{
    position: absolute;
    top: 15px;
    right: 60px;
    display: flex;
  }
  .lang_btn{
    width: 23px;
    height: 23px;
  }
  #index .nav_scroll .lang_btn{
    background: url('../image/lang_icon_b.svg') no-repeat center;
  }
  .nav_right .lang_drop{
    padding: 0px !important;
  }
  .lang_dropmenu{
    margin-top: 23px !important;
  }
  .cart_icon{
    background: url('../image/cart_b.svg') no-repeat center;
  }
  .nav_scroll .cart_icon{
    background: url('../image/cart_b.svg') no-repeat center;
  }
  .cart_point{
    width: 5px;
    height: 5px;
    right: 7px;
    top: 0px;
    margin-top: -3px;
  }
  .sdf_dropmenu{
    box-shadow: none;
    left: 0;
    transform: translateX(0);
    text-align: center;
    border-radius: 0px;
    margin-top: 0px !important;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .sdf_dropmenu .dropdown-item{
    color: #fff;
    padding: 10px 0px;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    white-space: normal;
  }
  .sdf_dropmenu .dropdown-item:hover{
    background-color: #e30022;
  }
  .sdf_dropmenu .sdf_first_dropitem:hover{
    background-color: #e30022;
  }
  .sdf_dropmenu .sdf_sec_dropmenu .dropdown-item:hover{
    background-color: #fabe00 !important;
  }
  .sdf_first_dropitem::after{
    display: none;
  }
  .sdf_sec_dropmenu{
    background-color: rgba(255, 255, 255, 0.1);
  }
  .cart_btn{
    width: 80px;
    height: 30px;
    border-radius: 15px;
    margin: 0px 0px 0px 10px;
    font-size: 14px;
  }
  .contact_btn{
    display: none;
  }
  .cart_point{
    width: 4px;
    height: 4px;
    right: 12px;
    top: 8px;
  }
  .navbar-toggler{
    position: absolute;
    top: 12px;
    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: #282828;
    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: 120px;
    height: 40px;
  }
  .nav_right{
    top: 15px;
    right: 50px;
  }
  .cart_btn{
    width: 75px;
    height: 25px;
    margin: 0px 0px 0px 5px;
  }
  .cart_point{
    width: 3px;
    height: 3px;
    right: 10px;
    top: 6px;
  }
  .lang_dropmenu{
    margin-top: 15px !important;
  }
  .navbar-toggler{
    top: 8px;
  }
  .lang_btn{
    width: 20px;
    height: 20px;
  }
}

/* banner */
.index_block{
  padding: 0px;
  overflow: hidden;
}
.banner_block{
  position: relative;
  display: flex !important;
  align-items: center;
  overflow: hidden;
}
.banner_tblock{
  position: absolute;
  z-index: 2;
  max-width: 1720px;
  margin: auto;
  width: 100%;
  left: 0;
  right: 0;
  padding: 0px 24px;
}
.btitle_lg{
  font-size: 72px;
  color: #fff;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 850px;
}
.btitle_sm{
  font-size: 24px;
  color: #fff;
  margin-bottom: 0px;
  font-weight: 300;
  letter-spacing: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 850px;
}
.banner_cover{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
/* Dots */
.banner_slick .slick-dots{
  max-width: 1720px;
  margin: auto;
  display: flex;
  left: 0;
  right: 0;
  bottom: 28%;
  padding: 0px 24px;
}
.banner_slick.slick-dotted.slick-slider{
  margin-bottom: 0px;
}
.banner_slick .slick-dots li{
  margin: 0px;
}
.banner_slick .slick-dots li button{
  padding: 0px;
  width: 10px;
  height: 10px;
}
.banner_slick .slick-dots li button:before{
  font-size: 6px;
  opacity: 1;
  width: 10px;
  height: 10px;
  color: transparent;
  border: solid 1px #fff;
  border-radius: 100%;
}
.banner_slick .slick-dots li.slick-active button:before{
  opacity: 1;
  color: transparent;
  border: solid 1px #fff;
  background-color: #fff;
}
@media(max-width: 1699px){
  .btitle_lg{
    font-size: 68px;
    margin-bottom: 20px;
    max-width: 800px;
  }
  .btitle_sm{
    font-size: 22px;
    letter-spacing: 0px;
    max-width: 800px;
  }
}
@media(max-width: 1499px){
  .btitle_lg{
    font-size: 58px;
    margin-bottom: 20px;
    max-width: 700px;
  }
  .btitle_sm{
    max-width: 700px;
  }
}
@media(max-width: 1299px){
  .btitle_lg{
    font-size: 48px;
    margin-bottom: 15px;
    max-width: 550px;
  }
  .btitle_sm{
    font-size: 20px;
    max-width: 550px;
  }
  .banner_slick .slick-dots{
    bottom: 25%;
  }
  .banner_slick .slick-dots li button{
    padding: 0px;
    width: 8px;
    height: 8px;
  }
  .banner_slick .slick-dots li button:before{
    font-size: 4px;
    width: 8px;
    height: 8px;
  }
}
@media(max-width: 991px){
  .index_banner{
    padding-top: 65px;
  }
  .btitle_lg{
    font-size: 38px;
    margin-bottom: 10px;
    max-width: 450px;
  }
  .btitle_sm{
    font-size: 18px;
    max-width: 450px;
  }
  .banner_slick .slick-dots{
    bottom: 23%;
  }
}
@media(max-width: 767px){
  .btitle_lg{
    font-size: 28px;
    max-width: 350px;
  }
  .btitle_sm{
    font-size: 16px;
    max-width: 350px;
  }
  .banner_slick .slick-dots{
    bottom: 20%;
  }
}
@media(max-width: 575px){
  .index_banner{
    padding-top: 55px;
  }
  .btitle_lg{
    font-size: 24px;
    max-width: 300px;
  }
  .btitle_sm{
    font-size: 14px;
    max-width: 300px;
  }
  .banner_slick .slick-dots{
    bottom: 18%;
  }
}
@media(max-width: 575px){
  .btitle_lg{
    font-size: 22px;
    max-width: 250px;
    margin-bottom: 5px;
  }
  .btitle_sm{
    font-size: 12px;
    max-width: 250px;
  }
  .banner_slick .slick-dots{
    bottom: 15%;
  }
}
@media(max-width: 390px){
  .btitle_lg{
    font-size: 20px;
    line-height: 1.05;
    max-width: 200px;
  }
  .btitle_sm{
    max-width: 200px;
  }
  .banner_slick .slick-dots{
    bottom: 12%;
  }
}

/* index_product */
.index_product{
  background-image: url('../image/index_p_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
}
.product_area{
  max-width: 1720px;
  margin-left: auto;
  padding: 180px 0px;
  overflow: hidden;
}
.index_p_left{
  position: relative;
}
.index_p_right{
  padding-right: 0px;
}
.index_title{
  font-size: 60px;
  color: #282828;
  font-weight: 700;
  line-height: 1.05;
}
.index_title span{
  display: block;
  color: #e30022;
}
.product_t_slick{
  margin-top: 50px;
  padding-right: 75px;
  position: static !important;
}
.index_p_link{
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.index_p_link::before{
  content: "+";
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #e30022;
  font-size: 18px;
  color: #fabe00;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.index_p_link .title{
  font-size: 20px;
  color: #282828;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.index_p_text .text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.product_p_slick .slick-list{
  padding-right: 250px;
}
.index_p_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
  position: relative;
}
.index_p_pic img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transform: scale(1,1);
  transition: all ease-in-out 0.3s;
}
/* arrow */
.product_t_slick .slick-prev{
  width: 82px;
  height: 82px;
  left: 12px;
  right: auto;
  z-index: 1;
  top: auto;
  bottom: 0;
}
.product_t_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.product_t_slick .slick-next{
  width: 82px;
  height: 82px;
  left: 120px;
  right: auto;
  z-index: 1;
  top: auto;
  bottom: 0;
}
.product_t_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.product_t_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_btn_r.svg');
  background-size: cover;
}
.product_t_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_btn_r.svg');
  background-size: cover;
}

@media(max-width: 1899px){
  .product_area{
    padding: 150px 0px;
  }
  .index_title{
    font-size: 56px;
  }
  .product_t_slick{
    margin-top: 30px;
    padding-right: 50px;
  }
  .index_p_link{
    margin-bottom: 10px;
  }
  .product_t_slick .slick-prev{
    width: 76px;
    height: 76px;
  }
  .product_t_slick .slick-prev:before{
    width: 75px;
    height: 75px;
  }
  .product_t_slick .slick-next{
    width: 76px;
    height: 76px;
    left: 110px;
  }
  .product_t_slick .slick-next:before{
    width: 75px;
    height: 75px;
  }
}
@media(max-width: 1699px){
  .index_title{
    font-size: 48px;
  }
  .product_t_slick{
    padding-right: 30px;
  }
  .product_t_slick .slick-prev{
    width: 66px;
    height: 66px;
  }
  .product_t_slick .slick-prev:before{
    width: 65px;
    height: 65px;
  }
  .product_t_slick .slick-next{
    width: 66px;
    height: 66px;
    left: 100px;
  }
  .product_t_slick .slick-next:before{
    width: 65px;
    height: 65px;
  }
}
@media(max-width: 1499px){
  .product_area{
    padding: 130px 0px;
  }
  .index_title{
    font-size: 42px;
  }
  .product_t_slick{
    padding-right: 0px;
  }
  .product_t_slick .slick-prev{
    width: 62px;
    height: 62px;
  }
  .product_t_slick .slick-prev:before{
    width: 60px;
    height: 60px;
  }
  .product_t_slick .slick-next{
    width: 62px;
    height: 62px;
    left: 90px;
  }
  .product_t_slick .slick-next:before{
    width: 60px;
    height: 60px;
  }
  .product_p_slick .slick-list{
    padding-right: 180px;
  }
}
@media(max-width: 1299px){
  .product_area{
    padding: 100px 0px;
  }
  .index_title{
    font-size: 38px;
  }
  .index_p_link .title{
    font-size: 18px;
  }
  .index_p_text .text{
    font-size: 16px;
  }
  .product_t_slick .slick-prev{
    width: 56px;
    height: 56px;
  }
  .product_t_slick .slick-prev:before{
    width: 55px;
    height: 55px;
  }
  .product_t_slick .slick-next{
    width: 56px;
    height: 56px;
    left: 80px;
  }
  .product_t_slick .slick-next:before{
    width: 55px;
    height: 55px;
  }
  .product_p_slick .slick-list{
    padding-right: 150px;
  }
}
@media(max-width: 1199px){
  .product_area{
    padding: 80px 0px 90px 0px;
  }
  .product_t_slick{
    margin-top: 20px;
  }
  .index_title{
    font-size: 32px;
  }
  .index_p_link::before{
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
  .product_t_slick .slick-prev{
    width: 52px;
    height: 52px;
  }
  .product_t_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .product_t_slick .slick-next{
    width: 52px;
    height: 52px;
    left: 80px;
  }
  .product_t_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1099px){
  .product_area{
    padding: 65px 0px 80px 0px;
  }
  .product_t_slick{
    margin-top: 15px;
  }
  .index_title{
    font-size: 28px;
  }
  .product_t_slick .slick-prev{
    width: 46px;
    height: 46px;
  }
  .product_t_slick .slick-prev:before{
    width: 45px;
    height: 45px;
  }
  .product_t_slick .slick-next{
    width: 46px;
    height: 46px;
    left: 70px;
  }
  .product_t_slick .slick-next:before{
    width: 45px;
    height: 45px;
  }
  .product_p_slick .slick-list{
    padding-right: 120px;
  }
}
@media(max-width: 991px){
  .index_product{
    position: relative;
  }
  .product_area{
    padding: 50px 0px;
  }
  .index_p_left{
    position: static;
  }
  .index_title{
    font-size: 24px;
  }
  .index_p_link .title{
    font-size: 16px;
  }
  .index_p_text .text{
    font-size: 14px;
    -webkit-line-clamp: 4;
  }
  .product_t_slick .slick-prev{
    width: 42px;
    height: 42px;
    left: 24px;
  }
  .product_t_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .product_t_slick .slick-next{
    width: 42px;
    height: 42px;
    left: 70px;
  }
  .product_t_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
  .product_p_slick .slick-list{
    padding-right: 115px;
  }
}
@media(max-width: 767px){
  .index_product{
    background-image: url('../image/index_p_bg_sm.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
  }
  .product_area{
    margin: auto;
  }
  .index_p_left{
    position: relative;
    padding-bottom: 65px;
  }
  .index_title span{
    display: inline-block;
  }
  .index_title{
    font-size: 24px;
  }
  .index_p_text .text{
    -webkit-line-clamp: 7;
  }
  .product_p_slick .slick-list{
    padding-right: 0px;
  }
  .index_p_right{
    padding-right: calc(var(--bs-gutter-x) * .5);
  }
  .product_t_slick .slick-prev{
    width: 36px;
    height: 36px;
    left: 12px;
  }
  .product_t_slick .slick-prev:before{
    width: 35px;
    height: 35px;
  }
  .product_t_slick .slick-next{
    width: 36px;
    height: 36px;
    left: 60px;
  }
  .product_t_slick .slick-next:before{
    width: 35px;
    height: 35px;
  }
}

/* index_media */
.media_area{
  max-width: 1520px;
  padding: 0px 0px 150px 0px;
  margin: auto;
}
.index_m_top{
  align-items: flex-end;
  margin-bottom: 50px;
}
.index_m_top .index_title{
  margin-bottom: 0px;
}
.index_m_tab{
  justify-content: flex-end;
}
.index_m_tab .nav-item{
  margin: 0px 10px;
}
.index_m_tab .nav-link{
  background-color: #CBCBCB;
  color: #fff;
  border-radius: 20px;
}
.index_m_tab .nav-link.active{
  background-color: #e30022;
  color: #fabe00;
}
.media_item{
  align-items: center;
  text-decoration: none;
  border-bottom: solid 1px #d9d9d9;
  padding: 30px 50px;
  transition: all ease-in-out 0.3s;
}
.media_item:hover{
  background-color: #f5f5f5;
}
.media_date{
  font-size: 30px;
  color: #e30022;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 1;
}
.media_type{
  font-size: 18px;
  color: #e30022;
}
.media_t_block{
  padding-right: 80px;
}
.media_title{
  font-size: 20px;
  color: #282828;
  font-weight: 600;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.25;
}
.media_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.media_p_block{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.media_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 65%;
  position: relative;
  margin-right: 30px;
}
.media_pic img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.media_arrow{
  width: 30px;
}
.index_m_bt{
  margin-top: 65px;
  text-align: center;
}
.click_btn{
  position: relative;
  display: inline-block;
  background-color: #e30022;
  color: #fff;
  min-width: 200px;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  padding: 16px;
  border-radius: 30px;
  border: none;
  transition: all ease-in-out 0.3s;
}
.click_btn::after{
  content: "+";
  position: absolute;
  right: 16px;
  color: #fabe00;
  font-size: 20px;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
}
.click_btn:hover{
  background-color: #fabe00;
  color: #fff;
}
.click_btn:hover::after{
  color: #fff;
}
@media(max-width: 1499px){
  .media_area{
    padding: 0px 0px 130px 0px;
  }
  .media_item{
    padding: 15px 24px;
  }
  .media_date{
    font-size: 28px;
  }
  .media_t_block{
    padding-right: 65px;
  }
  .media_arrow{
    width: 25px;
  }
  .index_m_bt{
    margin-top: 50px;
  }
  .click_btn{
    min-width: 180px;
    padding: 12px;
  }
  .click_btn::after{
    font-size: 18px;
  }
}
@media(max-width: 1299px){
  .media_area{
    padding: 0px 0px 100px 0px;
  }
  .media_item{
    padding: 15px 12px;
  }
  .media_date{
    font-size: 24px;
  }
  .media_t_block{
    padding-right: 50px;
  }
  .media_title{
    font-size: 18px;
  }
  .media_text{
    font-size: 16px;
  }
  .media_arrow{
    width: 20px;
  }
  .click_btn{
    min-width: 160px;
    font-size: 16px;
    padding: 12px;
  }
  .click_btn::after{
    font-size: 16px;
  }
}
@media(max-width: 1199px){
  .media_area{
    padding: 0px 0px 80px 0px;
  }
  .index_m_top{
    margin-bottom: 30px;
  }
  .index_m_tab .nav-item{
    margin: 0px 5px;
  }
  .index_m_tab .nav-link{
    padding: 6px 16px;
  }
  .index_m_bt{
    margin-top: 30px;
  }
}
@media(max-width: 1099px){
  .media_area{
    padding: 0px 0px 65px 0px;
  }
  .media_item{
    padding: 15px 12px;
  }
  .media_date{
    font-size: 20px;
  }
  .media_type{
    font-size: 16px;
  }
  .media_t_block{
    padding-right: 0px;
  }
}
@media(max-width: 991px){
  .media_area{
    padding: 0px 0px 50px 0px;
  }
  .index_m_top{
    margin-bottom: 15px;
  }
  .index_m_tab .nav-link{
    padding: 4px 12px;
    font-size: 14px;
  }
  .media_item{
    padding: 12px;
  }
  .media_date{
    font-size: 18px;
  }
  .media_type{
    font-size: 14px;
  }
  .media_title{
    font-size: 16px;
  }
  .media_text{
    font-size: 14px;
  }
  .media_pic{
    margin-right: 15px;
  }
  .media_arrow{
    width: 15px;
  }
  .click_btn{
    min-width: 140px;
    font-size: 14px;
    padding: 10px;
  }
  .click_btn::after{
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .media_item{
    padding: 24px 12px;
  }
  .m_date_type{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  .media_date{
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  .media_date::after{
    content: "";
    width: 1px;
    height: 12px;
    background-color: #e30022;
    margin: 0px 10px;
    display: block;
  }
  .media_type{
    margin-bottom: 0px;
  }
  .media_pic{
    margin-right: 0px;
    margin-top: 15px;
  }
  .media_arrow{
    display: none;
  }
}
@media(max-width: 575px){
  .index_m_top .index_title{
    margin-bottom: 15px;
  }
  .index_m_tab{
    justify-content: flex-start;
  }
  .index_m_tab .nav-item:nth-child(1){
    margin-left: 0px;
  }
  .media_item{
    padding: 12px 0px;
  }
}

/* index_case */
.index_case{
  background-image: url('../image/bg_block.png');
  background-repeat: no-repeat;
  background-size: 100% 62%;
  background-position: top left;
}
.case_area{
  max-width: 1520px;
  margin: auto;
  padding: 150px 0px;
}
.case_slick{
  margin-top: 65px;
}
.case_slick .slick-list{
  padding-bottom: 5px;
}
.case_block{
  padding: 0px 12px;
}
.case_item{
  text-decoration: none;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.case_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 73%;
  position: relative;
  margin-right: 30px;
}
.case_pic img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transform: scale(1,1);
  transition: all ease-in-out 0.3s;
}
.case_item:hover .case_pic img{
  transform: scale(1.05,1.05);
}
.case_bt{
  background-color: #fff;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 3px transparent;
  transition: all ease-in-out 0.3s;
}
.case_bt .title{
  font-size: 20px;
  color: #282828;
  font-weight: 600;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.case_bt .text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.case_item:hover .case_bt{
  border-bottom: solid 3px #e30022;
}
.plus_btn{
  width: 25px;
  height: 25px;
  font-size: 18px;
  border-radius: 100%;
  background-color: #e30022;
  color: #fabe00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* arrow */
.case_slick .slick-prev{
  width: 82px;
  height: 82px;
  left: -100px;
  right: auto;
  z-index: 1;
  top: 50%;
  bottom: auto;
}
.case_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.case_slick .slick-next{
  width: 82px;
  height: 82px;
  left: auto;
  right: -100px;
  z-index: 1;
  top: 50%;
  bottom: auto;
}
.case_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.case_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_btn_r.svg');
  background-size: cover;
}
.case_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_btn_r.svg');
  background-size: cover;
}

@media(max-width: 1899px){
  .case_slick .slick-prev{
    width: 76px;
    height: 76px;
    left: -80px;
  }
  .case_slick .slick-prev:before{
    width: 75px;
    height: 75px;
  }
  .case_slick .slick-next{
    width: 76px;
    height: 76px;
    right: -80px;
  }
  .case_slick .slick-next:before{
    width: 75px;
    height: 75px;
  }
}
@media(max-width: 1699px){
  .index_case{
    background-size: 100% 60.5%;
  }
  .case_slick{
    padding: 0px 50px;
    margin-top: 50px;
  }
  .case_slick .slick-prev{
    width: 66px;
    height: 66px;
    left: -15px;
  }
  .case_slick .slick-prev:before{
    width: 65px;
    height: 65px;
  }
  .case_slick .slick-next{
    width: 66px;
    height: 66px;
    right: -15px;
  }
  .case_slick .slick-next:before{
    width: 65px;
    height: 65px;
  }
}
@media(max-width: 1499px){
  .index_case{
    background-size: 100% 61%;
  }
  .case_area{
    padding: 130px 0px;
  }
  .case_slick .slick-prev{
    width: 62px;
    height: 62px;
    left: -10px;
  }
  .case_slick .slick-prev:before{
    width: 60px;
    height: 60px;
  }
  .case_slick .slick-next{
    width: 62px;
    height: 62px;
    right: -10px;
  }
  .case_slick .slick-next:before{
    width: 60px;
    height: 60px;
  }
}
@media(max-width: 1299px){
  .index_case{
    background-size: 100% 62%;
  }
  .case_area{
    padding: 100px 0px;
  }
  .case_bt{
    padding: 12px;
  }
  .case_bt .title{
    font-size: 18px;
  }
  .case_bt .text{
    font-size: 16px;
  }
  .case_slick .slick-prev{
    width: 56px;
    height: 56px;
    left: -10px;
  }
  .case_slick .slick-prev:before{
    width: 55px;
    height: 55px;
  }
  .case_slick .slick-next{
    width: 56px;
    height: 56px;
    right: -10px;
  }
  .case_slick .slick-next:before{
    width: 55px;
    height: 55px;
  }
}
@media(max-width: 1199px){
  .case_area{
    padding: 80px 0px;
  }
  .case_slick{
    margin-top: 30px;
  }
  .plus_btn{
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
  .case_slick .slick-prev{
    width: 52px;
    height: 52px;
  }
  .case_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .case_slick .slick-next{
    width: 52px;
    height: 52px;
  }
  .case_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1099px){
  .index_case{
    background-size: 100% 61%;
  }
  .case_area{
    padding: 65px 0px;
  }
  .case_slick{
    padding: 0px 40px;
  }
  .case_slick .slick-prev{
    width: 46px;
    height: 46px;
    left: -5px;
  }
  .case_slick .slick-prev:before{
    width: 45px;
    height: 45px;
  }
  .case_slick .slick-next{
    width: 46px;
    height: 46px;
    right: -5px;
  }
  .case_slick .slick-next:before{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 991px){
  .case_area{
    padding: 50px 0px;
  }
  .case_slick{
    padding: 0px 24px;
  }
  .case_bt .title{
    font-size: 16px;
  }
  .case_bt .text{
    font-size: 14px;
  }
  .case_slick .slick-prev{
    width: 42px;
    height: 42px;
    left: -15px;
  }
  .case_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .case_slick .slick-next{
    width: 42px;
    height: 42px;
    right: -15px;
  }
  .case_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 767px){
  .index_case{
    background-size: 100% 62%;
  }
  .case_slick{
    padding: 0px 20px;
    margin-top: 20px;
  }
  .case_slick .slick-prev{
    width: 36px;
    height: 36px;
  }
  .case_slick .slick-prev:before{
    width: 35px;
    height: 35px;
  }
  .case_slick .slick-next{
    width: 36px;
    height: 36px;
  }
  .case_slick .slick-next:before{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 575px){
  .index_case{
    background-size: 100% 61%;
  }
}

/* footer */
.footer{
  background-color: #282828;
  position: relative;
}
.footer_area{
  max-width: 1520px;
  margin: auto;
  padding-top: 100px;
}
.footer_top{
  align-items: flex-end;
}
.footer_logo{
  width: 200px;
}
.social_block{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.social_item{
  margin: 0px 10px;
  opacity: 0.6;
  transition: all ease-in-out 0.3s;
}
.social_item:hover{
  opacity: 1;
}
.social_icon{
  width: 25px;
}
.f_site_info{
  margin-top: 50px;
}
.f_sitemap{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.f_site_top{
  margin-bottom: 8px;
}
.f_site_top .site_link{
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  transition: all ease-in-out 0.3s;
}
.f_site_top .site_link:hover{
  color: #e30022;
}
.f_site_item{
  margin-bottom: 2px;
}
.f_site_item .site_link{
  font-size: 16px;
  color: #aeaeae;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.f_site_item .site_link:hover{
  color: #fabe00;
}
.info_title{
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all ease-in-out 0.3s;
}
.info_item{
  font-size: 16px;
  color: #aeaeae;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.info_item:hover{
  color: #fabe00;
}
.footer_info{
  padding-left: 80px;
}
.info_add{
  margin-top: 10px;
}
.info_add a:hover{
  color: #fabe00;
}
.footer_contact{
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 12px;
  text-align: center;
  border-radius: 25px;
  margin-top: 20px;
  position: relative;
  transition: all ease-in-out 0.3s;
}
.footer_contact::after{
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 18px;
  line-height: 1;
}
.footer_contact:hover{
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.footer_bottom{
  border-top: solid 1px rgba(255, 255, 255, 0.15);
  padding: 30px 0px;
  margin-top: 50px;
}
.f_copy_text{
  font-size: 16px;
  color: #aeaeae;
  margin-bottom: 0px;
  text-align: center;
}
.f_copy_text a{
  color: #aeaeae;
  margin: 0px 1px;
}
.top_block{
  position: absolute;
  border: none;
  background-color: transparent;
  top: 24px;
  right: 24px;
  padding: 0px;
}
.top_btn{
  width: 80px;
}
@media(max-width: 1899px){
  .top_btn{
    width: 75px;
  }
}
@media(max-width: 1699px){
  .top_btn{
    width: 65px;
  }
}
@media(max-width: 1499px){
  .footer_logo{
    width: 180px;
  }
  .footer_info{
    padding-left: 50px;
  }
  .top_btn{
    width: 60px;
  }
}
@media(max-width: 1299px){
  .footer_area{
    padding-top: 80px;
  }
  .footer_logo{
    width: 150px;
  }
  .f_site_info{
    margin-top: 30px;
  }
  .footer_info{
    padding-left: 0px;
  }
  .footer_bottom{
    padding: 15px 0px;
    margin-top: 30px;
  }
  .top_btn{
    width: 55px;
  }
}
@media(max-width: 1199px){
  .footer_area{
    padding-top: 65px;
  }
  .top_btn{
    width: 50px;
  }
}
@media(max-width: 1099px){
  .footer_area{
    padding-top: 50px;
  }
  .social_icon{
    width: 22px;
  }
  .top_btn{
    width: 45px;
  }
}
@media(max-width: 991px){
  .footer_area{
    padding-top: 30px;
  }
  .footer_logo{
    width: 140px;
  }
  .social_icon{
    width: 20px;
  }
  .f_site_info{
    margin-top: 20px;
  }
  .f_site_top{
    margin-bottom: 5px;
  }
  .f_site_top .site_link{
    font-size: 14px;
  }
  .f_site_item{
    margin-bottom: 0px;
  }
  .f_site_item .site_link{
    font-size: 14px;
  }
  .info_title{
    font-size: 14px;
    margin-bottom: 5px;
  }
  .info_item{
    font-size: 14px;
  }
  .info_add{
    margin-top: 5px;
  }
  .footer_contact{
    font-size: 14px;
    padding: 10px;
  }
  .footer_contact::after{
    right: 12px;
    font-size: 16px;
  }
  .footer_bottom{
    padding: 10px 0px;
    margin-top: 20px;
  }
  .f_copy_text{
    font-size: 14px;
  }
  .top_block{
    top: 15px;
  }
  .top_btn{
    width: 40px;
  }
}
@media(max-width: 767px){
  .social_block{
    justify-content: flex-start;
    margin-top: 20px;
  }
  .social_item{
    margin: 0px 8px;
  }
  .social_item:nth-child(1){
    margin-left: 0px;
  }
  .f_sitemap{
    display: none;
  }
  .top_block{
    top: 12px;
    right: 12px;
  }
  .top_btn{
    width: 35px;
  }
}
@media(max-width: 575px){
  .social_item{
    margin: 0px 5px;
  }
}
@media(max-width: 390px){
  .social_block{
    justify-content: space-between;
  }
  .social_item{
    margin: 0px 2px;
  }
  .social_icon{
    width: 18px;
  }
}

/* inner_banner */
.inner_banner{
  padding: 0px 50px;
  margin-top: 90px;
}
.inner_banner_2{
  margin-top: 90px;
}
.banner_area{
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner_area::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.banner_area_2{
  padding: 100px 0px;
  overflow: hidden;
}
.inner_banner_top{
  width: 100%;
  max-width: 1520px;
  margin: auto;
  position: relative;
  z-index: 1;
  padding: 0px 24px;
}
.banner_area_2 .inner_banner_top{
  padding: 0px 12px;
}
.inner_b_title{
  font-size: 72px;
  color: #fff;
}
.banner_area_2 .inner_b_title{
  color: #282828;
}
.home_link{
  opacity: 0.5;
  background-image: url('../image/home_icon.svg');
  width: 18px;
  height: 18px;
  display: block;
}
.banner_area_2 .home_link{
  background-image: url('../image/home_icon_b.svg');
}
.sdf_bread{
  margin-bottom: 0px;
}
.sdf_bread .breadcrumb-item{
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  padding-left: 0px;
  font-size: 16px;
}
.sdf_bread .breadcrumb-item a{
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.banner_area_2 .sdf_bread .breadcrumb-item{
  color: rgba(0, 0, 0, 0.5);
}
.banner_area_2 .sdf_bread .breadcrumb-item a{
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.sdf_bread .breadcrumb-item.active{
  color: rgba(255, 255, 255, 1);
}
.banner_area_2 .sdf_bread .breadcrumb-item.active{
  color: rgba(0, 0, 0, 1);
}
.breadcrumb-item+.breadcrumb-item::before{
  content: "";
  background-image: url('../image/bread_arrow.svg');
  width: 4px;
  height: 12px;
  display: block;
  margin: 0px 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.banner_area_2 .breadcrumb-item+.breadcrumb-item::before{
  content: "";
  background-image: url('../image/bread_arrow_b.svg');
}
@media(max-width: 1699px){
  .inner_banner{
    padding: 0px 24px;
  }
  .banner_area{
    height: 380px;
  }
  .inner_b_title{
    font-size: 68px;
    margin-bottom: 0px;
  }
}
@media(max-width: 1499px){
  .inner_b_title{
    font-size: 58px;
  }
  .banner_area_2{
    padding: 80px 0px;
  }
}
@media(max-width: 1299px){
  .inner_banner{
    margin-top: 75px;
  }
  .inner_banner_2{
    margin-top: 75px;
  }
  .banner_area{
    height: 350px;
  }
  .inner_b_title{
    font-size: 48px;
  }
  .home_link{
    width: 15px;
    height: 15px;
  }
  .sdf_bread .breadcrumb-item{
    font-size: 14px;
  }
  .breadcrumb-item+.breadcrumb-item::before{
    margin: 0px 5px;
  }
  .banner_area_2{
    padding: 65px 0px;
  }
}
@media(max-width: 1199px){
  .banner_area{
    height: 300px;
  }
  .inner_b_title{
    font-size: 38px;
  }
  .home_link{
    width: 13px;
    height: 13px;
  }
  .banner_area_2{
    padding: 50px 0px;
  }
}
@media(max-width: 991px){
  .inner_banner{
    padding: 0px 0px;
    margin-top: 65px;
  }
  .inner_banner_2{
    margin-top: 65px;
  }
  .banner_area{
    height: 250px;
  }
  .inner_b_title{
    font-size: 32px;
  }
  .sdf_bread .breadcrumb-item{
    font-size: 12px;
  }
  .home_link{
    width: 12px;
    height: 12px;
  }
  .breadcrumb-item+.breadcrumb-item::before{
    width: 3px;
    height: 8px;
  }
  .banner_area_2{
    padding: 30px 0px;
  }
}
@media(max-width: 767px){
  .banner_area{
    height: 200px;
  }
  .inner_b_title{
    font-size: 28px;
  }
}
@media(max-width: 575px){
  .inner_banner{
    margin-top: 55px;
  }
  .inner_banner_2{
    margin-top: 55px;
  }
  .banner_area{
    height: 180px;
  }
  .inner_b_title{
    font-size: 24px;
  }
}
@media(max-width: 390px){
  .banner_area{
    height: 150px;
  }
}

/* product_brand */
.list_page{
  background-image: url('../image/bg_block_r.png');
  background-repeat: no-repeat;
  background-size: 101% 350px;
  background-position: left bottom;
}
.inner_block1{
  max-width: 1520px;
  margin: auto;
  padding: 150px 0px;
}
.inner_block2{
  max-width: 1520px;
  margin: auto;
  padding: 0px 0px 150px 0px;
}
.seo_title{
  font-size: 48px;
  color: #282828;
  font-weight: 600;
}
.seo_text{
  font-size: 18px;
  color: #282828;
}
.p_brand_list{
  margin-top: 50px;
}
.p_brand_item{
  display: block;
  background-color: #f5f5f5;
  padding: 40px;
  text-decoration: none;
  border-top: solid 3px transparent;
  transition: all ease-in-out 0.3s;
}
.p_brand_item:hover{
  border-top: solid 3px #e30022;
}
.p_brand_item .title{
  font-size: 30px;
  color: #282828;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 36px;
  height: 108px;
}
.more_btn{
  display: flex;
  align-items: center;
}
.p_brand_item .more_btn{
  margin: 30px 0px;
}
.more_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  margin-left: 10px;
  font-weight: 500;
}
.p_brand_item:hover .index_p_pic img{
  transform: scale(0.9,0.9);
}
@media(max-width: 1499px){
  .inner_block1{
    padding: 130px 0px;
  }
  .inner_block2{
    padding: 0px 0px 130px 0px;
  }
  .seo_title{
    font-size: 42px;
  }
  .p_brand_item{
    padding: 35px;
  }
  .p_brand_item .title{
    font-size: 28px;
    line-height: 34px;
    height: 102px;
  }
}
@media(max-width: 1299px){
  .list_page{
    background-size: 100% 300px;
  }
  .inner_block1{
    padding: 100px 0px;
  }
  .inner_block2{
    padding: 0px 0px 100px 0px;
  }
  .seo_title{
    font-size: 38px;
  }
  .seo_text{
    font-size: 16px;
  }
  .p_brand_list{
    margin-top: 30px;
  }
  .p_brand_item{
    padding: 24px;
  }
  .p_brand_item .title{
    font-size: 24px;
    line-height: 32px;
    height: 96px;
  }
  .p_brand_item .more_btn{
    margin: 20px 0px;
  }
  .more_text{
    font-size: 16px;
  }
}
@media(max-width: 1199px){
  .list_page{
    background-size: 100% 250px;
  }
  .inner_block1{
    padding: 80px 0px;
  }
  .inner_block2{
    padding: 0px 0px 80px 0px;
  }
  .seo_title{
    font-size: 28px;
    margin-bottom: 0px;
  }
  .p_brand_item .title{
    font-size: 20px;
    line-height: 28px;
    height: 84px;
  }
}
@media(max-width: 1099px){
  .list_page{
    background-size: 100% 200px;
  }
  .inner_block1{
    padding: 65px 0px;
  }
  .inner_block2{
    padding: 0px 0px 65px 0px;
  }
  .seo_title{
    font-size: 24px;
  }
}
@media(max-width: 991px){
  .list_page{
    background-size: 100% 150px;
  }
  .inner_block1{
    padding: 50px 0px;
  }
  .inner_block2{
    padding: 0px 0px 50px 0px;
  }
  .seo_title{
    font-size: 20px;
  }
  .seo_text{
    font-size: 14px;
  }
  .p_brand_list{
    margin-top: 15px;
  }
  .p_brand_item{
    padding: 20px;
  }
  .p_brand_item .title{
    font-size: 18px;
    line-height: 26px;
    height: 78px;
  }
  .p_brand_item .more_btn{
    margin: 15px 0px;
  }
  .more_text{
    font-size: 14px;
    margin-left: 5px;
  }
}
@media(max-width: 767px){
  .p_brand_item{
    padding: 16px;
  }
  .p_brand_item .title{
    font-size: 18px;
    line-height: 24px;
    -webkit-line-clamp: 4;
    height: 96px;
  }
}
@media(max-width: 575px){
  .p_brand_item .title{
    -webkit-line-clamp: 3;
    height: 66px;
  }
}

/* product_type */
.p_type_item{
  display: block;
  background-color: #f5f5f5;
  padding: 28px;
  text-decoration: none;
  border-top: solid 3px transparent;
  transition: all ease-in-out 0.3s;
}
.p_type_item a{
  text-decoration: none !important;
}
.p_type_inner{
  align-items: center;
  margin: auto;
}
.p_type_item:hover{
  border-top: solid 3px #e30022;
}
.p_type_item .brand{
  font-size: 12px;
  color: #282828;
  border: solid 1px #d9d9d9;
  padding: 2px 8px;
  border-radius: 15px;
  display: inline-block;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.p_type_item .brand:hover{
  background-color: #fabe00;
  border: solid 1px #fabe00;
  color: #fff;
}
.p_type_item .type{
  font-size: 18px;
  color: #e30022;
  margin: 5px 0px;
  font-weight: 500;
}
.p_type_item .title{
  font-size: 30px;
  color: #282828;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 36px;
  height: 72px;
  text-align: left !important;
}
.p_type_item .more_btn{
  margin-top: 20px;
  text-decoration: none;
}
.p_type_item:hover .index_p_pic img{
  transform: scale(0.9,0.9);
}

@media(max-width: 1499px){
  .p_type_item{
    padding: 24px;
  }
  .p_type_item .type{
    font-size: 16px;
  }
  .p_type_item .title{
    font-size: 28px;
    line-height: 34px;
    height: 68px;
  }
}
@media(max-width: 1299px){
  .p_type_item{
    padding: 12px;
  }
  .p_type_item .title{
    font-size: 24px;
    line-height: 32px;
    height: 66px;
  }
  .p_type_item .more_btn{
    margin-top: 15px;
  }
}
@media(max-width: 1199px){
  .p_type_item .type{
    font-size: 14px;
  }
  .p_type_item .title{
    font-size: 20px;
    line-height: 28px;
    height: 56px;
  }
}
@media(max-width: 991px){
  .p_type_item{
    padding: 8px;
  }
  .p_type_item .brand{
    padding: 1px 6px;
  }
  .p_type_item .type{
    font-size: 12px;
  }
  .p_type_item .title{
    font-size: 18px;
    line-height: 26px;
    height: 52px;
  }
}
@media(max-width: 767px){
  .p_type_item{
    padding: 20px 8px;
  }
  .p_type_item .more_btn{
    margin-top: 5px;
    margin-bottom: 10px;
  }
}
@media(max-width: 575px){
  .p_type_item{
    padding: 16px 4px;
  }
}

/* product_detail */
.pdet_top{
  max-width: 1720px;
  margin-right: auto;
  align-items: center;
}
.pdet_top_left{
  padding-left: 0px;
  position: relative;
}
.pdet_top_pic{
  background-image: url(../image/bg_block_r.png);
  background-size: 60% 101%;
  background-repeat: no-repeat;
  padding: 80px 0px 80px 150px;
}
.pdet_top_brand{
  position: absolute;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #fabe00;
  padding: 50px 15px;
}
.pdet_t_area{
  padding-left: 65px;
}
.pdet_top_tblock{
  border-bottom: solid 1px #d9d9d9;
  margin-bottom: 30px;
}
.pdet_t_area .brand{
  font-size: 12px;
  color: #282828;
  border: solid 1px #d9d9d9;
  padding: 2px 8px;
  border-radius: 15px;
  display: inline-block;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.pdet_t_area .brand:hover{
  background-color: #fabe00;
  border: solid 1px #fabe00;
  color: #fff;
}
.pdet_t_area .type{
  font-size: 24px;
  color: #e30022;
  margin: 5px 0px;
  font-weight: 500;
  display: block;
}
.pdet_t_area .title{
  font-size: 48px;
  color: #282828;
  font-weight: 600;
  display: block;
}
.pdet_t_area .text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  line-height: 1.35;
}
.inquiry_btn{
  margin-top: 30px;
}
.pdet_bottom{
  max-width: 1520px;
  margin: auto;
  padding: 150px 0px;
}
.sdf_tab .nav-link{
  background-color: #f5f5f5;
  color: #282828;
  border: solid 1px #d9d9d9 !important;
  font-size: 18px;
  padding: 15px 5px;
  position: relative;
  text-align: center;
}
.sdf_tab .nav-link::before{
  content: "";
  width: 100%;
  height: 2px;
  background-color: #e30022;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.sdf_tab .active.nav-link::before{
  opacity: 1;
}
.sdf_tab .nav-link.active{
  color: #e30022;
  border-bottom: none !important;
}
.sdf_tab_content{
  max-width: 1299px;
  margin: auto;
  padding: 100px 0px;
  font-size: 18px;
}
ul li::marker{
  color: #e30022;
}
.sdf_tab_content ul li{
  margin-bottom: 5px;
}
.det_bottom{
  border-top: solid 1px #d9d9d9;
  padding-top: 50px;
  text-align: center;
}
.sdf_spec_table table thead{
  background-color: #e30022;
}
.sdf_spec_table table thead th{
  color: #fff;
  font-weight: 300;
  text-align: center;
  border-bottom: solid 1px #d9d9d9;
  border-right: solid 1px #d9d9d9;
  vertical-align: middle;
}
.sdf_spec_table table thead th:nth-last-child(1){
  border-right: none;
}
.sdf_spec_table table tbody th{
  background-color: #f5f5f5;
  text-align: center;
  border-right: solid 1px #d9d9d9;
  vertical-align: middle;
  transition: all ease-in-out 0.3s;
  padding: 0px;
}
.sdf_spec_table table tbody th a{
  color: #36455f;
  font-weight: 400;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  display: block;
  padding: .5rem .5rem;
}
/* .sdf_spec_table table tbody th:hover{
  background-color: #e30022;
}
.sdf_spec_table table tbody th:hover a{
  color: #fff;
} */
.sdf_spec_table table tbody tr{
  transition: all ease-in-out 0.3s;
}
.sdf_spec_table table tbody tr:hover{
  background-color: #ececec;
}
.sdf_spec_table table tbody tr:hover th a{
  background-color: #ececec;
  text-decoration: underline;
}
.sdf_spec_table table tbody td{
  color: #282828;
  font-weight: 300;
  text-align: center;
  border-right: solid 1px #d9d9d9;
  vertical-align: middle;
}
.sdf_spec_table table tbody td:nth-last-child(1){
  border-right: none;
}
@media(max-width: 1499px){
  .pdet_top_brand{
    font-size: 30px;
    padding: 30px 12px;
  }
  .pdet_top_pic{
    padding: 65px 0px 65px 130px;
  }
  .pdet_t_area{
    padding-left: 30px;
  }
  .pdet_top_tblock{
    margin-bottom: 20px;
  }
  .pdet_t_area .type{
    font-size: 22px;
  }
  .pdet_t_area .title{
    font-size: 42px;
  }
  .inquiry_btn{
    margin-top: 20px;
  }
  .pdet_bottom{
    padding: 130px 0px;
  }
  .sdf_tab_content{
    padding: 80px 0px;
  }
}
@media(max-width: 1299px){
  .pdet_top_brand{
    font-size: 24px;
    padding: 20px 12px;
  }
  .pdet_top_pic{
    padding: 65px 0px 65px 100px;
  }
  .pdet_t_area{
    padding-left: 15px;
  }
  .pdet_top_tblock{
    margin-bottom: 15px;
  }
  .pdet_t_area .type{
    font-size: 20px;
  }
  .pdet_t_area .title{
    font-size: 36px;
  }
  .pdet_t_area .text{
    font-size: 16px;
  }
  .inquiry_btn{
    margin-top: 15px;
  }
  .pdet_bottom{
    padding: 100px 0px;
  }
  .sdf_tab .nav-link{
    font-size: 16px;
    padding: 12px 5px;
  }
  .sdf_tab_content{
    padding: 50px 0px;
    font-size: 16px;
  }
  .det_bottom{
    padding-top: 30px;
  }
}
@media(max-width: 1199px){
  .pdet_bottom{
    padding: 80px 0px;
  }
}
@media(max-width: 1099px){
  .pdet_top_brand{
    font-size: 20px;
    padding: 20px 12px;
  }
  .pdet_top_pic{
    padding: 50px 0px 50px 100px;
  }
  .pdet_t_area{
    padding-left: 0px;
  }
  .pdet_t_area .type{
    font-size: 18px;
    margin: 2px 0px;
  }
  .pdet_t_area .title{
    font-size: 28px;
  }
  .pdet_bottom{
    padding: 65px 0px;
  }
}
@media(max-width: 991px){
  .pdet_top_brand{
    font-size: 18px;
    padding: 15px 12px;
  }
  .pdet_top_pic{
    padding: 30px 0px 30px 65px;
  }
  .pdet_top_tblock{
    margin-bottom: 10px;
  }
  .pdet_t_area .brand{
    padding: 1px 6px;
  }
  .pdet_t_area .type{
    font-size: 16px;
  }
  .pdet_t_area .title{
    font-size: 24px;
  }
  .pdet_t_area .text{
    font-size: 14px;
  }
  .inquiry_btn{
    margin-top: 10px;
  }
  .pdet_bottom{
    padding: 50px 0px;
  }
  .sdf_tab .nav-link{
    font-size: 14px;
    padding: 10px 5px;
  }
  .sdf_tab_content{
    padding: 30px 0px;
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .pdet_top_pic{
    padding: 50px 0px 50px 65px;
  }
  .pdet_t_area{
    padding-left: 12px;
    margin-top: 30px;
  }
}
@media(max-width: 575px){
  .pdet_top_pic{
    padding: 30px 0px 30px 65px;
  }
  .pdet_t_area{
    padding-left: 12px;
    margin-top: 30px;
  }
  .pdet_t_area .type{
    font-size: 14px;
  }
  .pdet_t_area .title{
    font-size: 20px;
  }
}
@media(max-width: 390px){
  .pdet_top_pic{
    padding: 30px 0px 30px 50px;
  }
  .pdet_top_brand{
    font-size: 16px;
    padding: 12px 8px;
  }
  .pdet_t_area{
    margin-top: 20px;
  }
  .sdf_tab .nav-link{
    font-size: 12px;
    padding: 8px 3px;
  }
  .sdf_tab_content{
    padding: 15px 0px;
  }
}

/* product_inner */
.sdf_item_table table{
  margin-bottom: 50px;
  font-size: 18px;
}
.sdf_item_table table thead{
  background-color: #e30022;
}
.sdf_item_table table thead th{
  color: #fff;
  font-weight: 300;
  text-align: center;
  border-bottom: solid 1px #d9d9d9;
  border-right: solid 1px #d9d9d9;
  vertical-align: middle;
  width: 50%;
}
.sdf_item_table table thead th:nth-last-child(1){
  border-right: none;
}
.sdf_item_table table tbody tr:nth-child(even){
  background-color: #f5f5f5;
}
.sdf_item_table table tbody th{
  color: #282828;
  font-weight: 400;
  text-align: center;
  border-right: solid 1px #d9d9d9;
  vertical-align: middle;
  transition: all ease-in-out 0.3s;
  padding: 0px;
}
.sdf_item_table table tbody td{
  color: #282828;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
}

@media(max-width: 1299px){
  .sdf_item_table table{
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .sdf_item_table table{
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media(max-width: 390px){
  .sdf_item_table table{
    margin-bottom: 15px;
  }
}

/* solution */
.solution_item{
  position: relative;
  display: block;
}
.solution_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
  position: relative;
}
.solution_pic::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: all ease-in-out 0.3s;
}
.solution_pic img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transform: scale(1,1);
  transition: all ease-in-out 0.3s;
}
.solution_item:hover .solution_pic img{
  transform: scale(1.05,1.05);
}
.solution_item:hover .solution_pic::before{
  background-color: rgba(0, 0, 0, 0);
}
.sol_t_block{
  position: absolute;
  background-color: #fff;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 10px;
  text-align: center;
  z-index: 2;
}
.sol_t_block .title{
  font-size: 20px;
  color: #282828;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sol_t_block .more_btn{
  justify-content: center;
}
.sdf_page{
  justify-content: center;
  margin-top: 50px;
}
.page_number{
  display: flex;
  align-items: center;
  z-index: 18px;
  margin: 0px 20px;
}
.page_active{
  color: #fabe00;
}
.page_all{
  color: #fff;
}
.page_all::before{
  content: "/";
  margin: 0px 5px;
  color: #fff;
}
.page_prev::after{
  content: "";
  background-image: url('../image/page_prev.svg');
  width: 4px;
  height: 8px;
  display: block;
}
.page_next::after{
  content: "";
  background-image: url('../image/page_next.svg');
  width: 4px;
  height: 8px;
  display: block;
}
.page_arrow{
  width: 40px;
  height: 40px;
  border: solid 1px #d9d9d9;
  border-radius: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 1499px){
  .sol_t_block{
    padding: 15px 10px;
  }
}
@media(max-width: 1299px){
  .sol_t_block{
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 12px 8px;
  }
  .sol_t_block .title{
    font-size: 18px;
  }
  .sdf_page{
    justify-content: center;
    margin-top: 30px;
  }
}
@media(max-width: 1199px){
  .sol_t_block{
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
@media(max-width: 991px){
  .page_number{
    z-index: 16px;
    margin: 0px 15px;
  }
  .page_arrow{
    width: 30px;
    height: 30px;
  }
}

/* solution_detail */
.sdet_bottom{
  max-width: 1299px;
  margin: auto;
  padding: 150px 0px 100px 0px;
}
.sdet_inner{
  font-size: 18px;
}
.sdet_related{
  background-color: #f5f5f5;
  padding: 100px 0px 150px 0px;
}
.related_block{
  max-width: 1520px;
  margin: auto;
}
.related_block .title_lg{
  font-size: 48px;
  color: #282828;
  font-weight: 600;
  text-align: center;
}
.related_product{
  margin-top: 50px;
}
.related_product .p_type_item{
  background-color: #fff !important;
}
.related_p_item{
  padding: 0px 12px;
}
.det_btn_bottom{
  margin-top: 50px;
  text-align: center;
}
/* arrow */
.related_product .slick-prev{
  width: 82px;
  height: 82px;
  left: -100px;
  right: auto;
  z-index: 1;
  top: 50%;
  bottom: auto;
}
.related_product .slick-prev:before{
  content: '';
  background-image: url('../image/prev_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.related_product .slick-next{
  width: 82px;
  height: 82px;
  left: auto;
  right: -100px;
  z-index: 1;
  top: 50%;
  bottom: auto;
}
.related_product .slick-next:before{
  content: '';
  background-image: url('../image/next_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.related_product .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_btn_r.svg');
  background-size: cover;
}
.related_product .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_btn_r.svg');
  background-size: cover;
}
@media(max-width: 1899px){
  .related_product .slick-prev{
    width: 76px;
    height: 76px;
    left: -80px;
  }
  .related_product .slick-prev:before{
    width: 75px;
    height: 75px;

  }
  .related_product .slick-next{
    width: 76px;
    height: 76px;
    right: -80px;
  }
  .related_product .slick-next:before{
    width: 75px;
    height: 75px;
  }
}
@media(max-width: 1699px){
  .related_product{
    padding: 0px 50px;
  }
  .related_product .slick-prev{
    width: 66px;
    height: 66px;
    left: -15px;
  }
  .related_product .slick-prev:before{
    width: 65px;
    height: 65px;

  }
  .related_product .slick-next{
    width: 66px;
    height: 66px;
    right: -15px;
  }
  .related_product .slick-next:before{
    width: 65px;
    height: 65px;
  }
}
@media(max-width: 1499px){
  .sdet_bottom{
    padding: 130px 0px 100px 0px;
  }
  .sdet_related{
    padding: 100px 0px 130px 0px;
  }
  .related_block .title_lg{
    font-size: 42px;
  }
  .related_product .slick-prev{
    width: 62px;
    height: 62px;
    left: -10px;
  }
  .related_product .slick-prev:before{
    width: 60px;
    height: 60px;

  }
  .related_product .slick-next{
    width: 62px;
    height: 62px;
    right: -10px;
  }
  .related_product .slick-next:before{
    width: 60px;
    height: 60px;
  }
}
@media(max-width: 1299px){
  .sdet_bottom{
    padding: 100px 0px 80px 0px;
  }
  .sdet_inner{
    font-size: 16px;
  }
  .sdet_related{
    padding: 80px 0px 100px 0px;
  }
  .related_block .title_lg{
    font-size: 36px;
  }
  .related_product{
    margin-top: 30px;
  }
  .related_product .slick-prev{
    width: 56px;
    height: 56px;
  }
  .related_product .slick-prev:before{
    width: 55px;
    height: 55px;

  }
  .related_product .slick-next{
    width: 56px;
    height: 56px;
  }
  .related_product .slick-next:before{
    width: 55px;
    height: 55px;
  }
  .det_btn_bottom{
    margin-top: 30px;
  }
}
@media(max-width: 1199px){
  .sdet_bottom{
    padding: 80px 0px 65px 0px;
  }
  .sdet_related{
    padding: 65px 0px 80px 0px;
  }
  .related_product .slick-prev{
    width: 52px;
    height: 52px;
  }
  .related_product .slick-prev:before{
    width: 50px;
    height: 50px;

  }
  .related_product .slick-next{
    width: 52px;
    height: 52px;
  }
  .related_product .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1099px){
  .sdet_bottom{
    padding: 65px 0px 50px 0px;
  }
  .sdet_related{
    padding: 50px 0px 65px 0px;
  }
  .related_block .title_lg{
    font-size: 28px;
  }
  .related_product{
    padding: 0px 40px;
  }
  .related_product .slick-prev{
    width: 46px;
    height: 46px;
    left: -5px;
  }
  .related_product .slick-prev:before{
    width: 45px;
    height: 45px;

  }
  .related_product .slick-next{
    width: 46px;
    height: 46px;
    right: -5px;
  }
  .related_product .slick-next:before{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 991px){
  .sdet_bottom{
    padding: 50px 0px 30px 0px;
  }
  .sdet_related{
    padding: 30px 0px 50px 0px;
  }
  .sdet_inner{
    font-size: 14px;
  }
  .related_block .title_lg{
    font-size: 24px;
  }
  .related_product{
    margin-top: 15px;
    padding: 0px 30px;
  }
  .related_product .slick-prev{
    width: 42px;
    height: 42px;
    left: -5px;
  }
  .related_product .slick-prev:before{
    width: 40px;
    height: 40px;

  }
  .related_product .slick-next{
    width: 42px;
    height: 42px;
    right: -5px;
  }
  .related_product .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 767px){
  .related_product{
    padding: 0px 24px;
  }
  .related_product .slick-prev{
    width: 36px;
    height: 36px;
  }
  .related_product .slick-prev:before{
    width: 35px;
    height: 35px;

  }
  .related_product .slick-next{
    width: 36px;
    height: 36px;
  }
  .related_product .slick-next:before{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 575px){
  .related_block .title_lg{
    font-size: 20px;
  }
}

/* case */
/* tab_area */
.tab_area{
  margin-top: 30px;
}
.tab_dropdown_btn{
  display: none;
}
.tab_block{
  position: relative;
  border: none;
  padding: 0px;
  z-index: 2;
}
@media(max-width: 1299px){
  .tab_area{
    margin-top: 15px;
  }
}
@media(max-width: 767px){
  .tab_area{
    margin-top: 0px;
  }
  .tab_dropdown_btn{
    display: block;
    text-align: center;
    width: 100%;
    background-color: #e30022;
    border-radius: 0px;
    color: #fff;
    font-size: 14px;
    padding: 10px 0px;
  }
  .tab_dropdown_btn:hover{
    color: #fff;
  }
  .tab_dropdown_btn:focus{
    box-shadow: none;
  }
  .tab_block{
    display: none;
    width: 100%;
    margin-top: -2px !important;
    background-color: #fff;
    padding: 0px;
    border: none;
  }
}

/* case_detail */
.cdet_top_pic{
  background-image: url(../image/bg_block_y.png);
  background-size: 60% 101%;
  background-repeat: no-repeat;
  padding: 80px 0px 80px 150px;
}
.cdet_top_brand{
  position: absolute;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #36455f;
  padding: 50px 15px;
}
.cdet_inner{
  max-width: 1299px;
  margin: auto;
  font-size: 18px;
  padding-bottom: 50px;
}
.cdet_inner img{
  width: 100%;
}
/* arrow */
.case_pic_slick .slick-prev{
  width: 82px;
  height: 82px;
  left: auto;
  right: 120px;
  z-index: 1;
  top: auto;
  bottom: -150px;
}
.case_pic_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.case_pic_slick .slick-next{
  width: 82px;
  height: 82px;
  left: auto;
  right: 0px;
  z-index: 1;
  top: auto;
  bottom: -150px;
}
.case_pic_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.case_pic_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_btn_r.svg');
  background-size: cover;
}
.case_pic_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_btn_r.svg');
  background-size: cover;
}
@media(max-width: 1899px){
  .case_pic_slick .slick-prev{
    width: 76px;
    height: 76px;
    right: 110px;
    bottom: -130px;
  }
  .case_pic_slick .slick-prev:before{
    width: 75px;
    height: 75px;
  }
  .case_pic_slick .slick-next{
    width: 76px;
    height: 76px;
    bottom: -130px;
  }
  .case_pic_slick .slick-next:before{
    width: 75px;
    height: 75px;
  }
}
@media(max-width: 1699px){
  .case_pic_slick .slick-prev{
    width: 66px;
    height: 66px;
    right: 100px;
    bottom: -110px;
  }
  .case_pic_slick .slick-prev:before{
    width: 65px;
    height: 65px;
  }
  .case_pic_slick .slick-next{
    width: 66px;
    height: 66px;
    bottom: -110px;
  }
  .case_pic_slick .slick-next:before{
    width: 65px;
    height: 65px;
  }
}
@media(max-width: 1499px){
  .cdet_top_pic{
    padding: 65px 0px 65px 130px;
  }
  .cdet_top_brand{
    font-size: 30px;
    padding: 30px 12px;
  }
  .case_pic_slick .slick-prev{
    width: 62px;
    height: 62px;
    right: 90px;
    bottom: -100px;
  }
  .case_pic_slick .slick-prev:before{
    width: 60px;
    height: 60px;
  }
  .case_pic_slick .slick-next{
    width: 62px;
    height: 62px;
    bottom: -100px;
  }
  .case_pic_slick .slick-next:before{
    width: 60px;
    height: 60px;
  }
}
@media(max-width: 1299px){
  .cdet_top_pic{
    padding: 65px 0px 65px 100px;
  }
  .cdet_top_brand{
    font-size: 24px;
    padding: 20px 12px;
  }
  .cdet_inner{
    font-size: 16px;
    padding-bottom: 30px;
  }
  .case_pic_slick .slick-prev{
    width: 56px;
    height: 56px;
    right: 80px;
    bottom: -90px;
  }
  .case_pic_slick .slick-prev:before{
    width: 55px;
    height: 55px;
  }
  .case_pic_slick .slick-next{
    width: 56px;
    height: 56px;
    bottom: -90px;
  }
  .case_pic_slick .slick-next:before{
    width: 55px;
    height: 55px;
  }
}
@media(max-width: 1199px){
  .case_pic_slick .slick-prev{
    width: 52px;
    height: 52px;
    right: 80px;
    bottom: -90px;
  }
  .case_pic_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .case_pic_slick .slick-next{
    width: 52px;
    height: 52px;
    bottom: -90px;
  }
  .case_pic_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1099px){
  .cdet_top_pic{
    padding: 50px 0px 50px 100px;
  }
  .cdet_top_brand{
    font-size: 20px;
    padding: 20px 12px;
  }
  .case_pic_slick .slick-prev{
    width: 46px;
    height: 46px;
    right: 70px;
    bottom: -80px;
  }
  .case_pic_slick .slick-prev:before{
    width: 45px;
    height: 45px;
  }
  .case_pic_slick .slick-next{
    width: 46px;
    height: 46px;
    bottom: -80px;
  }
  .case_pic_slick .slick-next:before{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 991px){
  .cdet_top_pic{
    padding: 30px 0px 30px 65px;
  }
  .cdet_top_brand{
    font-size: 18px;
    padding: 15px 12px;
  }
  .cdet_inner{
    font-size: 14px;
  }
  .case_pic_slick .slick-prev{
    width: 42px;
    height: 42px;
    right: 60px;
    bottom: -70px;
  }
  .case_pic_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .case_pic_slick .slick-next{
    width: 42px;
    height: 42px;
    bottom: -70px;
  }
  .case_pic_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 767px){
  .cdet_top_pic{
    padding: 50px 0px 50px 65px;
  }
  .case_pic_slick .slick-prev{
    width: 36px;
    height: 36px;
    right: 50px;
    bottom: -60px;
  }
  .case_pic_slick .slick-prev:before{
    width: 35px;
    height: 35px;
  }
  .case_pic_slick .slick-next{
    width: 36px;
    height: 36px;
    bottom: -60px;
  }
  .case_pic_slick .slick-next:before{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 575px){
  .cdet_top_pic{
    padding: 30px 0px 30px 65px;
  }
}
@media(max-width: 390px){
  .cdet_top_pic{
    padding: 30px 0px 30px 50px;
  }
  .cdet_top_brand{
    font-size: 16px;
    padding: 12px 8px;
  }
}

/* media */
.media_list{
  margin-top: 50px;
}
.bt_page_area{
  background-color: #e30022;
  padding: 50px 0px 100px 0px;
}
@media(max-width: 1499px){
  .bt_page_area{
    padding: 30px 0px 80px 0px;
  }
}
@media(max-width: 1299px){
  .media_list{
    margin-top: 30px;
  }
  .bt_page_area{
    padding: 35px 0px 65px 0px;
  }
}
@media(max-width: 1199px){
  .bt_page_area{
    padding: 20px 0px 50px 0px;
  }
}
@media(max-width: 991px){
  .bt_page_area{
    padding: 0px 0px 30px 0px;
  }
}

/* media_detail */
.mdet_top{
  border-bottom: solid 1px #d9d9d9;
}
.m_dt_block{
  display: flex;
  align-items: flex-end;
  margin-bottom: 5px;
}
.m_dt_block .type{
  font-size: 24px;
  color: #e30022;
  margin-bottom: 0px;
  margin-right: 15px;
  font-weight: 500;
}
.m_dt_block .date{
  font-size: 18px;
  color: #aeaeae;
  margin-bottom: 0px;
  font-weight: 500;
}
.mdet_top .title{
  font-size: 36px;
  color: #282828;
  font-weight: 600;
  margin-bottom: 30px;
}
.mdet_inner{
  max-width: 991px;
  margin: auto;
  padding: 50px 0px;
  font-size: 18px;
}
.mdet_inner img{
  width: 100%;
}
@media(max-width: 1499px){
  .m_dt_block .type{
    font-size: 20px;
  }
  .mdet_top .title{
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media(max-width: 1299px){
  .m_dt_block .type{
    font-size: 18px;
    margin-right: 10px;
  }
  .m_dt_block .date{
    font-size: 16px;
  }
  .mdet_top .title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .mdet_inner{
    padding: 30px 0px;
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .m_dt_block{
    margin-bottom: 0px;
  }
  .m_dt_block .type{
    font-size: 16px;
  }
  .m_dt_block .date{
    font-size: 14px;
  }
  .mdet_top .title{
    font-size: 20px;
  }
  .mdet_inner{
    font-size: 14px;
  }
}
@media(max-width: 575px){
  .m_dt_block .type{
    font-size: 14px;
  }
  .mdet_top .title{
    font-size: 18px;
  }
}

/* about */
.about_block1{
  max-width: 1520px;
  margin: auto;
  padding: 150px 0px;
  overflow: hidden;
}
.company_title .title_sm{
  font-size: 24px;
  color: #e30022;
  margin-bottom: 0px;
  font-weight: 500;
}
.company_title .title_lg{
  font-size: 48px;
  color: #282828;
  font-weight: 600;
  letter-spacing: 1px;
}
.company_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.about_block2{
  background-image: url('../image/round_bg.svg');
  background-size: 150%;
  background-position: top center;
  margin-top: 150px;
}
.about_b2_area{
  max-width: 1520px;
  margin: auto;
  padding-bottom: 150px;
}
.value_item{
  width: 400px;
  height: 400px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin: auto;
}
.value_item .title{
  font-size: 24px;
}
.value_item .text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.value_item1{
  border: solid 3px #e30022;
}
.value_item1 .title{
  color: #e30022;
}
.value_item2{
  border: solid 3px #36455f;
  margin-top: -150px;
}
.value_item2 .title{
  color: #36455f;
}
.value_item3{
  border: solid 3px #fabe00;
}
.value_item3 .title{
  color: #fabe00;
  margin-top: 6px;
}
.value_inner{
  text-align: center;
}
.value_icon{
  width: 75px;
}
.about_b2_tblock{
  max-width: 1299px;
  margin: auto;
  text-align: center;
}
.about_b2_tblock .company_title{
  margin-bottom: 30px;
}
.about_block3{
  background-image: url('../image/about_esg_bg.png');
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
}
.about_block3::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
}
.about_b3_area{
  max-width: 1520px;
  padding: 180px 0px;
  min-height: 650px;
  margin: auto;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
}
.about_b3_area .company_title .title_sm{
  color: #fff;
}
.about_b3_area .company_title .title_lg{
  color: #fff;
}
.about_b3_area .company_text{
  color: #fff;
}
.about_b3_inner{
  overflow: hidden;
}
.about_b3_red_block{
  background-color: #e30022;
  color: #fff;
  padding: 100px 50px;
  font-size: 18px;
  font-weight: 300;
  position: absolute;
  bottom: 0px;
  margin-right: 12px;
  transform: translateY(50%) !important;
}
.about_block4{
  max-width: 1520px;
  margin: auto;
  padding: 200px 0px 150px 0px;
}
.about_block4 .company_title{
  text-align: center;
}
.about_team_item{
  align-items: center;
  margin-top: 50px;
}
.about_b4_team:nth-child(odd) .b4_team_tblock{
  padding-left: 30px;
}
.about_b4_team:nth-child(even) .b4_team_tblock{
  padding-right: 30px;
}
.about_b4_team:nth-child(even) .pic_area{
  order: 2;
}
.about_b4_team:nth-child(even) .text_area{
  order: 1;
}
.b4_team_tblock .title_md{
  font-size: 24px;
  color: #e30022;
}
.about_block5{
  max-width: 1099px;
  margin: auto;
  padding-bottom: 150px;
  text-align: center;
}
.about_block5 .company_title{
  margin-bottom: 30px;
}
.about_b5_btn{
  margin-top: 30px;
}
.a_bt_item{
  padding: 0px;
}
.about_bt_link{
  height: 350px;
  width: 100%;
  display: block;
  position: relative;
  text-decoration: none;
}
.a_bt_link1::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(227, 0, 34, 0.6);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all ease-in-out 0.3s;
}
.a_bt_link2::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(54, 69, 95, 0.6);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all ease-in-out 0.3s;
}
.a_bt_link3::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(250, 190, 0, 0.6);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all ease-in-out 0.3s;
}
.about_bt_link:hover.a_bt_link1::before{
  background-color: rgba(227, 0, 34, 0.3);
}
.about_bt_link:hover.a_bt_link2::before{
  background-color: rgba(54, 69, 95, 0.3);
}
.about_bt_link:hover.a_bt_link3::before{
  background-color: rgba(250, 190, 0, 0.3);
}
.a_bt_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0px 100px;
  position: relative;
  z-index: 1;
}
.about_bt_link .title_lg{
  color: #fff;
  margin-bottom: 0px;
  font-weight: 500 !important;
}
.a_bt_arrow{
  width: 80px;
  flex-shrink: 0;
}
@media(max-width: 1899px){
  .a_bt_arrow{
    width: 75px;
  }
}
@media(max-width: 1899px){
  .a_bt_arrow{
    width: 75px;
  }
}
@media(max-width: 1699px){
  .about_bt_link{
    height: 300px;
  }
  .a_bt_inner{
    padding: 0px 50px;
  }
  .a_bt_arrow{
    width: 65px;
  }
}
@media(max-width: 1499px){
  .about_block1{
    padding: 130px 0px;
  }
  .company_title .title_sm{
    font-size: 22px;
  }
  .company_title .title_lg{
    font-size: 42px;
  }
  .about_block2{
    background-size: 130%;
    margin-top: 130px;
  }
  .about_b2_area{
    padding-bottom: 130px;
  }
  .value_item{
    width: 350px;
    height: 350px;
  }
  .value_item2{
    margin-top: -130px;
  }
  .about_b3_area{
    padding: 150px 0px;
    min-height: 550px;
  }
  .about_b3_red_block{
    padding: 50px 50px;
  }
  .about_block4{
    padding: 180px 0px 130px 0px;
  }
  .about_block5{
    padding-bottom: 130px;
  }
  .about_bt_link{
    height: 250px;
  }
  .a_bt_inner{
    padding: 0px 24px;
  }
  .a_bt_arrow{
    width: 60px;
  }
}
@media(max-width: 1299px){
  .about_block1{
    padding: 100px 0px;
  }
  .company_title .title_sm{
    font-size: 20px;
  }
  .company_title .title_lg{
    font-size: 38px;
  }
  .company_text{
    font-size: 16px;
  }
  .about_block2{
    margin-top: 100px;
  }
  .about_b2_area{
    padding-bottom: 100px;
  }
  .value_item{
    width: 300px;
    height: 300px;
    padding: 24px;
  }
  .value_item2{
    margin-top: -100px;
  }
  .value_icon{
    width: 65px;
  }
  .value_item .title{
    font-size: 20px;
  }
  .value_item .text{
    font-size: 16px;
    line-height: 1.25;
  }
  .about_b3_area{
    padding: 130px 0px;
    min-height: 500px;
  }
  .about_b3_red_block{
    padding: 50px 30px;
    font-size: 16px;
  }
  .about_block4{
    padding: 150px 0px 100px 0px;
  }
  .about_team_item{
    margin-top: 30px;
  }
  .about_b4_team:nth-child(odd) .b4_team_tblock{
    padding-left: 0px;
  }
  .about_b4_team:nth-child(even) .b4_team_tblock{
    padding-right: 0px;
  }
  .b4_team_tblock .title_md{
    font-size: 20px;
  }
  .about_block5{
    padding-bottom: 100px;
  }
  .about_bt_link{
    height: 200px;
  }
  .a_bt_arrow{
    width: 55px;
  }
}
@media(max-width: 1199px){
  .about_block1{
    padding: 80px 0px;
  }
  .company_title .title_lg{
    font-size: 32px;
  }
  .about_block2{
    margin-top: 80px;
  }
  .about_b2_area{
    padding-bottom: 80px;
  }
  .value_item{
    width: 260px;
    height: 260px;
    padding: 15px;
  }
  .value_item2{
    margin-top: -80px;
  }
  .value_icon{
    width: 50px;
  }
  .value_item .title{
    font-size: 18px;
  }
  .about_b3_area{
    padding: 100px 0px;
    min-height: 450px;
  }
  .about_b3_red_block{
    padding: 30px 24px;
  }
  .about_block4{
    padding: 130px 0px 80px 0px;
  }
  .b4_team_tblock .title_md{
    font-size: 18px;
  }
  .about_block5{
    padding-bottom: 80px;
  }
  .a_bt_arrow{
    width: 50px;
  }
}
@media(max-width: 1099px){
  .about_block1{
    padding: 65px 0px;
  }
  .company_title .title_sm{
    font-size: 18px;
  }
  .company_title .title_lg{
    font-size: 28px;
  }
  .about_block2{
    margin-top: 65px;
  }
  .about_b2_area{
    padding-bottom: 65px;
  }
  .value_item2{
    margin-top: -65px;
  }
  .about_block4{
    padding: 100px 0px 65px 0px;
  }
  .about_block5{
    padding-bottom: 65px;
  }
  .a_bt_arrow{
    width: 45px;
  }
}
@media(max-width: 991px){
  .about_block1{
    padding: 50px 0px;
  }
  .company_title .title_sm{
    font-size: 16px;
  }
  .company_title .title_lg{
    font-size: 20px;
  }
  .company_text{
    font-size: 14px;
  }
  .about_block2{
    margin-top: 50px;
  }
  .about_b2_area{
    padding-bottom: 50px;
  }
  .value_item{
    width: 220px;
    height: 220px;
    padding: 12px;
  }
  .value_item2{
    margin-top: -50px;
  }
  .value_icon{
    width: 45px;
  }
  .value_item .title{
    font-size: 16px;
  }
  .value_item .text{
    font-size: 14px;
  }
  .about_b2_tblock .company_title{
    margin-bottom: 15px;
  }
  .about_b3_area{
    padding: 50px 0px;
    min-height: 350px;
  }
  .about_b3_red_block{
    padding: 24px;
    font-size: 14px;
  }
  .about_block4{
    padding: 80px 0px 50px 0px;
  }
  .about_team_item{
    margin-top: 15px;
  }
  .b4_team_tblock .title_md{
    font-size: 16px;
  }
  .about_block5{
    padding-bottom: 50px;
  }
  .about_block5 .company_title{
    margin-bottom: 15px;
  }
  .about_b5_btn{
    margin-top: 15px;
  }
  .about_bt_link{
    height: 180px;
  }
  .a_bt_arrow{
    width: 40px;
  }
}
@media(max-width: 767px){
  .value_item{
    width: 175px;
    height: 175px;
  }
  .value_icon{
    width: 35px;
  }
  .value_item .title{
    font-size: 14px;
    margin-bottom: 5px;
  }
  .value_item .text{
    font-size: 12px;
  }
  .about_b3_area{
    padding: 50px 0px;
    min-height: 250px;
  }
  .about_b3_red_block{
    padding: 12px 24px;
  }
  .about_team_item{
    margin-bottom: 15px;
  }
  .about_b4_team:nth-child(even) .pic_area{
    order: 1;
  }
  .about_b4_team:nth-child(even) .text_area{
    order: 2;
  }
  .b4_team_tblock{
    margin-top: 15px;
  }
  .a_bt_arrow{
    width: 35px;
  }
  .about_bt_link{
    height: 200px;
  }
}
@media(max-width: 575px){
  .about_block2{
    mask-type: 0PX;
    background-image: url("");
    background-color: #f5f5f5;
  }
  .about_b2_area{
    padding-top: 50px;
  }
  .value_item{
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .value_item1{
    border: solid 2px #e30022;
  }
  .value_item3{
    border: solid 2px #fabe00;
  }
  .value_item2{
    margin-top: 0px;
    border: solid 2px #36455f;
  }
  .about_block3::after{
    background-color: rgba(0, 0, 0, 0.4);
  }
  .about_b3_area{
    padding: 65px 0px;
    min-height: 280px;
  }
  .about_bt_link{
    height: 160px;
  }
}
@media(max-width: 390px){
  .about_bt_link{
    height: 150px;
  }
}

/* group overview */
.group_block1{
  max-width: 1299px;
  margin: auto;
  padding: 150px 0px;
  text-align: center;
}
.group_block2{
  background-image: url('../image/bg_block.png');
  background-repeat: no-repeat;
  background-size: 100% 75%;
  background-position: center;
}
.group_b2_pic{
  max-width: 1520px;
  margin: auto;
}
.group_b2_pic .group_pic{
  padding: 0px 12px;
}
.group_b2_location{
  max-width: 1720px;
  margin-left: auto;
  padding: 150px 0px 50px 0px;
  overflow: hidden;
}
.g_b2_tblock{
  padding-right: 65px;
}
.group_b2_taiwan{
  padding-right: 0px;
}
.group_block3{
  max-width: 1520px;
  margin: auto;
  padding: 150px 0px;
  text-align: center;
}
.group_b3_area1{
  max-width: 1299px;
  margin: auto;
  text-align: center;
}
.group_b3_area2{
  align-items: center;
  text-align: left;
  margin-top: 50px;
}
.group_b3_area2 .title_md{
  font-size: 24px;
  color: #e30022;
  font-weight: 500;
  margin-bottom: 5px;
}
.group_b3_future{
  min-height: 400px;
  padding: 150px 24px;
  margin-top: 50px;
  position: relative;
  display: flex;
  align-items: center;
}
.group_b3_future::after{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.future_block{
  max-width: 890px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.future_block .title_md{
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 5px;
}
.future_block .company_text{
  color: #fff;
}
@media(max-width: 1499px){
  .group_block1{
    padding: 130px 0px;
  }
  .group_b2_location{
    padding: 130px 0px 50px 0px;
  }
  .g_b2_tblock{
    padding-right: 50px;
  }
  .group_block3{
    padding: 130px 0px;
  }
  .group_b3_area2 .title_md{
    font-size: 22px;
  }
  .group_b3_future{
    min-height: 350px;
    padding: 130px 24px;
  }
  .future_block .title_md{
    font-size: 22px;
  }
}
@media(max-width: 1299px){
  .group_block1{
    padding: 100px 0px;
  }
  .group_block2{
    background-size: 100% 80%;
  }
  .group_b2_location{
    padding: 100px 0px 30px 0px;
  }
  .g_b2_tblock{
    padding-right: 30px;
  }
  .group_block3{
    padding: 100px 0px;
  }
  .group_b3_area2 .title_md{
    font-size: 20px;
  }
  .group_b3_future{
    min-height: 330px;
    padding: 100px 24px;
  }
  .future_block .title_md{
    font-size: 20px;
  }
}
@media(max-width: 1199px){
  .group_block1{
    padding: 80px 0px;
  }
  .group_b2_location{
    padding: 80px 0px 30px 0px;
  }
  .g_b2_tblock{
    padding-right: 0px;
  }
  .group_block3{
    padding: 80px 0px;
  }
  .group_b3_future{
    padding: 80px 24px;
  }
}
@media(max-width: 1099px){
  .group_block1{
    padding: 65px 0px;
  }
  .group_block2{
    background-size: 100% 90%;
  }
  .group_b2_location{
    padding: 65px 0px 30px 0px;
  }
  .group_block3{
    padding: 65px 0px;
  }
  .group_b3_area2 .title_md{
    font-size: 18px;
  }
  .group_b3_future{
    min-height: 300px;
    padding: 65px 24px;
  }
  .future_block .title_md{
    font-size: 18px;
  }
}
@media(max-width: 991px){
  .group_block1{
    padding: 50px 0px;
  }
  .group_block2{
    background-size: 100% 100%;
    padding: 50px 0px;
  }
  .group_b2_location{
    padding: 50px 0px 0px 0px;
  }
  .g_b2_tblock .company_text{
    line-height: 1.35;
  }
  .group_block3{
    padding: 50px 0px;
  }
  .group_b3_area2{
    margin-top: 30px;
  }
  .group_b3_area2 .title_md{
    font-size: 16px;
  }
  .group_b3_future{
    min-height: 280px;
    padding: 50px 24px;
    margin-top: 30px;
  }
  .future_block .title_md{
    font-size: 16px;
  }
}
@media(max-width: 767px){
  .group_b2_location{
    margin: auto;
  }
  .group_b2_location{
    padding: 30px 0px 0px 0px;
  }
  .group_b2_taiwan{
    margin-top: 15px;
    text-align: center;
    padding-right: calc(var(--bs-gutter-x) * .5);
  }
  .group_b3_area1{
    text-align: left;
  }
  .group_b3_area2{
    margin-top: 15px;
  }
  .group_b3_global{
    margin-top: 15px;
  }
  .group_b3_future{
    min-height: 250px;
  }
}
@media(max-width: 575px){
  .group_b3_future{
    min-height: 230px;
    padding: 50px 12px;
  }
}

/* history */
.history_block{
  max-width: 1720px;
  margin-left: auto;
  padding: 150px 0px;
  overflow: hidden;
  position: relative;
}
.history_item_area{
  padding: 0px;
}
.timeline_slick{
  position: static !important;
}
.timeline_slick .slick-list{
  padding-right: 150px;
}
.timeline_slick .slick-track{
  display: flex !important;
}
.timeline_slick .slick-slide{
  height: auto !important;
  position: relative;
}
.history_year{
  padding: 0px 24px;
}
.history_year::after{
  content: "";
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.history_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 73%;
  position: relative;
}
.history_pic img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.timeline_year{
  font-size: 36px;
  color: #e30022;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 15px;
  line-height: 1;
}
.timeline_year::before{
  content: "";
  width: 9px;
  height: 12px;
  background-image: url('../image/triangle_arrow.svg');
  background-size: cover;
  display: block;
  position: absolute;
  left: 0px;
  margin-top: 10px;
}
.timeline_slick .slick-current .timeline_year::before{
  display: none !important;
}
.timeline_text{
  font-size: 16px;
  color: #282828;
  margin-bottom: 0px;
  line-height: 1.3;
}
/* arrow */
.timeline_slick .slick-prev{
  width: 82px;
  height: 82px;
  left: 12px;
  right: auto;
  z-index: 1;
  top: 50%;
  bottom: auto;
}
.timeline_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.timeline_slick .slick-next{
  width: 82px;
  height: 82px;
  left: 120px;
  right: auto;
  z-index: 1;
  top: 50%;
  bottom: auto;
}
.timeline_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_btn.svg');
  display: block;
  width: 80px;
  height: 80px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.timeline_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_btn_r.svg');
  background-size: cover;
}
.timeline_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_btn_r.svg');
  background-size: cover;
}
@media(max-width: 1899px){
  .timeline_slick .slick-prev{
    width: 76px;
    height: 76px;
  }
  .timeline_slick .slick-prev:before{
    width: 75px;
    height: 75px;
  }
  .timeline_slick .slick-next{
    width: 76px;
    height: 76px;
    left: 110px;
  }
  .timeline_slick .slick-next:before{
    width: 75px;
    height: 75px;
  }
}
@media(max-width: 1699px){
  .timeline_slick .slick-prev{
    width: 66px;
    height: 66px;
  }
  .timeline_slick .slick-prev:before{
    width: 65px;
    height: 65px;
  }
  .timeline_slick .slick-next{
    width: 66px;
    height: 66px;
    left: 100px;
  }
  .timeline_slick .slick-next:before{
    width: 65px;
    height: 65px;
  }
}
@media(max-width: 1499px){
  .history_block{
    padding: 130px 0px;
  }
  .timeline_slick .slick-list{
    padding-right: 100px;
  }
  .timeline_year{
    font-size: 32px;
  }
  .timeline_slick .slick-prev{
    width: 62px;
    height: 62px;
  }
  .timeline_slick .slick-prev:before{
    width: 60px;
    height: 60px;
  }
  .timeline_slick .slick-next{
    width: 62px;
    height: 62px;
    left: 90px;
  }
  .timeline_slick .slick-next:before{
    width: 60px;
    height: 60px;
  }
}
@media(max-width: 1299px){
  .history_block{
    padding: 100px 0px;
  }
  .timeline_slick .slick-list{
    padding-right: 150px;
  }
  .timeline_year{
    font-size: 28px;
  }
  .timeline_slick .slick-prev{
    width: 56px;
    height: 56px;
  }
  .timeline_slick .slick-prev:before{
    width: 55px;
    height: 55px;
  }
  .timeline_slick .slick-next{
    width: 56px;
    height: 56px;
    left: 80px;
  }
  .timeline_slick .slick-next:before{
    width: 55px;
    height: 55px;
  }
}
@media(max-width: 1199px){
  .history_block{
    padding: 80px 0px;
  }
  .timeline_slick .slick-list{
    padding-right: 130px;
  }
  .timeline_year{
    font-size: 24px;
  }
  .timeline_slick .slick-prev{
    width: 52px;
    height: 52px;
  }
  .timeline_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .timeline_slick .slick-next{
    width: 52px;
    height: 52px;
    left: 80px;
  }
  .timeline_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
  .timeline_year::before{
    width: 8px;
    height: 10px;
    margin-top: 5px;
  }
}
@media(max-width: 1099px){
  .history_block{
    padding: 65px 0px;
  }
  .timeline_slick .slick-list{
    padding-right: 100px;
  }
  .timeline_year{
    font-size: 20px;
  }
  .timeline_slick .slick-prev{
    width: 46px;
    height: 46px;
  }
  .timeline_slick .slick-prev:before{
    width: 45px;
    height: 45px;
  }
  .timeline_slick .slick-next{
    width: 46px;
    height: 46px;
    left: 70px;
  }
  .timeline_slick .slick-next:before{
    width: 45px;
    height: 45px;
  }
}
@media(max-width: 991px){
  .history_block{
    padding: 50px 0px;
  }
  .timeline_slick .slick-list{
    padding-right: 80px;
  }
  .history_year{
    padding: 0px 20px;
  }
  .timeline_year{
    font-size: 18px;
  }
  .timeline_text{
    font-size: 14px;
  }
  .timeline_slick .slick-prev{
    width: 42px;
    height: 42px;
  }
  .timeline_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .timeline_slick .slick-next{
    width: 42px;
    height: 42px;
    left: 70px;
  }
  .timeline_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
  .timeline_year::before{
    width: 7px;
    height: 9px;
    margin-top: 3px;
  }
}
@media(max-width: 767px){
  .timeline_slick{
    margin-top: 15px;
  }
  .timeline_slick .slick-list{
    padding-right: 50px;
  }
  .history_year{
    padding: 0px 15px;
  }
  .timeline_slick .slick-prev{
    width: 36px;
    height: 36px;
    top: 75px;
    left: auto;
    right: 65px;
  }
  .timeline_slick .slick-prev:before{
    width: 35px;
    height: 35px;
  }
  .timeline_slick .slick-next{
    width: 36px;
    height: 36px;
    left: auto;
    right: 12px;
    top: 75px;
  }
  .timeline_slick .slick-next:before{
    width: 35px;
    height: 35px;
  }
}

/* why_us */
.why_block1{
  max-width: 1520px;
  margin: auto;
  padding: 150px 0px;
}
.why_block1 .why_b1_tblock{
  text-align: center;
}
.why_block2{
  background-color: #f5f5f5;
  position: relative;
}
.why_b2_area{
  max-width: 1520px;
  margin: auto;
  padding: 150px 0px;
  align-items: center;
}
.why_b2_area .company_title{
  text-align: center;
  margin-bottom: 50px;
}
.why_sdf_pic img{
  position: relative;
  z-index: 1;
}
.why_sdf_text{
  position: relative;
  z-index: 1;
}
.whyus_sdf_item{
  border-bottom: solid 1px #d9d9d9;
  padding: 50px 0px;
}
.whyus_sdf_item:nth-child(1){
  padding-top: 0PX;
}
.w_title_lg{
  font-size: 36px;
  color: #282828;
}
.whyus_s .w_title_lg span{
  color: #e30022;
}
.whyus_d .w_title_lg span{
  color: #36455f;
}
.whyus_f .w_title_lg span{
  color: #fabe00;
}
.w_title_md{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.whyus_s .w_title_md{
  color: #e30022;
}
.whyus_d .w_title_md{
  color: #36455f;
}
.whyus_f .w_title_md{
  color: #fabe00;
}
.why_sdf_bg{
  font-size: 230px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: 50px;
  bottom: 0px;
  margin-bottom: -50px;
}
@media(max-width: 1699px){
  .why_sdf_bg{
    font-size: 200px;
    left: 30px;
    margin-bottom: -30px;
  }
}
@media(max-width: 1499px){
  .why_block1{
    padding: 130px 0px;
  }
  .why_b2_area{
    padding: 130px 0px;
  }
  .whyus_sdf_item{
    padding: 30px 0px;
  }
  .w_title_lg{
    font-size: 32px;
  }
  .w_title_md{
    font-size: 20px;
  }
  .why_sdf_bg{
    font-size: 180px;
    left: 24px;
    margin-bottom: -30px;
  }
}
@media(max-width: 1399px){
  .why_sdf_bg{
    font-size: 150px;
  }
}
@media(max-width: 1299px){
  .why_block1{
    padding: 100px 0px;
  }
  .why_b2_area{
    padding: 100px 0px;
  }
  .whyus_sdf_item{
    padding: 15px 0px;
  }
  .w_title_lg{
    font-size: 28px;
  }
  .w_title_md{
    font-size: 18px;
  }
  .why_sdf_bg{
    font-size: 130px;
  }
}
@media(max-width: 1199px){
  .why_block1{
    padding: 80px 0px;
  }
  .why_b2_area{
    padding: 80px 0px;
  }
}
@media(max-width: 1099px){
  .why_block1{
    padding: 65px 0px;
  }
  .why_b2_area{
    padding: 65px 0px;
  }
  .whyus_sdf_item{
    padding: 12px 0px;
  }
  .w_title_lg{
    font-size: 24px;
    margin-bottom: 3px;
  }
  .why_sdf_bg{
    font-size: 115px;
  }
}
@media(max-width: 991px){
  .why_block1{
    padding: 50px 0px;
  }
  .why_b2_area{
    padding: 50px 0px;
  }
  .why_b2_area .company_title{
    margin-bottom: 30px;
  }
  .whyus_sdf_item{
    padding: 10px 0px;
  }
  .w_title_lg{
    font-size: 20px;
  }
  .w_title_md{
    font-size: 16px;
    margin-bottom: 3px;
  }
  .whyus_sdf_item .company_text{
    line-height: 1.25;
  }
  .why_sdf_bg{
    font-size: 100px;
    margin-bottom: -20px;
  }
}
@media(max-width: 767px){
  .why_sdf_pic{
    order: 2;
    margin-top: 15px;
  }
  .why_sdf_text{
    order: 1;
  }
  .w_title_lg{
    font-size: 18px;
  }
  .why_sdf_bg{
    font-size: 100px;
    margin-bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
  }
}
@media(max-width: 575px){
  .why_sdf_bg{
    font-size: 80px;
  }
}
@media(max-width: 390px){
  .why_sdf_bg{
    font-size: 65px;
    margin-bottom: -10px;
  }
}

/* contact */
.contact_block{
  max-width: 1720px;
  margin-right: auto;
}
.contact_left{
  padding-left: 0px;
}
.c_info_block{
  background-color: #e30022;
  padding: 100px 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.c_info_block .company_title{
  margin-bottom: 30px;
}
.c_info_block .company_title .title_sm{
  color: #fabe00;
}
.c_info_block .company_title .title_lg{
  color: #fff;
}
.info_title_md{
  font-size: 24px;
  color: #fff;
}
.info_item{
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.info_icon{
  width: 23px;
}
.info_tblock{
  margin-left: 10px;
}
.info_item_title{
  font-size: 18px;
  color: #fabe00;
  margin-bottom: 5px;
}
.info_item_text{
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
}
.info_item_text a{
  color: #fff;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.info_item_text a:hover{
  color: #fff;
}
.c_right_form{
  padding-left: 80px;
  padding-bottom: 100px;
}
.contact_form{
  align-items: flex-end;
}
.required_text{
  font-size: 18px;
  color: #282828;
}
.required_text span{
  color: #e30022;
}
.sdf_label{
  font-size: 18px;
}
.sdf_label span{
  color: #e30022;
}
.sdf_input{
  height: 55px;
}
.sdf_input:focus{
  border-color: #e30022;
  box-shadow: none;
}
.code_block{
  position: relative;
}
.reset_block{
  display: flex;
  align-items: center;
  padding-left: 5px;
  position: absolute;
  right: 20px;
  top: 40px;
}
.form_code{
  max-width: 75px;
}
.reset_btn{
  border: none;
  background-color: transparent;
}
.reset_icon{
  width: 18px;
}
.code_block .invalid-feedback{
  position: absolute;
  bottom: -22px;
}
.form-control.is-invalid, .was-validated .form-control:invalid{
  background-image: url('');
}
.contact_submit{
  text-align: end;
}
.contact_submit .click_btn::after{
  content: ">";
}
@media(max-width: 1699px){
  .c_info_block{
    padding: 100px 150px;
  }
  .c_right_form{
    padding-left: 50px;
  }
}
@media(max-width: 1499px){
  .c_info_block{
    padding: 50px 100px;
  }
  .c_right_form{
    padding-left: 30px;
    padding-bottom: 80px;
  }
  .info_icon{
    width: 20px;
    margin-top: 5px;
  }
  .info_tblock{
    margin-left: 8px;
  }
}
@media(max-width: 1299px){
  .c_info_block{
    padding: 50px 24px;
  }
  .c_info_block .company_title{
    margin-bottom: 20px;
  }
  .c_right_form{
    padding-left: 0px;
    padding-bottom: 65px;
  }
  .required_text{
    font-size: 16px;
  }
  .sdf_label{
    font-size: 16px;
  }
  .info_tblock{
    margin-left: 5px;
  }
}
@media(max-width: 1199px){
  .contact_submit{
    text-align: center;
    margin-top: 30px;
  }
}
@media(max-width: 991px){
  .info_title_md{
    font-size: 18px;
  }
  .info_item_title{
    font-size: 16px;
  }
  .info_item_text{
    font-size: 14px;
  }
  .info_icon{
    width: 16px;
    margin-top: 3px;
  }
  .c_right_form{
    padding-bottom: 50px;
  }
  .required_text{
    font-size: 14px;
  }
  .sdf_label{
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .contact_block{
    margin: auto;
  }
  .contact_left{
    order: 2;
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-bottom: 50px;
  }
  .c_info_block .company_title{
    margin-bottom: 15px;
  }
  .c_info_block{
    padding: 30px 24px;
  }
  .info_title_md{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .info_item{
    margin-bottom: 15px;
  }
  .contact_right{
    order: 1;
  }
  .c_right_form{
    padding-bottom: 30px;
  }
}

/* inquiry */
.i_product_block{
  background-color: #e30022;
  padding: 100px 80px 100px 200px;
  height: 100%;
}
.inquiry_left{
  padding-left: 0px;
}
.inquiry_item{
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding: 30px 30px 30px 0px;
}
.inquiry_item:nth-child(1){
  border-top: solid 1px #fff;
}
.inquiry_pic_block{
  width: 100px;
}
.i_item_tblock{
  margin-left: 15px;
}
.inquiry_item_type{
  font-size: 14px;
  color: #fabe00;
  margin-bottom: 0px;
}
.inquiry_item_title{
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.delete_btn{
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: solid 1px rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  cursor: pointer;
  right: 0px;
}
.delete_icon{
  width: 10px;
  height: 10px;
}
@media(max-width: 1699px){
  .i_product_block{
    padding: 100px 100px 100px 150px;
  }
}
@media(max-width: 1499px){
  .i_product_block{
    padding: 50px 100px;
  }
}
@media(max-width: 1299px){
  .i_product_block{
    padding: 50px 24px;
  }
  .inquiry_item{
    padding: 20px 25px 20px 0px;
  }
  .inquiry_pic_block{
    width: 80px;
  }
  .i_item_tblock{
    margin-left: 10px;
  }
  .inquiry_item_type{
    font-size: 12px;
  }
  .inquiry_item_title{
    font-size: 16px;
  }
  .delete_btn{
    width: 25px;
    height: 25px;
  }
  .delete_icon{
    width: 8px;
    height: 8px;
  }
}
@media(max-width: 991px){
  .inquiry_item{
    padding: 15px 25px 15px 0px;
  }
  .inquiry_item_title{
    font-size: 14px;
  }
  .delete_btn{
    width: 23px;
    height: 23px;
  }
  .delete_icon{
    width: 5px;
    height: 5px;
  }
}
@media(max-width: 767px){
  .i_product_block{
    padding: 30px 24px;
  }
  .inquiry_left{
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-bottom: 30px;
  }
  .inquiry_right{
    padding-bottom: 20px;
  }
}
@media(max-width: 390px){
  .inquiry_pic_block{
    width: 65px;
  }
}

/* privacy */
.privacy_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.privacy_cname{
  color: #e30022;
}
@media(max-width: 1299px){
  .privacy_text{
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .privacy_text{
    font-size: 14px;
  }
}

/* privacy_popup */
.privacyBox{
  position: fixed;
  bottom: 0%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 1.5;
  padding: 15px 24px;
  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;
  font-weight: 300;
}
.privacyBox .cookie_block p{
  margin-bottom: 0px;
  padding-right: 15px;
}
.privacyBox a{
  color: #fabe00;
}
.privacyBox .closePrivacy{
  white-space:nowrap;
  cursor: pointer;
}
.closePrivacy{
  background-color: #e30022;
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.closePrivacy:hover{
  background-color: #fabe00;
}
@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-top: 10px;
  }
  .privacyBox .cookie_block p{
    padding-right: 0px;
  }
}
.algins{
  width: 1px !important;
  height: 1px !important;
  margin-bottom: 0;
  opacity: 0;
  position: absolute;
  left:-1px;
  top:-1px;
}
/* submit */
.submit_area{
  max-width: 1520px;
  margin: auto;
  padding: 250px 0px 150px 0px;
  text-align: center;
}
.send_icon{
  width: 150px;
  margin-bottom: 20px;
}
.submit_title{
  font-size: 48px;
  color: #282828;
  margin-bottom: 10px;
}
.submit_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.submit_back{
  margin-top: 30px;
}
@media(max-width: 1299px){
  .submit_area{
    padding: 200px 0px 100px 0px;
  }
  .send_icon{
    width: 130px;
  }
  .submit_title{
    font-size: 42px;
  }
}
@media(max-width: 991px){
  .submit_area{
    padding: 150px 0px 100px 0px;
  }
  .send_icon{
    width: 120px;
  }
  .submit_title{
    font-size: 36px;
  }
}
@media(max-width: 575px){
  .send_icon{
    width: 100px;
  }
  .submit_title{
    font-size: 28px;
    margin-bottom: 0px;
  }
  .submit_text{
    font-size: 16px;
  }
  .submit_back{
    margin-top: 20px;
  }
}
@media(max-width: 390px){
  .send_icon{
    width: 80px;
    margin-bottom: 15px;
  }
  .submit_title{
    font-size: 24px;
    margin-bottom: 0px;
  }
  .submit_text{
    font-size: 14px;
  }
  .submit_back{
    margin-top: 15px;
  }
}

/* 404 */
.error_title{
  font-size: 130px;
  color: #e30022;
  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;
  }
}