* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: break-all;
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'OPlusSans 3.0', 'OPlusSans 2.0', OPPOSans, 'Avenir', Helvetica, Arial, sans-serif;
}
h3 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    padding: 12px 0 24px 0;
    line-height: 21px;
}
.container {
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0;
    text-align: justify;
    font-size: 14px;
    word-break: break-word;
}
@media screen and (min-width: 0px) and (max-width: 599px) {
    .container {
        padding: 0 24px 48px;
    }
}
@media screen and (min-width: 600px) and (max-width: 839px) {
    .container {
        padding: 0 calc((100% - 88px) / 8 + 24px) 48px;
    }
}
@media screen and (min-width: 840px) and (max-width: 1920px) {
    .container {
        padding: 0 calc((100% - 120px) / 6 + 32px) 48px;
    }
}
.title {
    font-weight: 800;
    color: rgba(0, 0, 0, 1);
    letter-spacing: 0;
    line-height: 20px;
    margin-bottom: 16px;
}
/* 标题紧接着正文 */
.title-with-normal-content {
    margin-bottom: 8px;
}
.subTitle {
  margin-bottom: 8px;
}
.content {
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0;
    text-align: justify;
    line-height: 23px;
    margin-bottom: 24px;
    position: relative;
}
.content p {
    margin-bottom: 16px;
}
/* 普通正文段落之间间距 */
.content .content-normal {
    margin-bottom: 8px;
}
.introduction {
  padding-bottom: 16px;
}
.introduction p {
  margin-bottom: 8px;
}
.content:last-of-type {
    margin-bottom: 0;
}
.content-expendable.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.content-expendable {
    position: relative;
}
.control-wrapper {
    position: absolute;
    right: 0;
    bottom: 0px;
    height: 23px;
    width: 27px;
    background-color: #FFFFFF;
    box-shadow: -3px 0 3px #FFFFFF;
    padding-left: 3px;
}
.control-wrapper.transparent {
    background-color: transparent;
}
.control-wrapper.transparent span {
    display: none;
}
.content-control {
    height: 20px;
    width: 24px;
    background-size: 100%;
    position: absolute;
    right: -4px;
    bottom: 0;
}
.content-expendable::before {
    content: '';
    float: right;
    width: 0px;
    height: 100%; /* 先随便设置一个高度 */
    margin-bottom: -23px;
}
.btn-toggle {
    float: right;
    clear: both;
    width: 24px;
    height: 20px;
    background-size: 100%;
}
.content-control.hide, .btn-toggle.hide {
    background-image: url(breeno_privacy_statement/hide_control.png);
}
.content-control.show, .btn-toggle.show {
    background-image: url(breeno_privacy_statement/expand_control.png);
}
.dark .content-control.show, .dark .btn-toggle.show {
    background-image: url(breeno_privacy_statement/expand_control_dark.png);
}
.dark .content-control.hide, .dark .btn-toggle.hide {
    background-image: url(breeno_privacy_statement/hide_control_dark.png);
}

.link {
    color: #007AFF;
    text-decoration: none;
}
.shield {
  width: 40px;
  height: 40px;
  background-image: url(breeno_privacy_statement/shield.png);
  background-size: 100% 100%;
  margin: 8px auto 24px auto;
}
.table {
    margin: 6px 0;
    border-top: 1px solid #B3B3B3;
}
.table tr th {
    color: rgba(0, 0, 0, 0.6);
}
.table tr td {
    color: rgba(0, 0, 0, 0.6);
}
.table tr th, .table tr td {
    border-right: 1px solid #B3B3B3;
    border-bottom: 1px solid #B3B3B3;
    font-size: 14px;
    line-height: 23px;
    text-align: left;
    padding: 4px;
    vertical-align: initial;
}
.table tr th:first-child, .table tr td:first-child {
    border-left: 1px solid #B3B3B3;
}
a {
    color: var(--colorPrimaryText, #0066ff);
    text-decoration: none;
}
strong {
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
}
.dark .container{
    color: rgba(255, 255, 255, 0.9) !important;
}
.dark .content{
    color: rgba(255, 255, 255, 0.9) !important;
}
.dark .title, .dark h3, .dark strong {
    color: rgba(255, 255, 255, 0.9) !important;
}
.dark .table tr th {
    color: rgba(255, 255, 255, 0.9) !important;
}
.dark .table tr td {
    color: rgba(255, 255, 255, 0.9) !important;
}

.policy-normal {
    display: block;
}

.policy-cui {
    display: none;
}

.cui-version .policy-normal {
    display: none;
}

.cui-version .policy-cui {
    display: block;
}

.policy-cui-tr {
    display: none;
}

.cui-version .policy-cui-tr {
    display: table-row;
}