* {
    box-sizing: border-box;
}

:root {
    --ix-bg: #ededed;
    --ix-page: #ffffff;
    --ix-text: #1a1a1a;
    --ix-muted: #8a8a8a;
    --ix-soft: #f4f4f5;
    --ix-line: #e7e7e7;
    --ix-name: #576b95;
    --ix-green: #07c160;
    --ix-menu: #2f3034;
    --ix-gap: 12px;
    --ix-avatar: 42px;
}

html {
    min-height: 100%;
    background: var(--ix-bg);
    color: var(--ix-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    letter-spacing: 0;
}

body {
    min-height: 100%;
    margin: 0;
    background: var(--ix-bg);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ix-shell {
    width: min(100%, 430px);
    min-height: 100vh;
    margin: 0 auto;
    overflow-x: hidden;
    background: var(--ix-page);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .05);
}

.ix-album {
    background: #fff;
}

.ix-album-cover {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #30383a;
}

.ix-album-cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-album-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .06) 46%, rgba(0, 0, 0, .50));
}

.ix-album-bar,
.ix-topbar {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(48px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 8px 0;
}

.ix-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: transparent;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .36));
}

.ix-icon-btn svg {
    width: 24px;
    height: 24px;
}

.ix-home-nav-wrap {
    position: relative;
}

.ix-home-nav {
    position: absolute;
    top: 44px;
    right: 6px;
    z-index: 6;
    display: grid;
    min-width: 104px;
    padding: 5px 0;
    color: #fff;
    background: rgba(47, 48, 52, .96);
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .24);
}

.ix-home-nav[hidden] {
    display: none;
}

.ix-home-nav::before {
    position: absolute;
    top: -6px;
    right: 15px;
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(47, 48, 52, .96);
    border-left: 6px solid transparent;
    content: "";
}

.ix-home-nav a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.ix-home-nav a + a {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.ix-album-bar-spacer {
    width: 44px;
    height: 44px;
}

.ix-album-user {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 12px;
    align-items: end;
}

.ix-album-copy {
    min-width: 0;
    color: #fff;
    text-align: right;
    text-shadow: 0 1px 7px rgba(0, 0, 0, .45);
}

.ix-album-copy h1 {
    overflow: hidden;
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-album-copy p {
    overflow: hidden;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
}

.ix-avatar {
    overflow: hidden;
    width: var(--ix-avatar);
    height: var(--ix-avatar);
    object-fit: cover;
    background: #eee;
    border-radius: 4px;
}

.ix-avatar-large {
    width: 82px;
    height: 82px;
    border: 3px solid #fff;
    border-radius: 5px;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .24);
}

.ix-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-bottom: 8px solid var(--ix-bg);
}

.ix-profile-stats div {
    padding: 12px 4px 11px;
    color: var(--ix-muted);
    font-size: 12px;
    text-align: center;
}

.ix-profile-stats strong {
    display: block;
    margin-bottom: 3px;
    color: #222;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.1;
}

.ix-page-author .ix-album {
    border-bottom: 8px solid var(--ix-bg);
}

.ix-page-author .ix-album-cover {
    height: 260px;
    margin-bottom: 58px;
    overflow: visible;
}

.ix-page-author .ix-album-cover > img,
.ix-page-author .ix-album-mask {
    height: 260px;
}

.ix-page-author .ix-album-user {
    right: 14px;
    bottom: -48px;
    left: 14px;
    grid-template-columns: minmax(0, 1fr) 92px;
    align-items: center;
}

.ix-page-author .ix-album-copy {
    align-self: end;
    padding: 10px 0 2px;
    color: #111;
    text-shadow: none;
}

.ix-page-author .ix-album-copy h1 {
    color: #111;
    font-size: 22px;
}

.ix-page-author .ix-album-copy p {
    max-height: 38px;
    color: #666;
    font-size: 13px;
}

.ix-page-author .ix-avatar-large {
    width: 92px;
    height: 92px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}

.ix-author-profile {
    background: #fff;
    border-bottom: 1px solid #ededed;
}

.ix-author-cover {
    position: relative;
    height: 340px;
    background: #2e3436;
}

.ix-author-cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-author-cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .02) 44%, rgba(0, 0, 0, .54));
}

.ix-author-bar {
    position: absolute;
    z-index: 4;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    height: calc(48px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
}

.ix-author-bar strong {
    overflow: hidden;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .26);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-author-identity {
    position: absolute;
    right: 16px;
    bottom: -32px;
    left: 16px;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 10px;
    align-items: end;
}

.ix-author-identity h1 {
    overflow: hidden;
    margin: 0 0 39px;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.18;
    text-align: right;
    text-shadow: 0 1px 7px rgba(0, 0, 0, .48);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-author-avatar {
    width: 82px;
    height: 82px;
    object-fit: cover;
    background: #eee;
    border: 3px solid #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.ix-author-signature {
    min-height: 62px;
    padding: 42px 16px 13px 82px;
    color: #7a7a7a;
    font-size: 13px;
    line-height: 1.45;
    text-align: right;
}

.ix-author-feed {
    background: #fff;
}

.ix-author-moment {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    padding: 17px 16px 0 0;
    background: #fff;
}

.ix-author-date {
    display: block;
    padding-top: 0;
    color: #222;
    text-align: right;
}

.ix-author-date strong {
    display: inline-block;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
}

.ix-author-date span {
    display: inline-block;
    margin-left: 2px;
    color: #444;
    font-size: 12px;
    line-height: 1.2;
    vertical-align: 4px;
}

.ix-author-moment-body {
    min-width: 0;
    padding-bottom: 17px;
    border-bottom: 1px solid #ededed;
}

.ix-author-text {
    display: block;
    color: #111;
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ix-author-media {
    --ix-author-thumb: 80px;
    display: grid;
    grid-template-columns: repeat(3, var(--ix-author-thumb));
    gap: 3px;
    width: max-content;
    max-width: 100%;
    margin-top: 7px;
}

.ix-author-media-one {
    display: block;
}

.ix-author-media-item {
    position: relative;
    display: block;
    width: var(--ix-author-thumb);
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    background: #eee;
    border-radius: 0;
}

.ix-author-media-one .ix-author-media-item {
    width: min(178px, 100%);
}

.ix-author-media-item img,
.ix-author-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-author-media-video {
    background: #111;
}

.ix-author-media .ix-video-play {
    width: 38px;
    height: 38px;
}

.ix-author-media .ix-video-play::before {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 12px;
}

.ix-author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-top: 8px;
    color: #8b8b8b;
    font-size: 12px;
    line-height: 1.35;
}

.ix-author-meta a {
    color: #8a8a8a;
}

.ix-page-author {
    background: #fff;
}

.ix-author-year-title {
    margin: 45px 0 26px 18px;
    color: #111;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.ix-author-feed {
    padding-top: 14px;
    background: #fff;
}

.ix-author-feed .ix-author-year-title:first-child {
    margin-top: 0;
}

.ix-author-moment {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding: 0 12px 24px;
    border-bottom: 0;
}

.ix-author-date {
    padding-top: 5px;
    color: #111;
    text-align: left;
}

.ix-author-date-line {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.ix-author-date strong {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
}

.ix-author-date span span,
.ix-author-date-line > span {
    margin-left: 2px;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    vertical-align: 3px;
}

.ix-author-date small {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 12px;
    line-height: 1.45;
    text-align: left;
    word-break: normal;
    overflow-wrap: break-word;
}

.ix-author-moment-body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0 8px;
    align-items: start;
    min-height: 78px;
    padding-bottom: 0;
    border-bottom: 0;
}

.ix-author-moment-body.has-media.has-text .ix-author-text {
    grid-column: 2;
    margin-top: 0;
}

.ix-author-moment-body.has-music .ix-music-card-author {
    grid-column: 1 / -1;
}

.ix-author-moment-body.has-media.has-music .ix-music-card-author {
    margin-top: 7px;
}

.ix-author-moment-body.has-text:not(.has-media):not(.has-music) .ix-author-text {
    grid-column: 1 / -1;
    display: block;
    width: min(260px, 100%);
    min-height: 72px;
    padding: 12px 14px;
    background: #f5f5f5;
    color: #111;
}

.ix-author-text {
    color: #111;
    font-size: 15px;
    line-height: 1.45;
}

.ix-author-media {
    --ix-author-thumb: 78px;
    grid-column: 1;
    gap: 3px;
    margin-top: 0;
}

.ix-author-media-item {
    width: var(--ix-author-thumb);
}

.ix-author-media-one .ix-author-media-item {
    width: var(--ix-author-thumb);
}

.ix-author-meta {
    display: none;
}

.ix-music-card-author {
    width: min(220px, 100%);
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    gap: 8px;
    margin-top: 0;
    padding: 7px;
    border-radius: 6px;
}

.ix-music-card-author .ix-music-cover {
    width: 44px;
    height: 44px;
}

.ix-music-card-author .ix-music-disc {
    width: 28px;
    height: 28px;
}

.ix-music-card-author .ix-music-info strong {
    font-size: 13px;
}

.ix-music-card-author .ix-music-info span {
    font-size: 11px;
}

.ix-music-card-author .ix-music-toggle {
    width: 30px;
    height: 30px;
}

.ix-page-author .ix-author-profile {
    border-bottom: 0;
}

.ix-page-author .ix-author-cover {
    height: min(70vw, 300px);
    min-height: 260px;
}

.ix-page-author .ix-author-cover-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .03) 45%, rgba(0, 0, 0, .66));
}

.ix-page-author .ix-author-bar {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    height: calc(48px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 0 0;
}

.ix-page-author .ix-author-bar .ix-icon-btn {
    width: 44px;
    height: 44px;
    color: #fff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .38));
}

.ix-page-author .ix-author-bar .ix-icon-btn svg {
    width: 24px;
    height: 24px;
}

.ix-page-author .ix-author-cover-more svg {
    width: 22px;
    height: 22px;
}

.ix-page-author .ix-author-identity {
    right: 14px;
    bottom: -30px;
    left: 14px;
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 10px;
}

.ix-page-author .ix-author-identity h1 {
    margin: 0 0 34px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
    text-shadow: 0 1px 7px rgba(0, 0, 0, .45);
}

.ix-page-author .ix-author-avatar {
    width: 72px;
    height: 72px;
    border: 0;
    border-radius: 7px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .65);
}

.ix-page-author .ix-author-signature {
    min-height: 82px;
    padding: 42px 14px 18px 88px;
    color: #777;
    font-size: 13px;
    line-height: 1.45;
    text-align: right;
}

.ix-page-author .ix-author-feed {
    padding-top: 10px;
}

.ix-page-author .ix-author-year-title {
    margin: 30px 0 18px 14px;
    font-size: 26px;
}

.ix-page-author .ix-author-moment {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding: 0 12px 24px;
}

.ix-page-author .ix-author-date strong {
    font-size: 24px;
    font-weight: 500;
}

.ix-page-author .ix-author-date-line > span {
    margin-left: 2px;
    font-size: 12px;
    font-weight: 600;
    vertical-align: 3px;
}

.ix-page-author .ix-author-date small {
    margin-top: 7px;
    color: #777;
    font-size: 12px;
    line-height: 1.45;
}

.ix-page-author .ix-author-moment-body {
    min-height: 78px;
    gap: 0 8px;
}

.ix-page-author .ix-author-media {
    --ix-author-thumb: 78px;
}

.ix-page-author .ix-author-text {
    font-size: 15px;
    line-height: 1.45;
}

.ix-page-author .ix-author-moment-body.has-text:not(.has-media):not(.has-music) .ix-author-text {
    width: min(220px, 100%);
    min-height: 58px;
    padding: 9px 10px;
}

.ix-feed-composer {
    display: grid;
    grid-template-columns: var(--ix-avatar) minmax(0, 1fr) 36px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background: #fff;
    border-bottom: 8px solid var(--ix-bg);
}

.ix-feed-input {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 38px;
    padding: 0 12px;
    overflow: hidden;
    color: #9b9b9b;
    background: #f6f6f6;
    border-radius: 4px;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-feed-camera {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--ix-name);
}

.ix-feed-camera svg {
    width: 24px;
    height: 24px;
}

.ix-feed {
    background: #fff;
}

.ix-moment {
    display: grid;
    grid-template-columns: var(--ix-avatar) minmax(0, 1fr);
    gap: 10px;
    padding: 14px 12px 12px;
    background: #fff;
    border-bottom: 1px solid var(--ix-line);
}

.ix-moment-single {
    border-bottom: 0;
}

.ix-moment-avatar img {
    width: var(--ix-avatar);
    height: var(--ix-avatar);
    object-fit: cover;
    background: #eee;
    border-radius: 4px;
}

.ix-moment-body {
    min-width: 0;
}

.ix-moment-author {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    color: var(--ix-name);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-moment-text {
    margin-top: 5px;
    color: #111;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.ix-moment-text[data-collapsed="true"] .ix-text-full {
    display: none;
}

.ix-moment-text.is-expanded .ix-text-short {
    display: none;
}

.ix-moment-text.is-expanded .ix-text-full {
    display: block;
}

.ix-markdown-content p {
    margin: 0;
}

.ix-markdown-content p + p,
.ix-markdown-content ul,
.ix-markdown-content ol,
.ix-markdown-content blockquote,
.ix-markdown-content pre,
.ix-markdown-content table {
    margin: 8px 0 0;
}

.ix-markdown-content ul,
.ix-markdown-content ol {
    padding-left: 20px;
}

.ix-markdown-content li + li {
    margin-top: 3px;
}

.ix-markdown-content blockquote {
    padding-left: 10px;
    color: #666;
    border-left: 3px solid var(--ix-line);
}

.ix-markdown-content pre,
.ix-markdown-content code {
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 13px;
}

.ix-markdown-content pre {
    overflow-x: auto;
    padding: 9px 10px;
    background: #f6f6f6;
    border-radius: 6px;
}

.ix-markdown-content code {
    padding: 1px 4px;
    background: #f3f3f3;
    border-radius: 4px;
}

.ix-markdown-content pre code {
    padding: 0;
    background: transparent;
}

.ix-markdown-content a {
    color: var(--ix-name);
}

.ix-markdown-content table {
    display: block;
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
}

.ix-markdown-content th,
.ix-markdown-content td {
    padding: 5px 7px;
    border: 1px solid var(--ix-line);
    text-align: left;
}

.ix-expand {
    display: inline;
    margin: 2px 0 0;
    padding: 0;
    color: var(--ix-name);
    background: transparent;
    font-size: 15px;
}

.ix-mood {
    display: inline-flex;
    max-width: 100%;
    margin-top: 7px;
    color: var(--ix-name);
    font-size: 13px;
    line-height: 1.35;
}

.ix-mood::before {
    content: "#";
}

.ix-media-grid {
    --ix-cell: 78px;
    display: grid;
    gap: 4px;
    width: max-content;
    max-width: 100%;
    margin-top: 9px;
}

.ix-media-grid-1 {
    display: block;
    width: auto;
    max-width: min(224px, 100%);
}

.ix-media-grid-2 {
    --ix-cell: 112px;
    grid-template-columns: repeat(2, var(--ix-cell));
}

.ix-media-grid-3 {
    grid-template-columns: repeat(3, var(--ix-cell));
}

.ix-media-count-4 {
    grid-template-columns: repeat(2, var(--ix-cell));
}

.ix-media-item {
    display: block;
    width: var(--ix-cell);
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    background: #eee;
    border-radius: 0;
}

.ix-media-grid-1 .ix-media-item {
    width: auto;
    max-width: 224px;
    max-height: 304px;
    aspect-ratio: auto;
}

.ix-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-media-video {
    position: relative;
    width: min(224px, 100%);
    height: auto;
    aspect-ratio: 16 / 9;
    background: #111;
}

.ix-media-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ix-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    background: rgba(0, 0, 0, .48);
    border: 2px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ix-video-play::before {
    position: absolute;
    top: 50%;
    left: 52%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    transform: translate(-35%, -50%);
    content: "";
}

.ix-media-grid-1 .ix-media-item img {
    width: auto;
    max-width: 224px;
    max-height: 304px;
    object-fit: contain;
}

.ix-music-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 34px;
    gap: 10px;
    align-items: center;
    width: min(316px, 100%);
    margin-top: 9px;
    padding: 10px 10px 9px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fff6f6 58%, #ffe9e9 100%);
    border: 1px solid #f1dada;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(198, 47, 47, .08);
}

.ix-music-card::before {
    position: absolute;
    top: -28px;
    right: -24px;
    width: 86px;
    height: 86px;
    background: rgba(198, 47, 47, .08);
    border-radius: 50%;
    content: "";
}

.ix-music-cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    color: #c62f2f;
    background: radial-gradient(circle, #262626 0 16%, #111 17% 45%, #2b2b2b 46% 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .08), 0 2px 6px rgba(0, 0, 0, .18);
}

.ix-music-disc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    overflow: hidden;
    background: #f4f4f4;
    border: 2px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
}

.ix-music-disc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-music-disc svg {
    width: 18px;
    height: 18px;
}

.ix-music-main {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.ix-music-info strong,
.ix-music-info span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-music-info strong {
    color: #111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.ix-music-info span {
    margin-top: 3px;
    color: #8a8a8a;
    font-size: 12px;
    line-height: 1.25;
}

.ix-music-main audio {
    display: none;
}

.ix-music-toggle {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    color: #222;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.ix-music-toggle span {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid currentColor;
}

.ix-music-card.is-playing .ix-music-toggle span {
    width: 12px;
    height: 14px;
    margin-left: 0;
    border: 0;
    border-right: 4px solid currentColor;
    border-left: 4px solid currentColor;
}

.ix-moment-meta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 8px;
    align-items: center;
    min-height: 28px;
    margin-top: 6px;
}

.ix-moment-info {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
    color: var(--ix-muted);
    font-size: 12px;
    white-space: nowrap;
}

.ix-time,
.ix-location {
    flex: 0 0 auto;
}

.ix-location::before {
    content: "· ";
}

.ix-topics {
    min-width: 0;
    overflow: hidden;
    color: var(--ix-name);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-topics a {
    margin-right: 5px;
    color: var(--ix-name);
}

.ix-action-wrap {
    position: relative;
    justify-self: end;
}

.ix-action-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 21px;
    color: var(--ix-name);
    background: #f1f1f1;
    border-radius: 3px;
}

.ix-action-toggle svg {
    width: 17px;
    height: 17px;
}

.ix-action-menu {
    position: absolute;
    top: -9px;
    right: 38px;
    z-index: 20;
    display: none;
    align-items: center;
    width: 158px;
    height: 38px;
    padding: 0 5px;
    color: #fff;
    background: var(--ix-menu);
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.ix-action-menu::after {
    position: absolute;
    top: 13px;
    right: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--ix-menu);
    content: "";
}

.ix-action-wrap.is-open .ix-action-menu {
    display: flex;
}

.ix-action-menu a,
.ix-action-menu button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 74px;
    height: 30px;
    padding: 0;
    color: #fff;
    background: transparent;
    font-size: 13px;
    white-space: nowrap;
}

.ix-action-menu form {
    margin: 0;
}

.ix-action-menu form + a {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.ix-action-menu form + button {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.ix-action-menu svg {
    width: 15px;
    height: 15px;
}

.ix-reaction-panel {
    position: relative;
    margin-top: 6px;
    padding: 5px 7px;
    background: var(--ix-soft);
    color: #111;
    font-size: 13px;
    line-height: 1.45;
    border-radius: 6px;
}

.ix-reaction-panel::before {
    position: absolute;
    top: -6px;
    left: 13px;
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--ix-soft);
    border-left: 6px solid transparent;
    content: "";
}

.ix-like-line {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    color: var(--ix-name);
}

.ix-like-line svg {
    width: 13px;
    height: 13px;
    margin-top: 2px;
}

.ix-comment-list,
.ix-detail-comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ix-comment-list {
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.ix-comment-list li {
    display: block;
    margin: 2px 0;
    color: #111;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ix-comment-name {
    color: var(--ix-name);
    font-weight: 600;
}

.ix-comment-name::after {
    color: #111;
    font-weight: 400;
    content: "：";
}

.ix-comment-name-reply::after {
    content: "";
}

.ix-comment-reply-to {
    color: #111;
}

.ix-comment-reply-to b {
    color: var(--ix-name);
    font-weight: 600;
}

.ix-comment-reply-to::after {
    content: "：";
}

.ix-comment-preview {
    color: #111;
}

.ix-comment-detail {
    margin-left: 4px;
    color: var(--ix-name);
    white-space: nowrap;
}

.ix-comment-list p {
    margin: 0;
}

.ix-inline-comment {
    margin-top: 7px;
    padding: 7px;
    background: var(--ix-soft);
    border-radius: 6px;
}

.ix-reaction-panel > .ix-inline-comment:first-child {
    margin-top: 0;
}

.ix-inline-comment[hidden] {
    display: none;
}

.ix-inline-comment form {
    display: grid;
    gap: 7px;
    margin: 0;
}

.ix-inline-comment-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.ix-inline-comment-fields input {
    min-width: 0;
    height: 32px;
    padding: 0 8px;
    color: #111;
    background: #fff;
    border: 0;
    border-radius: 3px;
    outline: 0;
    font-size: 13px;
}

.ix-inline-comment-fields input[name="url"] {
    grid-column: 1 / -1;
}

.ix-inline-comment-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 7px;
    align-items: end;
}

.ix-inline-comment textarea {
    display: block;
    width: 100%;
    min-height: 34px;
    max-height: 96px;
    padding: 7px 9px;
    color: #111;
    background: #fff;
    border: 0;
    border-radius: 3px;
    outline: 0;
    font-size: 14px;
    line-height: 1.45;
    resize: vertical;
}

.ix-inline-comment button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0;
    color: #fff;
    background: var(--ix-green);
    border-radius: 3px;
    font-size: 13px;
}

.ix-inline-comment button:disabled {
    opacity: .58;
    cursor: default;
}

.ix-inline-pending {
    color: #b07d22;
}

.ix-inline-comment-error {
    color: #b43b32;
    font-size: 12px;
    line-height: 1.35;
}

.ix-topbar {
    position: sticky;
    background: rgba(247, 247, 247, .98);
    border-bottom: 1px solid var(--ix-line);
}

.ix-topbar .ix-icon-btn {
    color: #111;
    filter: none;
}

.ix-topbar strong {
    overflow: hidden;
    max-width: 260px;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-topbar > span {
    width: 44px;
}

.ix-feed-detail {
    border-bottom: 8px solid var(--ix-bg);
}

.ix-comments {
    padding: 0 0 28px;
    background: #fff;
}

.ix-section-title {
    padding: 12px;
    background: #fff;
    border-bottom: 1px solid var(--ix-line);
}

.ix-section-title h2 {
    margin: 0;
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

.ix-detail-comment {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
    padding: 12px;
    border-bottom: 1px solid var(--ix-line);
}

.ix-comment-children {
    position: relative;
    margin: 8px 0 0;
    padding: 5px 8px;
    background: #f3f3f5;
    border-radius: 6px;
}

.ix-comment-children::before {
    position: absolute;
    top: -5px;
    left: 12px;
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #f3f3f5;
    border-left: 5px solid transparent;
    content: "";
}

.ix-comment-children .ix-detail-comment-list {
    margin: 0;
    padding: 0;
}

.ix-comment-avatar img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
}

.ix-comment-reply {
    display: block;
    padding: 5px 0 6px;
    color: #111;
    font-size: 13px;
    line-height: 1.48;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ix-comment-reply + .ix-comment-reply {
    border-top: 1px solid rgba(0, 0, 0, .045);
}

.ix-reply-main {
    display: block;
    min-width: 0;
}

.ix-reply-names {
    display: inline;
}

.ix-reply-author {
    display: inline;
    color: var(--ix-name);
    font-weight: 600;
}

.ix-reply-author a {
    color: inherit;
}

.ix-reply-to {
    display: inline;
    margin-left: 4px;
    color: #7f8791;
}

.ix-reply-to b {
    color: var(--ix-name);
    font-weight: 600;
}

.ix-reply-separator {
    display: inline;
    margin: 0 2px 0 0;
    color: #333;
}

.ix-reply-content {
    display: inline;
    color: #111;
}

.ix-reply-content p {
    display: inline;
    margin: 0;
}

.ix-reply-content p + p::before {
    white-space: pre-wrap;
    content: "\A";
}

.ix-reply-content div {
    display: inline;
}

.ix-reply-content a {
    color: var(--ix-name);
}

.ix-reply-content pre,
.ix-reply-content code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
}

.ix-reply-content pre {
    display: block;
    margin: 5px 0 0;
}

.ix-reply-content img,
.ix-reply-content iframe,
.ix-reply-content video {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 5px 0 0;
}

.ix-reply-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 18px;
    margin-top: 1px;
    color: #a8a8a8;
    font-size: 12px;
}

.ix-reply-tools a {
    color: #999;
}

.ix-reply-tools span:empty {
    display: none;
}

.ix-comment-children-nested {
    display: contents;
    margin: 0;
    padding: 0;
    border-left: 0;
    background: transparent;
}

.ix-comment-children-nested .ix-detail-comment-list {
    display: contents;
    margin: 0;
    padding: 0;
}

.ix-comment-children-nested .ix-comment-reply {
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, .045);
}

.ix-comment-children-nested .ix-comment-reply:first-child {
    margin-top: 4px;
}

.ix-comment-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.ix-comment-head strong {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: var(--ix-name);
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-comment-head time,
.ix-comment-actions {
    flex: 0 0 auto;
    color: #a6a6a6;
    font-size: 12px;
}

.ix-comment-text {
    margin-top: 4px;
    color: #111;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ix-comment-text p {
    margin: 0 0 6px;
}

.ix-comment-text p:last-child {
    margin-bottom: 0;
}

.ix-comment-text div {
    max-width: 100%;
}

.ix-comment-pending {
    margin-top: 4px;
    color: #b07d22;
    font-size: 12px;
}

.ix-comment-text img,
.ix-comment-text iframe,
.ix-comment-text video {
    max-width: 100%;
    height: auto;
}

.ix-comment-text pre,
.ix-comment-text code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
}

.ix-comment-actions {
    display: flex;
    align-items: center;
    min-height: 18px;
    margin-top: 5px;
    line-height: 1.3;
}

.ix-comment-actions a {
    display: inline-flex;
    align-items: center;
    color: #999;
    font-size: 12px;
    line-height: 1.3;
}

.ix-respond {
    padding: 12px;
    background: #fff;
    border-top: 8px solid var(--ix-bg);
    clear: both;
}

.ix-detail-comment .ix-respond {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid var(--ix-line);
    background: #fafafa;
    border-radius: 6px;
}

.ix-comment-children .ix-respond {
    margin: 8px 0 4px;
}

.ix-comment-reply .ix-respond {
    margin-top: 8px;
    padding: 8px;
    background: #fff;
    border-top: 1px solid #ececec;
    border-radius: 6px;
}

.ix-respond-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.ix-respond-head strong {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.ix-cancel-reply {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    color: var(--ix-name);
    font-size: 13px;
    line-height: 1.3;
}

.ix-cancel-reply a {
    display: inline-flex;
    align-items: center;
    color: var(--ix-name);
}

.ix-respond form {
    display: grid;
    gap: 10px;
    margin: 0;
    clear: both;
}

.ix-comment-login {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--ix-muted);
    font-size: 13px;
    min-width: 0;
}

.ix-comment-login a {
    color: var(--ix-name);
}

.ix-comment-login span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-comment-login .ix-avatar {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}

.ix-form-grid {
    display: grid;
    gap: 8px;
}

.ix-form-grid label {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    min-height: 42px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid var(--ix-line);
}

.ix-form-grid input,
.ix-respond textarea {
    width: 100%;
    color: #111;
    background: transparent;
    border: 0;
    outline: 0;
}

.ix-respond textarea {
    min-height: 84px;
    padding: 10px;
    background: #f6f6f6;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    resize: vertical;
}

.ix-comments .page-navigator {
    padding: 12px;
    border-bottom: 1px solid var(--ix-line);
}

.ix-primary-btn,
.ix-respond button[type="submit"] {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 34px;
    padding: 0 15px;
    color: #fff;
    background: var(--ix-green);
    border-radius: 4px;
    font-size: 14px;
}

.ix-pager {
    padding: 14px 12px 26px;
    background: #fff;
}

.ix-pager[data-infinite-pager] {
    padding: 10px 12px 24px;
    color: #9a9a9a;
    background: #fff;
    font-size: 13px;
    text-align: center;
}

.ix-pager[data-infinite-pager] .ix-page-nav,
.ix-pager[data-infinite-pager] .page-navigator {
    display: none;
}

.ix-infinite-status {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    color: #9a9a9a;
}

.ix-infinite-status.is-visible {
    display: flex;
}

.ix-back-top {
    display: none;
}

.ix-page-nav,
.page-navigator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ix-page-nav a,
.ix-page-nav span,
.page-navigator a,
.page-navigator span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    color: var(--ix-name);
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 13px;
}

.ix-page-nav .is-current,
.page-navigator .current a {
    color: #fff;
    background: var(--ix-name);
}

.ix-empty {
    padding: 70px 22px;
    color: #888;
    text-align: center;
}

.ix-empty div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 13px;
    color: #aaa;
    background: #f3f3f3;
    border-radius: 50%;
}

.ix-empty h2 {
    margin: 0;
    color: #333;
    font-size: 17px;
    font-weight: 500;
}

.ix-empty p {
    max-width: 280px;
    margin: 8px auto 0;
    font-size: 14px;
    line-height: 1.5;
}

.ix-page-content {
    padding: 18px 16px 28px;
    background: #fff;
}

.ix-page-content h1 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.3;
}

.ix-richtext {
    color: #222;
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.ix-richtext p {
    margin: 0 0 14px;
}

.ix-richtext img {
    height: auto;
    margin: 12px 0;
}

.ix-links-page {
    min-height: calc(100vh - 48px);
}

.ix-links-intro {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ix-line);
}

.ix-link-groups {
    display: grid;
    gap: 18px;
}

.ix-link-category {
    display: grid;
    gap: 9px;
}

.ix-link-category-head h2 {
    margin: 0;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.ix-link-category-head p {
    margin: 4px 0 0;
    color: var(--ix-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ix-link-list {
    overflow: hidden;
    border: 1px solid var(--ix-line);
    border-radius: 8px;
    background: #fff;
}

.ix-link-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 64px;
    padding: 10px 12px;
    background: #fff;
}

.ix-link-item + .ix-link-item {
    border-top: 1px solid var(--ix-line);
}

.ix-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 42px;
    height: 42px;
    color: #fff;
    background: #576b95;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
}

.ix-link-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-link-main {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.ix-link-title {
    overflow: hidden;
    color: var(--ix-name);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-link-desc {
    display: -webkit-box;
    overflow: hidden;
    color: #333;
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ix-link-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    color: var(--ix-muted);
    font-size: 12px;
    line-height: 1.35;
}

.ix-publisher {
    min-height: 100vh;
    background: #fff;
}

.ix-publish-bar {
    position: sticky;
    z-index: 5;
    top: 0;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
    height: calc(50px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 12px 0;
    background: rgba(247, 247, 247, .98);
    border-bottom: 1px solid var(--ix-line);
}

.ix-publish-bar strong {
    overflow: hidden;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-publish-bar a,
.ix-publish-bar button {
    display: inline-flex;
    align-items: center;
    height: 32px;
    color: #111;
    background: transparent;
    font-size: 16px;
}

.ix-publish-bar button,
.ix-publish-bar a:last-child {
    justify-self: end;
    justify-content: center;
    min-width: 52px;
    padding: 0 10px;
    color: #fff;
    background: var(--ix-green);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.ix-publish-editor {
    padding: 16px 14px 10px;
    background: #fff;
}

.ix-publish-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--ix-name);
    font-size: 15px;
    font-weight: 600;
}

.ix-publish-textarea {
    display: block;
    width: 100%;
    min-height: 154px;
    padding: 0;
    color: #111;
    background: #fff;
    border: 0;
    outline: 0;
    font-size: 17px;
    line-height: 1.55;
    resize: vertical;
}

.ix-publish-textarea::placeholder,
.ix-option-row input::placeholder {
    color: #b4b4b4;
}

.ix-publish-media {
    padding: 0 14px 18px;
    background: #fff;
}

.ix-publish-music {
    background: #fff;
    border-top: 8px solid var(--ix-bg);
}

.ix-publish-section-title {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 16px;
    color: #555;
    border-bottom: 1px solid var(--ix-line);
    font-size: 14px;
}

.ix-publish-section-title svg {
    width: 18px;
    height: 18px;
    color: var(--ix-name);
}

.ix-upload-grid {
    --ix-upload: 84px;
    display: grid;
    grid-template-columns: repeat(3, var(--ix-upload));
    gap: 8px;
}

.ix-upload-add,
.ix-upload-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--ix-upload);
    height: var(--ix-upload);
    color: #9b9b9b;
    background: #f4f4f4;
    border: 0;
    border-radius: 0;
}

.ix-upload-add {
    position: relative;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.ix-upload-add svg {
    width: 28px;
    height: 28px;
}

.ix-upload-add span {
    color: #aaa;
    font-size: 12px;
}

.ix-upload-add input {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ix-upload-preview {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.ix-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-upload-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-upload-preview-video::after {
    position: absolute;
    left: 6px;
    bottom: 5px;
    padding: 1px 5px;
    color: #fff;
    background: rgba(0, 0, 0, .55);
    border-radius: 2px;
    font-size: 11px;
    content: "视频";
}

.ix-upload-preview button {
    position: absolute;
    top: 4px;
    right: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #fff;
    background: rgba(0, 0, 0, .52);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}

.ix-publish-options {
    display: block;
    padding: 0 0 env(safe-area-inset-bottom);
    background: #fff;
    border-top: 8px solid var(--ix-bg);
}

.ix-option-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    background: #fff;
    border-bottom: 1px solid var(--ix-line);
    color: #111;
    font-size: 16px;
}

.ix-option-row > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ix-option-row input,
.ix-option-row select {
    width: 100%;
    height: 40px;
    padding: 0;
    color: #666;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 15px;
    text-align: right;
}

.ix-option-row select {
    appearance: none;
    direction: rtl;
}

.ix-switch-row {
    grid-template-columns: 1fr auto;
}

.ix-switch-row input {
    position: relative;
    width: 48px;
    height: 28px;
    padding: 0;
    appearance: none;
    background: #dedede;
    border: 0;
    border-radius: 14px;
    transition: background-color .16s ease;
}

.ix-switch-row input::after {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .22);
    transition: transform .16s ease;
    content: "";
}

.ix-switch-row input:checked {
    background: var(--ix-green);
}

.ix-switch-row input:checked::after {
    transform: translateX(20px);
}

.ix-publish-empty {
    padding-top: 118px;
}

.ix-photo-viewer {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .96);
}

.ix-photo-viewer[hidden] {
    display: none;
}

.ix-photo-viewer img {
    max-width: 100vw;
    max-height: 86vh;
    object-fit: contain;
}

.ix-photo-close,
.ix-photo-prev,
.ix-photo-next,
.ix-video-close {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0;
    line-height: 1;
    text-align: center;
}

.ix-photo-close::before,
.ix-video-close::before {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-1px);
    content: "×";
}

.ix-photo-prev::before,
.ix-photo-next::before {
    color: #fff;
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
}

.ix-photo-prev::before {
    transform: translateX(-1px);
    content: "‹";
}

.ix-photo-next::before {
    transform: translateX(1px);
    content: "›";
}

.ix-photo-close {
    top: calc(18px + env(safe-area-inset-top));
    right: 18px;
    width: 40px;
    height: 40px;
}

.ix-photo-prev,
.ix-photo-next {
    top: 50%;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
}

.ix-photo-prev {
    left: 12px;
}

.ix-photo-next {
    right: 12px;
}

.ix-photo-count {
    position: absolute;
    right: 0;
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: 0;
    color: #fff;
    font-size: 13px;
    text-align: center;
}

.ix-video-viewer {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(56px + env(safe-area-inset-top)) 12px calc(24px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, .96);
}

.ix-video-viewer[hidden] {
    display: none;
}

.ix-video-viewer video {
    width: min(100%, 920px);
    max-height: 82vh;
    background: #000;
}

.ix-video-close {
    top: calc(18px + env(safe-area-inset-top));
    right: 18px;
    width: 40px;
    height: 40px;
}

.ix-accent-blue {
    --ix-green: #1677ff;
    --ix-name: #1677ff;
}

.ix-accent-mono {
    --ix-green: #191919;
    --ix-name: #191919;
}

@media (min-width: 768px) {
    .ix-shell {
        width: min(100%, 520px);
    }

    .ix-back-top {
        position: fixed;
        right: max(24px, calc(50vw - 340px));
        bottom: 34px;
        z-index: 20;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        color: #333;
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: 50%;
        box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity .18s ease, transform .18s ease;
    }

    .ix-back-top.is-visible {
        display: inline-flex;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ix-back-top svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 360px) {
    :root {
        --ix-avatar: 40px;
    }

    .ix-album-cover {
        height: 248px;
    }

    .ix-album-user {
        grid-template-columns: minmax(0, 1fr) 76px;
        gap: 10px;
    }

    .ix-avatar-large {
        width: 76px;
        height: 76px;
    }

    .ix-album-copy h1 {
        font-size: 21px;
    }

    .ix-media-grid {
        --ix-cell: 72px;
    }

    .ix-media-grid-2 {
        --ix-cell: 104px;
    }

    .ix-upload-grid {
        --ix-upload: 78px;
        gap: 7px;
    }

    .ix-author-cover {
        height: 248px;
    }

    .ix-author-moment {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 8px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .ix-author-media {
        --ix-author-thumb: 72px;
    }

    .ix-option-row {
        grid-template-columns: 84px minmax(0, 1fr);
        padding: 0 14px;
        font-size: 15px;
    }
}

@media (max-width: 330px) {
    .ix-media-grid {
        --ix-cell: 66px;
    }

    .ix-media-grid-2 {
        --ix-cell: 98px;
    }

    .ix-upload-grid {
        --ix-upload: 72px;
    }

    .ix-author-media {
        --ix-author-thumb: 68px;
    }
}
