@charset "utf-8";
html{
    color:#000;
    background:#FFF;
    width:100%;
    font-size: 16px;
}

@font-face{ font-family: Poppins; src: url(../fonts/Poppins-Regular.ttf);}


body {
    margin: 0 auto;
    position: relative;
    padding: 0;
    width: 100%;
    color: #1f1f1f;
    background: #fff;
    font-family: Poppins;
}



@media screen and (max-width: 1600px) {
    html {
        font-size: 15px;
    }
}

@media screen and (max-width: 1400px) {
    html {
        font-size: 14px;
    }
}



:root {
    --comcolor: #0480de;
    --subcolor: #ef8200;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* :before, * :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


a { text-decoration:none;cursor:pointer; color: #333;}
a:focus{outline:0;}
li{list-style:none;}
.clear{ clear:both; height:0; line-height:0; font-size:0;}
.clearfix:after{ content:""; clear:both; height:0; visibility:hidden; display:block;}
.fl { float:left;}
.fr { float:right;}
input {
    border: none;
    outline: none;
}
em,i{font-style: normal;}
img {
    max-width:100%;
    height: auto;
}
::-webkit-scrollbar{width:5px;height:5px;}
::-webkit-scrollbar-button:vertical{display:none}
::-webkit-scrollbar-track:vertical{background-color:black}
::-webkit-scrollbar-track-piece{background:#E3E3E3}
::-webkit-scrollbar-thumb:vertical{background-color:#555;border-radius:30px}
::-webkit-scrollbar-thumb:vertical:hover{background-color:#3B3B3B}
::-webkit-scrollbar-corner:vertical{background-color:#535353}




.w_95{max-width: 1400px;width: 95%;margin: 0 auto;}
.breadcrumb {
    height:3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ebebeb;
}
.breadcrumb ul {
    display: flex;
}
.breadcrumb ul a{
    display: inline-block;
    line-height: 3.5rem;
    margin:0 1.5rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}
.breadcrumb ul a.act {
    border-bottom: 2px solid var(--comcolor);
    color: var(--comcolor);
}
.breadcrumb ul a:hover {
    color: var(--subcolor);
}


@media screen and (max-width: 1000px) {
    .breadcrumb {
        min-height:3.5rem;
        height:auto;
    }
    .breadcrumb ul a{
        margin:0 0.5rem;
    }
}


header {z-index: 99999;}

.header1 { height:45px;background: #1b243c;position: relative;z-index: 1;}
.header1 .t {height:100%;display: flex;align-items: center;justify-content: space-between;color:#fff;}
.header1 .t .w {width:100%;height:100%;display: flex;align-items: center;justify-content: space-between;color:#fff;}
.header1 .lang {
    display: flex;align-items: center;
}
.header1 .lang  select{
    margin-left: 0.3rem;font-size: 0.8rem;border:1px solid #a9a9a9;border-radius:0.2rem;width:10rem;height:2rem;line-height: 2rem;text-align: center;
}
.header1 .lang  select:focus {
    outline: none;
    border: 0
}

.header1 .search form {display: flex;align-items: center;position: relative;height:35px;}
.header1 .search input{height: 35px;width:20rem;padding: 0 10px;background: white;border-bottom: 1px solid #686868;}
.header1 .search span {color:#333;position: absolute;right:5px;}
.header1 .search button { font-size: 1.5rem;position: absolute;right:0.5rem;background: #fff;border: 0;}



.header {position: relative;z-index: 99999;width:100%;height:80px;background: #202d3d;}
.header .cont {height:100%;display: flex;align-items: center;justify-content: space-between;}
.header.fixed {position: fixed;top:0;left:0; box-shadow: 0.1rem 0.1rem 0.7rem 0.1rem #ddd;animation: header_fixed .2s ease-in-out;}
@keyframes header_fixed {
    0% {
        opacity: 0;
        transform: scale(1.1) translateY(-50%)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}
.header .logo a{display: flex;align-items: center;height:100%;}
.header .logo img {height:60px;}
.header .menu {width:66%;height:100%;display: flex;align-items: center;justify-content: space-between;}

.header .menu .nav>a{height: 100%;line-height: 80px;display: block;text-align:center;font-size: 1.1rem;transition: all .5s ease;}
.header .menu .nav>a .item {position: relative;color: #fff;}
.header .menu .nav>a .item::after,.header .menu .nav>a .item::after
{
    width: 0;
    height: 4px;
    background: var(--comcolor);
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    transition: all 0.4s ease-in-out;
}
.header .menu .nav.act>a .item::after,.header .menu .nav:hover>a .item::after {
    width:100%;
}

.header .menu .nav.pos {position: relative;}

.header .menu .nav .submenu {
    position: absolute;
    top: 80px;
    width:200%;
    min-width: 25rem;
    max-height:80vh;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1px solid #ECECEC;
    background: #fff;
    z-index: -1;
    text-align: center;
    display: none;
    overflow: hidden;
    box-shadow: 0.1rem 0.1rem 0.7rem 0.1rem #ddd;
}
.header .submenu .two_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header .submenu .two_menu li{
    position: relative;
    height:3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.header .submenu .two_menu li:not(:first-child){
    border-top: solid 1px var(--comcolor);
}
.header .submenu .two_menu li a:hover {
    color:var(--comcolor);
}



.header .submenu .header_classify {
    padding:0.5rem 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.header .submenu .header_classify .c_item {
    width:19.2%;
    margin-right: 1%;
    text-align: left;
}
.header .submenu .header_classify .c_item:nth-child(5n) {margin-right: 0;}
.header .submenu .header_classify .c_item .name {
    font-size: 1.1rem;color: #000;font-weight: bold;margin-top: 1rem;
    border-top: solid 1px #00aeef;padding-top: 0.5rem;margin-bottom: 0.5rem;
}
.header .submenu .header_classify .c_item .pros{
    display: flex;
    flex-direction: column;
}
.header .submenu .header_classify .c_item .pros a {font-size:0.85rem;margin-bottom: 0.3rem;padding-bottom:0.3rem;border-bottom:1px dashed #c6c6c6;}
.header .submenu .header_classify .c_item a:hover {color:var(--comcolor);}




@media screen and (max-width: 1400px) {
    .header .logo img {height:55px;}
}

@media screen and (max-width: 1200px) {
    .header .logo img {height:45px;}
}







/*尾部导航*/
.footer {
    position: relative;z-index: 1;
    background: #202d3d;
}
.footer .cont {
    padding: 5rem 0 3rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.footer .cont .box1 {
    width:40%;
}
.footer .cont .box1 .line {width:100%;height:1px;background: #6d6969;margin-top: 2rem;margin-bottom: 2rem;}
.footer .cont .box1 .desc {font-size: 1rem;line-height: 2rem;}
.footer .cont .box1 .find {margin-top: 2rem;margin-bottom: 1rem;}
.footer .cont .box1 .app {display: flex;justify-content: flex-start;}
.footer .cont .box1 .app>div {width:2rem;height:2rem;background: #04BE02;text-align: center;line-height: 2rem;margin-right: 1rem;}
.footer .cont .box1 .app .iconfont {color:#fff;font-size: 1.5rem;}
.footer .cont .box1 .info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed #7b7b7b;
}
.footer .cont .box1 .info p {
    font-size: 1rem;
    margin-bottom: 2rem;
}
.footer .cont .box1 ul {
    height:4rem;
    display: flex;
    align-items: center;
}
.footer .cont .box1 ul li{
    width:3rem;
    height:3rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor:pointer;
    position: relative;
}
.footer .cont .box1 ul li i{
    font-size: 2rem;
}
.footer .cont .box1 ul li .icon-weixin {
    color:#04BE02;
}
.footer .cont .box1 ul li .icon-whatsapp {
    color:#3fe45c;
}
.footer .cont .box1 ul li .icon-telegram {
    color:#2daee9;
}
.footer .cont .box1 ul li .qrcode {
    visibility: hidden;
    position: absolute;
    bottom:120%;
    background: #fff;
    transform: translateY(10%);
    transition: 0.2s;
}
.footer .cont .box1 ul li.weixin:hover .qrcode{visibility: visible;transform: translateY(0)}
.footer .cont .box1 .qrcode .pic {
    position: relative;
    width: 10rem;
    height: 10rem;
    border: 1px solid #525252;
    padding: 0.5rem;
}
.footer .cont .box1 .qrcode .scanner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}
.footer .cont .box1 .qrcode .scanner .scanning {
    height: 100%;
    width: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.footer .cont .box1 .qrcode .scanning .line {
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 255, 51, 0) 43%, var(--comcolor) 211%);
    border-bottom: 1px solid var(--comcolor);
    transform: translateY(-100%);
    animation: radar-beam 2s infinite;
    animation-timing-function: cubic-bezier(0.53, 0, 0.43, 0.99);
    animation-delay: 0.5s;
}
@keyframes radar-beam {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}


.footer .cont .box4 {
    width:55%;
    display: flex;
    justify-content: space-between;
}
.footer .cont .box4 dl {flex:1;}
.footer .cont .box4 dt {width:95%;min-height: 4.5rem;}
.footer .cont .box4 dt a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff
}
.footer .cont .box4 p a {
    font-size: 1rem;
    color: #dddddd;
    margin-bottom: 2rem;
    display: block;
}
.footer .cont .box4 p a:hover {
    color: var(--subcolor);
}
.footer .cont .box4 dd {
    margin-top: 3rem;
    width:95%;
}

.footer .cont .box3 {
    display: flex;
    margin-top: 2rem;
}
.footer .cont .box3 .ewm .pic {
    position: relative;
    width: 10rem;
    height: 10rem;
    border: 1px solid #525252;
    padding: 0.5rem;
}
.footer .cont .box3 .ewm p {
    font-size: 1rem;
    text-align: center;
    padding-top: 1rem;
    color:#fff
}


.footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:5rem;
    border-top: 1px solid #767676;
}
.footer .copyright p, .footer .copyright a {
    color: #cdcdcd;
    font-size: 1rem;
    line-height: 2rem;
}







.floatFns {
    position: fixed;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100000;
}
.floatFns .kefu {
    margin-bottom: 0.8rem;
    cursor:pointer;
}
.floatFns .kefu .box {
    width:2.5rem;
    height:2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.floatFns .kefu.tel .box:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
    -webkit-animation: diffuse 1.5s ease-out 75ms infinite;
    animation: diffuse 1.5s ease-out 75ms infinite;
}
@keyframes diffuse {
    0% {
        opacity: .3;
    }
    50% {
        opacity: .5;
        box-shadow: rgba(66, 133, 244, 0.1) 0 0 0 2px, #d5981d 0 0 10px 10px, rgba(66, 133, 244, 0.1) 0 0 0 10px;
    }
    100% {
        box-shadow: rgba(66, 133, 244, 0.1) 0 0 0 2px, #d5981d 0 0 10px 10px, rgba(66, 133, 244, 0.1) 0 0 0 10px;
        transform: scale(1.5);
        opacity: 0;
    }

}
.floatFns .kefu.tel .box,.floatFns .kefu.tel .info {
    background: var(--comcolor);
}
.floatFns .kefu.email .box,.floatFns .kefu.email .info {
    background: #f36d23;
}
.floatFns .kefu.message .box{
    background: #FF5722;
}
.floatFns .kefu.weixin .box{
    background: #04BE02;
}
.floatFns .kefu.whatsapp .box{
    background: #3fe45c;
}
.floatFns .kefu.telegram .box{
    background: #2daee9;
}
.floatFns .kefu.top .box {
    background: #a7a7a7;
}
.floatFns .kefu.top {
    display: none;
}
.floatFns .kefu .box a{
    display: inline-flex;
}
.floatFns .kefu .box i{
    font-size: 1.4rem;
    color:#fff;
}
.floatFns .kefu .info {
    position: absolute;
    right: 3rem;
    top:50%;
    padding:10px;
    color:#fff;
    border-radius: 5px;
    transform: translateY(-50%) scale(0);
    transition: 0.5s;
    font-size: 18px;
    white-space: nowrap;
    min-width:100px;
}
.floatFns .kefu .info img{
    max-width: none;
    width:10rem;
    height:10rem;
}
.floatFns .kefu .info a {color:#fff;}
.floatFns .kefu:hover .info {
    transform: translateY(-50%) scale(1);
}

.floatFns .kefu.tel i {
    animation: yyhh 1.5s linear infinite;
}
@keyframes yyhh {
    0%,90%,100% {
        transform: rotate(0) scale(1);
    }
    20%,40% {
        transform: rotate(-15deg) scale(1.1);
    }
    30%,50% {
        transform: rotate(15deg) scale(1.1);
    }
}


.feedback {width:100%;}
.feedback h3{
    height: 3rem;
    line-height: 3rem;
    background: var(--comcolor);
    color: #fff;
    text-align: center;
}
.feedback-form {
    width: 100%;
    padding:1rem;
}
.feedback-form p {
    margin-bottom: 1rem;
    color: #b3b3b3;
    line-height: 1.6rem;
    font-size: 0.8rem;
}

.feedback-form input {
    width: 100%;
    line-height: 2.5rem;
    height: 2.5rem;
    border-radius: 0.3rem;
    padding: 0 1rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border:1px solid #ebebeb;
}
.feedback-form textarea {
    width:100%;
    height:8rem;
    border:1px solid #ebebeb;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}
.feedback-form .submit {
    width:100%;
    height:2.5rem;
    line-height: 2.5rem;
    color:#fff;
    background: var(--comcolor);
    border:1px solid var(--comcolor);
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor:pointer;
}
input.check::placeholder {
    color: var(--comcolor); /* 例如，设置为灰色 */
}









.pagination {
    text-align: center;
    padding: 1rem 0;
}
.pagination li {
    display: inline-block;
    margin: 0 0.1rem;
}
.pagination li a, .pagination li span{
    position: relative;
    display: inline-block;
    font-size: 0.9rem;
    height: 2.5rem;
    padding: 0 1rem;
    line-height: 2.5rem;
    background: #e6e6e8;
    text-align: center;
    color: #5b5858;
    z-index: 1;
    width:100%;
    border-radius: 2.5rem;
}
.pagination .active a{
    background: #007dc3;
    color: #FFF;
}





.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-bottom: 4rem;
    z-index: 999;
}
.mobile-header .logo {
    background: #202d3d;
    z-index: 1;
    position: relative;
    line-height: 4.2rem;
    height: 4.2rem;
    box-shadow: 0 2px 2px #00000021;
}
.mobile-header .logo img {
    padding-left: 2.5%;
    height:2.8rem;
    display: inline-block;
    vertical-align: middle;
}
.mobile-header .btn {
    position: absolute;
    bottom: 1.35rem;
    right: 2.5%;
    width: 2.2rem;
    z-index: 2;
    height: 1.5rem;
}
.mobile-header .btn i {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background: #0d50be;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    transition: .5s
}
.mobile-header .btn i.ie1 {
    margin-top: -0.8rem
}
.mobile-header .btn i.ie3 {
    margin-top: 0.8rem
}
.mobile-header.active .btn i {
    margin: 0 !important;
}
.mobile-header.active .btn i.ie1{
    transform: rotate(45deg);
}
.mobile-header.active .btn i.ie2 {
    opacity: 0;
}
.mobile-header.active .btn i.ie3 {
    transform: rotate(-45deg);
}
.mobile-header .cont {
    position: fixed;
    background: #fff;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;

    transform: translateX(-100%);
    z-index: 0;
    height: 100%;
    overflow: auto;
    top: 0;
    padding: 5rem 0 1.5rem;
}
.mobile-header.active .cont {
    transform: translateX(0);
}
.mobile-header .cont .search {
    padding: 0.5rem 2.5%;
    background: #0d50be;
    z-index: 2;
    position: relative;
}
.mobile-header .cont .search form {
    width: 100%;
    padding-right: 3rem;
    position: relative;
}
.mobile-header .cont .search form .search_input {
    width: 100%;
    line-height: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: none;
    padding: 0 1rem;
    font-size: 1rem;
}
.mobile-header .cont .search form .search_submit {
    width: 3rem;
    line-height: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
}
.mobile-header .cont .search form .search_submit .iconfont{
    font-size: 1.8rem;
    color:#fff;
}


.mobile-header .cont .navbar {
    padding: 1rem 0;
}
.mobile-header .navbar .menu {
    border-bottom: 1px solid #cdcdcd;
    line-height: 2.8rem;
}
.mobile-header .navbar .menu .item {
    color: #494949;
    font-size: 1rem;
    display: block;
    position: relative;
}
.mobile-header .navbar .menu .item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-header .navbar .s_menu {
    width: 100%;
    box-sizing: border-box;
    display: none;
}
.mobile-header .navbar .s_menu .s_item {
    font-size: 1rem;
    font-weight: normal;
    color: #494949;
    display: block;
    line-height: 2.8rem;
    border-top: 1px solid #cdcdcd;
    position: relative;
    padding-left: 1.5rem;
}
.mobile-header .navbar .s_menu .s_item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-header .navbar .s_menu .s_item li {position:relative;padding-left: 5%;}
.mobile-header .navbar .s_menu .s_item:after{
    content: '-';
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mobile_top_fill {height:4.2rem;display: none;}

.mobile-header .lang {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}
.mobile-header .lang svg path{fill:var(--comcolor)}
.mobile-header .lang select{
    margin-left: 1rem;
    font-size: 1rem;border:1px solid #a9a9a9;border-radius:0.5rem;width:70%;height:3rem;line-height: 3rem;text-align: center;
}


.mobile-footer {
    display: none;
    padding: 1rem 0;
    background: #202d3d;
    color:#fff;
}
.mobile-footer .navbar {
    padding: 1rem 0;
}
.mobile-footer .navbar .menu {
    border-bottom: 1px solid #cdcdcd;
    line-height: 2.8rem;
}
.mobile-footer .navbar .menu .item {
    color: #fff;
    font-size: 1rem;
    display: block;
    position: relative;
}
.mobile-footer .navbar .menu .item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-footer .navbar .s_menu {
    width: 100%;
    box-sizing: border-box;
    display: none;
}
.mobile-footer .navbar .s_menu .s_item {
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
    display: block;
    line-height: 2.8rem;
    border-top: 1px solid #cdcdcd;
    position: relative;
    padding-left: 1.5rem;
}
.mobile-footer .navbar .s_menu .s_item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-footer .navbar .s_menu .s_item li {position:relative;padding-left: 5%;}
.mobile-footer .navbar .s_menu .s_item:after{
    content: '-';
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mobile-footer  .cont2 p{font-size: 1rem;margin: 1.5rem 0;color: #fff;display: flex;align-items: center;}
.mobile-footer  .cont2 p .iconfont{vertical-align:middle;margin-right: 0.3rem;}
.mobile-footer  .cont2 a {color:#fff;}

.mobile-footer .foot_nav {
    position: fixed;bottom:0;height:4rem;width:100%;background: #333;z-index: 9999;
    display: flex;align-items: center;
}
.mobile-footer .foot_nav .item {
    width:25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color:#fff;
}
.mobile-footer .foot_nav .item.cur {
    background: #0d50be;
}
.mobile-footer .foot_nav .item i {
    font-size: 1.2rem;
}
.mobile-footer .foot_nav .item p {
    font-size: 0.9rem;
}






@media  screen and (max-width: 1000px){
    .mobile-header,.mobile_top_fill,.mobile-footer {display: block;}

    header,.footer{display: none;}
}









.com_help {
    width:100%;
    padding:3rem 0;
    background: url(../images/index_contact.png);
    background-size: cover;
}
.com_help .cont {
    padding: 2rem;background: linear-gradient(to right, #2a3b51c7, #202d3dc7);border-radius: 2rem;
}
.com_help .title {
    text-align: center;
    width:80%;
    margin: 0 auto;
}
.com_help .title h3 {
    font-size: 2.5rem;
    color:var(--comcolor);
    margin-bottom: 2rem;
}
.com_help .title .desc {
    font-size: 1.2rem;
    color: #f1f1f1;
}
.com_help ul { display: flex; justify-content: space-between;margin-top: 2rem;}
.com_help ul li { width:48%; text-align: center;}
.com_help ul li img { width:12rem;}
.com_help ul li h4 {font-size: 1.5rem;margin: 1rem 0;color:var(--comcolor);}
.com_help ul li .desc { font-size: 1rem;line-height: 2rem;margin-bottom: 2rem;color: #f1f1f1;}
.com_help .message {
    text-align: center;
}
.com_help .submit {
    width: 10rem;
    height:2.5rem;
    line-height: 2.5rem;
    color:#fff;
    background: var(--comcolor);
    border:1px solid var(--comcolor);
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor:pointer;
}


@media  screen and (max-width: 1000px){
    .com_help .cont {padding: 1rem;}
    .com_help .title {width:95%;}
    .com_help ul { display: block;}
    .com_help ul li { width:100%;}
    .feedback { display: block;}
    .feedback .box1,.feedback .box2 {
        width:100%;
    }
}


