:root {
    --color: #175dd5;
}

a {
    color: inherit;
}

@font-face {
    font-family: 'Alibaba';
    src: url('./Alibaba-PuHuiTi-Regular.otf');
}

@font-face {
    font-family: 'Alibab-Light';
    src: url('./Alibaba-PuHuiTi-Light.otf');
}

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

body {
    font-family: 'Alibaba';
}

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


.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    transition: all .6s;
    background-color: rgba(0, 0, 0, .5);
}

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

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

.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;
}

.header-top {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-rg {
    display: flex;
}

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

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

.header-ologo {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

.header-ologo:nth-child(1) img {
    width: 118px;
}

.header-ologo:nth-child(2) img {
    width: 118px;
}

.header-ologo:before {
    content: none;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background-color: #fff;
    transform: translateY(-50%);

}

.header-ologo:first-child:before {
    content: none;
}

.header-btm {
    display: flex;
    margin-top: -10px;
    justify-content: space-between;
}

.header .header-nav1 {
    line-height: 50px;
    color: #fff;
    transition: all .6s;

}

.header .header-item {
    flex: none;
    margin-right: 60px;
    position: relative;
}

.header .header-nav2 {
    display: none;
    position: absolute;
    left: 50%;
    -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 .header-nav2 a {
    color: #333;
    display: block;
    line-height: 40px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
}


.header .language .langlist {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80px;
    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 .langlist a {
    color: #333;
    display: block;
    line-height: 40px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
}

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



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

.header .search a {
    height: 20px;
}

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

.header .language {
    display: flex;
    padding-left: 0px;
    position: relative;
    margin-left: 45px;
    align-items: center;
    color: #fff;
}

.header .language span {
    margin-left: 9px;
    margin-right: 7px;
}


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

}


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


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

.header:hover .header-nav1,
.header:hover .language,
.header.head_act .header-nav1,
.header.head_act .language {
    color: #333;
}

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

.header.head_act .header-ologo:before,
.header:hover .header-ologo:before {
    background-color: #333;
}



.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;
}


.inbanner {
    position: relative;
}

.inbanner .banner-txt {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.inbanner>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inbanner .banner-tit {
    font-weight: bold;
    color: #fff;
    line-height: 1.069;
    width: 32%;
}

.inbanner .banner-des {
    color: rgba(255, 255, 255, .6);
    line-height: 1.375;
    width: 45%;
}

.thumb {
    border-bottom: 1px solid #f4f4f4;
}

.thumb ul {
    display: flex;
}

.thumb li {
    line-height: 60px;
    color: #666;
    position: relative;
}

.thumb li:first-child a {
    display: flex;
    align-items: center;
    color: #666;
}

.thumb li a {
    color: #666;
    transition: all .5s;
}

.thumb li a:hover {
    color: #062659;
}

.thumb li:first-child a svg {
    margin-right: 16px;
}

.thumb li:not(:first-child):before {
    content: '/';
    color: #666;
    display: inline-block;
    margin-left: 14px;
    margin-right: 14px;
}

.mohead {
    display: none;
}



.footer {
    border-top: 8px solid #3091f2;
    background: url('../img/fbj.jpg') no-repeat center center/cover;
}

.footer-logo {
    width: 160px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo img {
    width: 100%;

    object-fit: contain;
}

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

.fnav-item {
    margin: 0 30px;
    position: relative;
}

.fnav-item:after {
    content: '';
    position: absolute;
    right: -29px;
    width: 2px;
    height: 1em;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;

}

.fnav-item:last-child:after {
    content: none;
}



.fnav-item a {
    color: #fff;
    line-height: 1.5;
    cursor: pointer;
    display: block;
    transition: all .5s;
}

.fnav-item a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #fff;
    transform: translateX(-50%);
    transition: all .5s;
}

.fnav-item a:hover:after {
    width: 100%;
}

.official .official-img {
    width: 124px;
    margin-left: auto;
    margin-right: auto;
}

.official .official-img img {
    width: 100%;
    object-fit: contain;
}

.official p {
    text-align: center;
    line-height: 1.5;
    color: rgba(255, 255, 255, .6);
}

.footer-btm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.footer-btm .copyright {
    color: rgba(255, 255, 255, .3);
    line-height: 1.5;
    margin: 0 3px;
}

.footer-btm .beian a {
    color: rgba(255, 255, 255, .3);
    line-height: 1.5;
    margin: 0 3px;
    transition: all .5s;
}

.footer-btm .gongan img {
    width: 15px;
    height: 15px;
    margin-right: 2px;
    margin-top: 4px;
}

.footer-btm .gongan a {
    color: rgba(255, 255, 255, .3);
    line-height: 1.5;
    margin: 0 3px;

    transition: all .5s;
}

.footer-btm .gongan a:hover,
.footer-btm .beian a:hover {
    color: #fff;
}

.totop {
    width: 80px;
    height: 80px;
    position: fixed;
    border-radius: 14px;
    background-color: #fff;
    right: 2.5%;
    bottom: 4.8%;
    z-index: 50;
    text-align: center;
    padding-top: 9px;
    cursor: pointer;
    display: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all .5s;

}

.totop:hover {
    background-color: var(--color);
}

.totop p {
    color: #175dd5;
    line-height: 18px;
    font-size: 14px;
    transition: all .5s;
}

.totop:hover p {
    color: #fff;
}


.totop svg {
    width: 46px;
    height: 46px;

}

.totop:hover svg path {
    transition: all .5s;
}

.totop:hover svg path {
    fill: #fff;
}

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

    .header .header-item {
        margin-right: 3vw;
    }
}

@media screen and (max-width:1400px) {
    .header .headnav-item {
        margin: 0 15px;

    }

    .header .head-rg {
        margin-left: 2.5vw;
    }

    .footer-btm .gongan img {
        margin-top: 2px;
    }
}

@media screen and (max-width:1300px) {
    .header .headnav1 {
        font-size: 16px;
    }


}

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

    .header .wrap {
        width: 95%;
    }


}

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

    .fnav-item:after {
        content: none;
    }

    .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: 80px;
    }

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

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

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

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

    .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 .langlist {
        display: none;
        position: absolute;
        left: 50%;
        top: 100%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 80px;
        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);
    }

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

    .mohead .langlist a:hover {
        background: var(--color);
        color: #fff;
    }


    .mohead .language {
        display: flex;
        padding-left: 0px;
        position: relative;
        margin-left: 20px;
        align-items: center;
        color: #333;
        height: 59px;
    }


    .mohead .language span {
        margin-left: 9px;
        margin-right: 7px;
    }


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

    .footer .fnav-item {
        flex: 0 0 100%;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .footer .fnav1-item: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(255, 255, 255, .8);
        border-top: 2px solid rgba(255, 255, 255, .8);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transition: all 0.5s;
    }

    .footer .fnav1-item.act:after {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .footer .fnav2-item {
        line-height: 28px;
    }

    .footer .fnav2 {
        padding-top: 10px;
        margin-top: 0;
        display: none;
    }

    .footer .fnav1-item {
        font-size: 16px;
        line-height: 2;
        position: relative;
    }

}

@media screen and (max-width:768px) {
    .mohead .header-logo {
        width: 80px;
    }



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

    .conmore {
        width: 120px;
        height: 36px;
    }

    .conmore a {
        line-height: 34px;
    }

    .thumb li {
        line-height: 40px;
    }

    .thumb li:first-child a svg {
        margin-right: 8px;
    }

    .thumb li:not(:first-child):before {
        margin-left: 10px;
        margin-right: 10px;
    }

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

    .footer .other {
        flex: 0 0 100%;
        margin-top: 10px;
    }

    .footer .other-item {
        padding-left: 0;
        margin-left: 0;
        padding-right: 15px;
        margin-right: 14px;
    }

    .footer .other-item::after {
        right: 0;
        left: auto;
    }

    .footer .other-item:first-child:after {
        content: "";
    }

    .footer .other-item:last-child:after {
        content: none;
    }

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

    .footer .social-item {
        margin-left: 16px;
    }


    .fnav-item:after {
        content: none;

    }

}