/**/
a,
img,
button,
input,
textarea {
    -webkit-tap-highlight-color: rgba(230, 0, 35, 0);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

@font-face {
    font-family: "iconfont";
    src: url("fonts/iconfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --rz-red: #f40024;
    --rz-red-dark: #bf001d;
    --rz-red-soft: #fff1f3;
    --rz-ink: #251013;
    --rz-text: #252525;
    --rz-muted: #777;
    --rz-line: #efd6da;
    --rz-line-strong: #eab9c0;
    --rz-bg: #fff7f8;
    --rz-panel: #fff;
    --rz-pale: #fffafb;
    --rz-shadow: 0 18px 46px rgba(188, 0, 28, 0.12);
}

html {
    background: var(--rz-bg);
}

body {
    min-width: 320px;
    color: var(--rz-text);
    background: var(--rz-bg);
    font-size: 16px;
    line-height: 1.75;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    letter-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--rz-ink);
    font-weight: 800;
    line-height: 1.3;
}

a {
    color: var(--rz-red);
    text-decoration: none;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

a:hover {
    color: var(--rz-red-dark);
}

a.outerlink {
    color: #e00022 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

ul,
ol,
menu {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

input,
textarea,
button {
    color: var(--rz-text);
    font: inherit;
    outline: 0;
}

button {
    cursor: pointer;
    background: transparent;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.hide {
    display: none !important;
}

.shadow {
    box-shadow: var(--rz-shadow);
}

.wrap {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
}

.wrap:after {
    content: "";
    display: block;
    clear: both;
}

.wrapper,
.rz-frame {
    min-height: 100vh;
    background: var(--rz-bg);
    position: relative;
}

.rz-topbar,
.header.fixed {
    background: var(--rz-panel);
    border-top: 5px solid var(--rz-red);
    border-bottom: 1px solid var(--rz-line);
    box-shadow: 0 8px 26px rgba(188, 0, 28, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.rz-brandline {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo,
.rz-logo {
    width: 190px;
    min-height: 76px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.logo a,
.rz-logo a {
    max-width: 100%;
    min-height: 76px;
    display: inline-flex;
    align-items: center;
}

.logo img,
.rz-logo img {
    max-height: 52px;
    width: auto;
}

.logo.on:after {
    content: "";
    width: 44px;
    height: 120%;
    background: rgba(244, 0, 36, 0.16);
    position: absolute;
    top: -10%;
    left: -68px;
    transform: skewX(-18deg);
}

.logo.on:hover:after {
    animation: rz-shine 0.9s ease;
}

@keyframes rz-shine {
    to {
        left: 132%;
    }
}

.head,
.rz-navwrap {
    flex: 1;
    min-width: 0;
}

.menu,
.rz-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu ul,
.rz-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.menu li {
    position: relative;
}

.menu li > a,
.rz-menu li > a {
    min-height: 40px;
    padding: 0 13px;
    color: var(--rz-ink);
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 700;
}

.menu li > a:hover,
.menu li.on > a,
.menu li > a.on {
    color: var(--rz-red);
    border-color: var(--rz-red);
    background: var(--rz-red-soft);
}

.menu .subnav {
    min-width: 158px;
    padding: 8px;
    background: var(--rz-panel);
    border: 1px solid var(--rz-line);
    box-shadow: var(--rz-shadow);
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: none;
}

.menu .subnav:before {
    content: "";
    height: 8px;
    position: absolute;
    top: -8px;
    right: 0;
    left: 0;
}

.menu li:hover > .subnav {
    display: block;
}

.menu .subnav a {
    min-height: 34px;
    padding: 0 10px;
    border-bottom: 0;
    color: var(--rz-muted);
    font-size: 14px;
}

.menuico,
.rz-menu-trigger {
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--rz-line);
    background: var(--rz-red-soft);
    position: relative;
    display: none;
}

.menuico span {
    width: 20px;
    height: 2px;
    background: var(--rz-red);
    position: absolute;
    left: 11px;
    transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}

.menuico span:nth-child(1) {
    top: 14px;
}

.menuico span:nth-child(2) {
    top: 21px;
}

.menuico span:nth-child(3) {
    top: 28px;
}

.menuico.on span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menuico.on span:nth-child(2) {
    opacity: 0;
}

.menuico.on span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

.fademask {
    background: rgba(37, 16, 19, 0.48);
    position: fixed;
    inset: 81px 0 0;
    z-index: 80;
    display: none;
}

.fademask.on {
    display: block;
}

.main,
.rz-main.main.fixed {
    padding-top: 81px;
}

.rz-showcase,
.banner {
    min-height: 340px;
    color: #fff;
    background-color: var(--rz-red);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.rz-showcase:before,
.banner:before {
    content: "";
    background:
        linear-gradient(90deg, rgba(244, 0, 36, 0.95), rgba(244, 0, 36, 0.74) 52%, rgba(244, 0, 36, 0.38)),
        linear-gradient(180deg, rgba(37, 16, 19, 0.05), rgba(37, 16, 19, 0.36));
    position: absolute;
    inset: 0;
}

.rz-showcase__inner {
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.rz-showcase__copy {
    max-width: 860px;
    padding-bottom: 54px;
}

.rz-label {
    margin-bottom: 12px;
    padding: 4px 10px;
    color: var(--rz-red);
    background: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
}

.rz-showcase h1,
.banner h1,
.banner h2 {
    max-width: 900px;
    color: #fff;
    font-size: 44px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(37, 16, 19, 0.26);
}

.rz-titlebar {
    padding: 36px 0 18px;
    border-bottom: 3px solid var(--rz-red);
}

.rz-titlebar span {
    color: var(--rz-red);
    font-size: 13px;
    font-weight: 800;
}

.rz-titlebar h1 {
    margin-top: 6px;
    font-size: 34px;
}

.rz-titlebar p {
    margin-top: 8px;
    color: var(--rz-muted);
}

.rz-newsroom {
    padding: 28px 0 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.content,
.sidebar,
.rz-primary,
.rz-aside {
    width: auto;
    min-width: 0;
    float: none;
}

.rz-section-head {
    margin-bottom: 16px;
    padding: 12px 16px;
    color: #fff;
    background: var(--rz-red);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rz-section-head strong {
    font-size: 18px;
}

.rz-section-head span {
    font-size: 13px;
    opacity: 0.88;
}

.block,
.sidebox,
.rz-list,
.rz-box,
.rz-profile,
.rz-related-list,
.rz-article,
.rz-related,
.rz-comments {
    margin-bottom: 20px;
    padding: 24px;
    background: var(--rz-panel);
    border: 1px solid var(--rz-line);
    box-shadow: var(--rz-shadow);
    box-sizing: border-box;
}

.rz-list {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.post {
    margin-bottom: 16px;
    padding: 22px 24px;
    background: var(--rz-panel);
    border: 1px solid var(--rz-line);
    border-left: 5px solid var(--rz-red);
    box-shadow: 0 10px 26px rgba(188, 0, 28, 0.08);
    position: relative;
}

.block .post:last-child,
.rz-list .post:last-child {
    margin-bottom: 0;
}

.post:after {
    content: "";
    display: block;
    clear: both;
}

.post h1,
.post h2 {
    margin-bottom: 12px;
    color: var(--rz-ink);
    font-size: 24px;
}

.post h1 a,
.post h2 a {
    color: var(--rz-ink);
}

.post h1 a:hover,
.post h2 a:hover {
    color: var(--rz-red);
}

.post h1 .istop:before,
.post h2 .istop:before {
    content: "\e67a";
    margin-right: 6px;
    color: var(--rz-red);
    font-family: "iconfont";
}

.post .info {
    margin-bottom: 12px;
    color: var(--rz-muted);
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.post .user,
.post .date,
.post .cate,
.post .view,
.post .cmt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post .user:before,
.post .date:before,
.post .cate:before,
.post .view:before,
.post .cmt:before {
    color: var(--rz-red);
    font-family: "iconfont";
    font-size: 14px;
}

.post .user:before {
    content: "\e6a9";
}

.post .date:before {
    content: "\e69c";
}

.post .cate:before {
    content: "\e6e2";
}

.post .view:before {
    content: "\e6a7";
}

.post .cmt:before {
    content: "\e6a8";
}

.postimg {
    width: 226px;
    margin: 0 20px 10px 0;
    float: left;
    overflow: hidden;
    background: var(--rz-red-soft);
    border: 1px solid var(--rz-line);
}

.postimg a {
    aspect-ratio: 4 / 3;
    display: block;
}

.postimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.postimg a:hover img {
    transform: scale(1.04);
}

.post .intro {
    color: #4d4d4d;
    font-size: 15px;
}

.post .intro.isimg {
    min-height: 124px;
}

.post .intro a {
    color: var(--rz-muted);
}

.post .readmore {
    height: 36px;
    margin-top: 14px;
    padding: 0 14px;
    color: #fff;
    background: var(--rz-red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 800;
}

.post .readmore:after {
    content: "\e6a6";
    font-family: "iconfont";
}

.post .readmore:hover {
    color: #fff;
    background: var(--rz-red-dark);
}

.post .tags {
    margin-top: 18px;
}

.post .tags a {
    margin: 0 8px 8px 0;
    padding: 4px 10px;
    color: var(--rz-red);
    background: var(--rz-red-soft);
    border: 1px solid var(--rz-line);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}

.post .tags a:hover {
    color: #fff;
    background: var(--rz-red);
    border-color: var(--rz-red);
}

.pagebar,
.cmtpagebar,
.rz-pages {
    margin: 20px 0 28px;
    text-align: center;
}

.pagebar a,
.pagebar .now-page,
.cmtpagebar a,
.cmtpagebar .now-page {
    min-width: 38px;
    height: 38px;
    margin: 0 4px 8px;
    padding: 0 12px;
    color: var(--rz-red);
    background: var(--rz-panel);
    border: 1px solid var(--rz-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.pagebar a:hover,
.cmtpagebar a:hover,
.pagebar .now-page {
    color: #fff;
    background: var(--rz-red);
    border-color: var(--rz-red);
}

.rz-aside-row {
    display: grid;
    gap: 18px;
}

.sidebox,
.rz-box {
    padding: 20px;
}

.sidebox dt {
    margin: -20px -20px 14px;
    padding: 13px 18px;
    color: #fff;
    background: var(--rz-red);
    font-size: 18px;
    font-weight: 800;
}

.sidebox dd {
    color: #555;
}

.sidebox dd ul:after {
    content: "";
    display: block;
    clear: both;
}

.sidebox dd li,
#divCatalog li,
#divPrevious li,
#divLinkage li,
#divNavBar li,
#divComments li,
#divAuthors li,
#divFavorites li,
#divStatistics li,
#divMisc li {
    padding: 9px 0;
    border-bottom: 1px dashed var(--rz-line);
}

.sidebox dd li:last-child {
    border-bottom: 0;
}

.sidebox dd a {
    color: var(--rz-text);
}

.sidebox dd a:hover {
    color: var(--rz-red);
}

#divTags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#divTags li {
    width: auto;
    padding: 0;
    border: 0;
    float: none;
}

#divTags li a {
    min-height: 30px;
    padding: 0 10px;
    color: var(--rz-red);
    background: var(--rz-red-soft);
    border: 1px solid var(--rz-line);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}

#divTags li a:hover {
    color: #fff;
    background: var(--rz-red);
    border-color: var(--rz-red);
}

.schico {
    display: inline-flex;
    align-items: center;
}

.schico a {
    width: 38px;
    height: 38px;
    padding: 0;
    color: #fff;
    background: var(--rz-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.schico a:before {
    content: "\e6e1";
    font-family: "iconfont";
    font-size: 18px;
}

.schfixed,
.schbox {
    width: min(410px, calc(100vw - 36px));
    padding: 14px;
    background: var(--rz-panel);
    border: 1px solid var(--rz-line);
    box-shadow: var(--rz-shadow);
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 140;
    display: none;
}

.schfixed.on,
.schbox.on {
    display: block;
}

.schfixed form,
.schbox form,
.sch-m form,
.schform form,
#divSearchPanel form {
    display: flex;
    gap: 8px;
}

.schfixed input,
.schbox input,
.sch-m input,
.schform input,
#divSearchPanel input[type="text"] {
    min-width: 0;
    flex: 1;
    height: 42px;
    padding: 0 12px;
    color: var(--rz-text);
    background: var(--rz-pale);
    border: 1px solid var(--rz-line);
    box-sizing: border-box;
}

.schfixed button,
.schbox button,
.sch-m button,
.schform button,
#divSearchPanel input[type="submit"] {
    height: 42px;
    min-width: 78px;
    padding: 0 16px;
    color: #fff;
    background: var(--rz-red);
    border: 0;
    font-weight: 800;
}

.sch-m {
    margin-top: 12px;
    display: none;
}

.rz-reader {
    padding: 36px 0 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.rz-article {
    padding: 34px;
    border-top: 5px solid var(--rz-red);
}

.rz-article-head {
    margin-bottom: 22px;
}

.rz-crumb {
    margin-bottom: 12px;
    color: var(--rz-muted);
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rz-crumb span {
    color: var(--rz-red);
}

.rz-article h1 {
    font-size: 38px;
}

.rz-article-body,
.postcon {
    color: #3b3b3b;
    font-size: 17px;
    line-height: 1.95;
    overflow: hidden;
    position: relative;
}

.postcon p,
.postcon div,
.postcon blockquote,
.postcon ul,
.postcon ol,
.rz-article-body p,
.rz-article-body div,
.rz-article-body blockquote,
.rz-article-body ul,
.rz-article-body ol {
    margin-bottom: 16px;
}

.postcon ul,
.postcon ol,
.rz-article-body ul,
.rz-article-body ol {
    padding-left: 1.4em;
    list-style: disc;
}

.postcon ol,
.rz-article-body ol {
    list-style: decimal;
}

.postcon img,
.rz-article-body img {
    margin: 10px 0;
    border: 1px solid var(--rz-line);
}

.post object,
.post embed,
.post iframe,
.post table,
.postcon object,
.postcon embed,
.postcon iframe,
.postcon table {
    max-width: 100%;
}

.rz-line,
.line {
    height: 1px;
    margin: 26px 0;
    background: var(--rz-line);
}

.rz-neighbor,
.single,
.pages {
    display: grid;
    gap: 10px;
}

.single a,
.pages a,
a.backlist {
    color: var(--rz-text);
}

.single a:hover,
.pages a:hover,
a.backlist:hover {
    color: var(--rz-red);
}

.rz-reader-side {
    position: sticky;
    top: 100px;
}

.rz-related,
.rz-comments {
    grid-column: 1 / 2;
}

.posttitle {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rz-red);
}

.posttitle h1,
.posttitle h2,
.posttitle h3,
.posttitle h4,
.posttitle h5,
.posttitle h6 {
    font-size: 20px;
}

.relate {
    padding: 14px 0;
    border-bottom: 1px dashed var(--rz-line);
    display: grid;
/*    grid-template-columns: 120px minmax(0, 1fr);*/
    gap: 14px;
}

.relate:first-child {
    padding-top: 0;
}

.relateimg {
    overflow: hidden;
    background: var(--rz-red-soft);
    border: 1px solid var(--rz-line);
}

.relateimg img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.relateinfo h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.relateinfo p {
    color: var(--rz-muted);
    font-size: 14px;
}

.rz-profile {
    min-height: 240px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    border-top: 5px solid var(--rz-red);
}

.avator,
.rz-profile-face {
    text-align: center;
}

.avator img,
.rz-profile-face img {
    width: 132px;
    height: 132px;
    object-fit: cover;
    border: 4px solid var(--rz-red-soft);
    box-shadow: 0 16px 38px rgba(188, 0, 28, 0.16);
}

.avator span,
.avator figcaption,
.rz-profile-face figcaption {
    margin-top: 12px;
    color: var(--rz-ink);
    font-size: 20px;
    font-weight: 800;
    display: block;
}

.memberinfo,
.rz-profile-info {
    display: grid;
    gap: 12px;
}

.memberinfo div,
.rz-profile-info div {
    padding: 16px;
    color: var(--rz-text);
    background: var(--rz-red-soft);
    border: 1px solid var(--rz-line);
}

a.avatar {
    display: inline-block;
    width: 40px;
}

.cmtsitem {
    padding: 18px 0;
    border-bottom: 1px solid var(--rz-line);
}

.cmtsitem:after,
.comment:after {
    content: "";
    display: block;
    clear: both;
}

.cmtimg {
    width: 52px;
    height: 52px;
    margin-right: 16px;
    float: left;
    overflow: hidden;
    border: 1px solid var(--rz-line);
}

.cmtinfo,
.cmtscon {
    overflow: hidden;
}

.cmtsname,
.cmtsreplyname {
    color: var(--rz-ink);
    font-weight: 800;
}

.cmtsdate,
.cmttime,
.cmttime a,
.cmtsreplydate {
    color: var(--rz-muted);
    font-size: 13px;
}

.cmtsbody,
.cmtsreplycon {
    margin-top: 8px;
    color: #444;
}

.cmtarea textarea,
#txaArticle {
    width: 100%;
    min-height: 140px;
    padding: 12px;
    color: var(--rz-text);
    background: var(--rz-pale);
    border: 1px solid var(--rz-line);
    box-sizing: border-box;
    resize: vertical;
}

.cmtform {
    margin-top: 14px;
}

.cmtform .text,
.comment input[type="text"],
.comment input[type="email"],
.comment input[type="url"] {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    color: var(--rz-text);
    background: var(--rz-pale);
    border: 1px solid var(--rz-line);
    box-sizing: border-box;
}

.cmtsubmit button,
#cancel-reply {
    height: 42px;
    padding: 0 18px;
    color: #fff;
    background: var(--rz-red);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#cancel-reply {
    margin-left: 8px;
    background: var(--rz-muted);
}

.teles,
.telesmore {
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 72%);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.teles i,
.telesmore i {
    margin-bottom: 14px;
    padding: 8px 18px;
    color: #fff;
    background: var(--rz-red);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.footer,
.rz-footer {
    padding: 28px 0;
    color: #ffd7dc;
    background: var(--rz-red);
    text-align: center;
}

.footer h3,
.footer h4 {
    color: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.footer a {
    color: #fff;
}

a.backtotop,
.rz-backtop {
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--rz-red);
    box-shadow: 0 16px 34px rgba(188, 0, 28, 0.28);
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 160;
    display: none;
    align-items: center;
    justify-content: center;
}

a.backtotop i:after {
    content: "\e6a5";
    font-family: "iconfont";
    font-size: 20px;
}

.errorpage,
.errorsearch {
    padding: 80px 0;
    text-align: center;
}

.goback {
    margin-top: 18px;
    padding: 8px 16px;
    color: #fff;
    background: var(--rz-red);
    display: inline-flex;
    align-items: center;
    font-weight: 800;
}

@media screen and (max-width: 1180px) {
    .wrap {
        width: calc(100% - 32px);
    }

    .rz-newsroom,
    .rz-reader {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 20px;
    }
}

@media screen and (max-width: 980px) {
    .rz-brandline {
        min-height: 66px;
    }

    .logo,
    .rz-logo,
    .logo a,
    .rz-logo a {
        min-height: 66px;
    }

    .logo,
    .rz-logo {
        width: 170px;
    }

    .logo img,
    .rz-logo img {
        max-height: 42px;
    }

    .menuico,
    .rz-menu-trigger {
        display: block;
    }

    .menu,
    .rz-menu {
        width: min(430px, calc(100vw - 32px));
        max-height: calc(100vh - 88px);
        padding: 10px;
        background: var(--rz-panel);
        border: 1px solid var(--rz-line);
        box-shadow: var(--rz-shadow);
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        display: none;
        overflow: auto;
    }

    .menu.on,
    .rz-menu.on {
        display: block;
    }

    .menu ul,
    .rz-menu ul {
        display: block;
    }

    .menu li > a,
    .rz-menu li > a {
        min-height: 42px;
        border-bottom: 0;
    }

    .menu .subnav {
        min-width: 0;
        margin: 0 0 8px 12px;
        padding: 4px;
        border: 0;
        box-shadow: none;
        background: var(--rz-red-soft);
        position: static;
    }

    .menu li:hover > .subnav {
        display: none;
    }

    .menu li.subcate.slidedown > .subnav {
        display: block;
    }

    .menu li.subcate > a:after {
        content: "\e69b";
        margin-left: auto;
        font-family: "iconfont";
    }

    .menu li.subcate.slidedown > a:after {
        content: "\e6a4";
        color: var(--rz-red);
    }

    .schico {
        display: none;
    }

    .sch-m {
        display: block;
    }

    .main,
    .rz-main.main.fixed {
        padding-top: 71px;
    }

    .rz-newsroom,
    .rz-reader {
        grid-template-columns: 1fr;
    }

    .rz-reader-side {
        position: static;
    }

    .rz-related,
    .rz-comments {
        grid-column: auto;
    }

    .rz-showcase,
    .banner,
    .rz-showcase__inner {
        min-height: 280px;
    }

    .rz-showcase h1,
    .banner h1,
    .banner h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 720px) {
    .wrap {
        width: calc(100% - 24px);
    }

    .rz-showcase,
    .banner,
    .rz-showcase__inner {
        min-height: 235px;
    }

    .rz-showcase__copy {
        padding-bottom: 34px;
    }

    .rz-showcase h1,
    .banner h1,
    .banner h2 {
        font-size: 27px;
    }

    .rz-titlebar {
        padding: 28px 0 14px;
    }

    .rz-titlebar h1 {
        font-size: 26px;
    }

    .block,
    .sidebox,
    .rz-box,
    .rz-article,
    .rz-related,
    .rz-comments,
    .rz-profile,
    .post {
        padding: 18px;
    }

    .sidebox dt {
        margin: -18px -18px 14px;
        padding: 12px 16px;
    }

    .post h1,
    .post h2 {
        font-size: 20px;
    }

    .rz-article h1 {
        font-size: 27px;
    }

    .postimg {
        width: 100%;
        margin: 0 0 14px;
        float: none;
    }

    .postimg a {
        aspect-ratio: 16 / 9;
    }

    .relate {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .rz-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cmtimg {
        display: none;
    }

    .pagebar a,
    .pagebar .now-page,
    .cmtpagebar a,
    .cmtpagebar .now-page {
        min-width: 34px;
        height: 34px;
        padding: 0 9px;
    }
}
