body {
    background-color: rgb(var(--body));
}

/* PC-width-最宽 响应式*/
main {
    display: flex;
    width: 75%;
    max-width: 1200px;
    box-sizing: content-box;
    padding: 0 60px 0;
    margin: auto;
}

/* 正文 */
.container-content {
    width: 100%;
}

/* 正文-深色背景部分 */
.container-content .dark-bg {
    /* 需要同时添加"dark"、"dark-bg"才有颜色生效 */
    background-color: rgb(var(--body));
    box-shadow: 35vw 0px rgb(var(--body)), -35vw 0px rgb(var(--body));
}

/* 正文-PC端内容显示 */
.container-content .pc {
    display: block;
}

/* 正文-移动端内容隐藏 */
.container-content .m {
    display: none;
}

/* 正文-图片 */
.container-content img {
    width: 100%;
    height: auto;
    border-radius: 35px;
    margin: auto;
    display: block;
}

/* 正文-图片（带分栏的图片-PC端保持间距为25px）  */
.container-content .small-img {
    grid-gap: 25px;
}

/* 正文-图片（带分栏的图片-圆角变小）  */
.container-content .small-img img {
    border-radius: 30px;
}

/* 正文-图片-画廊（为画廊的图片添加间距） */
.wp-block-gallery img {
    margin-top: 25px
}

/* 正文-视频 */
.container-content video {
    width: 100%;
    height: auto;
    border-radius: 35px;
    margin: auto;
}

/* 正文-标题H2 */
.container-content h2 {
    width: 80%;
    margin: auto;
    font-size: 60px;
    font-weight: bold;
    color: rgba(var(--black), 1);
}

/* 正文-标题h3 */
.container-content h3 {
    width: 80%;
    margin: auto;
    font-size: 25px;
    font-weight: bold;
    color: rgba(var(--black), 1);
}

/* 正文-标题h4 */
.container-content h4 {
    width: 80%;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    font-weight: bold;
    color: rgba(var(--black), 1);
}

/* 正文-小字 */
.container-content p {
    width: 80%;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    font-weight: normal;
    color: rgba(var(--black), 0.3);
}

/* 正文-加重 */
.container-content strong {
    font-weight: bold;
    color: rgba(var(--theme));
}

/* 正文-防止自动换行的词语 */
.container-content kbd {
    font-size: inherit;
    color: inherit;
    white-space: nowrap;
}

/* 正文-使用WordPress编辑器的常用样式 */
.has-text-align-left {
    /* 文本左对齐 */
    text-align: left;
}

.has-text-align-center {
    /* 文本居中 */
    text-align: center;
}

.has-text-align-right {
    /* 文本右对齐 */
    text-align: right;
}

/* 正文-链接 */
.container-content a {
    /* 链接文字样式 */
    font-size: 15px;
    line-height: 63px;
    font-weight: bold;
    color: rgba(var(--vvindo-blue));
    text-overflow: ellipsis;
    display: block;
    /* 按钮外框样式 */
    width: 100%;
    height: 100px;
    padding: 20px 40px;
    margin: auto;
    border-radius: 20px;
    background-color: rgba(var(--buttonBG));
    transition: background-color .15s;
    position: relative;
    /* 防止文字自动换行 */
    white-space: nowrap;
    text-overflow: ellipsis;
}

.container-content a:hover {
    background-color: rgba(var(--buttonBG-hover));
}

.container-content a:active {
    background-color: rgba(var(--buttonBG-active));
}

.container-content a::after {
    /* icon-link 图标调用 */
    content: "\e60d";
    font-family: "icons" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 图标样式 */
    font-size: 15px;
    color: rgba(var(--vvindo-blue));
    text-align: center;
    margin-left: 10px;
    position: absolute;
    right: 40px;
}

/* 正文-链接（重点突出版） */
.container-content .link-important::after, .link-important a::after {
    /* 外框样式 */
    width: 40px;
    height: 40px;
    margin: 10px 0;
    background-color: rgba(var(--vvindo-blue));
    border-radius: 50%;
    /* 图标样式 */
    color: white;
    line-height: 41px;
    right: 35px;
}

/* 正文-链接-底部按钮（返回、跳到顶部） */
.container-content .link-button {
    width: 100%;
    margin: 0 auto 100px;
    display: flex;
    justify-content: space-between;
}

/* 正文-链接-返回按钮 */
.container-content .link-back {
    margin: 0 10px 0 0;
}

.container-content .link-back::after {
    content: "\e60e";
}

/* 正文-链接-跳到顶部按钮 */
.container-content .link-top {
    margin: 0 0 0 10px;
}

.container-content .link-top::after {
    content: "\e60f";
    font-size: 19px;
}

/* PC-width-窄 响应式 */
@media screen and (max-width:1440px) and (min-width:1080px) {}

/* pad-width 响应式 */
@media screen and (max-width:1079px) and (min-width:767px) {
    main {
        width: 85%;
        padding: 0 30px 0;
    }

    /* 正文-图片 */
    .container-content img {
        width: 100%;
        border-radius: 30px;
    }

    /* 正文-图片（带分栏的图片-圆角变小）  */
    .container-content .small-img img {
        border-radius: 25px;
    }

    /* 正文-视频 */
    .container-content video {
        border-radius: 30px;
    }

    /* 正文-标题h2 */
    .container-content h2 {
        font-size: 45px;
    }

    /* 正文-标题h3 */
    .container-content h3 {
        font-size: 22px;
    }

    /* 正文-标题h4 */
    .container-content h4 {
        font-size: 14px;
    }

    /* 正文-具体内容小字 */
    .container-content p {
        font-size: 14px;
    }
}

/* m-width 响应式 */
@media screen and (max-width:767px) {
    main {
        width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
        flex-direction: column;
    }

    /* 正文 */
    .container-content {}

    /* 正文-在移动端，所有高度为50px的div改变成25px+5px */
    .container-content div[style="height:50px"] {
        height: 35px !important;
    }

    /* 正文-在移动端，所有H3下面 高度为25px的div改变成18px */
    .container-content h3+div[style="height:25px"] {
        height: 15px !important;
    }

    /* 正文-PC端内容隐藏 */
    .container-content .pc {
        display: none;
    }

    /* 正文-移动端内容显示 */
    .container-content .m {
        display: block;
    }

    /* 正文-图片 */
    .container-content img {
        width: 100%;
        border-radius: 15px;
    }

    /* 正文-图片（带分栏的图片-手机端恢复默认间距）  */
    .container-content .small-img {
        grid-gap: 18px;
    }

    /* 正文-图片（带分栏的图片-圆角变小）  */
    .container-content .small-img img {
        border-radius: 10px;
    }

    /* 正文-视频 */
    .container-content video {
        border-radius: 15px;
    }

    /* 正文-标题h2 */
    .container-content h2 {
        font-size: 35px;
        max-width: 500px;
        width: 95%;
        margin: auto;
    }

    /* 正文-标题h3 */
    .container-content h3 {
        font-size: 18px;
        max-width: 500px;
        width: 95%;
        margin: auto;
    }

    /* 正文-标题h4 */
    .container-content h4 {
        font-size: 12px;
        max-width: 500px;
        width: 95%;
        margin: auto;
    }

    /* 正文-具体内容小字 */
    .container-content p {
        font-size: 12px;
        max-width: 500px;
        width: 95%;
        margin: auto;
    }

    /* 正文-链接 */
    .container-content a {
        /* 按钮外框样式 */
        width: 100%;
        height: 80px;
        padding: 20px 25px;
        border-radius: 15px;
        /* 文字样式 */
        font-size: 13px;
        line-height: 43px;
    }

    .container-content a::after {
        right: 25px;
    }

    .container-content a:hover {
        /* 去除移动端hover效果 */
        background-color: rgba(var(--buttonBG));
    }

    .container-content a:active {
        /* 保留移动端active效果 */
        background-color: rgba(var(--buttonBG-active));
    }

    /* 正文-链接（重点突出版） */
    .container-content .link-important::after, .link-important a::after {
        /* 外框样式 */
        margin: 0;
        right: 15px;
    }

    /* 正文-链接-底部按钮 */
    .container-content .link-button {
        width: 100%;
        margin-bottom: 70px;
    }
}