@charset "utf-8";

body{
   padding-top: 0!important;
}
.header{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    transition:all .4s;
    width: 220px;
    height: 100vh;
    background: var(--theme-color);
    padding:32px 45px;
}
.header .logo{
    
}
.header .logo a{
    display: flex;
    flex-direction: column;
    color:#fff;
    align-items: center;
}
.header .logo img{
    width: 100px;
    height: 100px;
}
.header .logo span{
    font-size: 17px;
    text-align: center;
    line-height: 1.2;
    display: block;
    margin-top: 10px;
    font-family: 'OrbitronBold';
    text-transform: uppercase;
}
.header .nav{
    margin-top: 5vh;
}
.header .nav li{
    padding: 18px 0;
}
.header .nav li a{
    font-size: 20px;
    color:#fff;
    font-family: 'RajdhaniSemiBold';
    text-transform: capitalize;
    transition:all .4s;
}
.header .nav li a:hover{
    padding-left: 10px;
    text-decoration: underline;
}


.header .language{
    margin:6vh 0 5vh;
}
.header .language .lang{
    cursor: pointer;
    transition:all .4s;
    color: #fff;
}
.header .language .lang img{
    width:16px;
    height: 16px;
    margin-right: 6px;
}
.header .language .lang span{
    font-size: 14px;
}
.header .language .lang i{
    font-size:8px;
    margin-left: 5px;
}



.layer_search{
    position: fixed;
    z-index: 998;
    background: #fff;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    padding-top:250px;
}
.layer_search form{
    position: relative;
    width:800px;
    margin: auto;
}
.layer_search form input{
    outline: none;
    width:100%;
    height:70px;
    border:1px solid #aaa;
    border-radius: 100px;
    padding:0 40px 0 20px;
    background: transparent;
    margin:auto;
    font-size:20px;
}
.layer_search form input::placeholder{
    font-size:16px;
    color:#999;
}
.layer_search form button{
    outline: none;
    border:none;
    position: absolute;
    right: 20px;
    top: 12px;
    background: transparent;
    cursor: pointer;
}
.layer_search form button i{
    font-size:26px;
    color:#c5c5c5;
}
.layer_search form button i:hover{
    color:var(--theme-color);
}

.layer_search .close{
    right:10%;
    top: 160px;
    position: absolute;
}
.layer_search .close i{
    font-size:36px;
    display: block;
    transition:all .4s;
    cursor: pointer;
}
.layer_search .close i:hover{
    transform: rotate(180deg);
    color:var(--theme-color);
}



.j_wrap{
    margin-left: 218px;
}

/* banner */

.banner{
    position: relative;
    overflow: hidden;
}
.banner .wrapper{
    position: relative;
}
.banner .item_img img{
    width: 100%;
}
.banner .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-bottom:5vh;
}
.banner .item .item_con .wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner .item .item_con .info{
    
}
.banner .item .item_con .tit{
    font-size: 80px;
    color:#fff;
    line-height: 1.1;
    margin-bottom: 60px;
    font-family: 'OrbitronBold';
}
.banner .item .item_con .tit span{
    color:var(--theme-color);
    line-height: 1.1;
}

.banner .swiper-pagination{
    bottom:30px;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width:10px;
    height:10px;
    border-radius:50%;
    background: #fff;
    margin:0 4px;
    opacity: 1;
    position: relative;
    opacity: 1;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--theme-color);
}

.banner_ico{
    position: absolute;
    right: 10%;
    bottom:20px;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: downico 2s ease-out infinite;
    color:#fff;
    transition:all .6s;
    cursor: pointer;
    border-radius: 5px;
}
.banner_ico i{
    transform: rotate(90deg);
    display: block;
    font-size:36px;
}
@keyframes downico{
	0%{bottom: 20px;}
	50%{bottom:50px;}
	100%{bottom:20px;}
}


/* product_con */

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

.product_con .item .item_img{
    width: 66.666%;
}
.product_con .item .item_img img{
    width: 100%;
}
.product_con .item .item_list{
    width: 33.333%;
    background: #eff0f6;
    padding: 42px;
    position: relative;
    transition:all .4s;
}
.product_con .item .item_list .hd a{
    font-size: 40px;
    font-family: 'OrbitronBold';
    text-transform: uppercase;
    line-height: 1.1;
    display: block;
    word-wrap: break-wrap;
    word-break:break-all;
    height: 132px;
    margin-bottom: 20px;
}

.product_con .item .item_list .bd a{
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
}
.product_con .item .item_list .bd a span{
    line-height: 1.3;
    display:block;
    flex:1;
    min-width: 0;
    padding-left: 5px;
}
.product_con .item .item_list .bd a i{
    transform: rotate(180deg);
    display:block;
    margin-top: 3px;
    font-size: 12px;
}
.product_con .item .item_list .bd .bg_ico{
    position: absolute;
    right:20px;
    bottom: 25px;
}

.product_con .item:hover .item_list{
    background: var(--theme-color);
}
.product_con .item:hover .item_list .hd a{
    color:#fff;
}
.product_con .item:hover .item_list .bd a{
    color:#fff;
}
.product_con .item .item_list .bd a:hover span{
    text-decoration: underline;
}
.product_con .item:hover .item_list .bd .bg_ico img{
    filter: brightness(100);
}
.product_con>.wrapper{
    position: absolute;
    bottom: -60px;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
}
.product_con .arrow{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    
}
.product_con .swiper-button-next,.product_con .swiper-button-prev{
    position: initial;
    width: 35px;
    height: 35px;
    background: #eff0f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity:1;
    margin-top: 0;
    color:#333;
    transition:all .4s;
    margin-left:10px;
}
.product_con .swiper-button-next:after,.product_con .swiper-button-prev:after{
    font-size: 14px;
    font-weight: bold;
}
.product_con .swiper-button-prev:hover,.product_con .swiper-button-next:hover{
    background-color: var(--theme-color);
    color:#fff;
}


/* more_style_ */

.new_more{
    align-items: center;
    display: flex;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    width:260px;
}
.new_more:after{
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    transition:all .4s;
    z-index: -1;
    border:2px solid var(--theme-color);
    transform: rotate(-45deg);
}
.new_more .ico{
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new_more .ico i{
    color:var(--theme-color);
    font-size: 24px;
}
.new_more span{
    margin-left:20px;
    font-family: 'GothicB';
    transition:all .4s;
    color:#fff;
    text-transform: uppercase;
}
.new_more:hover:after{
    transform: rotate(0deg);
    background: var(--theme-color);
}
.new_more:hover .ico i{
    color:#333;
}
.new_more:hover span{
    margin-left:10px;
    text-decoration: underline;
}
.new_more_blue{
    color:var(--theme-color);
}
.new_more_blue:hover span{
    color:#fff;
}




/* tit_box1 */

.tit_box1{
    padding:90px 0 36px;
    align-items: flex-end;
}
.tit_box1_center{
    text-align: center;
}
.tit_box1 .tit{
    flex:1;
}
.tit_box1 .tit h4{
    font-size:50px;
    line-height:1;
    text-transform: uppercase;
    font-family: 'OrbitronBold';
}
.tit_box1 .tit h4 span{
    line-height: 1;
    color:var(--theme-color);
}
.tit_box1 .tit p{
    margin-top: 20px;
}

.tit_box1 .btn{
    width: 180px;
    height: 45px;
    background: var(--theme-color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    color:#fff;
    font-family: 'RajdhaniSemiBold';
    transition:all .4s;
    cursor: pointer;
}
.tit_box1 .btn i{
    margin-left: 6px;
    font-weight: bold;
}
.tit_box1 .btn:hover{
    width: 190px;
}

.tit_box2{
    text-align: center;
    padding:80px 0 30px;
}
.tit_box2 .tit h4{
    line-height: 1.1;
    font-size:40px;
    font-family: 'PoppinsSemiBold';
    text-transform: capitalize;
}
.tit_box2 .tit p{
    font-size:18px;
    margin-top:30px;
    color:#333;
}

.bg1{
    background:#f1f1f1;
}
.bg2{
    background:var(--theme-color);
}
.bg3{
    background: #f5f5f5;
}


/* product_menu */

.product_menu{
    padding:30px 30px 0;
}
.product_menu .list{
    margin: 0 -10px;
}
.product_menu .item{
    padding: 0 10px;
    width: 25%;
}
.product_menu .item .img_scale .img{
    overflow: visible;
}
.product_menu .item a{
    display: block;
    position: relative;
    overflow: hidden;
}
.product_menu .item .img_bg{
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}
.product_menu .item .img_bg img{
    width: 100%;
}
.product_menu .item .img_bg:after{
    width:0;
    height: 100%;
    display: block;
    position: absolute;
    content:'';
    background:linear-gradient(to right,rgba(255,180,0,1),rgba(255,180,0,0.1));
    left: 0;
    top: 0;
    transition:all .4s;
}
.product_menu .item .info{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding:35px 0 0 40px;
    z-index: 2;
}
.product_menu .item .info .tit{
    font-size: 45px;
    font-family: 'GothicB';
    color:#fff;
    width: 60%;
    line-height: 1;
}
.product_menu .item .info .img{
    position: absolute;
    right:25px;
    bottom:15px;
}
.product_menu .item .info .more{
    border: 1px solid #333;
    border-radius: 100px;
    display:none;
    font-size: 14px;
    font-family: 'GothicB';
    padding:0 15px;
    text-transform: uppercase;
    margin-top: 60px;
    transition:all .4s;
}
.product_menu .item .info .more i{
    margin-left: 6px;
}

.product_menu .item:hover .img_bg:after{
    width: 100%;
}
.product_menu .item:hover .info .more{
    display: inline-block;
}
.product_menu .item .info .more:hover{
    background: #333;
    color:#fff;
}

.pt100{
    padding-top: 90px;
}
.pb100{
    padding-bottom: 90px;
}


/* solution_wrap */

.solution_wrap{
    background: url("../images/bg1.png") no-repeat left top;
}
.solution_con{
    
}
.solution_con .menu_list{
    width: 320px;
}
.solution_con .menu_list .btn{
    margin-top:50px;
}
.solution_con .menu_list .btn .more_style5.more_style5_hover:hover{
    padding-left: 20px;
}
.solution_con .menu_list .item{
    height: 70px;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.solution_con .menu_list .item_w{
    overflow: hidden;
    width: 100%;
    position: relative;
}
.solution_con .menu_list .item:after{
    content:'';
    display: block;
    background: var(--theme-color);
    height: 1px;
    width:0;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition:all .4s;
}
.solution_con .menu_list .item .tit{
    font-size: 20px;
    font-family: 'RajdhaniSemiBold';
    flex:1;
    min-width: 0;
    text-transform: capitalize;
    padding-right: 20px;
}
.solution_con .menu_list .item .ico{
    width: 30px;
    height: 30px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -50px;
    transition:all .4s;
}
.solution_con .menu_list .item .ico i{
    color:#fff;
    font-size: 12px;
}
.solution_con .con_list{
    flex:1;
    min-width: 0;
    padding-left: 10%;
}

.solution_con .con_list .item{
    display: none;
    position: relative;
}
.solution_con .con_list .item:first-child{
    display: block;
}
.solution_con .con_list .item .item_img{
    mask:url("../images/solution_img_bg.png");
    mask-size:100% 100%;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.solution_con .con_list .item .item_img img{
    width: 100%;
}
.solution_con .con_list .item .item_con{
    background: linear-gradient(to top,rgba(0,0,0,.8),transparent);
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 45px;
    width: 100%;
    color:#fff;
    display: flex;
    transition:all .4s;
}
.solution_con .con_list .item .item_con .tit{
    font-size: 30px;
    font-family: 'RajdhaniSemiBold';
    width: 35%;
    line-height: 1;
}
.solution_con .con_list .item .item_con .ico{
    width: 35px;
    height: 35px;
    background:var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
    animation: downico 2s ease-out infinite;
}
.solution_con .con_list .item .item_con .desc{
    padding-left: 3%;
    width: 55%;
}
.solution_con .con_list .item:hover .item_con{
    padding-bottom: 60px;
}

.solution_con .menu_list .item:hover .tit,.solution_con .menu_list .item.cur .tit{
    color:var(--theme-color);
}
.solution_con .menu_list .item:hover:after,.solution_con .menu_list .item.cur:after{
    width: 100%;
}
.solution_con .menu_list .item:hover .item_w .ico,.solution_con .menu_list .item.cur .item_w .ico{
    right: 3px;
}


/* about_wrap */

.about_wrap{
    height: 1100px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.about_con_wrap{
    display: flex;
    padding-top:30px;
    justify-content: flex-end;
}
.about_con{
    width: 42%;
}
.about_con .tit_box1{
    padding-bottom: 10px;
}
.about_con .j_more{
    margin-top:40px;
}


/* choose */

.choose{
    position: relative;
    margin-top: -20vh;
}
.choose_list{
    margin: -16px;
    padding-top: 20px;
}
.choose_list .item{
    width: 25%;
    padding: 16px;
}
.choose_list .item_w{
    padding: 40px;
    border-radius: 5px;
    height: 100%;
    position: relative;
    z-index: 2;
    transition:all .4s;
}
.choose_list .item_w:after,.choose_list .item_w:before{
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: -2;
    transition:all .4s;
}
.choose_list .item_w:after{
    background: var(--theme-color);
}
.choose_list .item_w:before{
    background: #eff0f6;
    border-radius: 5px;
    z-index: -1;
}
.choose_list .item_w:hover{
    padding-left: 50px;
    padding-bottom: 50px;
}
.choose_list .item_w:hover:before{
    left: 4px;
    bottom: 4px;
}
.choose_list .item .item_con .tit{
    font-size: 22px;
    font-family: 'RajdhaniSemiBold';
    margin:30px 0 20px;
}
.choose_list .item .item_con .desc{
    line-height: 1.5;
}

/* news */

.news_con{
    margin: 0 -15px;
}
.news_con .news_left,.news_con .news_right{
    width: 50%;
    padding: 0 15px;
}
.news_left .item{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}
.news_left .item .item_img{
    position: relative;
    height: 100%;
}
.news_left .item .item_img img{
    height: 100%;
}
.news_left .item .item_img .ico,.news_right .item .item_img .ico{
    width: 35px;
    height: 35px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    transition:all .4s;
}
.news_left .item .item_img .ico i,.news_right .item .item_img .ico i{
    color: #fff;
    font-size: 14px;
}
.news_left .item .item_img img{
    width: 100%;
}
.news_left .item .item_con{
    position: absolute;
    left: 0;
    bottom: 0;
    background:linear-gradient(to top ,rgba(0,0,0,.8),transparent);
    width: 100%;
    padding:40px 80px 40px 35px;
    transition:all .4s;
}
.news_left .item .item_con .name{
    font-size: 18px;
    font-family: 'RajdhaniSemiBold';
    color:var(--theme-color);
    text-transform: uppercase;
}
.news_left .item .item_con .tit{
    font-size: 24px;
    color:#fff;
    font-family: 'RajdhaniSemiBold';
    line-height: 1.3;
    transition:all .4s;
}
.news_left .item:hover .item_con{
    padding: 40px 80px 55px 35px;
}
.news_left .item:hover .item_img .ico{
    right: 30px;
    bottom: 30px;
}
.news_left .item:hover .item_con .tit{
    text-decoration: underline;
}


.news_right{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.news_right .item{
    background: #fff;
    box-shadow:0 0px 10px rgba(0,0,0,.1);
    height: 50%;
    border-radius: 10px;
}
.news_right .item .item_img{
    width: 40%;
    position: relative;
    border-radius: 0 10px 10px 0;
}
.news_right .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_right .item .item_con{
    padding: 40px;
    flex:1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    transition: all .4s;
}
.news_right .item .item_con .name{
    font-size: 18px;
    font-family: 'RajdhaniSemiBold';
    color:var(--theme-color);
    text-transform: uppercase;
}
.news_right .item .item_con .tit{
    font-size: 24px;
    line-height: 1.3;
    font-family: 'RajdhaniSemiBold';
    flex:1;
    margin-top: 10px;
    
}

.news_right .item:hover .item_con{
   padding:40px 45px;
}


/* public_message */

.public_message_con{
    border-radius: 30px;
    background: #fff;
    margin-top: 70px;
    padding:70px;
}
.public_message_con .cover{
    width: 40%;
    height: 500px;
    background: #f6f6f6;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.public_message_con .cover img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.public_message_con .page_contact2_form{
    background: transparent;
}
.public_message_con .page_contact2_form .input_box .input input,.public_message_con .page_contact2_form textarea{
    border:1px solid #ddd;
}


.footer_message_wrap{
    padding-top: 80px;
}
.footer_message{
    background: url("../images/message_bg.png") no-repeat right bottom 50px var(--theme-color);
    border-radius: 10px;
    padding: 50px;
}

.footer_message .tit{
    font-size:40px;
    font-family: 'RajdhaniSemiBold';
    color:#fff;
}

.footer_message .form .input_box{
    margin:0 -20px;
}
.footer_message .form .input{
    padding:0 20px 10px;
    flex:1;
}
.footer_message .form h4{
    font-family: 'RajdhaniSemiBold';
    color:#fff;
    margin-bottom: 6px;
}
.footer_message .form input,.footer_message .form textarea{
    border-radius: 200px;
    height:58px;
    outline: none;
    border: none;
    border: 1px solid #fff;
    font-size:16px;
    padding:15px 20px;
    color:#fff;
    width: 100%;
    line-height: 25px;
    border-radius: 0;
    background: transparent;
    margin-bottom: 10px;
    border-radius: 5px;
}
.footer_message .form textarea{
    height: 100px;
}

.footer_message .form button{
    border:none;
    outline: none;
    width:300px;
    height:50px;
    border-radius:5px;
    cursor: pointer;
    transition:all .4s;
    font-family: 'RajdhaniSemiBold';
    display: flex;
    color: #fff;
    background: transparent;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    border: 1px solid #fff;
    font-size: 20px;
    margin:20px auto 0;
}
.footer_message .form button:hover{
    background: #fff;
    color:var(--theme-color);
}


/* footer */

.footer{
    background:url("../images/footer_bg.jpg") no-repeat center;
    background-size: cover;
    padding-top: 70px;
}

.footer_menu{
    padding: 0 6% 50px;
}
.footer_menu_item{
    flex:1;
    padding-right: 3%;
}
.footer_menu_item.footer_menu_item_contact{
    flex: 1.5;
    padding-right: 5%;
}
.footer_menu_item .item_tit{
    font-size: 24px;
    font-family: 'RajdhaniSemiBold';
    color:var(--theme-color);
    line-height: 1;
    margin-bottom: 15px;
}
.footer_menu_item .item_con .item{
    margin-bottom: 6px;
}
.footer_menu_item .item_con h4{
    font-size: 18px;
    font-family: 'RajdhaniSemiBold';
    margin-bottom: 6px;
}
.footer_menu_item .item_con p{
    font-size: 18px;
    line-height: 1.3;
}
.footer_menu_item .item_con .btn{
    width: 210px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color:#fff;
    font-family: 'RajdhaniSemiBold';
    background: var(--theme-color);
    margin: 10px 0 30px;
    cursor: pointer;
    transition:all .4s;
}
.footer_menu_item .item_con .btn:hover{
    width: 195px;
    text-decoration: underline;
}

.footer_copyright_wrap{
    border-top: 1px solid rgba(47,56,139,.35);
}
.footer_copyright{
    display: flex;
    height: 70px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    
}
.footer_copyright a{
    margin-left:30px;
}
.footer_menu a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}
.footer_copyright a:hover{
    text-decoration: underline;
}

/* page_banner */

.page_banner{
    position: relative;
}
.page_banner .img img{
    width: 100%;
}
.page_banner_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.page_banner_con .info{
    width: 45%;
}
.page_banner_con .tit{
    font-size:60px;
    font-family: 'OrbitronBold';
    line-height: 1.2;
    color:var(--theme-color);
    text-transform: capitalize;
    color:#fff;
}
.page_banner_con .desc{
    margin:20px 0 50px;
    font-size: 18px;
}
.page_banner_con .pos{
    margin-top: 10px;
    position: absolute;
    bottom:30px;
    font-size: 16px;
}
.page_banner_con .pos a{
    padding: 0 3px;
}




#about_video_iframe{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999;
    display: none;
}
#about_video_iframe .close{
    position: absolute;
    top: -34px;
    right: -40px;
    color: #fff;
    cursor: pointer;
}
#about_video_iframe .close i{
    font-size:36px;
}
#about_video_iframe .close:hover{
    color:var(--theme-color);
}


.page_product_banner_con{
    background: url("../images/product_bg.jpg") no-repeat center;
    background-size:cover;
    padding: 60px 0;
}

.page_product_banner_con .content_img .info{
    flex:1;
    padding-right: 100px;
    min-width: 0;
}
.page_product_banner_con .content_img .info .tit{
    font-size: 40px;
    font-family: 'GothicB';
}
.page_product_banner_con .content_img .info .desc{
    padding-right: 5%;
    margin-top: 15px;
}
.page_product_banner_con .content_img .img{
    width: 39%;
}



.page_banner_menu{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.page_banner_menu .list{
    justify-content: center;
}
.page_banner_menu .list .item a{
    background: rgba(0,0,0,.6);
    height: 60px;
    border-left: 1px solid rgba(255,255,255,.2);
    padding:0 40px;
    display: flex;
    align-items: center;
    color:#fff;
    font-size:18px;
}
.page_banner_menu .list .item.cur a,.page_banner_menu .list .item:hover a{
    background: var(--subtheme-color);
}

.inner_pos_wrap{
    margin-top: 127px;
}

.inner_pos{
    height: 60px;
}
.inner_pos a:first-child{
    padding-left: 0;
}
.inner_pos a:hover{
    color:var(--theme-color);
}

/* pager_solution_show */

.page_solution_tit.about_tit_box1{
    padding: 50px 0 30px;
}

.pager_solution_show{
    font-size: 18px;
}
.page_case_study_wrap{
    padding-bottom: 60px;
}
.page_case_study{
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}
.page_case_study .item .img{
    border-radius: 10px;
    overflow: hidden;
}
.page_case_study .item .img img{
    width:100%;
}
.page_case_study .item .con{
    padding-top: 20px;
}
.page_case_study .item .con h4{
    font-size: 24px;
    font-family: 'GothicB';
    transition:all .4s;
}
.page_case_study .item .con p{
    margin-top: 10px;
    color:#666;
}
.page_case_study .item:hover .con h4{
    color:var(--theme-color);
}
.page_case_study.news_con .arrow{
    top: auto;
    bottom: 0;
}
.page_case_study.news_con .arrow .swiper-button-prev,.page_case_study.news_con .arrow .swiper-button-next{
    background: #fff;
}
.page_case_study.news_con .arrow .swiper-button-prev:hover,.page_case_study.news_con .arrow .swiper-button-next:hover{
    background: var(--theme-color);
}

/* page_suggested_products */

.page_suggested_products{
    margin: 0 -20px;
}
.page_suggested_products .item{
    width:25%;
    padding: 0 20px;
}
.page_suggested_products .item .img{
    border-radius: 10px;
    overflow: hidden;
}
.page_suggested_products .item .img img{
    width: 100%;
}
.page_suggested_products .item .con{
    padding-top:20px;
}
.page_suggested_products .item .con h4{
    font-size: 22px;
    font-family: 'GothicB';
    text-align: center;
}
.page_suggested_products .item .con .btns{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.page_suggested_products .item .con .btns a{
    width: 100px;
    height: 28px;
    border: 1px solid #333;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .4s;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'GothicB';
    margin: 0 10px;
}
.page_suggested_products .item .con .btns a i{
    margin-left: 5px;
}
.page_suggested_products .item .con .btns .btn1{
    border-color:var(--theme-color);
    color:var(--theme-color);
}
.page_suggested_products .item .con .btns a:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#333;
}

/* page_service_panel1 */

.page_service_panel1 .item_img{
    width: 46.875%;
}
.page_service_panel1 .item_img img{
    width: 100%;
    border-radius: 15px;
}
.page_service_panel1 .item_con{
    flex:1;
    min-width: 0;
    padding-left: 5%;
}
.page_service_panel1 .item_con .tit{
    font-size: 40px;
    font-family: 'GothicB';
}
.page_service_panel1 .item_con .desc{
    font-size: 18px;
    margin: 20px 0 50px;
}


/* page_service_panel2 */

.page_service_panel2{
    padding: 70px 0;
}
.page_service_panel2 .j_tit{
    font-size: 40px;
    font-family: 'GothicB';
    text-align: center;
    line-height: 1;
    margin: 0 -10px;
}
.page_service_panel2 .list{
    margin-top: 30px;
}
.page_service_panel2 .list .item{
    width: 33.333%;
    padding: 0 10px;
}
.page_service_panel2 .list .item_w{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding:40px;
    height: 100%;
}
.page_service_panel2 .list .item .img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 100px;
    background: var(--theme-color);
    padding: 15px 0 0 15px;
}
.page_service_panel2 .list .item .tit{
    padding:0 0 0 90px;
    font-family: 'GothicB';
    font-size: 28px;
}
.page_service_panel2 .list .item .desc{
    font-size: 18px;
    color:#666;
    margin-top: 20px;
}


/* page_service_panel3 */

.page_service_panel3.page_service_panel1 .item_con{
    padding: 0 5% 0 0;
}
.page_service_panel3.page_service_panel1 .item_con .desc h5{
    font-size: 24px;
    color:var(--theme-color);
    margin:0 0 10px;
    font-family: 'GothicB';
}
.page_service_panel4 .img_list{
    margin-top: 40px;
}
.page_service_panel4 .img_list .img{
    width: 47.5%;
}
.page_service_panel4 .img_list .img img{
    border-radius: 10px;
}
.page_service_panel4 .list{
    flex:1;
    min-width: 0;
    padding-left: 5%;
}
.page_service_panel4 .list .item{
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}
.page_service_panel4 .list .item .tit{
    cursor: pointer;
    transition:all .4s;
}
.page_service_panel4 .list .item .tit h4{
    font-size:22px;
    flex:1;
    min-width: 0;
    line-height: 1;
    padding-right: 20px;
    font-family: 'GothicB';
}
.page_service_panel4 .list .item .tit i{
    font-size:14px;
    line-height: 1;
    transform: rotate(45deg);
    transition:all .4s;
    color:#666;
}
.page_service_panel4 .list .item .desc{
    padding-top: 20px;
    font-size:18px;
    display: none;
}
.page_service_panel4 .list .item .tit.cur i{
    transform: rotate(0deg);
}
.page_service_panel4 .list .item .tit i:hover{
    color:var(--theme-color);
}
.page_service_panel4 .list .item:hover .tit{
    color:var(--theme-color);
}
.page_service_panel4 .btn{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* page_service_panel5 */

.page_service_panel5_list{

    height: 270px;
    overflow: hidden;
    padding-bottom: 40px;
    position: relative;
    margin-top: 30px;
}
.page_service_panel5_list .swiper-slide{
   text-align: center;
   font-size: 18px;
   background: #fff;
   height: calc((100% - 30px) / 2) !important;
   display: flex;
   justify-content: center;
   align-items: center;
}
.page_service_panel5_list .img{
    border:1px solid #ddd;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.page_service_panel5_list .img img{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.page_service_panel5_list .swiper-pagination-bullet{
    width: 7px;
    height: 7px;
}
.page_service_panel5_list .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--theme-color);
}

/* page_service_panel6 */

.page_service_panel6_list{
    margin:30px -15px 0;
}
.page_service_panel6_list .item{
    padding: 15px;
    width: 50%;
}
.page_service_panel6_list .item a{
    background: #f2f2f2;
    border-radius: 5px;
    padding: 30px 50px;
    height: 100%;
    transition:all .4s;
}
.page_service_panel6_list .item .tit{
    flex:1;
    font-size: 18px;
    font-family:'GothicB';
    padding: 0 20px;
}
.page_service_panel6_list .item .btn{
    flex-direction: column;
    transition:all .4s;
}
.page_service_panel6_list .item .btn i{
    font-size: 18px;
}
.page_service_panel6_list .item .btn span{
    font-size: 14px;
    line-height: 1;
    font-family: 'GothicB';
}
.page_service_panel6_list .item a:hover{
    box-shadow: 0 3px 15px rgba(0,0,0,.1);
}
.page_service_panel6_list .item:hover .btn{
    color:var(--theme-color);
}

.page_service_panel6 .j_btn_style1{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page_download_list.page_service_panel6_list{
    margin-top: 0;
}
.page_download_list.page_service_panel6_list .item{
    width: 100%;
}
.page_download_list .item .time{
    padding-right: 20%;
}

/* page_oness_panel1 */

.page_oness_panel1{
    font-size: 18px;
    color:#666;
}
.page_oness_panel2{
    padding:30px 100px 0;
    margin: 0 -110px;
}
.page_oness_panel2 .item{
    width: 33.333%;
    padding:30px 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.page_oness_panel2 .item:after{
    position: absolute;
}
.page_oness_panel2 .item .img{
    border-radius: 50%;
    width: 180px;
    height: 180px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.page_oness_panel2 .item .img .num{
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--theme-color);
    font-family: 'GothicBi';
    font-size: 24px;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,50%);
}
.page_oness_panel2 .item .tit{
    font-size: 18px;
    font-family: 'GothicB';
    margin-top: 40px;
    text-align: center;
}

/* page_oness_panel3 */

.page_oness_panel3{
    padding-top:50px;
}
.page_oness_panel3 .panel_img{
    width:45%;
}
.page_oness_panel3 .panel_img img{
    border-radius: 10px;
}
.page_oness_panel3 .panel_con{
    flex:1;
    min-width:0;
    padding-left: 5%;
}
.page_oness_panel3 .panel_con .tit{
    font-size: 24px;
    font-family: 'GothicB';
    margin-bottom:20px;
}
.page_oness_panel3 .panel_con .con{
    font-size: 18px;
}

/* page_product_menu */



.page_product_menu{
    background: #eff0f6;
    padding: 20px;
    border-radius:10px;
    width:290px;
}

.page_product_menu .menu_tit{
    font-size:24px;
    font-family: 'RajdhaniSemiBold';
    text-transform: capitalize;
    margin-bottom: 10px;
    border-bottom: 2px solid #2f388b;
}
.page_product_menu .menu_list .item{
    border-bottom: 1px solid #ddd;
    padding:14px 0;
}
.page_product_menu .menu_list .item:last-child{
    border-bottom: none;
}
.page_product_menu .menu_list .item .hd{
    margin-bottom: 5px;
}
.page_product_menu .menu_list .item .hd a{
    flex:1;
    min-width: 0;
    font-family: 'RajdhaniSemiBold';
}

.page_product_menu .menu_list .item .hd i{
    cursor: pointer;
    font-size:12px;
    transform: rotate(180deg);
    line-height: 1;
    font-weight: bold;
    transition:all .4s;
}

.page_product_menu .menu_list .item .bd{
    background: #fff;
    border-radius: 5px;
    padding: 16px;
    display: none;
}
.page_product_menu .menu_list .item .bd a{
    font-size:16px;
    padding: 5px 0;
    transition:all .5s;
    line-height: 1.2;
    position: relative;
}
.page_product_menu .menu_list .item .bd a:after{
    width:0;
    height: 1px;
    display: block;
    position: absolute;
    content:'';
    left: 0;
    bottom: 0;
    background: var(--theme-color);
    transition:all .4s;
}
.page_product_menu .menu_list .item .bd a:hover{
    padding-left:6px;
}
.page_product_menu .menu_list .item .bd a:hover:after{
    width: 100%;
}
.page_product_menu .menu_list .item .hd.cur i,.page_product_menu .menu_list .item .hd i:hover{
    transform: rotate(0deg);
    color:var(--theme-color);
}

.page_product_menu .menu_list .item .hd.cur a,.page_product_menu .menu_list .item .hd a:hover,.page_product_menu .menu_list .item .bd a:hover{
    color:var(--theme-color);
}
.page_product_menu .menu_list .item .hd.cur a:before,.page_product_menu .menu_list .item .hd a:hover:before{
    background: var(--theme-color);
}

/* page_product_index_menu */

.page_product_index{
    font-size: 18px;
}
.page_product_index_menu{
    margin: -25px;
    padding-top: 60px;
}
.page_product_index_menu .item{
    padding: 25px;
    width: 33.333%;
}
.page_product_index_menu .item:last-child{
    display: none;
}
.page_product_index_menu .item a{
    display: block;
    background: #f1f1f1;
    border-radius: 5px;
    height: 100%;
    overflow: hidden;
}
.page_product_index_menu .item .item_img img{
    width: 100%;
}
.page_product_index_menu .item .item_con{
    padding: 35px;
}
.page_product_index_menu .item .item_con .desc{
    font-size: 18px;
}
.page_product_index_menu .item .item_con .more{
    width: 90px;
    height: 28px;
    border:1px solid #333;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: 'GothicB';
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 20px;
    transition:all .4s;
}
.page_product_index_menu .item .item_con .more i{
    margin-left: 6px;
    font-weight: bold;
}

.page_stage_panel2 .content{
    flex:1;
    min-width: 1;
    padding-right: 4%;
    font-size: 18px;
}
.page_product_index_menu .item:hover .item_con .more{
    border-color: var(--theme-color);
    background: var(--theme-color);
}

.page_stage_panel3{
    justify-content: space-around;
}
.page_stage_panel3 .item{
    padding: 0 15px;
}

.page_stage_panel4.j_btn_style1{
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.page_stage_panel4.j_btn_style1 a{
    width: 245px;
}




/* page_cases_list */

.page_cases_list{
    padding-top: 50px;
    margin:-16px;
}
.page_cases_list .item{
    width: 25%;
    display: block;
    padding: 16px;
}
.page_cases_list .item a{
    display: block;
    background: #eff0f6;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.page_cases_list .item .item_img img{
    width: 100%;
}
.page_cases_list .item .item_con{
    padding:25px;
}
.page_cases_list .item .item_con .tit{
    font-size: 22px;
    font-family: 'RajdhaniSemiBold';
    transition:all .4s;
    line-height: 1.1;
    height: 72px;
}
.page_cases_list .item .item_con .desc{
    font-size: 18px;
    line-height: 1.4;
    margin-top: 6px;
}
.page_cases_list .item:hover .item_con .tit{
    color:var(--theme-color);
}


/* product_model_select */

.product_model_select{
    margin: 0 100px;
    background: #f1f1f1;
    padding: 25px 60px;
    margin-bottom: 40px;
    border-radius: 5px;
}
.product_model_select .layui-form-select dl dd.layui-this{
    background: var(--theme-color);
}
.product_model_select .list{
    width: 75%;
    display: flex;
}
.product_model_select .list .item{
    width: 33.333%;
    padding-right: 20px;
}
/*.product_model_select .list .item select{*/
/*    height: 45px;*/
/*    width: 100%;*/
/*    border-radius: 5px;*/
/*    border: none;*/
/*    padding:0 0 0 10px;*/
/*    text-transform: uppercase;*/
/*    outline: none;*/
/*}*/
.product_model_select .btn{
    flex:1;
    min-width: 0;
    margin-left: 20px;
    background: #333;
    font-family: 'GothicB';
    text-transform: uppercase;
    color:#fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition:all .3s;
}
.product_model_select .btn:hover{
    background: var(--theme-color);
    color:#333;
}


/* page_product_list */


.page_product{
    padding-top: 50px;
}
.page_product_list{
    flex:1;
    min-width: 0;
    padding-left: 40px;
}
.page_product_list .list{
    margin:-15px;
}
.page_product_list .item{
    width:50%;
    padding: 15px;
}
.page_product_list .item a{
    display: block;
    border: 1px solid #ddd;
    border-radius: 10px;
    height: 100%;
    transition:all .4s;
    overflow: hidden;
}

.page_product_list .item .tit{
    font-family: 'RajdhaniSemiBold';
    transition:all .4s;
    line-height: 1.3;
    background: var(--theme-color);
    padding: 24px;
    color:#fff;
    height: 100px;
}
.page_product_list .item .desc_more{
    padding: 24px;
}
.page_product_list .item .desc{
    font-size: 16px;
    
}
.page_product_list .item .more{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff0f6;
    border-radius: 50%;
    margin-top: 10px;
    color:var(--theme-color);
    transition:all .4s;
}
.page_product_list .item .more i{
    font-size: 12px;
}

.page_product_list .item a:hover{
    border-color: var(--theme-color);
}
.page_product_list .item a:hover .more{
    background: var(--theme-color);
    color:#fff;
}


/* product_detail */


/* public_download */

.public_download .page_support_download_list{
    padding-bottom: 40px;
}
.public_download .page_support_download_list .list_item{
    padding-top: 0;
}
.public_download .page_support_download_list .list_item .list_wrap{
    display: block;
    padding-top: 0;
}
.public_download .page_support_download_list .list_item .list{
    padding-top: 0;
}

/* public_faq */

.public_faq{
    padding-bottom: 80px;
}
.public_faq .page_support_faq_list .list{
    padding-top: 0;
}



.page_products_public_more{
    display: inline-block;
    height: 40px;
    background:var(--theme-color);
    margin:40px 0 0;
    padding: 0 20px;
    line-height: 40px;
    color:#fff;
    transition:all .4s;
    border-radius: 100px;
    text-transform: uppercase;
    font-size:14px;
}
.page_products_public_more:hover{
    background: #333;
}




/* page_public_rml_series_retrieve */

.page_public_rml_series_retrieve{
    position: relative;
}
.page_public_rml_series_retrieve .j_bg{
    position: relative;
    z-index: 1;
}
.page_public_rml_series_retrieve .j_bg1{
    background: #999;
    height: 500px;
}
.page_public_rml_series_retrieve .j_bg:after{
    content:'';
    display: block;
    width: 100%;
    height: 100%;
    z-index:2;
    background: rgba(0,0,0,.2);
    position: absolute;
    left: 0;
    top: 0;
}
.page_public_rml_series_retrieve .j_bg img{
    width: 100%;
}
.page_public_rml_series_retrieve .j_con{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color:#fff;
    z-index: 3;
}
.page_public_rml_series_retrieve .j_con .txt{
    font-size:24px;
}
.page_public_rml_series_retrieve .j_con .tit{
    font-size:54px;
    font-family: 'RobotoMedium';
    margin:20px 0 50px;
}
.page_public_rml_series_retrieve .j_con .btn{
    width: 150px;
    height: 44px;
    background: var(--theme-color);
    color:#fff;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:14px;
    text-transform: uppercase;
    transition:all .4s;
}
.page_public_rml_series_retrieve .j_con .btn:hover{
    opacity: .7;
}


.inner_tit_box1{
    padding:90px 0 20px;
}
.inner_tit_box1 .tit h4{
    color:var(--theme-color);
    font-size: 40px;
    font-family: 'RajdhaniSemiBold';
    line-height: 1;
}

/* page_about_panel1 */

.page_about_panel1 .content{
    
}


/* page_about_panel2_wrap */

.page_about_panel2_list{
    margin: 0 -25px;
}
.page_about_panel2_list .item_w{
    padding: 0 25px;
    width: 33.333%;
}
.page_about_panel2_list .item{
    background: #eff0f6;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.page_about_panel2_list .item .item_con{
    padding: 33px;
}
.page_about_panel2_list .item .item_con .tit{
    font-size: 30px;
    font-family: 'RajdhaniSemiBold';
    line-height: 1;
    height: 60px;
}
.page_about_panel2_list .item .item_con .desc{
    font-size: 18px;
}

/* page_about_panel3_list */

.page_about_panel3_list{
    margin: 0 -30px;
}
.page_about_panel3_list .item_w{
    padding: 0 30px;
    width:50%;
}
.page_about_panel3_list .item{
    background: #eff0f6;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: block;
}
.page_about_panel3_list .item .item_con{
    padding: 35px;
    transition:all .4s;
}
.page_about_panel3_list .item .item_con .tit{
    font-size: 30px;
    font-family: 'RajdhaniSemiBold';
    line-height: 1;
    margin-bottom:10px;
    transition:all .4s;
}
.page_about_panel3_list .item .item_con .desc{
    font-size: 18px;
    transition:all .4s;
}
.page_about_panel3_list .item:hover .item_con{
    background:var(--theme-color);
}
.page_about_panel3_list .item:hover .item_con .tit{
    color:#fff;
}
.page_about_panel3_list .item:hover .item_con .desc{
    color:#fff;
}

/* page_about_panel4 */

.page_about_panel4_wrap{
    background: url("../images/p_bg1.jpg") no-repeat center;
    background-size: cover;
    padding: 90px 0;
}

.page_about_panel4_w{
    display: flex;
    justify-content: flex-end;
}
.page_about_panel4{
    width: 45%;
    background:#fff;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    padding: 45px;
    border-radius: 10px;
}
.page_about_panel4 .inner_tit_box1{
    padding-top: 0;
}
.page_about_panel4_list .item{
    margin-bottom: 15px;
}
.page_about_panel4_list .item:last-child{
    margin-bottom: 0;
}
.page_about_panel4_list .item .item_ico{
    color:var(--theme-color);
    line-height: 1;
}
.page_about_panel4_list .item .item_con{
    flex:1;
    padding-left: 5px;
    min-width: 0;
}
.page_about_panel4_list .item .item_con .tit{
    font-size: 24px;
    font-family: 'RajdhaniSemiBold';
    line-height: 1;
    margin-bottom: 6px;
}
.page_about_panel4_list .item .item_con .desc{
    font-size: 18px;
    line-height: 1.4;
}


/* page_about_panel5 */

.page_about_panel5_flex{
    background: #eff0f6;
    border-radius: 10px;
    overflow: hidden;
}
.page_about_panel5_list{
    flex:1;
    min-width: 0;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.page_about_panel5_list .item .item_img{
    width: 74px;
    height: 74px;
    border-radius: 10px;
    background: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_about_panel5_list .item .item_con{
    flex:1;
    min-width: 0;
    padding-left: 30px;
}
.page_about_panel5_list .item .item_con .tit{
    font-size: 24px;
    font-family: 'RajdhaniSemiBold';
    margin-bottom: 10px;
    line-height: 1.2;
}
.page_about_panel5_list .item .item_con .desc{
    font-size: 18px;
}
.page_about_panel5_img{
    width: 50%;
}


/* page_about_panel6_list */

.page_about_panel6_list{
    margin: -10px;
}
.page_about_panel6_list .list_hd,.page_about_panel6_list .list_bd{
    padding:10px;
    width: 50%;
}
.page_about_panel6_list .list_hd .item{
    display: none;
    
}
.page_about_panel6_list .list_hd .item:first-child{
    display: block;
}
.page_about_panel6_list .list_bd .item:first-child{
    display: none;
}
.page_about_panel6_list .item{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.page_about_panel6_list .item .item_con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 55px;
}
.page_about_panel6_list .item .item_con .desc{
    font-size: 18px;
    color:#fff;
}
.page_about_panel6_list .list_bd{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.page_vision_mission_wrap{
    background: url("../images/standard_of_behavior_bg.jpg") no-repeat center;
    background-size: 100% 100%;
}
.page_vision_mission_tit{
    font-size: 40px;
    font-family: 'GothicB';
    color:#fff;
    text-align: center;
    padding-top: 50px;
}
.page_vision_mission_list{
    position: relative;
    overflow: hidden;
    padding:30px 0 80px;
}
.page_vision_mission_list .item{
    padding: 50px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 15px;
    height: 100%;
    transition:all .4s;
}
.page_vision_mission_list .item .num{
    font-size: 60px;
    font-family: 'GothicB';
    color:#999;
    line-height: 1;
    font-style: italic;
}
.page_vision_mission_list .item .tit{
    font-size: 30px;
    font-family: 'GothicB';
    color:var(--theme-color);
    padding: 20px 0 10px;
}
.page_vision_mission_list .item .desc{
    font-size: 18px;
    color:#fff;
    min-height: 145px;
    transition:all .4s;
}

.page_vision_mission_list.news_con .arrow{
    top: auto;
    bottom: 0;
    width: 100%;
    justify-content: center;
}
.page_vision_mission_list .item:hover{
    background: #fff;
}
.page_vision_mission_list .item:hover .desc{
    color:#666;
}


/* public_recommended_products */

.public_recommended_products{
    padding:30px 0 50px;
}
.public_recommended_products_list .list{
    gap:13px;
    padding-top:10px;
}
.public_recommended_products_list .list .item{
    display: block;
    width: 25%;
    background: #fff;
    padding:30px 40px 50px;
    transition:all .4s;
    border-radius: 10px;
}
.public_recommended_products_list .list .item h4{
    font-size:20px;
    font-family: 'RobotoMedium';
    margin-top: 20px;
    text-align: center;
    transition:all .4s;
}
.public_recommended_products_list .list .item:hover{
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}
.public_recommended_products_list .list .item:hover h4{
    color:var(--theme-color);
}



/* public_cases_swiper */

.public_cases_swiper{
    padding-bottom: 100px;
    position: relative;
}
.public_cases_swiper .item{
    display: block;    
}
.public_cases_swiper .item .item_img{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.public_cases_swiper .item .item_img .img img{
    width: 100%;
}
.public_cases_swiper .item .item_img .con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding:80px 40px 30px;
    background: linear-gradient(to top,rgba(0,0,0,.7),transparent);
    color:#fff;
}
.public_cases_swiper .item .item_img .con h4{
    font-size:24px;
    margin-bottom: 5px;
}
.public_cases_swiper .item .item_img .con p{
    font-family: 'RobotoLight';
}
.public_cases_swiper .item .item_btn{
    justify-content: flex-end;
    margin-top: 32px;
}
.public_cases_swiper .item .item_btn .btn{
    width: 140px;
    height: 40px;
    background: #333;
    border-radius: 100px;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .4s;
}
.public_cases_swiper .item .item_btn .btn:hover{
    background: var(--theme-color);
}
.public_cases_swiper .arrow{
    display: flex;
    position: absolute;
    right: 0;
    top:-90px;
    bottom: 100px;
}
.public_cases_swiper .swiper-button-next,.public_cases_swiper .swiper-button-prev{
    position: static;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    justify-content:center;
    align-items: center;
    margin:0;
    opacity: 1;
    color:var(--theme-color);
    margin-right:10px;
    transition:all .3s;
    background: #fff;
}
.public_cases_swiper .swiper-button-next:after,.public_cases_swiper .swiper-button-prev:after{
    font-size:18px;
    font-weight: bold;
}
.public_cases_swiper .swiper-button-next:hover,.public_cases_swiper .swiper-button-prev:hover{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}



/* product_detail */

.pd_detail_hd .pic{
    width: 420px;
    height: 420px;
    border-radius: 5px;
    overflow: hidden;
}
.pd_detail_hd .info{
    flex:1;
    min-width: 0;
    padding-left: 8%;
    padding-top: 10px;
}
.pd_detail_hd .info h1{
    font-size: 40px;
    font-family: 'RajdhaniSemiBold';
    line-height: 1.1;
    color:var(--theme-color);
    margin-bottom:40px;
}
.pd_detail_hd .info h5{
    font-size: 22px;
    font-family: 'RajdhaniSemiBold';
    margin-bottom: 5px;
}
.pd_detail_hd .info .desc{
    line-height: 1.4;
}
.pd_detail_hd .info a.btn{
    width: 180px;
    height: 50px;
    border-radius: 100px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    color:#fff;
    font-family: 'RajdhaniSemiBold';
    transition:all .4s;
}
.pd_detail_hd .info a.btn i{
    font-size: 12px;
    width: 0;
    opacity:0;
    margin-left: 5px;
}
.pd_detail_hd .info a.btn:hover i{
    width: auto;
    opacity: 1;
}

.pd_detail_bd{
    margin-top: 40px;
}
.pd_detail_bd .j_tit{
    font-size: 30px;
    font-family: 'RajdhaniSemiBold';
    color:var(--theme-color);
    margin-bottom:30px;
}
.pd_detail_bd .j_tit:after{
    content:'';
    width: 70px;
    height: 1px;
    background: var(--theme-color);
    display: block;
    margin-top: 5px;
}

.pd_detail_intro__tit{
    font-size: 40px;
    font-family: 'RajdhaniSemiBold';
}
.pd_detail_related_products.page_product_list{
    padding-left: 0;
}
.pd_detail_related_products.page_product_list .item{
    width: 33.333%;
}

/* page_related_products */

.page_related_products{
    padding-bottom: 80px;
}
.page_related_products .list{
    margin:-20px;
}
.page_related_products .list .item{
    padding: 20px;
    width: 33.333%;
}
.page_related_products .list .item .img{
    background: #fff;
    padding: 25px;
    display: flex;
    justify-content: center;
    border-radius:10px;
    overflow: hidden;
}
.page_related_products .list .item .con{
    margin-top: 20px;
}
.page_related_products .list .item .con h4{
    font-size:22px;
    font-family: 'PoppinsSemiBold';
    color:#333;
    margin-bottom: 10px;
}




/* product_detail */

.j_pd_detail{
    background: #e4e7ea;
    padding:80px 0 50px;
}
.j_pd_detail_con{
   padding-top: 60px;
}
.j_pd_detail_hd_img{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.j_pd_detail_hd .infos{
    flex: 1;
    padding:0 0 0 5%;
    min-width: 0;
}

.j_pd_detail_hd .infos h1{
    font-size:48px;
    line-height: 1.2;
    color:var(--theme-color);
    font-family: 'RobotoBold';
}

.j_pd_detail_hd .infos .desc{
    font-size:18px;
    margin:35px 0 50px;
}
.j_pd_detail_hd .infos .desc p{
    padding-left: 25px;
    position: relative;
    margin-bottom: 6px;
}
.j_pd_detail_hd .infos .desc p:before{
    content:'';
    display: block;
    width: 13px;
    height: 8px;
    background: url("../images/arrow.png") no-repeat;
    position: absolute;
    left: 0;
    top: 10px;
}

.j_pd_detail_hd .infos .list{
    display: flex;
    margin:0 -16px;
}
.j_pd_detail_hd .infos .list .item{
    padding:0 16px;
}
.j_pd_detail_hd .infos .list .item .img{
    border-radius: 50%;
    border:2px solid var(--theme-color);
    overflow: hidden;
}


.j_pd_detail_hd .infos .btns{
    margin-top:100px;
}
.j_pd_detail_hd .infos .btns .btn{
    display: flex;
    align-items: center;
    height:45px;
    width: 240px;
    background: var(--subtheme-color);
    color:#fff;
    justify-content: center;
    text-transform: capitalize;
    border-radius: 100px;
    transition:all .4s;
    font-family: 'RobotoBold';
}
.j_pd_detail_hd .infos .btns .btn i{
    color:#fff;
    font-size:20px;
    margin-right: 8px;
    transition:all .3s;
}
.j_pd_detail_hd .infos .btns .btn:hover{
    background: var(--theme-color);
}


/* pdd_tit_box */

.pdd_tit_box{
    text-align: center;
    padding: 60px 0 30px;
}
.pdd_tit_box .tit{
    font-size:45px;
    font-family: 'RobotoMedium';
    text-transform: uppercase;
    line-height: 1.2;
}
.pdd_tit_box .desc{
    font-size:18px;
}
.j_pd_detail_introduction .desc{
    font-size:18px;
}
.j_pd_detail_introduction .desc p{
    margin-bottom: 6px;
}
.j_pd_detail_introduction .list{
    position: relative;
    overflow: hidden;
    padding:80px 0 100px;
}
.j_pd_detail_introduction .list .item{
    border-radius: 15px;
    overflow: hidden;
}
.j_pd_detail_introduction .list .item .img img{
    width: 100%;
}
.j_pd_detail_introduction .list .arrow{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.j_pd_detail_introduction .list .swiper-button-next,.j_pd_detail_introduction .list .swiper-button-prev{
    position: initial;
    height:40px;
    width: 40px;
    border-radius: 50%;
    background: #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    margin-top: 0;
    margin:0 10px;
}
.j_pd_detail_introduction .list .swiper-button-next:after,.j_pd_detail_introduction .list .swiper-button-prev:after{
    font-size:18px;
    font-weight: bold;
}
.j_pd_detail_introduction .list .swiper-button-next:hover, .j_pd_detail_introduction .list .swiper-button-prev:hover{
    background: var(--theme-color);
}




/* page_support_download_list */

.page_support_download_list{
    padding-bottom: 80px;
}
.page_support_download_list .list_item{
    padding:50px 0;
    border-bottom: 1px solid #666;
}
.page_support_download_list .list_item .menu{
    line-height: 1;
    transition:all .4s;
    cursor: pointer;
}
.page_support_download_list .list_item .menu h4{
    font-size:54px;
    font-family: 'RobotoMedium';
    flex:1;
    line-height: 1;
}
.page_support_download_list .list_item .menu i{
    font-size:36px;
    transform: rotate(45deg);
    transition:all .4s;
}
.page_support_download_list .list_item .menu:hover{
    color:var(--theme-color);
}
.page_support_download_list .list_item .menu.cur i{
    transform: rotate(0deg);
}
.page_support_download_list .list_item .list_wrap{
    padding-top: 20px;
    display: none;
}
.page_support_download_list .list_item .list{
    margin:-12px;
    padding-top: 20px;
}
.page_support_download_list .list_item .list a{
    width: 33.333%;
    padding:12px;
}
.page_support_download_list .list_item .list .item{
    background: #fff;
    padding:30px 40px 20px;
    transition:all .4s;
    border-radius: 10px;
}
.page_support_download_list .list_item .list .item h4{
    font-size:24px;
    line-height: 1.3;
    height: 94px;
}
.page_support_download_list .list_item .list .item .name_btn{
    margin-top: 30px;
}
.page_support_download_list .list_item .list .item .name_btn .name{
    flex:1;
    font-size:14px;
}
.page_support_download_list .list_item .list .item .name_btn i{
    font-size:30px;
}
.page_support_download_list .list_item .list .item:hover{
    background: var(--theme-color);
    color:#fff;
}


/* page_support_cases_list */

.page_support_cases_list{
    padding-bottom:100px;
}
.page_support_cases_list .list{
    margin:-12px;
}
.page_support_cases_list .list a{
    width: 33.333%;
    padding:12px;
}
.page_support_cases_list .list .item .item_img{
    border-radius: 10px;
    overflow: hidden;
}
.page_support_cases_list .list .item .item_con{
    padding:20px 0;
}
.page_support_cases_list .list .item .item_con .time{
    color:#666;
    font-size:14px;
    line-height: 1;
}
.page_support_cases_list .list .item .item_con .tit{
    font-size:20px;
    line-height: 1.4;
    margin-top: 10px;
    height: 56px;
}
.page_support_cases_list .list .item .item_con .tag{
    height: 32px;
    border:1px solid #666;
    padding:0 15px;
    display: inline-block;
    border-radius: 100px;
    margin: 10px 10px 0 0;
    font-size:14px;
    transition:all .4s;
    line-height: 30px;
}
.page_support_cases_list .list .item:hover .item_con .tit{
    color:var(--theme-color);
}
.page_support_cases_list .list .item .item_con .tag:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}


/* page_support_faq */

.page_support_faq{
    padding:70px 0 100px;
}
.page_support_faq_menu{
    justify-content: center;
    
    border-bottom: 1px solid #666;
}
.page_support_faq_menu .item{
    font-size:20px;
    margin: 0 36px;
    padding-bottom: 20px;
    cursor: pointer;
    font-family:'RobotoMedium';
    position: relative;
}
.page_support_faq_menu .item:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scale(0);
    width: 100%;
    height: 5px;
    background: var(--theme-color);
    border-radius: 100px;
    transition:all .4s;
}
.page_support_faq_menu .item.cur:after,.page_support_faq_menu .item:hover:after{
    transform: scale(1);
}

.page_support_faq_list .list{
    display: none;
    padding-top: 15px;
}
.page_support_faq_list .list:first-child{
    display: block;
}
.page_support_faq_list .list .item{
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}
.page_support_faq_list .list .item .tit{
    cursor: pointer;
    transition:all .4s;
}
.page_support_faq_list .list .item .tit h4{
    font-size:24px;
    flex:1;
    min-width: 0;
    line-height: 1;
    padding-right: 20px;
}
.page_support_faq_list .list .item .tit i{
    font-size:30px;
    line-height: 1;
    transform: rotate(45deg);
    transition:all .4s;
}
.page_support_faq_list .list .item .desc{
    padding-top: 20px;
    font-size:18px;
    display: none;
}
.page_support_faq_list .list .item .tit.cur i{
    transform: rotate(0deg);
}
.page_support_faq_list .list .item:hover .tit{
    color:var(--theme-color);
}



/* page_menu_public */

.page_menu_public{
    margin:80px 0 40px;
    justify-content: center;
}
.page_menu_public .item{
    margin-right: 20px;
}
.page_menu_public .item a{
    display: block;
    height:50px;
    line-height:48px;
    border:1px solid #ccc;
    padding: 0 20px;
    border-radius: 10px;
    font-size:18px;
    font-family: 'GothicB';
    transition:all .4s;
}
.page_menu_public .item a:hover{
    border-color: var(--theme-color);
    color:var(--theme-color);
}
.page_menu_public .item.all a,.page_menu_public .item.cur a{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}

/* page_news_list */

.page_news_list{
    flex:1;
    min-width: 0;
    padding-right: 40px;
}
.page_news_list .item{
    background: #eff0f6;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.page_news_list .item .item_img{
    width:210px;
    border-radius: 10px;
    overflow: hidden;
}
.page_news_list .item .item_img img{
    width: 100%;
}
.page_news_list .item .item_con{
    padding-left: 30px;
    flex:1;
    min-width: 0;
}
.page_news_list .item .item_con .time{
    font-size: 16px;
    color:var(--theme-color);
}
.page_news_list .item .item_con .tit{
    font-size: 22px;
    font-family: 'RajdhaniSemiBold';
    margin-bottom: 8px;
}
.page_news_list .item .item_con .desc{
    font-size: 18px;
    line-height: 1.4;
    padding-right: 12px;
    flex:1;
    min-width: 0;
}
.page_news_list .item .item_con .desc_more{
    align-items: flex-end;
}
.page_news_list .item .item_con .desc_more .more{
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    color:var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .4s;
}
.page_news_list .item .item_con .desc_more .more i{
    font-size: 14px;
}
.page_news_list .item:hover .item_con .tit{
    color:var(--theme-color);
}
.page_news_list .item:hover .item_con .desc_more .more{
    background: var(--theme-color);
    color:#fff;
}

.page_news_right{
    width: 350px;
}
.page_news_right .panel1{
    background: #eff0f6;
    border-radius: 10px;
    padding: 23px;
}
.page_news_right .panel1 h4{
    font-size: 24px;
    font-family: 'RajdhaniSemiBold';
    line-height: 1;
    margin-bottom: 5px;
}
.page_news_right .panel1 p{
    font-size: 18px;
    line-height: 1.3;
}
.page_news_right .panel1 a{
    width: 220px;
    height: 45px;
    border-radius: 5px;
    background: var(--theme-color);
    font-size: 16px;
    font-family: 'RajdhaniSemiBold';
    color:#fff;
    display: block;
    margin: 12px auto 0;
    text-align: center;
    line-height: 45px;
}
.page_news_right .panel2,.page_news_right .panel3{
    background: #eff0f6;
    border-radius: 10px;
    margin: 30px 0;
    overflow: hidden;
}
.inner_news_tit_box1{
    height: 50px;
    background: var(--theme-color);
    font-size: 24px;
    font-family:'RajdhaniSemiBold';
    text-transform: uppercase;
    line-height: 50px;
    padding-left: 24px;
    color:#fff;
}
.page_news_right .panel2 .list{
    padding: 25px;
}
.page_news_right .panel2 .list .item{
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'RajdhaniSemiBold';
    transition:all .4s;
}
.page_news_right .panel2 .list .item:last-child{
    margin-bottom: 0;
}
.page_news_right .panel2 .list .item:hover{
    color:var(--theme-color);
    padding-left: 10px;
}
.page_news_right .panel3 .list .item{
    padding:15px 25px;
    display: block;
    border-bottom: 1px solid rgba(47,56,139,.35);
    transition:all .4s;
}
.page_news_right .panel3 .list .item:last-child{
    border-bottom: none;
}
.page_news_right .panel3 .list .item .time{
    font-size: 16px;
    margin-bottom: 6px;
}
.page_news_right .panel3 .list .item .tit{
    line-height: 1.4;
    font-size: 18px;
    font-family: 'RajdhaniSemiBold';
}
.page_news_right .panel3 .list .item:hover{
    padding-top: 20px;
}
.page_news_right .panel3 .list .item:hover .tit{
    color:var(--theme-color);
}

.no_banner_pos{
    padding:20px 0 0;
}


/* page_news_detail */



.page_news_detail{
    
}

.page_news_detail_hd{
    flex:1;
    min-width: 0;
    padding-right: 65px;
}

.page_news_detail_hd .hd_right{
    width: 45%;
}
.page_news_detail_hd .hd_right img{
    width: 100%;
    border-radius: 10px;
}
.page_news_detail_hd h1{
    font-size:50px;
    font-family: 'RajdhaniSemiBold';
    line-height: 1.2;
    font-weight: normal;
    color:#333;
}

.pt0{
    padding-top: 0;
}

.page_news_detail_hd .time{
    display: flex;
    align-items: center;
    font-size: 15px;
    font-family: 'GothicB';
    color:#888;
    margin:20px 0;
}
.page_news_detail_hd .share{
    
}
.page_news_detail_hd .share h4{
    margin-right: 6px;
    color:#888;
    font-size: 15px;
}

.page_news_detail_hd .content{
    padding:70px 0 20px;
    min-height: 20vh;
    font-size:18px;
}




/* page_certificates */

.page_certificates{
    
}

.page_certificates_tit{
    
}
.page_certificates_tit .tit{
    font-size:40px;
    font-family: 'GothicB';
    margin-bottom:20px;
    line-height: 1;
}
.page_certificates_tit .con{
    font-size:18px;
}
.page_certificates_tit .desc{
    font-size: 28px;
    margin-top: 10px;
}

.page_certificates_list_tit{
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1;
    font-family: 'GothicB';
}
.page_certificates_list{
    margin:-20px -45px;
}
.page_certificates_list .item{
    padding:20px 45px;
    width: 20%;
    cursor: pointer;
}
.page_certificates_list .item .img{
    border:1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}
.page_certificates_list .item .img img{
    width: 100%;
}
.page_certificates_list .item .tit{
    font-size: 18px;
    font-family: 'GothicB';
    text-align: center;
    margin-top: 10px;
}
.page_certificates_list .item:hover .img{
    border-color:var(--theme-color);
}
.page_certificates_list .item:hover .tit{
    color:var(--theme-color);
}

.modelTost {
	display: none;
	background: rgba(0, 0, 0, .5);
	z-index: 9999;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

.modelTostChile {
	/*width:550px;*/
	width: 800px;
	height: 86vh;
	background-color: #fff;
	position: absolute;
	top: 7vh;
	left: 50%;
	transform: translate(-50%,0);
	overflow: hidden;
}
.modelTostChile .swiper-wrapper{
    align-items: center;
}
@media screen and ( max-width: 992px){
    .modelTostChile{
        width: 90%;
    }
}
.modelTostChile p {
	font-size:18px;
	padding: 3%;
	font-family: 'PoppinsSemiBold';
	height: 90px;
}
.modelTostChile .swiper-horizontal{
    height: calc(100% - 90px);
}
.modelClose {
	float: right;
	cursor: pointer;
	font-size:36px;
	line-height: 1;
}

.modelTostChile .swiper-slide {
	text-align: center;
    align-items: center;
    display: flex;
    padding:0 20px;
}

.modelTostChile .swiper-slide img {
	height: 100%;
	text-align: center;
	margin:auto;
	padding-bottom: 3%;
	object-fit: contain;
}
.modelTostChile .swiper-button-next,.modelTostChile .swiper-button-prev{
    color:#fff;
    width: 50px;
    height: 50px;
    border-radius:3px;
    background:#999;
    transition: all .5s;
}
.modelTostChile .swiper-button-next:after,.modelTostChile .swiper-button-prev:after{
    font-size:24px;
}
.modelTostChile .swiper-button-next:hover,.modelTostChile .swiper-button-prev:hover{
    background: var(--theme-color);
}


/* page_contact */

.page_contact_list{
    margin:40px -25px 0;
}
.page_contact_list .item_w{
    padding: 0 25px;
    width: 33.333%;
}
.page_contact_list .item{
    background: #eff0f6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 50px;
}
.page_contact_list .item .con{
    text-align: center;
}
.page_contact_list .item .con h4{
    font-family: 'RajdhaniSemiBold';
    color:var(--theme-color);
    margin: 20px 0 10px;
    font-size: 24px;
}
.page_contact_list .item .con p{
    font-size: 18px;
    line-height: 1.3;
}
.page_contact_list .item .con p a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}


/* page_solution */

.page_cases_list.page_solution_list .item{
    width: 33.333%;
}
.page_cases_list.page_solution_list .item .item_con .tit{
    height: auto;
    margin-bottom: 10px;
}

/* page_solution_detail */

.page_solution_detail .content{
    font-size:18px;
    color:#333;
}

/* page_paygo */

.page_paygo .panel1 .content{
    font-size:18px;
    color:#333;
}
.page_paygo .panel2{
    padding:0 7%;
}
.page_paygo .panel2 .list .item .img{
    display: flex;
    justify-content: center;
}
.page_paygo .panel2 .list .item .con{
    border-bottom: 1px solid #bbb;
    padding:50px 0;
    margin-left: 60px;
    flex:1;
    min-width: 0;
}
.page_paygo .panel2 .list .item .con h4{
    font-size:28px;
    font-family: 'PoppinsSemiBold';
    color:#333;
    margin-bottom:10px;
}
.page_paygo .panel2 .list .item .con p{
    font-size:18px;
}

.page_paygo .panel3{
    padding: 80px 7% 0;
}
.page_paygo .panel3 table{
    width: 100%;
}
.page_paygo .panel3 table tr{
    height: 60px!important;
    background: #f5f7f5;
}
.page_paygo .panel3 table tr:nth-child(2n){
    background: #fff;
}
.page_paygo .panel3 table tr td{
    padding:0 30px;
}
.page_paygo .panel3 table tr td:first-child{
    width: 25%;
}
.page_paygo .panel3 table tr:first-child td{
    color:#fff;
    font-family: 'PoppinsMedium';
}
.page_paygo .panel4 .list{
    padding:20px 0 80px;
}
.page_paygo .panel4 .list .item_wrap{
    padding: 0 20px;
}
.page_paygo .panel4 .list .item{
    text-align: center;
    border-bottom: 1px solid #bbb;
    padding:0 10px 40px;
}
.page_paygo .panel4 .list .item .con{
    font-size:18px;
    color:#333;
    padding-top:30px;
    height: 116px;
}


/* return */

.return_page{
    margin-top: 60px;
    position: relative;
}
.return_page i{
    color:var(--theme-color);
    font-size:18px;
    margin-right: 6px;
}
.return_page a:hover{
    text-decoration: underline;
    color:var(--theme-color);
}

.ind_pad{
    padding:80px 0 90px;
}
.info_ly{background: #fff;padding-left: 4%;padding-right: 4%;display: flow-root;}
.info_ly h2{text-align: center;margin-bottom: 20px;}
.info_ly .inp{width: 49.3%;height: 52px;line-height: 52px;background: #f6f6f6;display: block;float: left;margin-bottom: 16px;text-indent: 22px;}
.info_ly .inp:nth-child(2n){float: right;}
.info_ly .inp2{width: 100%;}
.info_ly textarea{height: 150px;background: #f6f6f6;text-indent: 22px;padding-top: 16px;width: 100%;display: block;}
.info_ly .sub{height: 52px;line-height: 52px;background:var(--theme-color);width: 100%;text-align: center;color: #fff;display: block;margin-top: 16px;text-transform: uppercase;border:none;cursor:pointer;}





