@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=League+Spartan:wght@400;500;600;700;800&family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');

html {
  scroll-behavior: smooth;
}

body{ 
    font-size:14px; 
    font-family: Roboto,Microsoft JhengHei,Arial, Helvetica,sans-serif,nsimsun; 
    font-weight: 500;
    color:#333; 
    position:relative;
    background-color: #fff;
    letter-spacing: 1px;

    /*overflow-y: hidden; */

    width: 100%;
    overflow-x: hidden;
    animation-name: fade-in;
    animation-duration:1s;
    animation-timing-function:ease-in;
}
@keyframes fade-in{
    0%{
        opacity:0;
    }
    100%{
        opacity: 1;
    }
}

body.active{
    overflow: hidden;
}

a{ color:#333;transition: .3s}
a:hover{ color:#d54e23;}
* { 
 -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
 -moz-box-sizing: border-box;    /* Firefox, other Gecko */
 box-sizing: border-box;         /* Opera/IE 8+ */
}
  
/*   html{
    overflow-y: hidden; 
    position:static;
} */


::selection {
    background: #333;
    color: #fff;
}
::-moz-selection {
    background: #333;
    color: #fff;
}


/****** scrollbar ******/
 ::-webkit-scrollbar {
    width: 8px;
    background-color: #E2E2E2;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 8px #E2E2E2;
    background-color: #E2E2E2;
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 5px;
}


input,select,
input::placeholder,
select::placeholder {
  font-family: 'Noto Sans TC'
}

/*==============================================*/

/*共用*/

.all_title01{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 20px;
}

.all_title01 span{
    background-color: #d54e23;
    color: #fff;
    padding: 0 5px;
}

.all_title02{
    font-size: 24px;
    font-weight: 400;
    color: #a5a5a5;
}




.all_title03{
    font-size: 18px;
    font-weight: 500;
}

.all_title04{
    font-size: 22px;
    color: #996c33;
    font-weight: 700;
}

/*-------*/


.all_title_box {
    text-align: center;
    margin: 2.5rem 0;
}



.all_title_box h3{
    font-size: 24px;
    color: #a5a5a5;
    font-weight: 300;
    margin-bottom: 20px;
}



/*-------*/
.all_introduce_01{
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #333;
    letter-spacing: 1.5px;
}

.all_introduce_02{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #434343;
    letter-spacing: 1.5px;
}

/*-------*/

.all_btn_01{
    background-color: #111;
    font-size: 16px;
    padding: 10px 15px;
    width: 150px;
    color: #fff;
    position: relative;
    font-weight: 400;
    display: block;
    border: 1px #111 solid;
}

.all_btn_01 i{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: .2s;
    z-index: 3;
    
}

.all_btn_01:hover {
    text-decoration: none;
    color: #111;
}

.all_btn_01 p{
    transition: .3s;
    position: relative;
    z-index: 3;
}

.all_btn_01:hover p{
    color: #111;
}

.all_btn_01:hover i{
    right: 7px;

}

.all_btn_01:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: block;
    height: 100%;
    z-index: 1;
    transition: transform .2s ease-in!important;
    -webkit-transition: transform .2s ease-in!important;
    -o-transition: transform .2s ease-in!important;
    transform-origin: bottom left;
    transform: scaleX(0);
    background-color: #fff;
}

.all_btn_01:hover:before {
    transform-origin: bottom left;
    transform: scaleX(1);
}


/*--------------*/


.all_top_title {
    display: flex;
    height: 350px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.all_top_title:after{
    content: "";0;
    opacity: .7;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 280px 0 0 100px;
    border-color: transparent transparent transparent #000;
    z-index: 0;
    pointer-events: none;
}

.all_top_title:before{
    content: "";
    opacity: .7;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 280px 0;
    border-color: transparent #000 transparent transparent;
    z-index: 0;
    pointer-events: none;
}




.all_top_title h2{
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    text-shadow: 0 0 8px #0002;
}

.all_top_title h1{
    position: relative;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 5px #0001;
    color: #fff;
    font-style: italic;
    letter-spacing: 3px;
}

.all_top_title h1:after {
    content: "";
    position: absolute;
    width: calc(100% + 10px);
    height: 15px;
    background-color: #000;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}


/*------------*/

.web_cate {
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 500;
    padding: 50px 0 20px 0;
    color: #919191;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
}


.web_cate span{
    margin: 0 10px;
    font-weight: 700;
    color: #919191;
}


.web_cate p{
    color: #919191;
}

.web_cate a{
    color: #919191;
}

.web_cate a:hover{
    color: #d54e23;
}


/*-------------------*/

.all_num_title{
    position: relative;
    font-weight: 600;
    font-size: 24px;
    color: #5b5b5b;
    padding-left: 20px;
}

.all_num_title:after{
    content: "";
    width: 100px;
    height: 1px;
    background-color: #333;
    top: 50%;
    right: calc(100% + 0px);
    transform: translateY(-50%);
    position: absolute;
}






/*--------------*/


.all_width{
    width: 1420px;
    max-width: 90%;
    margin: 0 auto;
}

.top_padding{
    padding-bottom: 102px;
    display: none;
}

.in_page .top_padding{
    display: block;
}


html.translated-ltr .menu{
    top: 40px;
}

html.translated-ltr .menu_list li a{
    padding: 10px 0px;
}

.menu{
    background-color: #ffffffb0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 8px #3b48754a;
    z-index: 100;
    transition: .5s;
}

.menu.bg{
    background-color: #fff;
}

.menu.bg .menu_list_box{
    background-color: #020202;
}

.menu.bg .menu_list_box:after {
    border-color: transparent #020202 transparent transparent;
}



body.in_page .menu{
    background-color: #fff;
}

body.in_page .menu_list_box{
    background-color: #020202;
}

body.in_page  .menu_list_box:after {
    border-color: transparent #020202 transparent transparent;
}


.menu_3line_box,
.menu_close_bg{
    display: none;
}


.menu_box {
    display: flex;
    gap: 0 10px;
    align-items: center;
    justify-content: space-between;

    overflow: hidden;
}


.menu_logo {
    display: flex;
    gap: 0 20px;
    align-items: center;
    padding-left: 4rem;
}

.menu_logo img{
    width: 270px;
}

.menu_list_box {
    display: flex;
    align-items: center;
    gap: 20px 1rem;
    background-color: #030303b3;
    padding: 2rem 4rem 2rem 2rem;
    position: relative;
    width: 1300px;
    max-width: calc(100% - 420px);
    justify-content: space-between;
    transition: .5s;
}

.menu_list_box:after {
    content: "";
    position: absolute;
    left: -48px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 48px 102px 0;
    border-color: transparent #030303b3 transparent transparent;
    transition: .5s;
}




.menu_list {
    display: flex;
    gap: 0 5px;
    width: calc( 100% - 130px);
    justify-content: space-between;
    padding: 0 2rem;
}

.menu_list li a{
    font-size: 16px;
    padding: 10px 10px;
    color: #a5a5a5;
    position: relative;
    transition: .3s;
    font-weight: 800;
}

.menu_list li a:after{
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #fff;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    transition: .6s;
}

.menu_list li a:hover{
    color: #fff;
}

.menu_list li a:hover:after {
    width: calc(100% - 20px);
}

/*--------------------------------*/

.menu_list li.active a{
    color: #fff;
}

.menu_list li.active a:after {
    width: calc(100% - 20px);
}




.menu_lan {
    display: flex;
    gap: 0 0px;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 150px;
}

.menu_lan h4{
    color: #ffffffa6;
    font-size: 16px;
    padding-bottom: 1px;
}

.menu_lan img{

}

.menu_lan p{
    width: 60px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}


.menu_lan .lan_select{
    position: absolute;
    top: calc(100% + 32px);
    left: 0;
    width: 100%;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 2;
}

.menu_lan.active .lan_select{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.menu_lan .lan_select ul {
    background-color: #020202;
    padding: 5px 0;
}

.menu_lan .lan_select ul li a{
    padding: 3px 10px;
    color: #fff;
    background-color: #020202;
    display: block;
    transition: .2s;
    font-size: 15px;
}

.menu_lan .lan_select ul li a:hover{
    background-color: #3f3f3f;
}

.lan_select_bg{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 0;
}

.menu_lan.active .lan_select_bg{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.footer {
    background-color: #333;
    padding: 70px 0;
}

.i_box5 .footer{
    background-color: #333a;
}

.footer_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    position: relative;
}


.footer_box .left {

}

.footer_box .left ul {
    display: flex;
    gap: 10px 0;
    flex-direction: column;
    margin-bottom: 10px;
}

.footer_box .left ul li{
    display: flex;
    gap: 0 5px;
    color: #fff;
    font-size: 16px;
    align-items: flex-start;
}

.footer_box .left ul li img{
    width: 16px;
    margin-right: 5px;
    padding-top: 4px;
}

.footer_box .left ul li h2{
    font-weight: 700;
}

.footer_box .left ul li a{
    color: #fff;
}



.footer_box .left h4{
    color: #fff;
    font-size: 16px;
}

.footer_box .left h4 a{
    color: #fff;
}

.footer_box .left h4 a:hover,
.footer_box .left ul li a:hover{
     color:#d54e23;
}


.footer_box .left p{
    max-width: calc(100% - 90px);
}




.footer_box .right img{
    width: 320px;
}



.footer_icon {
    display: flex;
    gap: 12px;
    position: fixed;
    right: 1.2rem;
    z-index: 5;
    bottom: 2rem;
    flex-direction: column;
}

.footer_icon a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer_icon a img{
    width: 100%;
}

.footer_icon a:hover{
    transform: scale(0.9);
}


/*===================================*/



.i_box1{
/*    background-color: #eeeeee;*/
/*    box-shadow: 0 5px 8px #0000004a;*/
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.i_box1 .bg_img{
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 60%;
}

.all_bg_style {

    background-image: linear-gradient(100deg, #e6e9f0 0%, #a5a5d1 100%);
    background-size: 100% 100%;
    width: 100%;
    animation: bg_auto 5s ease infinite;
    z-index: 1;
}

@keyframes bg_auto{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}



.i_box1 {
    position: relative;
}

.i_box1 .play_icon{
    position: absolute;
    width: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}

.i_box1 .play_icon img{
    width: 70px;
    z-index: 2;
    transition: .3s;
}



.i_box1 .play_icon:after{
    content: "";
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background-color: #fff8;
    position: absolute;
    z-index: -1;
    transition: .3s;
    pointer-events: none;
}

.i_box1 .play_icon:before{
    content: "";
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background-color: #fff3;
    position: absolute;
    z-index: -1;
    transition: .5s;
    pointer-events: none;
    

}

.i_box1 .play_icon:hover:after{
    width: 85%;
    height: 85%;
}

.i_box1 .play_icon:hover:before{
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}

.i_box1 .play_icon:hover img{
    transform: scale(0.85);
}

/*---------------*/

video::-webkit-media-controls {
    display:none !important;
}
video::-webkit-media-controls-timeline {
  display: none!important;
}

video::-webkit-media-controls-current-time-display {
  display: none;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
video::-moz-range-track{
   display: none !important;
}


.i_box1 .video_box{
    width: 100%;
    pointer-events: none;
    height: 900px;
    overflow: hidden;
}

.i_box1 .video_box video{
    width: 100%;

    min-width: 1620px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


.i_box1 .video_box video::-webkit-media-controls-enclosure{ 
    display: none;
}




.player_box{
    position: relative;
}













/*-------------------*/

.i_b1{
    position: absolute;
    left: 5%;
    bottom: 10%;
    max-width: 60%;
    width: 650px;
    z-index: 1;
}

.i_b1 img {
    margin-bottom: 30px;
    width: 100%;
}

.i_b1 p{
    color: #fff;
    position: relative;
    display: inline-flex;
    font-size: 18px;
    padding-left: 20px;

}

.i_b1 p:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #ffffff96;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.i_b1 p:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px #fff solid;
    left: calc(100% + 40px);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}



/*=======================*/


/*-------------------------------------*/
.i_b1_triangle{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 900px 0 0 429px;
    border-color: transparent transparent transparent #26262673;
    z-index: 0;
    pointer-events: none;
}

.i_b2_triangle{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1550px 0 0 739px;
    border-color: transparent transparent transparent #eee;
    z-index: 0;
    pointer-events: none;
}

.i_b4_triangle{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 950px 450px 0 0;
    border-color: #eee transparent transparent transparent;

    z-index: 0;
    pointer-events: none;
}

.i_b4_triangle-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 495px 233px;
    border-color: transparent transparent #eee transparent;
    z-index: 1;
    pointer-events: none;
}

.i_b5_triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 460px 218px 0 0;
    border-color: #26262673 transparent transparent transparent;
    z-index: 2;
    pointer-events: none;
}

.i_b5_triangle-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 1435px 680px;
    border-color: transparent transparent #26262659 transparent;
    z-index: 0;
    pointer-events: none;
}





/*---*/

.i_box2{
    position: relative;
    overflow: hidden;
}

.i_b2 {
    display: flex;
    gap: 20px 50px;
    padding: 80px 0;
    align-items: center;
    min-height: 650px;
    z-index: 1;
    position: relative;
}




.i_b2 .info{
    width: calc(35% - 25px);
    text-align: left;
}


.bg_text_01{
    color: #fbfbfb;
    font-size: 65px;
    font-weight: 700;
    writing-mode: vertical-lr;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.bg_text_02{
    color: #f1f1f1;
    font-size: 65px;
    font-weight: 700;
    writing-mode: vertical-lr;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.bg_text_02.color1{
    color: #fff;
}

.all_info h2{
    margin-bottom: 40px;
}

.all_info h2 span{

}

.all_info h3{
    font-size: 22px;
    margin-bottom: 40px;
    color: #777;
}

.all_info>p{
    font-size: 17px;
    margin-bottom: 30px;
}

.all_info.white h3,
.all_info.white h2,
.all_info.white h2 span{
    color: #fff;
}

.all_info .iso_list{
    display: flex;
    gap: 15px 40px;
    margin-top: 30px;
}

.all_info .iso_list li a{
    display: flex;
    gap: 5px;
    align-items: center;
}

.all_info .iso_list li a>div{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d54e23;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}


.all_info.center{
    text-align: center;
}

/*---*/


.solution_list{
    width: calc(65% - 25px);
}

.solution_list ul li{
    margin: 0 10px;
    position: relative;

}

.solution_list ul li h2{
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    bottom: 0;
}

.solution_list ul li .img_box{
    overflow: hidden;
    padding-bottom: 40px;
}

.solution_list ul li img{
    transition: .5s;
}

.solution_list ul li:hover img{
    transform: scale(1.1);
}



/*---*/

.i_box3{
    position: relative;
    background-image: url(../img/i_b3_bg_02.jpg);
    background-position: right 50%;
    background-size: cover;
    min-height: 650px;
    overflow: hidden;
}

.bg_text_03 {
    color: transparent;
    -webkit-text-stroke: 0.5px #fff;
    font-size: 65px;
    font-weight: 700;
    writing-mode: vertical-lr;
    position: absolute;
    left: 0;
    z-index: 1;
    top: 0;
}


.i_b3_bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 750px;
/*    max-width: 45%;*/
}

.i_b3_bg_rwd{
    display: none;
}

.i_b3 {
    display: flex;
    gap: 20px 50px;
    padding: 100px 0;
    z-index: 1;
    position: relative;
    min-height: 654px;
    align-items: flex-start;
    justify-content: space-between;
}



.i_b3 .img h3 {
    padding-left: 12px;
    font-size: 36px;
    color: #fff;
    border-left: 5px #fff solid;
    font-weight: 700;
}

.i_b3 .info{
    width: calc(55% - 25px);
    text-align: left;
}

.i_b3 .img{
    width: calc(45% - 25px);
}


/*---*/



.i_box4{
    position: relative;
    overflow: hidden;
}

.i_b4 {
    display: flex;
    gap: 20px 30px;
    padding: 80px 0;
    align-items: center;
    position: relative;
    z-index: 1;
}

.i_b4_bg{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    max-width: 100%;
}


.i_b4 .info{
    width: calc(35% - 25px);
    text-align: left;
}



/*---*/


.i_pro_list{
    width: calc(65% - 25px);
    padding: 0 50px;
    position: relative;
}

.i_pro_list ul li{
    margin: 0 10px;
    position: relative;

}

.i_pro_list ul li .img_box{
    overflow: hidden;
    padding-bottom: 40px;
}

.i_pro_list ul li img{
    transition: .5s;
}

.i_pro_list ul li:hover img{
    transform: scale(1.1);
}


.i_pro_left{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 40px;
    cursor: pointer;
    transition: .3s;
    z-index: 2;
}

.i_pro_right{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 40px;
    cursor: pointer;
    transition: .3s;
    z-index: 2;


}

.i_pro_left:hover,
.i_pro_right:hover{
    opacity: .7;
}

/*------------*/


.i_box5{
    background-image: url(../img/footer_bg.jpg);
    position: relative;
    background-size: cover;
    overflow: hidden;
}



.i_b5 {
    display: flex;
    gap: 20px 50px;
    padding: 80px 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}



.service_ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.service_ul li{
    max-width: calc(20% - 20px);
}

.service_ul li .img{
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 10px 15px 15px #333333b3;
}

.service_ul li .img img{
    width: 100%;
    transition: .8s;
}

.service_ul li .img:hover img{
    transform: scale(1.1);
}

.service_ul li h2{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
}


/*------------------------------------*/


.about_01{
    padding: 50px 0 20px 0;
    position: relative;
}

.about_b1_bg01{
    position: absolute;
    right: 0;
    top: -90px;
    max-width: 70%;
}


.about_b1 {
    display: flex;
    gap: 0 100px;
    justify-content: flex-end;
    padding: 70px 0 70px 0;
    margin-top: 50px;
    position: relative;
    align-items: center;
}

/*.about_b1 .img {
    width: 750px;
    height: 450px;
    background-image: url(../img/img_about01.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
}*/

.about_b1 .img{
    width: calc(50% - 50px);
    padding-right: 100px;
}

.about_b1 .img img{
    width: 100%;
}


.about_b1 .info {
    width: calc(50% - 50px);
    padding-left: 30px;
    padding-right: 250px;
}



.abput_b1_ul{
    display: flex;
    gap: 20px 40px;
}

.abput_b1_ul li img{
    margin-bottom: 12px;
}

.abput_b1_ul li h4{
    text-align: center;
    font-size: 16px;
}






.about_02{
    padding: 50px 0 160px 0;
    position: relative;
    background-color: #f7f7f7;
}

.about_b2_bg01{
    position: absolute;
    right: 0;
    top: -90px;
    max-width: 70%;
}


.about_b2 {
    display: flex;
    gap: 0 100px;
    padding: 20px 0 20px 0;
    margin-top: 100px;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}

.about_b2 .img{
    width: calc(50% - 50px);
    padding-left: 20px;
    position: relative;
}

.about_b2 .img img{
    width: 100%;
}

.about_b2 .img .float_img {
    position: absolute;
    left: -160px;
    bottom: -100px;
    width: 430px;
}


.about_b2 .info {
    width: calc(50% - 50px);
    padding-left: 250px;
}

.about_b2 .info h6{
    color: #fff;
    background-color: #d54e23;
    display: inline-flex;
    font-size: 20px;
    padding: 2px 10px;
}


.about_b2 .info .bg_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}





.about_03{
    padding: 50px 0 20px 0;
    position: relative;
}


.about_03 .about_b1 {
    margin-top: 0px;
}






/*----------*/




.wave_box {
    position: absolute;
    left: 0;
    bottom: 3%;
    transition: opacity 2s cubic-bezier(.25,.25,.75,.75) .5s;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}


.wave_box_img {
    position: relative;
    width: 100%;
    height: 130px;
}


[data-js-ticker].is-move .wave_box_img:before {
    animation-play-state: running;
}

.wave_box_img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    content: "";
    background-repeat: repeat-x;
    background-position: 0 50%;
    background-size: auto 100%;
    z-index: 1;
    animation-play-state: running;
}


.wave_box_img.right:before {
/*    transform: rotate(10deg);*/
    left: -50px;
}

.wave_box_img.center:before {
    transform: rotate(0deg);
}


.wave_box_img.left:before {
    background-image: url(../img/wave_01.svg);
    animation: wave-left-type01 100s cubic-bezier(.25,.25,.75,.75) infinite both paused;
}


@keyframes wave-left-type01 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -6261px;
    }
}



/*---------------------------*/



.page_contact{
    padding: 100px 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;

    background-image: url(../img/img_about_bg2.jpg);
    position: relative;
    z-index: 1;
}

.page_contact_box {
    display: flex;
    justify-content: space-between;
    gap: 20px 20px;
    align-items: center;
}


.page_contact_box .left{
    color: #fff;
}

.page_contact_box .left h2{
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 5px;
}

.page_contact_box .left p{
    font-size: 24px;
}



.page_contact_box .center{

}

.page_contact_box .center a{
    transition: .3s;
}

.page_contact_box .center a:hover{
    opacity: .7;
}

.page_contact_box .center a div {
    display: flex;
    align-items: center;
    gap: 0 15px;
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.page_contact_box .center a div h2{
    font-weight: 700;
}


.page_contact_box .center a p {
    font-size: 14px;
    color: #fff;
    padding-left: 50px;
}





.page_contact_box .right a {
    display: flex;
    color: #fff;
    gap: 0 30px;
    background-color: #d54e23;
    padding: 10px 80px 10px 30px;
    border-radius: 50px;
    align-items: center;
}

.page_contact_box .right a img{
    width: 40px;
}

.page_contact_box .right a:hover{
    background-color: #333f48;
}

.page_contact_box .right a p{
    font-size: 18px;
    letter-spacing: 3px;
}

/*-----------------*/



.all_top_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 90px;
    overflow: hidden;
}

.all_top_info img{
    margin-bottom: 10px;
}

.all_top_info p{
    font-family: 'Roboto';
    font-size: 22px;
    color: #a5a5a5;
    font-weight: 200;
}


.all_top_info div {
    padding: 50px 20px;
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 15px;
    position: relative;
    width: 700px;
    max-width: 80%;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.all_top_info div img.left{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 27px;
}


.all_top_info div img.right{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 27px;
    
}

.all_top_info div h2{
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
}

.all_top_info div h3{
    font-size: 20px;
    color: #fff;
    background-color: #d54e23;
    padding:3px 30px ;
    font-weight: 700;
    letter-spacing: 4px;
}




.all_top_info a.bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    cursor: pointer;
    z-index: 1;
}

.all_top_info a.bg img{
}


/*-------------------*/



.industries_box{
    padding: 150px 0 0px 0;
    position: relative;
    background-color: #fff;
    margin-top: -65px;
    overflow: hidden;
}

.move_tab{
    position: absolute;
    top: -100px;
}

.industries_box:after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1200px 0 0 1000px;
    border-color: transparent transparent transparent #f7f7f7;
    position: absolute;
    top: 0;
    left: 0%;
    z-index: 0;

}

.industries_box:before{

    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 1200px 1000px;
    border-color: transparent transparent #f7f7f7 transparent;
    position: absolute;
    top: 0;
    right: 0%;
    z-index: 0;

}


.industries_box .title_box{
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}



.industries_box .title_box h2{
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

.industries_box .title_box p{
    font-size: 24px;
}


.industries_box .info_box{
    padding: 300px 20px 100px 20px;
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    line-height: 38px;
    position: relative;
    z-index: 1;
}

.industries_box .info_box:after{
    content: "";
    width: 0.5px;
    height: 140px;
    background-color: #333;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);

}


.pro_img_01 {
    position: absolute;
    left: 0;
    z-index: 1;
    top: 10%;
    max-width: 35%;
    width: 600px;
}

.pro_img_02{
    position: absolute;
    right: 0;
    z-index: 1;
    top: 10%;
    max-width: 35%;
    width: 600px;

}














.industries_b1{
    position: relative;
    overflow: hidden;
    padding-bottom: 200px;
}

.industries_b1 .bg {
    width: 100%;
    height: 1000px;
    background-color: #f7f7f7;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 0;
}

.industries_list {
    display: flex;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 50px 52px;
    justify-content: center;
}


.industries_list li{
    margin: 0 0px;
    position: relative;
    width: calc(25% - 39px);
}

.industries_list li:nth-child(1){
    width: calc(25% - 38px);
}

.industries_list li h2{
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    bottom: 0;
}

.industries_list li .img_box{
    overflow: hidden;
    padding-bottom: 40px;
}

.industries_list li img{
    transition: .5s;
    width: 100%;
}

.industries_list li:hover img{
    transform: scale(1.1);
}





.all_box{
    position: relative;
}


.bg_top_01{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events:none;
}

.bg_top_01:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 500px 450px 0 0;
    border-color: #f2f3f4 transparent transparent transparent;
    z-index: 0;
}

.bg_top_01 p{
    position: relative;
    z-index: 1;
    color: transparent;
    -webkit-text-stroke: 0.5px #666;
    font-size: 65px;
    line-height: 65px;
    font-weight: 700;
    writing-mode: vertical-lr;
/*    position: absolute;
    left: 0;
    z-index: 1;
    top: 0;*/
}




.bg_bottom_01{
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events:none;
}

.bg_bottom_01:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 400px 400px;
    border-color: transparent transparent #f2f3f4 transparent;
    z-index: 0;
}

.bg_bottom_01 p{
    position: relative;
    z-index: 1;
    color: transparent;
    -webkit-text-stroke: 0.5px #666;
    font-size: 65px;
    line-height: 65px;
    font-weight: 700;
    writing-mode: vertical-lr;
    padding-bottom: 10px;
}












.service_box1{
    display: flex;
    gap: 20px 50px;
    margin: 100px auto 100px auto;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.service_box1 .img {
    width: 50%;
    display: flex;
    position: relative;
    gap: 0 50px;
    align-items: flex-start;
    justify-content: center;
}

.service_box1 .img img.img_01{
    width: 280px;
    max-width: calc(50% - 25px);
    box-shadow: 5px 5px 10px #3333;
}

.service_box1 .img img.img_02{
    width: 280px;
    margin-top: 50px;
    max-width: calc(50% - 25px);
    box-shadow: 5px 5px 10px #3333;
    
    
}

.service_box1 .img img.img_03 {
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 220px;
}

.service_box1 .img img.img_03 { 
    -webkit-animation: icon_auto_01 3s linear infinite;
    animation: icon_auto_01 3s linear infinite;
}

@keyframes icon_auto_01 {
    50%{bottom: -100px;} 

}






.service_box1 .info{
    width: calc(50% - 50px);
    padding-top: 50px;
}

.service_box1 .info div{
    
}

.service_box1 .info div p{
    margin-bottom: 20px;
}

.service_box1 .info div ul {
    display: flex;
    gap: 10px 0;
    flex-direction: column;
}

.service_box1 .info div ul li{
    display: flex;
    font-size: 18px;
}

.service_box1 .info div ul li h5 {
    line-height: 32px;
    font-weight: 700;
    font-size: 20px;
}

.service_box1 .info div ul li span{
    font-weight: 400;
    font-size: 18px;
    padding-left: 5px;
}







.service_box2{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    background-image: url(../img/ser_b2_01.jpg);
    width: 100%;
    height: 400px;

    position: relative;
    z-index: 1;
}



.service_box3{
    padding-bottom: 50px;

    position: relative;
    z-index: 1;
}

.service_cate_ul {
    background-color: #f6f8fb;
    display: flex;
    padding: 35px 20px;
    gap: 15px 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -40px;
}

.service_cate_ul li{

}

.service_cate_ul li.active{
    background-color: #332a23;
    color: #fff;
}

.service_cate_ul li.active a{
    color: #fff;
}

.service_cate_ul li a{
    padding: 5px 20px;
    font-size: 16px;
    display: flex;
}




.service_pro {
    padding: 100px 0 60px 0;
    display: flex;
    gap: 50px 30px;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service_pro li{
    position: relative;
    background-color: #f7f8fb;
    width: calc(33.3% - 20px);
    cursor: pointer;
}

.service_pro li .img{
    overflow: hidden;
}

.service_pro li .img img{
    width: 100%;
    transition: .3s;
}

.service_pro li:hover .img img{
    transform: scale(1.1);
    
}

.service_pro li .text{
    position: absolute;
    padding: 8px 25px;
    background-color: #332a23;
    color: #fff;
    left: 0;
    top: 0;
    font-size: 16px;
}

/*-------------------------*/


.service_page{

}

.service_page h2{
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px #ddd solid;
    font-size: 16px;
}

.page_box {
    display: flex;
    gap: 5px 5px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0;
    font-size: 16px;
}

.page_box a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_box a:hover{
    background-color: #f2f3f4;
}

.page_box a.active{
    background-color: #f2f3f4;
}



/*------------*/

.equipment_box{
    padding-bottom: 100px;
    position: relative;
}

.equipment_b1 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 50px 0 80px 0;
    gap: 20px 50px;
}

.equipment_b1 .btn{
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px #ddd solid;
    padding-bottom: 5px;
    padding-right: 20px;
    position: relative;

}


.equipment_b1 .btn i {
    font-size: 12px;
    position: absolute;
    right: 0px;
    top: 5px;
    transition: .3s;
}

.equipment_b1 .btn:hover i{
    top: 10px;
}


.equipment_b2{
    position: relative;
    z-index: 1;
    padding: 100px 0 100px 0;
    
}

.equipment_b2 .num{
    position: absolute;
    right: 10%;
    top: 100px;
    font-size: 18px;
    font-weight: 700;
}

.equipment_b2 .num:after{
    content: "";
    width: 100px;
    height: 1px;
    background-color: #333;
    top: 50%;
    right: calc(100% + 10px);
    transform: translateY(-50%);
    position: absolute;
}

.equipment_b2 .title_bg {
    position: absolute;
    right: 0%;
    top: 100px;
    color: transparent;
    -webkit-text-stroke: 0.5px #666;
    font-size: 55px;
    line-height: 55px;
    font-weight: 700;
    writing-mode: vertical-lr;
    height: 350px;
}

.equipment_b2 .title_bg.left{
    left: 0;
    right: auto;
}


.equipment_b2.bg{
    background-color: #f7f7f7;
}

.equipment_b2_box {
    display: flex;
    gap: 20px 50px;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 70px;
}


.equipment_b2_box .img_box{
    position: relative;
    width: calc(50% - 25px);
}

.equipment_b2_box .img_box img.big{
    width: 100%;
}

.equipment_b2_box .img_box .img_info {
    display: flex;
    gap: 0 20px;
    position: absolute;
    bottom: -100px;
    align-items: flex-end;
}

.equipment_b2_box .img_box .img_info p{
    text-align: right;
    font-size: 16px;
    line-height: 30px;
    width: 230px;
    padding-bottom: 20px;

}

.equipment_b2_box .img_box .img_info img{
    width: calc(100% - 250px);
}


.equipment_b2_box .info{
    padding: 0 50px 0 30px;
    max-width: calc(50% - 25px);
    width: 600px;
}

.equipment_b2_box .info h2{
    margin-bottom: 50px;
}

.equipment_b2_box .info h6{
    margin: 15px 0 15px 0;
}

.equipment_b2_box .info img{
    max-width: 100%;
}








.equipment_b2-1_box {
    display: flex;
    gap: 20px 0px;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 50px;
}

.equipment_b2-1_box .table{
    width: calc(100% - 480px);
}

.equipment_b2-1_box .table h2{
    font-size: 22px;
    padding: 10px 10px;
    background-color: #eeeeee;
    text-align: center;
    font-weight: 700;
}

.equipment_b2-1_box .table ul{
    padding: 15px 20px;
    display: flex;
    gap: 0 10px;
}

.equipment_b2-1_box .table ul:nth-child(odd){
    background-color: #eeeeee;
}

.equipment_b2-1_box .table ul li{
    color: #9e9e9e;
    font-size: 18px;
    text-align: center;
}

.equipment_b2-1_box .table ul li:nth-child(1){
    width: calc(40% - 8px);
    text-align: left;
}

.equipment_b2-1_box .table ul li:nth-child(2){
    width: calc(15% - 8px);
}

.equipment_b2-1_box .table ul li:nth-child(3){
    width: calc(15% - 8px);
    
}

.equipment_b2-1_box .table ul li:nth-child(4){
    width: calc(15% - 8px);
    
}

.equipment_b2-1_box .table ul li:nth-child(5){
    width: calc(15% - 8px);
    
}


.equipment_b2-1_box img{
    width: 480px;
}






/*------------------------*/

.quality_box{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    background-image: url(../img/quality_bg.jpg);
    padding-bottom: 100px;
}




.quality_b1{
    border-top: 1px #ddd solid;
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 100px;

}

.quality_b1 .list{
    margin-bottom: 120px;
    position: relative;
}

.quality_b1 .list h2 {
    padding: 4px 0 4px 15px;
    border-left: 7px #d54e23 solid;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    margin-bottom: 50px;
    align-items: center;
    justify-content: space-between;
}

.quality_b1 .list h2 span{
    font-size: 18px;
    position: relative;
}

.quality_b1 .list h2 span:after{
    content: "";
    width: 70px;
    height: 1px;
    background-color: #333;
    top: 50%;
    right: calc(100% + 10px);
    transform: translateY(-50%);
    position: absolute;
}

.quality_b1 .list p{
    margin-bottom: 50px;
}

.quality_b1 .list img {
    width: 400px;
    max-width: 90%;
    box-shadow: 0px 0px 15px #3333;
    margin: 0 auto;
}



/*-----------------------*/


.testing_info{
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}




.testing_box{
    margin: 50px auto 0px auto;
    padding-bottom: 100px;
    z-index: 1;
    position: relative;
}


.testing_ul {
    display: flex;
    gap: 20px 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px auto 100px auto;
}

.testing_ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.testing_ul li a span{
    font-size: 20px;
    color: #5e5e5e;
}

.testing_ul li a h2{
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0 10px 0;
    border-bottom: 1px #ddd solid;
    margin-bottom: 20px;
    transition: .3s;
}

.testing_ul li a i{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    transition: .3s;
}

.testing_ul li a:hover i{
    bottom: -15px;
}

/*---------*/





.testing_b1 {
    padding: 50px 20px;
    display: flex;
    gap: 20px 50px;
    box-shadow: 0 0 10px #3333;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 100px;
    background-color: #fff;
}

.testing_b1:after{
    width: 500px;
    height: 1000px;
    background-color: #dddddd;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: 0;
    opacity: .6;
}

.testing_box .testing_b1:nth-child(odd):after{
    opacity: .3;
}


.testing_b1 .bg_text {
    font-size: 120px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: -20px;
    z-index: 1;
    line-height: 120px;
}

.testing_b1 .title{
    width: 300px;
    position: relative;
    z-index: 1;
}

.testing_b1 .title h3{
    font-family: 'Roboto';
    font-size: 24px;
    color: #a5a5a5;
    font-weight: 200;
    margin-bottom: 10px;
}

.testing_b1 .title h2{

}



.testing_b1 .img{
    width: 350px;
    position: relative;
    z-index: 1;

}

.testing_b1 .img img{
    width: 100%;
}

.testing_b1 .info {
    font-size: 20px;
    line-height: 32px;
    width: calc(100% - 750px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testing_b1 .info h3{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px #ddd solid;
    width: 400px;
    max-width: 100%;
}

.testing_b1 .info p{
    width: 400px;
    max-width: 100%;
}





.testing_b1_04.testing_b1 .title{
    width: 200px;
}

.testing_b1_04.testing_b1 .img{
    width: 400px;
}





.bg_bottom_02{
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events:none;
}

.bg_bottom_02:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 1100px 700px;
    border-color: transparent transparent #f2f3f4 transparent;
    z-index: 0;
}


/*---------------------*/


.contact_list {
    display: flex;
    gap: 30px 30px;
    margin: 80px auto;
    align-items: flex-start;
    justify-content: space-between;
}

.contact_list a {
    width: 400px;
    max-width: calc(33% - 20px);
    border-radius: 20px;
    border: 1px #ddd solid;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.contact_list a img{
    margin-bottom: 10px;
}

.contact_list a h2{
    font-size: 18px;
    color: #333;

}


.contact_list a p{
    font-size: 18px;
    color: #919191;
}

.contact_list a:hover{
    background-color: #3f3f3f;
}


.contact_list a:hover h2{
    color: #fff;
}

.contact_list a:hover p{
    color: #b2b2b2;
}








.contact_box{
    background-color: #f7f7f7;
    padding: 100px 0;
}


.contact_b1 {
    background-color: #fff;
    display: flex;
    box-shadow: 2px 2px 15px #3333;
}

.contact_b1 .map{
    width: 30%;
}

.contact_b1 .map iframe{
    width: 100%;
    height: 100%;
}

.contact_b1 .form{
    width: 70%;
    padding: 50px 10px;
}






.contact_b1 .form h2{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.contact_b1 .form h5{
    margin-bottom: 40px;
    text-align: center;
}




.contact_form_box {
    display: flex;
    gap: 20px 30px;
    width: 750px;
    max-width: 95%;
    margin: 0 auto;
    flex-wrap: wrap;
}


.contact_form_box .btn{
    padding: 50px 0 0 110px;
}


.contact_input{
    display: flex;
    gap: 10px 10px;
}

.contact_input h3{
    width: 100px;
    font-size: 16px;
    padding-top: 5px;
}

.contact_input h3 span{
    width: 100px;
    color: #f9a400;
}

.contact_input input[type=text]{
    width: calc(100% - 110px);
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px #ccc solid;
    font-size: 15px;
}


.contact_input.verify input[type=text]{
    width: 250px;
    max-width: calc(100% - 190px);
}


.contact_input select{
    width: calc(100% - 110px);
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px #ccc solid;
    font-size: 15px;
}

.contact_input textarea{
    width: calc(100% - 110px);
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px #ccc solid;
    height: 120px;
    font-size: 15px;
}

.contact_input .radio_box {
    font-size: 16px;
    display: flex;
    gap: 0 20px;
    align-items: center;
}

.contact_input .radio_box label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0 7px;
}

.contact_input .radio_box input[type=radio]{
    width: 18px;
    height: 18px;
}


.input_01{
    width: 100%;
}

.input_02{
    width: calc(50% - 15px);
}

.verify_img{
    width: 90px;
}

.verify_img img{
    width: 100%;
}

