:root {
    --blue: #0F56AE;
}

a {
    color: inherit;
}



* {
    word-break: break-word !important;
}



.wrap {
    width: 1440px;
    margin-left: auto;
    margin-right: auto;
}


.conbtn {
    width: 160px;
    height: 40px;
    border-radius: 6px;
    color: #fff;
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
    font-size: 14px;
}


.conbtn::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.conbtn:hover::after {
    -webkit-animation: btn_ani 1s;
    animation: btn_ani 1s;
    z-index: 2;
}

.contit {
    font-weight: bold;
    color: #222222;
    text-align: left;
    position: relative;
    line-height: 1;
    padding-left: 21px;
}

.contit::before {
    content: '';
    position: absolute;
    width: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: calc(600% / 7);
    background: linear-gradient(95deg, #0F56AE 0%, #0F56AE 60.06%, #0F56AE 100%);
}

.condes {
    color: #666666;
    line-height: 1.875;
}

.conchangelist {
    display: flex;
}

.conchange-item {
    flex: none;
    width: 160px;
    height: 40px;
    margin-right: 20px;
}

.conchange-item a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #222222;
    text-align: center;
    line-height: 38px;
    border-radius: 6px;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    transition: all .5s;
}

.conchange-item.act a {
    color: #fff;
    border-color: var(--blue);
    background-color: var(--blue);
}

@keyframes btn_ani {
    0% {
        background: rgba(0, 0, 0, 0.25);
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        background: transparent;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    transition: all .6s;
}



.header.hides {
    transform: translateY(-100%);
}


.header .header-inner {
    display: flex;
    padding: 10px 4vw;
    height: 100px;
    box-sizing: content-box;
    align-items: center;
    transition: all .3s;
}


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

.header .stockcode {
    margin-left: 2.03vw;
    color: #fff;
    transition: all .3s;
}

.header .header-logo {
    width: 143px;
}

.header .header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.header .header-logo img:nth-child(2) {
    display: none;
}

.header .header-nav {
    display: flex;
    margin-left: auto;
}

.header .header-nav1 {
    line-height: 100px;
    color: #fff;
    font-weight: 500;
    transition: all .6s;
    position: relative;
}
.header .header-nav1 a{
    color: inherit;
}
.header .header-nav1:after{
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 3px;
    bottom: 0;
    background: var(--blue);
    transform: translateX(-50%);
    transition: all .5s;
}

.header .hnav-item {
    flex: none;
    margin: 0 2.135vw;
    position: relative;
}
.header .hnav-item:hover .header-nav1 {
    color: var(--blue);
}
.header .hnav-item:hover .header-nav1:after{
   width: 100%;
}

.header .headnav2 {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-32%);
    padding-top: 1px;
    display: none;
}



.header .header-rg {
    display: flex;
    height: 100%;
    margin-left: 2.5vw;
}

.header .search {
    height: 100%;
    align-items: center;
    display: flex;
}

.header .search svg {
    width: 26px;
    height: 26px;
}

.header .language {
    display: flex;
    position: relative;
    margin-left: 1.8vw;
    align-items: center;

}

.header .language svg {
    width: 22px;
    height: 22px;

}



.header .nav2 {
    display: none;
    position: absolute;
    left: 50%;
    top:70px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 160px;
    background: white;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.header .nav2 a {
    color: #333;
    display: block;
    line-height: 40px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
}

.header .nav2 a:hover {
    background: var(--blue);
    color: #fff;
}

.header.head_act {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header.head_act .header-inner {
    padding-top: 0;
    padding-bottom: 0;
}


.header.head_act1 {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header.head_act .header-logo img:nth-child(1),
.header.head_act1 .header-logo img:nth-child(1) {
    display: none;
}

.header.head_act .header-logo img:nth-child(2),
.header.head_act1 .header-logo img:nth-child(2) {
    display: block;
}

.header.head_act .stockcode,
.header.head_act1 .stockcode,
.header.head_act .header-nav1,
.header.head_act1 .header-nav1 {
    color: #333;
}

.header.head_act .search svg path,
.header.head_act1 .search svg path,
.header.head_act .language svg path,
.header.head_act1 .language svg path {
    fill: #333;
}

.mohead {
    display: none;
}



.footer {
    background: url('../img/footbj.jpg') no-repeat center center/cover;
}

.footer-top {
    display: flex;
}

.footer .footer-lf {
    flex: 0 0 24.1%;
}

.footer-rg {
    flex: 1;
    display: flex;
    margin-left: 11.8%;
    justify-content: space-between;
}

.footer .footer-logo {
    width: 146px;
}

.footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .footer-des {
    line-height: 24px;
    color: #222222;
}

.footer .footer-link {
    display: flex;
}

.footer .flink-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #AAAAAA;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    transition: all .5s;
}

.footer .flink-item svg {
    width: 24px;
    height: auto;
}
.footer .flink-item:hover{
    background: var(--blue);
    border-color: var(--blue);
}
.footer .flink-item:hover svg path{
    fill: #fff;
}
.footer .flink-item:last-child svg {
    width: 22px;
}


.footer .flink-item .code {
    width: 110px;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    top: 0px;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    background: #fff;
}

.footer .flink-item:hover .code {
    visibility: visible;
    transform: translate(-50%, -110%);
    -webkit-transform: translate(-50%, -110%);
    -moz-transform: translate(-50%, -110%);
    -ms-transform: translate(-50%, -110%);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.footer .flink-item .code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .flink-item .code:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #fff;
}

.footer-tit {
    font-weight: bold;
    line-height: 1.2;
    color: #333333;
}

.footer .footer-nav {
    flex: none;
}

.footer .fnav-item {
    line-height: 36px;
    font-weight: 500;
}

.footer .fnav-item a {
    color: #777;
}

.footer .fnav-item a:hover {
    color: var(--blue);
}

.footer .methods svg {
    width: 20px;
    height: 20px;
    flex: none;
    margin-right: 12px;
}

.footer .methods a {
    display: flex;
    color: #777777;
    line-height: 20px;
    padding: 5px 0;
    font-weight: 400;
}
.footer .methods a span{
    white-space: nowrap;
}

.footer .methods a:hover {
    color: var(--blue);
}

.footer .methods a:hover svg path {
    fill: var(--blue);
}

.footer .gzh {
    width: 112px;
    margin-top: 15px;
}

.footer .gzh-img {
    width: 100%;
}

.footer .gzh-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .gzh p {
    font-weight: 400;
    font-size: 14px;
    color: #222222;
    text-align: center;
    margin-top: 12px;
}

.footer .fr-des {
    font-weight: 400;
    color: #222222;
    line-height: 1.625;
}

.footer .footer-contact {
    max-width: none;
    margin-left: 10%;
}

.footer .footer-follow {
    max-width: 25%;
}

.footer .footer-btm {
    border-top: 1px solid rgba(203, 203, 203, .6);
}

.footer .footer-binner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .fblink {
    font-size: 14px;
    line-height: 24px;
    color: #777777;
}

.footer .fblink a {
    color: #777;
    transition: all .5s;
}

.footer .fblink a:hover {
    color: var(--blue);
}

.footer .copyright {
    font-weight: 400;
    font-size: 14px;
    color: #777777;
    line-height: 24px;
    margin-top: 8px;
    margin-right: 6px;
}
.footer .icp{
        font-weight: 400;
    font-size: 14px;
    color: #777777;
    line-height: 24px;
    margin-top: 8px;
}
.footer .icp:hover{
    color:var(--blue)
}
.footer .footer-brg {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #777777;
    line-height: 24px;
}

.subsidiary {
    width: 410px;
    height: 50px;
    position: relative;

    margin-left: 22px;
}

.subsidiary p {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    background-color: #fff;
    font-weight: 400;
    color: #777777;
}

.subsidiary p img {
    width: 14px;
    object-fit: contain;
    transition: all .5s;
}

.subsidiary p.act img {
    transform: rotate(180deg);
}

.subsidiarylist {
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    left: 0;
    width: 100%;
    display: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.subsidiary-item a {
    display: block;
    line-height: 2.5;
    padding: 0 19px;
    color: #333;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #fff;
}

.subsidiary-item a:hover {
    background-color: var(--blue);
    color: #fff;
}

.abanner {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 28%;
}

.abanner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abanner .abantxt {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.abanner .aban-tit {
    font-weight: bold;
    line-height: 1.5;
    color: #222222;
    text-align: left;
}

.abanner .aban-en {
    font-size: 16px;
    color: #222222;
    line-height: 30px;
    text-transform: uppercase;
}

.thumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.thumb>div {
    max-width: 50%;
}

.thumblist {
    display: flex;
}

.thumblist li a,
.thumblist li span {
    line-height: 30px;
    color: #999999;
}

.thumblist li:first-child a {
    display: flex;
    align-items: center;
}

.thumblist li:first-child a svg {
    width: 16px;
    margin-right: 6px;
    height: 16px;
}
.thumblist li:first-child a:hover span{
    color: var(--blue);
}
.thumblist li a:hover {
    color: var(--blue);
}

.thumblist li a:hover svg path{
    fill: var(--blue);
}

.thumblist>span {
    margin: 0 6px;
    color: #999999;
    line-height: 30px;
}

.thumb .anchorlist {
    display: flex;
}

.anchor-item {
    flex: none;
    margin-left: 1.823vw;
    padding-left: 1.875vw;
    position: relative;
    line-height: 1.5;
}

.anchor-item:first-child {
    margin-left: 0;
    padding-left: 0;
}

.anchor-item:first-child:after {
    content: none;
}

.anchor-item a {
    line-height: 1.5;
    color: #222222;
    transition: all .5s;
}

.anchor-item a:hover,
.anchor-item.act a {
    color: var(--blue);
}

.anchor-item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
}





.laypage_main{
    display: flex;
    align-items: center;
    justify-content: center;
}

.laypage_main a, .laypage_main span{
    text-align: center;
    color: #333;
    margin: 0 4px;
    font-size: 14px;
   width: 48px;
   height: 48px;
    line-height: 46px;
    background: #FFFFFF;
    border-radius: 50%;
   border: 1px solid #EFF3F9;
}
.laypage_main a:hover{
    border-color: var(--blue);
    color: var(--blue);
    
}
.laypage_main .laypage_prev{
  font-size: 16px;
}
.laypage_main .laypage_next{
  font-size: 16px;
}
 .laypage_main .laypage_curr{
     color: #fff;
     border-color: var(--blue);
     background-color: var(--blue);
}




.header .search-drop-down {
    position: absolute;
    top: 100%;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 10rem;
    z-index: 8;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.header .search-drop-down .search-wrapper {
    width: 100%;
    max-width: 83rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.header .search-drop-down .search-wrapper span {
    display: flex;
    height: 32px;
    align-items: center;
}

.header .search-drop-down .search-wrapper span #search-btn {
    padding-right: 2rem;
    cursor: default;
    display: flex;
    position: relative;
    top: 2px;
}

.header .search-drop-down .search-wrapper span #search-btn i {
    font-size: 2rem;
    color: #eeeeee;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.header .search-drop-down .search-wrapper span #search-btn.active {
    cursor: pointer;
}

.header .search-drop-down .search-wrapper span #search-btn.active i {
    color: #640000;
}

.header .search-drop-down .search-wrapper span#close {
    display: inline-block;
    width: 26px;
    height: 26px;
    position: relative;
    top: 2px;
    cursor: pointer;
    margin-left: 0.5rem;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.header .search-drop-down .search-wrapper span#close .top-hr {
    position: absolute;
    top: 50%;
    margin-top: -0.05rem;
    width: 100%;
    height: 0.1rem;
    background: #FFFFFF;
    border-radius: 0.1rem;
    transition: all 0.5s ease 0.5s;
    -webkit-transition: all 0.5s ease 0.5s;
    -moz-transition: all 0.5s ease 0.5s;
    -ms-transition: all 0.5s ease 0.5s;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
}

.header .search-drop-down .search-wrapper span#close .bottom-hr {
    position: absolute;
    top: 50%;
    margin-top: -0.05rem;
    width: 100%;
    height: 0.1rem;
    background: #FFFFFF;
    border-radius: 0.1rem;
    transition: all 0.5s ease 0.5s;
    -webkit-transition: all 0.5s ease 0.5s;
    -moz-transition: all 0.5s ease 0.5s;
    -ms-transition: all 0.5s ease 0.5s;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
}

.header .search-drop-down .search-wrapper span#close.active,
.header .search-drop-down .search-wrapper span#close:hover {
    opacity: 1;
}

.header .search-drop-down .search-wrapper span#close.active .top-hr,
.header .search-drop-down .search-wrapper span#close:hover .top-hr {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.header .search-drop-down .search-wrapper span#close.active .bottom-hr,
.header .search-drop-down .search-wrapper span#close:hover .bottom-hr {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.header .search-drop-down .search-wrapper input {
    width: 50rem;
    color: #FFFFFF;
    font-size: 16px;
    height: 32px;
    padding: 0.5rem 0;
    border: none;
    background: none;
    border-bottom: 1px solid #eeeeee;
}

.header .search-drop-down .search-wrapper input::-webkit-input-placeholder {
    color: #ffffff;
}

.header .search-drop-down .search-wrapper input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #ffffff;
}

.header .search-drop-down .search-wrapper input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #ffffff;
}

.header .search-drop-down .search-wrapper input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ffffff;
}






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

@media screen and (max-width:1440px) {
    .header .hnav-item {
        margin: 0 1.5vw;
    }
}



@media screen and (max-width:1200px) {
    .header .header-logo {
        width: 120px;
    }

    .wrap {
        width: 90%;
    }


    .header .header-inner {
        height: 80px;
        padding: 0 3vw;
    }

    .header .header-nav1 {
        line-height: 80px;
    }

    .subsidiary {
        width: 340px;
        height: 42px;
    }

    .footer .footer-brg {
        display: block;
    }

    .subsidiary {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width:1024px) {
    .header {
        display: none;
    }


.abanner{
    margin-top: 60px;
}


    .mohead {
        display: block;
        position: fixed;
        z-index: 1000;
        top: 0;
        width: 100%;
        transition: all .6s;
        height: 60px;
        background-color: #fff;
        border-bottom: 1px solid #b2b2b2;
    }

    .mohead .wrap {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .mohead .header-logo {
        width: 130px;
    }

    .mohead .header-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mohead .search svg {
        width: 22px;
        height: 22px;
    }

    .mohead .language {
        margin-left: 15px;
    }

    .mohead .language svg {
        width: 18px;
        height: 18px;
    }

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

    .mohead .language a {
        height: 18px;
        display: block;
    }

    .mohead .search a {
        display: block;
        height: 22px;
    }

    .mohead .language svg path,
    .mohead .search svg path {
        fill: #333;
    }

    .phone_menu {
        display: block;
        width: 24px;
        height: 14px;
        position: relative;
        margin-left: 20px;
    }

    .phone_menu span {
        background: #333;
        height: 2px;
        display: block;
        transition: 0.5s;
        width: 100%;
    }

    .phone_menu span:first-child {
        transition: 0.5s;
        position: absolute;
        transform: translateY(6px);
    }

    .phone_menu span:last-child {
        transition: 0.5s;
        position: absolute;
        transform: translateY(12px);
        top: 0;
    }

    .menu_act span:first-child {
        transition: 0.5s;
        transform: translateY(8px) rotate(45deg);
    }


    .menu_act span:nth-child(2) {
        opacity: 0;
        transition: 0.5s;
    }

    .menu_act span:last-child {
        transition: 0.5s;
        transform: translateY(8px) rotate(135deg);
    }

    .moheadnav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        height: calc(100% - 60px);
        overflow-y: auto;
        display: none;
    }


    .xuan:after {
        content: '';
        position: absolute;
        right: 0px;
        top: 0px;
        bottom: 0px;
        margin: auto 0;
        display: block;
        width: 8px;
        height: 8px;
        background-color: transparent;
        border-right: 2px solid rgba(0, 0, 0, 0.2);
        border-top: 2px solid rgba(0, 0, 0, 0.2);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transition: all 0.5s;

    }

    .xuan {
        position: relative;
    }

    .xuan_act:after {
        transform: rotate(135deg);
    }

    .mohead .nav1 {
        color: #333;
        line-height: 2;
    }




    .moheadnav .headnav-item {
        padding: 5px 0;
        border-bottom: 1px solid #b2b2b2;
    }

    .moheadnav .nav2 {
        padding: 10px 0;
        display: none;
    }

    .nav2 a {
        width: 100%;
        padding: 5px 15px;
        color: rgba(0, 0, 0, 0.6);
        display: block;
        font-size: 14px;
        line-height: 1.5;
    }

    /* .mohead .language {
        display: flex;
        margin-top: 30px;
        align-items: center;
        justify-content: center;
    }

    .mohead .language a:nth-child(2) {
        margin-left: 16px;
    }

    .mohead .language a {
        display: flex;
        align-items: center;
        line-height: 1.5;
        color: #333;

    }

    .mohead .language a img {
        width: 20px;
        object-fit: contain;
        margin-right: 6px;
    }*/


}

@media screen and (max-width:768px) {
    
    
    .laypage_main a, .laypage_main span{
       width: 28px;
       height: 28px;
       line-height: 26px;
           font-size: 12px;
    }
       .laypage_main .laypage_next,
    .laypage_main .laypage_prev {
    font-size: 14px;
}
    
    
    .thumb .anchorlist{
        padding-bottom: 15px;
        margin-bottom: 15px;
        overflow-x: auto;
    }
    .anchor-item{
        margin-left: 20px;
        padding-left: 20px;
    }
    .thumb>div{
        max-width: 100%;
    }
    .thumb>div{
        flex: 0 0 100%;
    }
    
.abanner{
    margin-top: 50px;
    padding-bottom: 60%;
}


    .conbtn{
        width: 120px;
        height: 36px;
    }
    
    .conchange-item{
        width: auto;
    height: 36px;
    margin-right: 12px;
    }
    .conchange-item a{
        line-height: 34px;
        padding: 0 15px;
    }
    
    .footer .copyright {
        display: block;
   
    }
    .mohead .header-logo {
        width: 110px;
    }

    .mohead {
        height: 50px;
    }

    .moheadnav {
        top: 50px;
        height: calc(100% - 50px);
    }

    .footer-top {
        flex-wrap: wrap;
    }

    .footer .footer-lf {
        flex: 0 0 100%;
    }

    .footer-rg {
        flex: 0 0 100%;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .footer .footer-nav {
        display: none;
    }

    .footer .footer-contact {
        max-width: none;
        margin-left: 0;
        width: 100%;
    }

    .footer .footer-follow {
        display: none;
    }

    .footer .flink-item {
        width: 36px;
        height: 36px;
    }

    .footer .flink-item svg {
        width: 20px;
    }

    .footer .footer-binner {
        flex-wrap: wrap;
    }

    .footer-blf {
        flex: 0 0 100%;
    }

    .footer .footer-brg {
        flex: 0 0 100%;
        margin-top: 12px;
    }

    .subsidiary {
        width: 100%;
    }

    .footer .flink-item .code {
        left: 0;
        transform: translate(-0%, -50%);
        -webkit-transform: translate(-0%, -50%);
        -moz-transform: translate(-0%, -50%);
        -ms-transform: translate(-0%, -50%);
    }

    .footer .flink-item:hover .code {
        left: 0;
        transform: translate(-0%, -110%);
        -webkit-transform: translate(-0%, -110%);
        -moz-transform: translate(-0%, -110%);
        -ms-transform: translate(-0%, -110%);
    }

    .footer .flink-item .code:after {
        left: 18px;

    }

    .footer .footer-logo {
        width: 120px;
    }

    .footer .methods a {
        line-height: 18px;
    }

    .footer .methods svg {
        width: 18px;
        height: 18px;
        margin-right: 9px;
    }
}
