::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: #d7d7d7;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 6px;
}

input,
select {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select {
    -webkit-appearance: none;
}

input::-ms-clear {
    width: 0;
    height: 0;
}

input::-webkit-credentials-auto-fill-button {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
}

input:focus::-webkit-contacts-auto-fill-button {
    opacity: 0;
}

input:focus,
select:focus {
    outline: none;
    border-width: 0;
    box-shadow: none !important;
}

body {
    word-break: break-word;
}

svg {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
}

i {
    font-style: normal;
}

img {
    width: 100%;
    display: block;
    line-height: 0;
    font-size: 0;
    transition: all 0.5s;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    transition: all 0.3s;
}

.header .h_top {
    padding: 15px 0;
    background: url(../img/header_bg.png);
}

.header .h_top .w1440 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .h_top .logo {
    width: 240px;
    overflow: hidden;
}

.header .h_top .nav_r .contact {
    display: flex;
}

.header .h_top .nav_r .phone {
    padding-right: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.header .h_top .nav_r .phone::after {
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
}

.header .h_top .nav_r .phone svg {
    width: 25px !important;
    height: 25px !important;
    margin-top: 2px !important;
    margin-right: 10px !important;
}

.header .h_top .nav_r .phone p {
    color: rgba(51, 51, 51, 0.5);
    display: inline-block;
    font-size: 17px;
    margin-right: 10px;
}

.header .h_top .nav_r .phone span {
    display: inline-block;
    color: transparent;
    background-image: url(../img/header_ic1.jpg);
    background-size: 150px 30px;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 20px;
    font-family: impact;
}

.header .h_top .nav_r .phone span a {
    display: inline-block;
}

.header .h_top .nav_r .search {
    width: 220px;
    border-radius: 100px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .h_top .nav_r .search input {
    width: 190px;
    height: auto;
    line-height: 30px;
    border: 0;
    padding-left: 15px;
}

.header .h_top .nav_r .search input::placeholder {
    color: #666666;
}

.header .h_top .nav_r .search input:focus {
    outline: none !important;
    border-width: 0;
    box-shadow: none;
}

.header .h_top .nav_r .search .search_btn {
    cursor: pointer;
    width: 27px;
    height: 27px;
    margin-right: 3px;
    background: linear-gradient(318deg, #b78439, #eee09c);
    display: flex;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.header .h_btm {
    background: rgba(246, 243, 243, 0.95);
}

.header .h_btm .w1440 {
    overflow: initial;
}

.header .h_btm .m_nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header .h_btm .m_nav>li {
    width: 14.28%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header .h_btm .m_nav>li::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 23px;
    background: rgba(153, 153, 153, 0.2);
}

.header .h_btm .m_nav>li:nth-last-child(1)::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 23px;
    background: rgba(153, 153, 153, 0.2);
}

.header .h_btm .m_nav>li>a {
    display: inline-block;
    line-height: 60px;
    font-size: 20px;
    color: #555;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s;
    font-weight: bold;
}

.header .h_btm .m_nav .nav_icon {
    display: inline-block;
    margin-left: 10px;
}

.header .h_btm .m_nav .sub_nav {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 100%;
    display: none;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header .h_btm .m_nav .sub_nav li {
    width: 100%;
}

.header .h_btm .m_nav .sub_nav li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px 0;
    transition: all 0.5s;
    color: #777777;
}

.header .h_btm .m_nav .sub_nav li a:hover {
    background-color: #c69d54;
    color: #fff;
}

.header .u-menu {
    display: none;
}

.footer {
    background: url(../img/footer_bg.png);
    padding: 88px 0 57px;
}

.footer .btm_top {
    display: flex;
    justify-content: space-between;
}

.footer .btm_top .footer_t_l {
    width: 300px;
}

.footer .btm_top .footer_t_l .logo {
    width: 220px;
}

.footer .btm_top .footer_t_l .phone {
    margin-top: 23px;
}

.footer .btm_top .footer_t_l .phone p {
    display: inline-block;
    color: rgba(50, 51, 51, 0.8);
}

.footer .btm_top .footer_t_l .phone a {
    color: #323333;
    font-family: Arial, Helvetica, sans-serif;
    display: block;
}

.footer .btm_top .footer_t_l .qr {
    display: flex;
    margin-top: 10px;
}

.footer .btm_top .footer_t_l .qr .qr_item {
    width: 100px;
    margin-right: 20px;
}

.footer .btm_top .footer_t_l .qr .qr_item p {
    color: rgba(50, 51, 51, 0.8);
}

.footer .btm_top .footer_t_l .qr .qr_item .img {
    width: 100px;
}

.footer .btm_top .footer_t_r {
    width: calc(100% - 420px);
}

.footer .btm_top .footer_t_r .infor {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer .btm_top .footer_t_r .infor li {
    width: 16.66%;
}

.footer .btm_top .footer_t_r .infor li>a {
    color: #323333;
    font-weight: bold;
}

.footer .btm_top .footer_t_r .infor li .sub_nav {
    width: 100%;
    margin-top: 20px;
}

.footer .btm_top .footer_t_r .infor li .sub_nav a {
    display: block;
    width: 100%;
    color: rgba(50, 51, 51, 0.8);
    margin-top: 15px;
}

.footer .btm_top .footer_t_r .infor li .sub_nav a span {
    position: relative;
}

.footer .btm_top .footer_t_r .infor li .sub_nav a span::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 1px;
    width: 0;
    background: #c69d54;
    transition: all 0.3s;
}

.footer .btm_top .footer_t_r .infor li .sub_nav a:hover {
    color: #c69d54;
}

.footer .btm_top .footer_t_r .infor li .sub_nav a:hover span::after {
    width: 100%;
}


.footer .btm_bottom {
    border-top: 1px solid rgba(0, 0, 0, .1);
    margin-top: 60px;
    padding-top: 52px;
}

.footer .btm_bottom .w1440 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer .btm_bottom .btm_r {
    width: 92px;
    margin-left: 40px;
}

.footer .btm_bottom p {
    color: rgba(50, 51, 51, .6);
}

.footer .btm_bottom p a {
    position: relative;
}

.footer .btm_bottom p a:hover {
    color: #c69d54;
}

.footer .btm_bottom p a:hover span::after {
    width: 100%;
}


.sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 56px;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    z-index: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sidebar .ic {
    background: linear-gradient(318deg, #b78439, #eee09c);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
}

.sidebar .ic svg {
    width: 30px !important;
    height: 30px !important;
}

.sidebar p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    display: inline-block;
    margin: 15px auto;
    transition: all 0.3s;
}

.sidebar:hover p {
    color: #c69d54;
}

.bnt_top {
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: -50px;
    width: 43px;
    z-index: 600;
    transition: all 0.5s;
}

.frame {
    position: relative;
}

.frame::after {
    content: '';
    display: block;
    background: url(../img/arrow_edge.png);
    background-size: 30px;
    width: 30px;
    height: 30px;
    transform: rotate(90deg);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.frame::before {
    content: '';
    display: block;
    background: url(../img/arrow_edge.png);
    background-size: 30px;
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s;
}

.frame .in-frame::after {
    content: '';
    display: block;
    background: url(../img/arrow_edge.png);
    background-size: 30px;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
}

.frame .in-frame::before {
    content: '';
    display: block;
    background: url(../img/arrow_edge.png);
    background-size: 30px;
    width: 30px;
    height: 30px;
    transform: rotate(270deg);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s;
}

.frame:hover::after {
    top: 5px;
    left: 5px;
}

.frame:hover::before {
    top: 5px;
    right: 5px;
}

.frame:hover .in-frame::after {
    bottom: 5px;
    left: 5px;
}

.frame:hover .in-frame::before {
    bottom: 5px;
    right: 5px;
}

.page_banner {
    margin-top: 85px;
    position: relative;
}

.page_banner .txt {
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.page_banner .txt p {
    color: #fff;
    display: block;
}

.page_banner .txt span {
    color: #fff;
    display: block;
}

.breadcrumbs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumbs .w1440 {
    display: flex;
    justify-content: space-between;
}

.breadcrumbs .tab {
    display: flex;
    align-items: center;
}

.breadcrumbs .tab a {
    display: inline-block;
    line-height: 70px;
    color: #333333;
    margin: 0 25px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.breadcrumbs .tab a.on {
    color: #b69660;
    border-bottom: 2px solid #b69660;
}

.breadcrumbs .subnav {
    display: flex;
    align-items: center;
}

.breadcrumbs .subnav svg {
    margin-right: 8px !important;
}

.breadcrumbs .subnav a {
    display: inline-block;
    color: #999;
}

.breadcrumbs .subnav span {
    display: inline-block;
    color: #999;
    margin: 0 7px;
}

.page-turning {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.page-turning .nums {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-turning svg {
    margin-bottom: 3px !important;
}

.page-turning a {
    display: block;
    width: 45px;
    line-height: 45px;
    color: #000;
    border: 1px solid #e4e4e4;
    margin: 0 8px;
    text-align: center;
}

.page-turning a.on {
    background: url(../img/money-laundering_1.jpg);
    background-size: cover;
    color: #fff;
    border: 1px solid #fff;
}

.page-turning .pagination {
    color: #999999;
    margin-left: 16px;
}

.w1440 {
    width: 1440px;
    overflow: hidden;
    margin: 0 auto;
}

@media screen and (max-width: 1600px) {
    .w1440 {
        width: 80%;
    }

    .footer .btm_top .footer_t_r {
        width: calc(100% - 390px);
    }
}

@media screen and (max-width: 1440px) {

    /* .header .h_top{
        padding: 22px 0;
    } */
    .header .h_btm .m_nav>li>a {
        line-height: 50px;
        font-size: 16px;
    }

    .header .h_btm .m_nav .nav_icon {
        margin-left: 2px;
    }

    .footer .btm_top .footer_t_r .infor li .sub_nav a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1366px) {
    .footer .btm_top .footer_t_r {
        width: calc(100% - 326px);
    }
}

@media screen and (max-width: 1200px) {
    header .h_top .m_nav>li .sub_nav .one_nav {
        width: 90%;
    }

    .w1440 {
        width: 90%;
    }

    header .h_top {
        width: 90%;
    }
}

@media screen and (max-width: 998px) {
    .header .u-menu {
        width: 30px;
        height: 30px;
        position: relative;
        cursor: pointer;
        top: 5px;
        z-index: 6;
        display: block;
    }

    .header .u-menu .menu-sub {
        position: absolute;
        right: 0;
        margin: 8px 0;
        top: 8px;
        width: 20px;
        height: 2px;
        background-color: #163864;
        transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        border-radius: 2px;
    }

    .header .u-menu .menu-sub:after,
    .header .u-menu .menu-sub:before {
        content: "";
        position: absolute;
        right: 0;
        width: 25px;
        height: 2px;
        background-color: inherit;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        border-radius: 2px;
        display: block;
    }

    .header .u-menu .menu-sub:before {
        top: -16px;
    }

    .header .u-menu .menu-sub:after {
        top: -8px;
    }

    .header .u-menu.on .menu-sub {
        height: 0;
        background: #163864;
    }

    .header .u-menu.on .menu-sub:before {
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        background: #163864;
        top: -8px;
    }

    .header .u-menu.on .menu-sub:after {
        -ms-transform: rotate(-225deg);
        -moz-transform: rotate(-225deg);
        -webkit-transform: rotate(-225deg);
        -o-transform: rotate(-225deg);
        transform: rotate(-225deg);
        background: #163864;
        top: -8px;
    }

    .header .u-menu.on .menu-sub:before,
    .header .u-menu.on .menu-sub:after {
        width: 20px;
    }

    .header.on .u-menu .menu-sub {
        background-color: #163864;
    }

    .header.on .u-menu.on .menu-sub {
        background: #163864;
    }

    .header.on .u-menu.on .menu-sub:before {
        background: #163864;
    }

    .header.on .u-menu.on .menu-sub:after {
        background: #163864;
    }

    .header.on .h_top .m_nav {
        height: auto;
    }

    .header:hover .u-menu .menu-sub {
        background-color: #163864;
    }

    .header:hover .u-menu.on .menu-sub {
        background: #163864;
    }

    .header:hover .u-menu.on .menu-sub:before {
        background: #163864;
    }

    .header:hover .u-menu.on .menu-sub:after {
        background: #163864;
    }

    .header .h_top {
        padding: 10px 0;
    }

    .header .h_top .logo {
        width: 140px;
    }

    .header .h_top .nav_r .phone {
        display: none;
    }

    .header .h_top .nav_r .search {
        margin-right: 15px;
    }

    .header .nav_r {
        display: flex;
        align-items: center;
    }

    .header .h_btm .m_nav {
        position: fixed;
        top: 50px;
        left: 0;
        height: auto;
        width: 100%;
        bottom: 0;
        right: 0;
        background-color: #fff;
        margin-left: 0;
        display: none;
        overflow-y: scroll;
        overflow-x: hidden;
        transition: all;
    }

    .header .h_btm .m_nav>li {
        padding: 0 20px;
        width: 100%;
        height: auto;
        display: block;
        border-bottom: 1px solid #f1f1f1;
        position: relative;
    }

    .header .h_btm .m_nav>li>a {
        color: #333;
        font-size: 16px;
        width: 80%;
        height: 55px;
        line-height: 55px;
    }

    .header .h_btm .m_nav>li .nav_icon {
        position: absolute;
        bottom: auto;
        top: 0%;
        left: auto;
        right: 0%;
        transform: translateX(0%);
        width: 20%;
        height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .h_btm .m_nav>li .nav_icon svg {
        transition: all 0.3s;
        width: 15px;
        height: 15px;
    }

    .header .h_btm .m_nav>li .sub_nav {
        position: static;
        transform: translateX(0);
        width: 100%;
        padding-left: 10px;
        text-align: left;
        box-shadow: none;
    }

    .header .h_btm .m_nav>li::after {
        display: none;
    }

    .header .h_btm .m_nav>li:nth-last-child(1)::before {
        display: none;
    }

    .header .h_btm .m_nav>li .sub_nav a {
        color: #777;
        text-align: left;
        padding-left: 20px;
    }

    .header.on .h_top .nav_r .language .other,
    .header .h_top .nav_r .language .other {
        top: 37px;
    }

    .header .h_btm .m_nav>li .sub_nav .one_nav {
        width: 100%;
        padding: 0;
    }

    .header .h_btm .m_nav>li .sub_nav .one_nav>li {
        width: 100%;
        margin: 0 0 10px 0;
        border-bottom: 0;
    }

    .header .h_btm .m_nav>li .sub_nav .one_nav>li .one_tit p {
        font-size: 16px;
        line-height: 1.5;
    }

    .header .h_btm .m_nav>li .sub_nav .one_nav>li .one_tit span {
        font-size: 12px;
        line-height: 1.5;
        margin-top: 5px;
    }

    .header .h_btm .m_nav>li .sub_nav .one_nav>li:nth-last-child(1) .two_nav>li:nth-last-child(1) {
        border-bottom: 0;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer .btm_top .footer_t_r {
        display: none;
    }

    .footer .btm_top .footer_t_l {
        width: 100%;
    }

    .footer .btm_top .footer_t_l .logo {
        margin: 0 auto;
    }

    .footer .btm_top .footer_t_l .phone {
        text-align: center;
    }

    .footer .btm_top .footer_t_l .qr {
        justify-content: center;
    }

    .footer .btm_top .footer_t_l .qr .qr_item {
        margin: 0 10px;
    }

    .footer .btm_top .footer_t_l .qr .qr_item p {
        text-align: center;
    }

    .footer .btm_bottom {
        margin-top: 30px;
        padding-top: 30px;
    }

    .footer .btm_bottom p {
        text-align: center;
    }

    .footer .btm_bottom .w1440{
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer .btm_bottom .btm_l{
        width: 100%;
    }

    .footer .btm_bottom .btm_r{
        margin-left: 0!important;
        margin-top: 20px;
    }

    .sidebar {
        right: 10px;
        width: 35px;
    }

    .sidebar .ic {
        height: 35px;
    }

    .sidebar p {
        margin: 9px auto;
    }

    .sidebar .ic svg {
        width: 20px !important;
        height: 20px !important;
    }

    .breadcrumbs .subnav {
        display: none;
    }

    .breadcrumbs .tab {
        overflow: overlay;
    }

    .breadcrumbs .tab a {
        line-height: 45px;
    }

    .page_banner {
        margin-top: 50px;
    }

    .page_banner .img {
        height: 200px;
    }

    .page_banner .img img {
        height: 100%;
        object-fit: cover;
    }

    .cont .page-turning {
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .cont .page-turning .nums {
        width: 100%;
    }

    .cont .page-turning .pagination {
        margin-left: 0;
        text-align: center;
        margin-top: 15px;
    }
}

@media screen and (max-width: 768px) {
    .header .h_top .nav_r .search {
        width: auto;
        border: 0;
    }

    .header .h_top .nav_r .search input {
        display: none;
    }

    .bnt_top {
        width: 35px;
    }
}

/*# sourceMappingURL=./base.css.map */