

body, dl, dd, ul, ol, h1, h2, h3, h4, h5, h6, pre, form, input, textarea, p, hr, thead, tbody, tfoot, th, td {
    margin: 0;
    padding: 0;
    line-height: 1;
}

html {
    font-size: 100px;
}

body {
    margin: 0;
    line-height: 1;
    font-size: 0.16rem;
    font-family: "microsoft yahei", "simhei", Arial, sans-serif;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

input {
    border: none;
    outline: none;
}

a, a:hover, a:active, a:focus {
    text-decoration: none;
}


p {
    text-align: justify;
}


/* 单行文本溢出显示省略号 */
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 多行文本溢出显示省略号 */
.more-line-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* 设置n行，也包括1 */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hc-search {
    display: flex;
    width: 5.73rem;
    min-width: 240px;
    height: 0.6rem;
    min-height: 30px;
    background: #FFFFFF;
    box-shadow: -2px 7px 16px 0px rgba(30, 116, 222, 0.1400);
    border-radius: 0.05rem;
    margin-top: 0.6rem;
}

.hc-search>input {
    height: 100%;
    flex: 1;
    padding: 0 20px;
}

.hc-search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.7rem;
    min-width: 35px;
    height: 100%;
    background: #2272F0;
    border-bottom-right-radius: 0.05rem;
    border-top-right-radius: 0.05rem;
    cursor: pointer;
}

.hc-search-btn>img {
    width: 0.36rem;
}


[data-rtl] {
    flex-direction: row-reverse;
}

.hc_anchor {
    position: relative;
    top: -150px;
}

.hc_w1200 {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* 头部 */

.hc-head {
    height: auto;
}

.hc-head-ctn {
    z-index: 9999;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 1);
}


.hc-head-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding-left: 20px;
    border-bottom: 1px solid #E3E3E3;
    position: relative;
    transition: .5s;
}

.hc-head-main img {
    height: 36px;
    height: 38px;
}

.hc-nav {
    width: 100%;
    display: flex;
    padding-left: 1rem;
}

.hc-nav>li {
    position: relative;
}

.hc-nav>li>a {
    display: block;
    position: relative;
    padding: 0 0.3rem;
    font-size: 0.16rem;
    color: #111;
    line-height: 60px;
}

.hc-nav>li.clsactive {
    color: #000;
    font-weight: 700;
}

.hc-nav>li.clsactive::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.hc-nav>li:hover {
    color: #000;
    font-weight: 700;
}

.hc-nav>li::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.hc-nav>li:hover::after {
    background: #000;
}

.hc-nav>li>i {
    display: none;
}

.hc-menu-dropdown {
    display: flex;
    position: absolute;
    top: -50vw;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    box-shadow: 0px 24px 20px 0px rgba(16, 68, 174, 0.13);
    /* transition: all 0.5s; */
    opacity: 0;
    z-index: 9999;
    /* height: 514px; */
}

.hc-menu-dropdown.open {
    opacity: 1;
    top: 100%;
}

.hc-menu-dropdown-l {
    display: flex;
    justify-content: flex-end;
    padding: 55px 34px 40px;
    width: 26%;
    background: #FFFFFF;
}

.hc-menu-dropdown-l ul li {
    margin-bottom: 40px;
}

.hc-menu-dropdown-l ul li a {
    display: block;
    position: relative;
    font-size: 16px;
    color: #333;
    text-align: right;
    line-height: 30px;
}

.hc-menu-dropdown-l ul li.active a {
    color: #2468F2;
}

.hc-menu-dropdown-l ul li.active a::after {
    content: "";
    width: 79px;
    height: 3px;
    background: #2468F2;
    position: absolute;
    bottom: -6px;
    right: 0;
}

.hc-menu-dropdown-r {
    flex: 1;
    padding: 40px 0 50px;
    /* background: url(/images/head-bg.png) no-repeat right/cover; */
}

.hc-menu-dropdown-sub {
    max-width: 1000px;
    max-height: 420px;
    overflow-x: auto;
    padding-top: 18px;
}

.hc-menu-dropdown-sub::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 12px;
    /*高宽分别对应横竖滚动条的尺寸*/
}

.hc-menu-dropdown-sub::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    width: 12px;
    background: #E3E3E3;
    border-radius: 5px;
}

.hc-menu-dropdown-sub::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 5px;
    background: #FFFFFF;
}

.hc-menu-dropdown-sub-body {
    margin-bottom: 50px;
}

.hc-menu-dropdown-sub-body:last-child {
    margin-bottom: 0;
}

.hc-menu-dropdown-sub-title {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #111111;
    margin: 10px 0 20px 52px;
}

.hc-menu-dropdown-sub-title::before {
    content: "";
    width: 4px;
    height: 17px;
    background: #2468F2;
    position: absolute;
    left: -10px;
}

.hc-menu-dropdown-sub-main {
    width: 100%;
    padding-left: 42px;
}

.hc-menu-dropdown-sub-ctn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 107px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 0 26px;
    margin-bottom: 16px;
    position: relative;
    top: 0;
    transition: .3s;
}

.hc-menu-dropdown-sub-ctn:hover {
    top: -6px;
    box-shadow: 0px 5px 10px 0px rgba(5, 82, 168, 0.2);
}

.hc-menu-dropdown-sub-ctn:hover .hc-menu-dropdown-sub-ctn-text>h4 {
    color: #2468F2;
}

.hc-menu-dropdown-sub-ctn>i {
    font-size: 38px;
    margin-right: 26px;
    color: #2468F2;
}

.hc-menu-dropdown-sub-ctn-text>h4 {
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

}

.hc-menu-dropdown-sub-ctn-text>p {
    font-size: 12px;
    font-weight: 400;
    color: #777777;
    margin: 0;
    margin-top: 12px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

/* 总站 */
.terminus {
    position: relative;
    flex: 0 0 100px;

}


.terminus-all {
    position: relative;
    line-height: 60px;
    font-size: 16px;
    text-align: center;
    /* border-right: 1px solid #e6e6e6; */
    cursor: pointer;
}



.terminus-all:hover {
    color: #588cf4;
}

.terminus-all span {
    position: relative;
}

.terminus-all span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -46px;
    height: 100%;
    width: 1px;
    background: #d1d1d1;
}

.terminus-all i {
    font-size: 12px;
    margin-left: 8px;
}



.terminus-items {
    display: none;
    width: 170px;
    position: absolute;
    top: 55px;
    left: 10px;
    box-shadow: 0px -3px 20px #ccc;
}

.terminus-items::after {
    content: "";
    position: absolute;
    top: -16px;
    left: 18px;
    border: 8px solid transparent;
    border-bottom-color: #fff;
}

.terminus-items.open {
    display: block;
}

.terminus-item {
    height: 70px;
    padding-top: 12px;
    padding-left: 30px;
    background: #FFFFFF;
}

.terminus-item:first-child {
    border-bottom: 1px solid #eaeaea;
}

.terminus-item p {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.terminus-item p::after {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d1d1d1;
}

.terminus-list {}

.terminus-list a {
    display: inline-block;
    width: 60px;
    font-size: 14px;
    color: #878787;
}

.terminus-list a:hover {
    color: #588cf4;
}

.hc-login-reg {
    display: flex;
    flex: 0 0 200px;
}

.hc-login-reg a {
    flex: 1;
    display: block;
    line-height: 60px;
    text-align: center;
    color: #111;
    font-size: 16px;
}

.hc-login-reg .reg {
    color: #fff;
    background: #2468F2;
}

.loginreg {
    display: none;
    flex: 0 0 70px;
    line-height: 30px;
    background: #2468F2;
    text-align: center;
    font-size: 12px;
    color: #fff;
    border-radius: 2px;
}

.hc-mb-menu-btn {
    display: none;
    height: 50px;
    line-height: 50px;
    width: 50px;
    font-size: 18px;
    text-align: center;
    color: #333;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}

.hc-mb-menu-btn:hover {
    color: #09f;
}

/* 底部 start */

.hc-foot {
    background-color: #242526;
}

.hc-foot-a {
    padding-top: 46px;
    background-color: #303133;
    color: #fff;
}

.hc-foot-a-t {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    max-width: 1200px;
    border-bottom: 1px solid #48494D;
    padding-bottom: 30px;
}

.hc-foot-a-t>ul {
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hc-foot-a-t>ul>li {
    min-width: 118px;
}

.hc-foot-a-t>ul>li>h4 {
    font-size: 16px;
    line-height: 40px;
}

.hc-foot-a-t>ul>li>h4>img {
    margin-right: 9px;
    width: 18px;
    height: 18px;
    vertical-align: -3px;
}

.hc-foot-a-t>ul>li>ul>li>a {
    font-size: 14px;
    color: #B3B3B3;
    line-height: 40px;
}

.hc-foot-a-r {
    width: 42%;
}

.hc-foot-a-r>ul {
    display: flex;
    justify-content: flex-end;
}

.hc-foot-a-r>ul>li {
    display: flex;
    flex-direction: column;
    margin-right: 36px;
    align-items: center;
}

.hc-foot-a-r>ul>li img, .hc-foot-qrcode>img {
    width: 103px;
    height: 103px;
}

.hc-foot-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hc-foot-qrcode span {
    margin-top: 11px;
    font-size: 14px;
    color: #B3B3B3;
}

.hc-foot-a-r>ul>li>span {
    margin-top: 11px;
    font-size: 14px;
    color: #B3B3B3;
}

.hc-foot-a-b {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

.hc-foot-a-b>h4 {
    width: 61px;
    font-size: 14px;
    font-weight: bold;
    color: #E6E6E6;
    line-height: 35px;
    margin: 0;
    margin-right: 30px;
}

.hc-foot-a-b>ul {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.hc-foot-a-b>ul li {
    /* width: 12.5%; */
    margin-right: 60px;
}

.hc-foot-a-b>ul>li>a {
    font-size: 14px;
    color: #B3B3B3;
    /* margin-left: 56px; */
    line-height: 35px;
}

.hc-foot-b {
    display: flex;
    padding: 34px 0;
    background-color: #242526;
}

.hc-foot-b-ctn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.hc-foot-b-ctn>img {
    height: 36px;
    height: 38px;
    /* margin-right: 85px; */
}

.hc_copyright {
    max-width: 500px;
}

.hc_copyright p {
    font-size: 14px;
    color: #B3B3B3;
    line-height: 24px;
}

.hc-foot-tx {
    color: #B3B3B3;
}

.hc-foot-tx h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.hc-foot-tx h4 img {
    width: 14px;
    opacity: .5;
}

.hc-foot-c {
    width: 90%;
    max-width: 1200px;
    border-top: 1px solid #666;
    background-color: #242526;
    padding: 34px 0;
    margin: auto;
}

.hc-foot-c p {
    font-size: 14px;
    color: #B3B3B3;
    text-align: center;
    line-height: 24px;
}

.hc-foot-c a {
    color: #B3B3B3;
}

/* 底部 end*/

/*移动端版二级菜单*/

.hc_submenu {
    background-color: #f0f0f0;
    overflow: auto;
}

.hc_submenu>li {
    float: right;
    width: 100%;
    line-height: 40px;
    position: relative;
}

.hc_submenu>li:hover {
    background: #dfdddd;
}

.hc_submenu>li>a {
    line-height: 40px;
    color: #333;
    display: inline;
    padding-left: 50px;
}

.hc_submenu>li>a>i {
    color: #333 !important;
    position: absolute;
    right: 30px;
    top: 5px;
    height: 30px;
    line-height: 30px;
    width: 30px;
    padding: 0;
    text-align: center;
    font-size: 12px;
}

.hc_submenu>li.active>a>i {
    transform: rotate(90deg);
}

.hc_thirdmenu {
    background-color: #e6e6e6;
    overflow: auto;
}

.hc_thirdmenu>li {
    float: right;
    width: 100%;
    line-height: 40px;
    position: relative;
}

.hc_thirdmenu>li:hover {
    background: #a1a1a1;
}

.hc_thirdmenu>li>a {
    line-height: 40px;
    color: #333;
    display: inline;
    padding-left: 75px;
}

.hc_thirdmenu>li>a>i {
    color: #333 !important;
    position: absolute;
    right: 30px;
    top: 5px;
    height: 30px;
    line-height: 30px;
    width: 30px;
    padding: 0;
    text-align: center;
    font-size: 12px;
}

.hc_thirdmenu>li.active>a>i {
    transform: rotate(90deg);
}

.hc_fourthmenu {
    background-color: #cecece;
    overflow: auto;
}

.hc_fourthmenu>li {
    float: right;
    width: 100%;
    line-height: 40px;
    position: relative;
}

.hc_fourthmenu>li:hover {
    background: #919191;
}

.hc_fourthmenu>li>a {
    line-height: 40px;
    color: #333;
    display: inline;
    padding-left: 100px;
}



/* 咨询弹出框 */
.hc-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    background: rgba(0, 0, 0, .7);
    display: none;
    color: #000
}

.hc-dialog.hc-show {
    display: -webkit-box;
    display: box
}

.hc-dialog-ctn {
    position: relative;
    width: 80%;
    max-width: 680px;
    padding: 50px 40px;
    background-color: #fff;
}

.inquiry .hc-dialog-ctn {
    background: url(/images/dialog.png) no-repeat center/cover;
}

.hc-dialog-close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: -48px;
    cursor: pointer;
}

.hc-dialog-close::before,
.hc-dialog-close::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 24px;
    height: 2px;
    border-radius: 24px;
    background-color: #FFFFFF;
    transform: rotate(45deg);
}

.hc-dialog-close::after {
    transform: rotate(-45deg);
}

.hc-dialog-desc>h4 {
    font-size: 20px;
    font-weight: 400;
    color: #282828;
}

.hc-dialog-desc>p {
    font-size: 10px;
    font-weight: 400;
    color: #AEAEAE;
    transform: scale(0.8);
    transform-origin: left;
}


.hc-form input,
.hc-form textarea {
    background: transparent;
    padding: 0px;
    font-size: 15px;
    color: #333;
    outline: none;
    border: 0px;
    font-family: "microsoft yahei", "simhei", Arial, sans-serif;
}

.hc-form textarea {
    padding-top: 18px;
    font-size: 14px;
    width: 100%;
    height: 100%;
    resize: none;
}

.hc-form-item {
    display: flex;
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
}

.hc-form-item.readonly input {
    background: transparent;
    box-shadow: none;
}

.hc-form .li2 .hc-form-item {
    height: 80px;
}

.hc-form-title {
    display: flex;
    /* align-items: center; */
    justify-content: flex-end;
    width: 80px;
    line-height: 45px;
    margin-right: 17px;
    color: #46546E;
    font-size: 16px;
    font-family: Source Han Sans CN;
}

.hc-form-title em {
    color: #EB6100;
}

.hc-form-item input,
.hc-form-item textarea {
    flex: 1;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 10px 18px 0px rgba(136, 152, 182, 0.15);
    opacity: 0.9;
    padding-left: 20px;
    padding-right: 20px;
}

.hc-form-item input::-webkit-input-placeholder {
    color: #999;
}

.hc-form-item textarea::-webkit-input-placeholder {
    color: #999;
}

.hc-form-submit {
    width: 100%;
    line-height: 46px;
    text-align: center;
    background: #2468F2;
    box-shadow: 0px 10px 18px 0px rgba(136, 152, 182, 0.15);
    margin-top: 40px;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

.hc_selectbox {
    flex: 1;
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.hc_selectitem {
    position: relative;
    width: 30%;
    height: 100%;
    cursor: pointer;
}

.hc_select_div {
    width: 100%;
    height: 100%;
}

.hc_select_div input {
    width: 100%;
    flex: none;
    cursor: pointer;
}

.hc_opt {
    display: none;
    width: 100%;
    background-color: pink;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    box-sizing: border-box;
    margin: 5px 0;
    max-height: 200px;
    overflow-y: auto;
}

.hc_selectitem.hc_show .hc_opt {
    display: block;
}

.select_ul li {
    font-size: 14px;
    padding: 0 20px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #606266;
    height: 34px;
    line-height: 34px;
    box-sizing: border-box;
    cursor: pointer;
}

.select_ul li:hover {
    background-color: #f5f7fa;
}

.hc_opt::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    /*高宽分别对应横竖滚动条的尺寸*/
}

.hc_opt::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    width: 12px;
    background: #E3E3E3;
    border-radius: 5px;
}

.hc_opt::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 5px;
    background: #FFFFFF;
}

/* 申请体验弹出框 */
.hc-dialog.apply .hc-dialog-ctn {
    padding: 30px 29px;
    max-width: 617px;
    background-color: #FBFCFD;
}

.hc-dialog-desc>h2 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}

.hc-dialog.apply .hc-form {
    padding: 40px 50px 20px 20px;
    background: url(/images/dialog2.png) no-repeat center/cover;
}

/* pc分页 */
.fl {
    float: left;
}

.fr {
    float: right;
}

.hc_fy {
    padding: 0.2rem 0 0;
}

.hc_fenye {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    text-align: center;
}

.hc_fenye li {
    float: left;
    line-height: 36px;
    margin: 0px 10px;
    transition: all .5s;
}


.hc_fenye li a {
    display: block;
    width: 36px;
    height: 36px;
    font-size: 14px;
    color: #666;
    background: linear-gradient(180deg, #EEF0F8, #FDFEFE);
    box-shadow: 4px 4px 15px 0px rgba(59, 88, 202, 0.1000);
    border-radius: 5px;
    transition: all .5s;
}

.hc_fenye li.prev a, .hc_fenye li.next a {
    width: auto;
    padding: 0 14px;
}

.hc_fyli.activepage {
    cursor: context-menu;
}

.hc_fenye li:hover a {
    color: #fff;
    background: #2D6AE8;

}

.hc_fyli.activepage a {
    color: #fff;
    background: #2D6AE8;
}

/* ph分页 */
.hc_phfy {
    display: none;
    padding: 0 20px;
}

.hc_phfy .last, .hc_phfy .next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 30px;
    color: #fff;
    border-radius: 10px;
    background-color: #13558A;
}

@media (max-width: 1200px) {}

@media (max-width:992px) {

    /* 导航栏 */
    .hc-head {
        height: 60px !important;
    }

    .hc-nav {
        width: 100vw;
        height: calc(100vh - 60px);
        position: fixed;
        top: 60px;
        left: 0;
        display: none;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.5);
        overflow: auto;
    }

    .hc-nav.open {
        display: block;
    }

    .hc-nav>li {
        width: 100%;
        float: right;
        background-color: #fff;
        position: relative;
    }

    .hc-nav li.clsactive {
        color: initial;
        font-weight: 400;
    }

    .hc-nav li.clsactive::after {
        display: none;
    }

    .hc-nav li:hover::after {
        display: none;
    }

    .hc-nav li:hover {
        color: initial;
        font-weight: 400;
    }

    .hc-nav>li>a {
        text-align: left;
        padding: 0 25px;
        background-color: #fff;
        color: #333;
        display: inline-block;
        font-size: 14px;
        line-height: 50px;
    }

    .hc-nav>li:hover, .hc-nav>li.seld {
        background-color: #09f;
    }

    .hc-nav>li:hover>a, .hc-nav>li.seld>a {
        background-color: transparent;
        color: #fff !important;
    }

    .hc-nav>li>i {
        display: inline-block;
        color: #333 !important;
        position: absolute;
        right: 30px;
        top: 15px;
        height: 30px;
        line-height: 30px;
        width: 30px;
        padding: 0;
        text-align: center;
    }

    .hc-nav>li.active>i {
        transform: rotate(90deg);
    }

    .terminus {
        position: absolute;
        right: 270px;
        width: 100px;
    }

    .hc-menu-dropdown {
        display: none;
    }

    .hc-foot-a-b>ul li {
        width: 16%;
        margin-right: 0;
    }

    .hc-head-main {
        padding-right: 60px;
    }

    .hc-mb-menu-btn {
        display: block;
    }

    .hc-login-reg a {
        line-height: 40px;
        border-radius: 2px;
    }


    .hc-foot .hc-foot-a-t {
        flex-direction: column;
    }

    .hc-foot .hc-foot-a-r {
        width: 100%;
        margin-top: 20px;
    }

    .hc-foot .hc-foot-a-r ul {
        justify-content: flex-start;
    }

    .hc-foot .hc-foot-b-ctn {
        flex-direction: column;
    }

    .hc-foot .hc-foot-b-ctn>img {
        margin: 0 0 30px;
    }

    .hc-foot-a-b {
        flex-direction: column;
    }

    .hc-foot-a-b>ul li {
        width: 20%;
    }

    .hc-foot-qrcode, .hc-foot-tx, .hc_copyright {
        margin-bottom: 20px;
    }

    /* 分页 */
    .hc_pcfy {
        display: none;
    }

    .hc_phfy {
        display: block;
    }
}

@media (max-width:780px) {
    .hc-foot-a-b>ul li {
        width: 33%;
    }

    .hc_cloud_floatMenu {
        height: 30px;
        width: 30px;
        border-radius: 50%;
        background-color: #09f;
        right: -10px;
        transition: right 0.5s;
    }

    .hc_cloud_floatMenu:after {
        content: "\e137";
        font-family: "Glyphicons Halflings";
        line-height: 30px;
        height: 30px;
        width: 30px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        color: #fff;
        text-align: center;
    }

    .hc_cloud_floatMenu>li {
        left: 500px;
        transition: all 0.5s;
    }

    .hc_cloud_floatMenu:hover {
        height: auto;
        width: auto;
        border-radius: 0;
        background-color: transparent;
        right: 50px;
    }

    .hc_cloud_floatMenu:hover:after {
        content: "";
    }

    .hc_cloud_floatMenu:hover>li {
        left: 0;
    }
}

@media (max-width: 640px) {

    .hc-login-reg {
        display: none;
    }

    .loginreg {
        display: block;
    }

    .terminus {
        right: 120px;
    }

    .terminus-all span {
        font-size: 14px;
    }

    .terminus-all span::after {
        display: none;
    }

    .hc-head-main img {
        height: 30px;
    }

    /* 咨询弹出框 */
    .hc-dialog-ctn {
        width: 100%;
        padding: 20px 10px 40px;
    }

    .hc-form-title {
        width: 60px;
        font-size: 12px;
    }

    .hc-form input, .hc-form textarea {
        font-size: 12px;
    }

    .hc-form-submit {
        font-size: 14px;
    }

    .hc-dialog-close {
        top: 2px;
        right: 10px;

    }

    .hc-dialog-close::before, .hc-dialog-close::after {
        background-color: #000;
    }

    .hc-dialog.apply .hc-form {
        padding-right: 20px;
    }

    .hc-dialog.apply .hc-dialog-ctn {
        padding: 30px 0;
    }
}

@media (max-width: 500px) {

    .hc-head-main {
        padding-left: 10px;
    }

    /* .hc-login-reg {
        flex: 0 0 160px;
    }

    .hc-login-reg a {
        font-size: 14px;
    } */

    .hc-foot-a-b>ul li {
        width: 50%;
    }
}