* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family:"Arial", Helvetica, sans-serif;
    font-size: 13px;
    color: #5b5e5e;
}
a {
    color: #000;
    text-decoration: none;
    transition: all 0.15s ease-in-out 0s;
}
a:hover {
    color: #35447F;
    text-decoration: none;
}
input, button {
    outline: none;
    /* background: transparent; */
}
button{
    cursor: pointer;
}
button:hover{
    opacity: 0.8;
}
img{
    max-width: 100%;
    height: auto;
}
h1,h2,h3,h4,h5,h6{
    font-family: Arial,svn-futuraregular,Helvetica;
}
ul {
   list-style: none;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
.clear{
    clear: both;
}
.wrap_content{
    width: 90%;
    margin: 0 auto;
}
.wrap_content_header{
    padding: 0 2%;
}
.header .header-top{
    background: #F1F1F1;
    height: 40px;
    line-height: 40px;
}
.nav_top{
    float: left;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 5%;
}
.nav_top a{
    color: #35447F;
    font-weight: bold;
}
.nav_top li{
    display: inline-block;
    padding:0 10px;
}
.nav_top li.dropdown{
    position: relative;
}
.nav_top li.dropdown > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 14px;
    vertical-align: 0;
    padding-left: 7px;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1000;
    display: block;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    opacity: 0;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.nav_top>li>.dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.nav_top .dropdown-menu {
    border-radius: 0;
    min-width: 250px;
    border-top: none;
    left: 0;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    -webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    transform: translate(0, 40px);
  
    visibility: hidden;
    opacity: 0;
    background: #fff;
}
.nav_top .dropdown-menu.container-fluid {
    top: 50px;
    padding: 0px;
}
.nav_top > li:hover .dropdown-menu {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}
.nav_top > li:hover{
    background: #2b599f; 
}
.nav_top > li:hover a{
    color: #fff;
}
li.link_container {
    border-bottom: 1px dotted #eaeaea;
    padding: 0px 10px;
    width: 100%;    
}
.link_container > a {
    text-transform: uppercase;
    font-size: 11px;
    color: #666!important;
}
.link_container > a:hover{
    color: #cc0000;
}
.suport_top{
    float: left;
    font-size: 12px;
}
.money_top{
    font-size: 13px;
    color: #DA251D;
    float: left;
    margin-left: 5%;
}
.lang_top{
    float: right;
}
.lang_top .img{
    float: left;
    margin-top: 10px;
    height: 20px;
}
.lang_top select{
    float: right;
    height: 20px;
    border: none;
    background: #F1F1F1;
    margin-top: 9px;
}
.header_content{
    /* height: 80px; */
    padding: 5px 0;
}
.header_content .logo_top{
    width: 20%;
    float: left;
    padding-top: 5px;
}
.wrap_search_top{
    width: 45%;
    margin: 16px 2% 0px 2%;
    float: left;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    /* height: 50px; */
    line-height: 37px;
}
.wrap_search_top select{
    color: #42C322;
    font-weight: bold;
    font-size: 15px;
    border: 0;
    margin: 0 10px;

}
.wrap_search_top input{
    width: 65%;
    height: 25px;
    padding: 0 10px;
    border: none;
    border-left: 1px solid #ccc;
   
}
.btn_search_top{
    width: 45px;
    height: 35px;
    border-radius: 4px;
    float: right;
    border: 0px;
    margin: 1px 1px 0 0;
    background:  url('../../images/magnifying-glass.svg') no-repeat center center #42C322;
}
.login_top{
    float: left;
    width: 22%;
    height: 35px;
    background: url(../../images/users.svg) no-repeat left center;
    margin: 17px 0;
    padding-left: 52px;
    position: relative;
    line-height: 20px;
}
.login_top .user_name{
    color:#337ab7;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: -10px;
}
.arrow_top{
    position: absolute;
    top: 30px;
}
.arrow_top:after {
    content: "\f0d7";
    font-family: "FontAwesome";
    font-size: 15px;
    vertical-align: 0;
    padding-left: 10px;
    font-weight: bold;
}
.cart_top{
    float: right;
    line-height: 65px;
    width: 8%;
    /* margin-right: 5px; */
    overflow: hidden;
    height: 55px;
}
.icon_cart{
    width: 33px;
    height: 35px;
    background:  url('../../images/shopping-cart.svg') no-repeat center center;
    margin: 17px 0;
    position: relative;
    float: left;
}
.number_cart{
    position: absolute;
    background: #DA251D;
    width: 20px;
    height: 20px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    right: -5px;
}
.cart_top a{
    display: block;
    float: right;
}
.wrap_home_banner{
    width: 100%;
    min-height: 880px;
    height: auto;
    background: #ededed;
    position: relative;
    overflow: hidden;
}
.circle_1{
    position: absolute;
    width: 1500px;
    height: 1300px;
    border-radius: 50%;
    background: rgb(0,103,149);
background: linear-gradient(90deg, rgba(0,103,149,1) 0%, rgba(1,114,172,1) 43%);
    top: -550px;
    left: -390px;
    z-index: 10;
}
.circle_2{
    position: absolute;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    background: rgb(1,114,172);
background: linear-gradient(90deg, rgba(1,114,172,1) 58%, rgba(55,166,215,1) 100%);
    top: -625px;
    right: -310px;
    z-index: 10;
    position: absolute;
}
.circle_3{
    z-index: 11;
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    left: calc(50% - 500px);
    top: -100px;
}
.circle_4{
    z-index: 12;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    left: calc(50% - 400px);
    top: 0px;
}
.circle_5{
    z-index: 13;
    position: absolute;
    background: rgba(255, 255, 255, 0.11);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    left: calc(50% - 300px);
    top: 100px;
}
.box_banner_content{
    position: relative;
    z-index: 99;
    width: 100%;
    padding-bottom: 40px;
}
.option_tool{
    padding-top: 30px;
}
.option_tool .box_left{
    float: left;
    /* padding-top: 35px; */
    width: 75%;
    padding-top: 50px;
}
.option_tool .box_left .step{
    float: left;
    margin: 0 2%;
    width: 16%;
}

.option_tool .box_left .step:first-child{
    margin-left: 0px;
}
.option_tool .box_left .step:last-child{
    margin-right: 0px;
}
.option_tool .box_left .step .icon{
    margin: 0 auto;
}
.option_tool .box_left .step .step_1{
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background:  url('../../images/box.svg') no-repeat center center #fff;
}
.option_tool .box_left .step .step_2{
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background:  url('../../images/order.svg') no-repeat center center #fff;
}
.option_tool .box_left .step .step_3{
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background:  url('../../images/map.svg') no-repeat center center #fff;
}
.option_tool .box_left .step .step_4{
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background:  url('../../images/wallet.svg') no-repeat center center #fff;
}
.option_tool .box_left .step .step_5{
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background:  url('../../images/invoice.svg') no-repeat center center #fff;
}
.option_tool .box_left .step .title{
    font-size: 16px;
    text-align: center;
    color: #fff;
    margin-top: 13px;
    line-height: 21px;
}
.down_tool{
    font-size: 16px;
    color: #fff;
    margin-top: 50px;
}
.down_tool a{
    color: #fff;
    font-weight: bold;
}
.down_tool .left{
    float: left;
    width: 25%;
}
.down_tool .left .excel{
    background: #2AC935;
    width: 100%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-top: 12px;
}
.down_tool  .icon{
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.4) ;
    float: left;
}
.down_tool .icon img{
    margin-top: 5px;
}
.down_tool .right{
    float: left;
    width: 65%;
    margin-left: 5%;
}
.down_tool .right .chorme{
    background: #D62D20;
    width: 45%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-top: 12px;
    float: left;
    margin-right: 40px;
}
.down_tool .right .coccoc{
    background:  #F9F900;
    width: 45%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-top: 12px;
    float: left;
    color: #000;
}
.option_tool .box_right{
    float: right;
    width: 25%;
    background: #fff;
    /* margin-top: 33px; */
    border-radius: 6px;
    padding: 20px 15px;
}
.option_tool .box_right .title{
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
    color: #000;
    border-bottom: 1px solid #136EB7;
}
.list_support{
    padding-top: 10px;
}
.list_support_left{
    padding-right: 10px;
    border-right: 1px solid #ccc;
    width: calc(50% - 1px);
    float: left;
}
.list_support_right{
    padding-left: 10px;
    width: 50%;
    float: left;
}
.list_support_left a, .list_support_right a {
    display: block;
    width: 100%;
    background: url(../../images/messenger.png) no-repeat top left;
    padding-left: 46px;
    font-size: 12px;
    line-height: 18px;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
    background-size: 34px;
}
.list_support a:last-child{
    border:  0;
    margin-bottom: 0px ;
}
.list_support a p{
    color: #4381B1;
    font-weight: bold;
}
.list_support a span{
    font-style: italic;
}
.list_support .hotline a {
    font-size: 15px;
    color: #f00;
    font-weight: bold;
}
.mess_company{
    width: 100%;
    background: #fff;
    border-radius: 6px;
    margin-top: 50px;
    padding-bottom: 20px;
    position: relative;
}
.mess_company .title{
    text-align: center;
    color: #D62D20;
    font-size: 18px;
    text-transform: uppercase;
    padding:  30px 0 25px 0;
}
.slider_mess{
    padding: 0 120px;
}
#owl-mess{
    float: left;
}
#owl-mess .item img{
    display: block;
    width: 100%;
    height: auto;
}
#owl-mess .item{
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    background: #fff;
}
#owl-mess .owl-prev{
    position: absolute;
    left: -100px;
    top: 0%;
}
#owl-mess .owl-next{
    position: absolute;
    right: -100px;
    top: 0%;
}
#owl-mess .owl-buttons div{
    background:  #fff;
    color: #868682;
    font-size: 50px;
}
#owl-mess .owl-pagination{
    margin-top: 20px;
}

.icon_slider{
    float: left;
    font-size: 83px;
    color: #CBCBCB;
}
.icon_1{
    position: absolute;
    top: 26px;
    left: 50px;
}
.icon_2{
    position: absolute;
    bottom: 10px;
    right: 50px;
}
.title_sevice{
    text-align: center;
    width: 100%;
    padding-top: 40px;
}
.title_home{
    font-size: 28px;
    color: #4381B1;
    font-weight: bold;
    padding-bottom: 10px;
    text-align: center;
}
.dash{
    width: 90px;
    height: 1px;
    background:  #0F65AB;
    margin: 0 auto;
    margin-top: 20px;
}
.sevice_home{
    background:#EDEDED ;
    padding-bottom: 50px;
}
.sevice_home .wrap_content{
    display: grid;
    grid-template-columns: 27% 46% 27%;
    padding-top: 30px;
}
.sevice_home .wrap_content .center img{
    margin-top: 40px;
}
.sevice_home .wrap_content .item{
    width: 100%;
    text-align: right;
    margin-bottom: 50px;
}
.sevice_home .wrap_content .item .icon{
    margin-bottom: 10px;
}
.sevice_home .wrap_content .item .title{
    color: #ee0b00;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}
.sevice_home .wrap_content .item .text{
    color: #000;
    /* margin-bottom: 10px; */
    text-align: justify;
    line-height: 150%;
    height: 50px;
}
.sevice_home .wrap_content .right .item{
    text-align: left;
}
.source_home{
    padding:  50px 0;   
}
.source_home_item .banner_home img{
    width: 100%;
}
.source_home_item{
    display: grid;
    grid-template-columns: 23% 73%;
    margin-top: 30px;
    grid-gap: 0px 4% ;
}
.list_cate_item a .img{
    height: 110px;
    width: 100%;
    border-radius: 3px;
    border: 1px solid #ccc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.source_home_item .list_cate{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    /* grid-template-rows: 154px 150px; */
    grid-gap: 4%;
    padding-top: 30px;
}
.list_cate .list_cate_item img{
    width: 100%;
}
.list_cate .list_cate_item img:hover{
    opacity: 0.8;
}
.list_cate .list_cate_item p{
    padding-top: 5px;
    display: block;
    font-size: 14px;
    text-align: center;
}
.testimonial{
    background:  #EDEDED;
    padding:  50px 0;
}
.title_testi{
    color:#D62D20;
}
.list_testi{
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    grid-gap:  0px 2%;
}
.list_testi_item .description{
    width: 100%;
    height: 163px;
    background:  url('../../images/Union 26.svg') no-repeat center center;
    background-size: contain;
    text-align: center;
    padding:  12px 30px;
}
.list_testi_item .description .star{
    font-size: 20px;
    color:#FFDD00;
    padding-bottom: 8px;
}
.list_testi_item .description p{
    color: #0F65AB;
    line-height: 18px;
    font-size: 14px;
    
}
.list_testi_item .info .avatar{
    width: 80px; 
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    border: 1px solid #ccc;
    margin-right: 15px;
}
.list_testi_item .info b{
    font-size: 17px;
    padding:  10px 0 5px 0;
    display: block;
    color: #000;
}
.footer_menu{
    background: #0A1E5A;
    padding: 50px 0;
}
.footer_menu a{
    color: #fff;
}
.footer_menu .wrap_content{
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    grid-gap:  0px 2%;
    color: #fff;
}
.footer_menu .wrap_content p{
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer_menu .wrap_content ul li{
    padding-bottom: 13px;
}
.footer_menu .wrap_content ul li span{
    font-size: 11px;
    padding-right: 10px;
}
.copyright{
    height: 60px;
    line-height: 60px;
    background: #071747;
    color: #fff;
}
.mess_profile{
    position: relative;
    cursor: pointer;
}
.mess_profile ul {
    position: absolute;
    width: 160px;
    border-radius: 0;
    border: none;
    top: 25px;
    left: 0;
    border-top: 2px solid #cc0000;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    opacity: 0;
    display: block;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -o-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -khtml-transform: translateY(50px);
    z-index: 9999;
    background:  #fff;
    padding: 5px 10px;
    visibility: hidden;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    font-size: 12px;
}
.mess_profile ul li{
    border-bottom: 1px solid #eaeaea;
    text-indent: 10px;
}
.mess_profile ul li a{
    display: block;
    width: 100%;
    padding: 5px 0;
}
.mess_profile ul li a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
    
}
.mess_profile.open ul{
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -khtml-transform: translateY(0px);
    opacity: 1;
    visibility: inherit;
}
.footer_menu ul li a:before {
    font-family: 'FontAwesome';
    font-size: 14px;
    content: "\f105";
    margin-right: 15px;
}
.footer_menu li a.location:before {
    content: "\f041";
}
.footer_menu li a.phone:before {
    content: "\f095";
}
.footer_menu li a.email:before {
    content: "\f003";
}
.footer_menu li a.mobile:before {
    content: "\f095";
}

.scroll_top_home {
    width: 76px;
    height: 76px;
    position: fixed;
    display: none;
    font-size: 0;
    z-index: 9999;
    right: 10px;
    bottom: 50px;
    background: #666;
    display: none;
    background:  url('../../images/đầu trang.svg') no-repeat center center;
}
.wrap_order{
    background: #EDEDED;
    padding: 20px 0;
    color: #000;
}
.wrap_order .wrap_content{
    display: grid;
    grid-template-columns: 72% 25%;
    grid-gap: 0px 3% ;
}
.left_order .box_alert{
    background: #CFDFFF;
    height: 35px;
    line-height: 35px;
    text-indent: 10px;
    margin-bottom: 20px;
}
.form_tool_order{
    display: grid;
    grid-template-columns: 50% 50%;
}
.form_tool_order .form_order table tr td{
    padding: 5px 0;
}
.form_tool_order .form_order table tr td span{
    display: block;
    padding-top: 13px;
}
.form_tool_order .form_order table tr td input{
    height: 35px;
    border: 1px solid #C6C6C6;
    border-radius: 4px;
    width: 100%;
    text-indent: 10px;
}
.form_tool_order .form_order table tr td textarea{
    border: 1px solid #C6C6C6;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    font-family: arial;
}
.btn_order{
    margin-top: 30px;
    background: #4381B1;
    height: 50px;
    line-height: 50px;
    border-radius: 4px;
    border: 0px;
    width: 100%;
    color: #fff;
    font-size: 16px;
}
.btn_order i{
    font-size: 30px;
    vertical-align: middle;
}
.tool_order{
    padding-left: 25%;
}
.tool_order a{
    color: #fff;
    font-size: 16px;
}
.tool_order .excel{
    background:  #2AC935;
    width: 230px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-top: 12px;
}
.tool_order .icon{
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.4) ;
    float: left;
}
.tool_order .icon img{
    margin-top: 5px;
}
.tool_order .chorme{
    background: #D62D20;
    width: 230px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-top: 12px;
    float: left;
    margin-right: 40px;
}
.tool_order .coccoc{
    background:  #F9F900;
    width: 230px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-top: 12px;
    float: left;
    color: #000;
}
.tool_order p{
    font-size: 16px;
}
.right_order .title {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
    color: #000;
    border-bottom: 1px solid #136EB7;
}
.right_order{
    height: 400px;
    background: #fff;
    border-radius: 6px;
    padding: 20px 15px
}
.breadcrumb{
    background:  #EDEDED;
    padding-top: 20px;
    font-size: 14px;
}
.breadcrumb span:before {
    font-family: 'FontAwesome';
    font-size: 14px;
    content: "\f105";
    margin:0 5px;
}
.breadcrumb b{
    color: #000;
}
.wrap_transport{
    background:  #EDEDED;
    padding: 20px 0;
    color: #000;
}
.wrap_transport .wrap_content{
    display: grid;
    grid-template-columns: 72% 25%;
    grid-gap: 0px 3% ;
}
.wrap_transport .left_order .form_tool_order{
    display: grid;
    grid-template-columns: 60% 40%;
}
.box_alert{
    position: relative;
}
.icon_excel_big{
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 10px;
    background:  url('../../images/microsoft-excel-logo.svg') center center no-repeat #1AAB32;
    top: -60%;
    right: 210px;
    background-size: 45%;
}
.box_alert p{
    float: right;
    color: #DA251D;
    font-size: 16px;
    font-weight: bold;
    padding-right: 10px;
}
.package_service_item{
    background:  #fff;
    padding: 40px 40px;
    border-radius: 4px;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
}
.wrap_transport input[type=text]{
    border: 1px solid #C6C6C6;
    border-radius: 4px;
    width: 100%;
    height: 35px;
    text-indent: 10px;
    margin-bottom: 20px;
}
.wrap_transport textarea{
    border: 1px solid #C6C6C6;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    font-family: arial;
    margin-top: 5px;
}
.package_service_item p.title{
    padding-bottom: 5px;
}
.package_service_item span.title{
    font-size: 14px;
    padding-bottom: 10px;
    display: block;
}
.input_60{
    width: 60% !important;
}
.row_item{
    position: relative;
}
input.datepicker{
    background:  url('../../images/icon_cal.svg') right 5px center no-repeat;
}
.package_service_item .btn-remove-product{
    position: absolute;
    top: 20px; 
    right: 20px;
}
.btn-add-product{
    border: 1px solid #4381B1;
    border-radius: 4px;
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    float: right;
}
.hidden{
    display: none;
}
.info_order_transport{
    margin: 20px 0;
    background: #fff;
    padding: 40px;
    border-radius: 4px;
}
.info_note{
    display: grid;
    grid-template-columns: 20% 35% 35%;
    grid-gap: 0px 3.5% ;
}

.info_order_transport p.title {
    font-size: 16px;
    padding-bottom: 5px;
    font-weight: bold;
}
.info_note label{
    font-size: 14px;
    padding-top: 10px;
    display: block;
}
.info_value{
    display: grid;
    grid-template-columns: 22% 22% 22% 22%;
    grid-gap: 0px 3% ;
    margin-top: 20px;   
}
#btn-submit-shipping-service{
    width: 135px;
    height: 40px;
    background: #DA251D;
    border-radius: 4px;
    border: 0;
    text-align: center;
    color: #fff;
    font-size: 14px; 
    font-weight: bold;
    margin: 10px 0;
}
.wrap_cart .left_order .box_alert {
    background: #CFDFFF;
    height: auto;
    line-height: 20px;
    text-indent: 0;
    margin-bottom: 20px;
    padding-left: 10px;
    padding: 10px 20px;
}
.wrap_news{
    background:#EDEDED;
}
.wrap_news .wrap_content{
    display: grid;
    grid-template-columns: 72% 25%;
    grid-gap: 0px 3% ;
    padding: 20px 0;
}
.list_news .item_news{
    color:#000000;
    font-size: 14px;    
}
.wrap_news .wrap_content .item_news .img{
    width: 295px;
    height: 220px;
    float: left;
    margin-right: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.wrap_news .wrap_content .item_news .img img{
    max-width: 100%;
}
.list_news .item_news{
    border-bottom: 1px solid #C6C6C6;
    margin-bottom: 20px;
}
.list_news .item_news:last-child{
    border: 0px;
}
.list_news .item_news a.view_more{
    width: 130px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background:  #4381B1;
    display: block;
    float: left;
    font-size: 15px;
    border-radius: 4px;
    color: #fff;
}
.list_news .item_news p.title{
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 7px;
}
.list_news .item_news span{
    color: #707070;
    font-size: 12px;
    line-height: 20px;
}
.list_news .item_news i{
    vertical-align: text-top;
}
.list_news .item_news .desciption{
    line-height: 18px;
    margin-top: 10px;
    font-size: 15px;
    padding-bottom: 10px
}
.pagination a{
    width: 35px;
    height: 35px;
    border: 1px solid #C6C6C6;
    text-align: center;
    line-height: 35px;
    display: inline-block;
    margin-right: 5px;
    
}
.pagination{
    text-align: center;
    margin-bottom: 20px;
}
.pagination a:hover,.pagination a.active{
    background: #4381B1;
    color: #fff;
    
}
.cate_news_left .cate_title{
    width: 100%;
    height: 50px;
    background: #4381B1;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    text-indent: 10px;
    margin-bottom: 15px;

}
.cate_news_left .cate_title i{
    display: contents;
}
ul.cate_news_list{
    margin-bottom: 40px;
}
ul.cate_news_list li{
    line-height: 48px;
    border: 1px solid #4381B1;
    text-indent: 18px;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 0;
}
ul.cate_news_list li:last-child{
    border-bottom: 1px solid #4381B1;
}
ul.cate_news_list li a{
    color: #707070;
    display: block;
}
ul.cate_news_list li a:hover{
    background: #4381B1;
    color: #fff;
}
ul.news_other_item li{
    border: 1px solid #C6C6C6;
    padding: 15px 10px;
    background: #fff;
}
ul.news_other_item li .img{
    width: 95px;
    height: 70px;
    float: left;
    margin-right: 20px;
}

ul.news_other_item li p{
    /* color: #4381B1; */
    text-transform: uppercase;
    line-height: 18px;
}
ul.news_other_item li span{
    color: #707070;
    font-size: 12px;
    padding-top: 5px;
    display: block;
}
.box_content_news{
    width: 100%;
    background: #FFFFFF;
    border-radius: 6px;
    padding:  30px;
    color:#000000;
}
.box_content_news .top{
    border-bottom: 1px solid #C6C6C6;
    padding-bottom: 15px;
}
.box_content_news .top h1{
    font-size: 18px;
    padding-bottom: 5px;
}
.box_content_news .top span{
    color:#707070;
}
.box_content_news .middle img{
    max-width: 100% !important;
}
.other_news{
    margin-top: 30px;
}
.other_news p.title{
    color: #4381B1;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}
.other_news_list{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-gap: 20px 3.3333%;
}
.other_news_list .img{
    width: 100%;
    height: 190px;
    margin-bottom: 10px;
}
.other_news_list .img img{
    max-height: 100%;
}
.other_news_list a{
    line-height: 18px;
}
   /*  display: grid;
    grid-template-columns: 30% 50% 20%; */