/*滚动条*/
::-webkit-scrollbar {
    width:8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb {
    background:#c3c3c3;
    border-radius: 6px;
    cursor: pointer;
}
::-webkit-scrollbar-thumb:hover{
    background: #b2b2b2;
}
.agreement_header{
    width: 100%;
    height: 80px;
    background: #576C59;
    position: relative;
}
.logo_icon{
    position: absolute;
    left: 60px;
    top: 18px;
    width: 150px;
    cursor: pointer;
}
.logo_icon img{
    width: 100%;
}
.header_navigation{
    position: absolute;
    top: 26px;
    right: 60px;
    display: flex;
    font-size: 22px;
}
.header_navigation a{
    color: #fff;
    margin: 0 1vw;
}
.articles_treaties{
    padding: 30px 40px;
    max-width: 1250px;
    margin: 0 auto;
    line-height: 1.5;
    color: #000;
    font-size: 14px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}
.agreement_title{
    text-align: center;
    margin-bottom: 40px;
    font-size: 34px;
}
.agreement_msg{
    /* text-indent: 2em; */
    margin-bottom: 12px;
}
.agreement_level1{
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 12px;
    font-weight: bold;
}
.agreement_dot{
    position: relative;
}
.agreement_dot::after{
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background: #000;
    position: absolute;
    left: -12px;
    top: 7px;
}
.agreement_level2{
    margin-left: 28px;
    margin-bottom: 6px;
}
.agreement_level3{
    margin-left: 56px;
    margin-bottom: 6px;
}
b{
    font-weight: bold; 
}
.m_l_22{
    margin-left: 22px;
}

@media (max-width: 800px) {
    .agreement_header{
        -webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color: transparent; /* For some Androids */ 
        height: 60px;
    }
    .logo_icon{
        left: 12px;
        top: 12px;
        width: 110px;
    }
    .header_navigation{
        top: 20px;
        right: 14px;
        font-size: 16px;
    }
    .header_navigation a{
        margin: 0 2vw;
    }
    .articles_treaties{
        padding: 24px 18px;
    }
    .articles_treaties .agreement_title{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .articles_treaties .agreement_level1{
        font-size: 18px;
    }
}