html {
    font-family: PingFangSC;
    font-size: 16px;
    font-family: PingFang SC,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif!important;;

    &:lang(vi) {
        font-family: Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif!important;
    }
}

h1, h2, h3, h4, h5, h6, h7 {
    padding: 0;
    margin: 0;
}

a {
    cursor: pointer;
    text-decoration:none;
}

ol, ul {
    list-style: none;
}

.container {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    padding:0;
}

.container.visible {
    overflow: visible;
}

.container.flex {
    display: flex;
}

/* 隐藏百度商桥的聊天对话框和右侧的导航 */
#newBridge, #nb_nodeboard {
    display: none!important;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.return-top-btn {
    position: fixed;
    right: 8px;
    bottom: 10%;
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    background: #FFFFFF;
    box-shadow: 0 0 8px 2px rgba(46,46,58,0.10);
    border-radius: 4px;
    color: #999999;
    font-size: 10px;
    text-align: center;
    outline: none;

    &::before {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        margin: auto;
        background: url(/vietnam-city/imgs/top_icon.svg) center center/cover no-repeat;
    }

    &.visible {
        display: block;
    }
}

/* 面包屑导航 */
.global-breadcrumb {
    margin-top: 20px;
    margin-bottom: 20px;

    &.mb-0 {
        margin-bottom: 0;
    }

    &.mt-0 {
        margin-top: 0;
    }

    &.mt-17 {
        margin-top: 17px;
    }
}

.global-breadcrumb-list {
    font-size: 0;
}

.global-breadcrumb-item {
    display: inline-block;
    color: #333333;
    font-size: 12px;

    &:last-child {
        color: #999999;
    }

    &:not(:last-child) {
        &::after {
            content: ">";
            display: inline-block;
            margin: auto 5px;
        }
    }
}

a.global-breadcrumb-item {
    cursor: pointer;
}
/* 面包屑导航 */