.comment-one {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

@media screen and (max-width: 500px) {
    .comment-one {
        margin: 20px 0 0 0;
        z-index: 1;
        overflow: visible;
    }
}

.comment-left {
    display: inline-block;
    width: 70px;
    color: var(--color-main-text);
    text-decoration: none;
    position: relative;
    top: 3px;
    vertical-align: top;
}

@media screen and (max-width: 500px) {
    .comment-left {
        top: 0;
    }
}

@media screen and (max-width: 500px) {
    .comment-left {
        width: 60px;
    }
}

.comment-left-margin {
    margin-left: 70px;
    width: 100%;
}

@media screen and (max-width: 500px) {
    .comment-left-margin {
        margin-left: 60px;
    }
}

.comment-left > img {
    width: 55px;
    border-radius: 4px;
}

@media screen and (max-width: 500px) {
    .comment-left > img {
        width: 45px;
    }
}


.comment-right {
    display: inline-block;
    width: calc(100% - 70px)
}

@media screen and (max-width: 500px) {
    .comment-right {
        width: calc(100% - 60px)
    }
}

.comment-name {
    margin-bottom: 10px;
    font-size: var(--font-size-18px);
    display: inline-block;
    color: var(--color-main-text);
    text-decoration: none;
    font-weight: bold;
}

.comment-name :hover {
    text-decoration: underline;
}

.comment-name .el-tag {
    padding: 0 6px;
    position: relative;
    bottom: 1px;
    line-height: 22px;
    height: 22px;
}

@media screen and (max-width: 500px) {
    .comment-name .el-tag {
        bottom: initial;
        top: 1px;
    }
}

.comment-city {
    color: var(--color-article-link);
    font-size: var(--font-size-16px);
    margin-left: 10px;
    font-weight: initial;
}

.comment-content {
    color: var(--color-main-text);
    line-height: 180%;
    font-size: var(--font-size-16px);
    background-color: var(--color-background-article-ol-comment);
    padding: 15px 15px;
    border-radius: 6px;
}

@media screen and (max-width: 500px) {
    .comment-content {
        font-size: var(--font-size-14px);
    }
}

.comment-content a {
    color: var(--color-article-link);
}

.comment-content-edit {
    color: var(--color-main-text);
    background-color: var(--color-background-comment-edit);
}

.comment-content-at {
    color: var(--color-article-tab-date-preview);
    margin-right: 10px;
}

.comment-option {
    margin-top: 10px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.comment-date {
    float: right;
    font-size: var(--font-size-14px);
    color: var(--color-article-tab-date-preview);
    margin-top: 3px;
}

.comment-button-reply {
    float: right;
    margin-left: 20px;
}

.comment-button-reply .el-tag.el-tag--info {
    padding: 0 6px;
    height: 22px;
    position: relative;
    bottom: 2px;
    cursor: pointer;
    margin-top: 2px;
}

.comment-button-reply .el-tag.el-tag--info i.fa {
    position: relative;
    top: 2px;
}

.comment-button-reply .el-tag.el-tag--info:hover {
    background-color: var(--color-background-small-button);
    border: 1px solid var(--color-background-small-button-border);
    color: var(--color-middle-button-text);
}

.comment-button-reply .el-link {
    font-size: var(--font-size-14px);
    position: relative;
    bottom: 5px;
}

.comment-reply-list {
    margin-left: 0;
    width: 100%;
}

.comment-content .article-emotion {
    position: relative;
    top: 5px;
    margin: 0 5px;
}

.component-form-comment-reply {
    margin-top: 30px;
    width: calc(100% - 140px);
    margin-left: 140px;
}

@media screen and (max-width: 500px) {
    .component-form-comment-reply {
        width: calc(100%);
        margin-left: 0;
    }
}

.component-form-comment-reply-short {
    width: calc(100% - 70px);
    margin-left: 70px;
}

@media screen and (max-width: 500px) {
    .component-form-comment-reply-short {
        width: calc(100%);
        margin-left: 0;
    }
}

.comment-tabs .el-tabs__item {
    color: var(--color-article-tab-date-preview);
}

.comment-edit-link {
    color: var(--color-article-tab-date-preview);
    border-bottom: 1px solid var(--color-article-tab-date-preview);
    height: 23px;
}

.comment-edit-link:hover {
    color: var(--color-background-comment-edit);
    border-bottom: 1px solid var(--color-background-comment-edit);
}

@keyframes slideDown {
    from {
        top: -200px;
    }
    to {
        top: 0;
    }
}

.comment-one-slide-container {
    position: relative;
    overflow: hidden;
    padding-top: 1px;
}

.comment-one.slide-down {
    animation: slideDown 1s ease forwards;
}


@keyframes opacityFade {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.comment-form-fade-container.opacity-fade {
    animation: opacityFade 1s ease forwards;
}

.textarea-comment {
    font-size: var(--font-size-16px);
}

.form-email {
    width: 30%;
    margin-right: 5%;
    display: inline-block;
}

@media screen and (max-width: 500px) {
    .form-email {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px !important;
    }
}

.form-email:nth-child(3) {
    margin-right: 0;
}

.el-textarea__inner, .el-input__inner {
    font-size: var(--font-size-14px);
}
.comment-tabs .el-tabs__item {
  padding: 0 10px;
}

.comment-tabs .el-tabs__header {
  width: 200px;
}

.comment-tabs.comment-tabs-upload .el-tabs__header {
  width: 250px;
}

.comment-tabs .el-tabs__content {
  overflow: visible;
}

.tab-emotion-one {
  padding: 0 10px;
  display: inline-block;
  cursor: pointer;
  color: var(--color-main-text);
}

.tab-emotion-one:hover {
  color: var(--color-article-tab-date-preview);
  text-decoration: underline;
}

.tab-alu-one {
  padding: 0 5px;
  display: inline-block;
  cursor: pointer;
}

.content-album {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    text-indent: 0;
    line-height: initial;
    background-color: var(--color-background-article-ol-comment);
    border-radius: 4px;
    padding: 10px 0;
}

.content-album-one {
    width: calc(21%);
    margin: 12px 2%;
}

@media screen and (max-width: 500px) {
    .content-album-one {
        width: calc(41%);
        aspect-ratio: 1 / 1;
        margin: 10px calc(1% + 11px);
    }
}

.content-album-desc {
    margin: 12px 8px 0;
    text-align: center;
    font-size: var(--font-size-12px);
    color: var(--color-main-text);
}

.content-album-image .el-skeleton__image {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.content-album-image img {
    border-radius: 4px;
}

.content-album-image-cover {
    width: 190px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
}


.markdown-css .content-album .page-header {
    text-align: center;
    width: 100%;
    margin: 10px;
}

.markdown-css .content-album .page-header h1 {
    font-size: var(--font-size-18px);
    color: var(--color-main-text);
}

:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --text-dark: #2b2d42;
    --text-medium: #4a4e69;
    --text-light: #8e9aaf;
    --bg-light: #f8f9fa;
    --card-shadow: 0 4px 20px var(--color-background-shadow);
    --card-shadow-hover: 0 10px 15px var(--color-background-shadow);
}

.markdown-css .content-friend {
    text-indent: initial;
}

.markdown-css .content-friend h3:before {
    content: initial;
}

.markdown-css .content-friend h3 {
    color: initial;
    padding: initial;
    background-color: initial;
    font-weight: initial;
    margin-top: initial;
    margin-bottom: initial;
    border-radius: initial;
}

.markdown-css .content-friend h3:before {
    color: initial;
    padding: initial;
    background-color: initial;
    font-weight: initial;
    margin-top: initial;
    margin-bottom: initial;
    border-radius: initial;
}

.markdown-css .content-friend {
    margin: 60px 0;
}

.markdown-css .content-friend * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.markdown-css .content-friend .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.markdown-css .content-friend .page-header h1 {
    font-size: 2.2rem;
    color: var(--color-title-text);
    margin-bottom: 10px;
}

.markdown-css .content-friend .page-header p {
    color: var(--color-article-tab-date-preview);
    font-size: 1.1rem;
}

.markdown-css .content-friend .links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

@media screen and (max-width: 500px) {
    .markdown-css .content-friend .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.markdown-css .content-friend .link-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.markdown-css .content-friend .link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.markdown-css .content-friend .card-simple {
    padding: 25px;
    text-align: center;
    text-decoration: none;
}

@media screen and (max-width: 500px) {
    .markdown-css .content-friend .card-simple {
        padding: 15px;
    }
}

.markdown-css .content-friend .card-simple .logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    border: 2px solid #f0f0f0;
}

.markdown-css .content-friend .card-simple .name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.markdown-css .content-friend .card-simple .desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

html, body {
    margin: 0;
    padding: 0;
}

.height-100 {
    height: 100px;
}

.height-100pct {
    height: 100%;
}

.max-width-100pct {
    max-width: 100%;
}

.height-100pct-sub110 {
    height: calc(100% - 110px);
}

.width-100pct-sub60 {
    width: calc(100% - 60px) !important;
}

.right {
    float: right;
}

.left {
    float: left;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 10px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.padding-lr-20 {
    padding: 0 20px;
}

.padding-tb-4 {
    padding: 4px 0 !important;
}

.padding-r-40 {
    padding-right: 40px;
}

.padding-l-40 {
    padding-left: 40px;
}

.overflow-hidden {
    overflow: hidden !important;
}

.max-width-1200 {
    max-width: 1200px;
}

.max-width-800 {
    max-width: 800px;
}

.max-width-600 {
    max-width: 600px;
}

.width-200 {
    width: 200px;
    max-width: 100%;
}

.width-100-pct {
    width: 100%;
}

.width-50-pct-desktop-100-pct-mobile {
    width: 50%;
    max-width: 100%;
}

@media screen and (max-width: 500px) {
    .width-50-pct-desktop-100-pct-mobile {
        width: 100%;
    }
}

.width-100 {
    width: 100px;
    max-width: 100%;
}

.width-150 {
    width: 150px;
    max-width: 100%;
}

.width-300 {
    width: 300px;
    max-width: 100%;
}

.width-400 {
    width: 400px;
    max-width: 100%;
}

.width-600 {
    width: 600px;
    max-width: 100%;
}

.width-800 {
    width: 800px;
    max-width: 100%;
}

.width-8 {
    width: 8px;
}

.width-180 {
    width: 180px;
}

.font-18 {
    font-size: 18px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-24 {
    font-size: 24px !important;
}

.font-12 {
    font-size: 12px !important;
}

.red {
    color: red !important;
}

.clear {
    clear: both;
}

.hide {
    display: none !important;
}

.inline-block {
    display: inline-block !important;
}

.block {
    display: block !important;
}

.small {
    font-size: 12px;
}

.exceed-dot {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exceed-dot-2-line {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.exceed-dot-4-line {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.exceed-dot-8-line {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
}

.exceed-dot-6-line {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-none:hover {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline;
}

.cursor-pointer {
    cursor: pointer;
}

.text-decoration-hover:hover {
    text-decoration: underline;
}

.mobile-none-desktop-inline {
    display: inline-block !important;
}

@media screen and (max-width: 500px) {
    .mobile-none-desktop-inline {
        display: none !important;
    }
}

.mobile-inline-desktop-none {
    display: none !important;
}

@media screen and (max-width: 500px) {
    .mobile-inline-desktop-none {
        display: inline-block !important;
    }
}

.mobile-block-desktop-none {
    display: none !important;
}

@media screen and (max-width: 500px) {
    .mobile-block-desktop-none {
        display: block !important;
        clear: both;
        margin-bottom: 10px;
        height: 15px;
    }
}

.top-1 {
    position: relative;
    top: 1px !important;
}

.top-0 {
    position: relative;
    top: initial !important;
    bottom: initial !important;
}

.top-2 {
    position: relative;
    top: 2px !important;
}

.bottom-1 {
    position: relative;
    bottom: 1px !important;
}

.bottom-2 {
    position: relative;
    bottom: 2px !important;
}

.bottom-3 {
    position: relative;
    bottom: 3px !important;
}

.bottom-5 {
    position: relative;
    bottom: 5px !important;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.margin-auto {
    margin: 0 auto;
}

.max-two-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.height-32 {
    height: 32px;
}

.margin-tb-20 {
    margin: 20px 0;
}

.margin-b-20 {
    margin-bottom: 20px;
}

.margin-t-10 {
    margin-top: 10px;
}

.margin-t-20 {
    margin-top: 20px;
}

.margin-tb-20 {
    margin: 20px 0;
}

.line-height-190 {
    line-height: 190%;
}

.banner-minus-margin-minus-top {
    margin: -20px var(--margin-minus-framework) 0 var(--margin-minus-framework);
}

@media screen and (max-width: 500px) {
    .banner-minus-margin-minus-top {
        margin: -20px var(--margin-minus-framework-mobile) 0 var(--margin-minus-framework-mobile);
    }
}

.banner-margin-minus-top {
    margin: 20px var(--margin-minus-framework) 0 var(--margin-minus-framework);
}

@media screen and (max-width: 500px) {
    .banner-margin-minus-top {
        margin: 20px var(--margin-minus-framework-mobile) 0 var(--margin-minus-framework-mobile);
    }
}
.article-frame {
    margin-top: 10px;
    margin-bottom: 50px;
    overflow: hidden;
}

.article-title {
}

.article-title a {
    font-size: var(--font-size-28px);
    color: var(--color-title-text);
    text-decoration: none;
    cursor: pointer;
}

.article-title .article-title-link:hover {
    text-decoration: underline;
}

.article-title-back {
    cursor: pointer;
    float: right;
    margin-left: 20px;
}

.article-content {
    font-size: var(--font-size-16px);
    text-indent: 2em;
    line-height: 180%;
    margin-top: 20px;
    color: var(--color-article-tab-date-preview);
    margin-left: 40px;
}

.article-content.article-list-content {
    margin-left: 0;
    min-height: 110px;
}

@media screen and (max-width: 500px) {
    .article-content {
        margin-left: 0;
        margin-top: 15px;
    }
}

.article-date {
    font-size: var(--font-size-14px);
    color: var(--color-article-tab-date-preview);
    float: right;
    margin-top: 15px;
    text-align: right;
}

.article-date a {
    display: block;
}

.article-one-date {
    font-size: var(--font-size-16px);
    color: var(--color-article-tab-date-preview);
    float: right;
    margin-top: 15px;
    text-align: right;
}

.article-frame-logo .article-frame .article-image {
    margin: 20px 0 10px 0;
    text-align: left;
    overflow: hidden;
    max-width: 100%;
}

@media screen and (max-width: 500px) {
    .article-frame-logo .article-frame .article-image {
        margin: 20px 0 0 0;
    }
}

.article-frame-logo .article-frame .article-image .el-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.article-frame-thumb .article-frame .article-image {
    margin-right: 20px;
    margin-top: 20px;
    height: 120px;
    width: 160px;
    float: left;
}

.article-frame-thumb .article-frame .article-image .el-image {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.article-frame .article-image.article-list-image-logo {
    height: 231px;
}

@media screen and (max-width: 500px) {
    .article-frame .article-image.article-list-image-logo {
        max-height: 95px;
    }
}

.article-frame .article-image.article-list-image-cover {
    height: 500px;
}

@media screen and (max-width: 500px) {
    .article-frame .article-image.article-list-image-cover {
        max-height: 250px;
    }
}

@media screen and (max-width: 500px) {
    .article-frame .article-image.article-list-image-thumb {
        width: 120px;
    }
}

.article-tag {
    margin-top: 35px;
    margin-bottom: 40px;
    float: left;
    height: 41px;
    line-height: 29px;
}

@media screen and (max-width: 500px) {
    .article-tag {
        height: 20px;
        margin-top: 10px;
        margin-bottom: 0;
    }
}

.article-tag-text {
    color: var(--color-article-tab-date-preview);
}

.article-tag > div {
    padding-top: 5px;
}

.article-tag a {
    display: block;
}

.article-next {
    margin-top: 35px;
    margin-bottom: 40px;
    overflow: hidden;
    float: right;
}

@media screen and (max-width: 500px) {
    .article-next {
        margin-top: 0;
        margin-bottom: 20px;
    }
}

.article-next > a {
    padding: 5px 20px;
    background-color: var(--color-background-middle-button);
    border: 1px solid var(--color-background-middle-button-border);
    border-radius: 6px;
    cursor: pointer;
    color: var(--color-middle-button-text);
    text-decoration: none;
    margin-bottom: 10px;
}

.article-next > a:hover {
    background-color: var(--color-background-header);
    border: 1px solid var(--color-background-header);
    color: var(--color-header-text);
    cursor: pointer;
}

.article-next > a.article-next-next {
    float: left;
}

.article-next > a.article-next-prev {
    float: right;
}

.article-list-next {
    margin-top: 35px;
    margin-bottom: 40px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    float: right;
    overflow: visible;
}

@media screen and (max-width: 500px) {
    .article-list-next {
        margin-top: 0;
        margin-bottom: 20px;
    }
}

.article-list-next > a {
    padding: 5px 20px;
    background-color: var(--color-background-middle-button);
    border: 1px solid var(--color-background-middle-button-border);
    border-radius: 6px;
    cursor: pointer;
    color: var(--color-middle-button-text);
    text-decoration: none;
    margin-bottom: 10px;
}

.article-list-next > a:hover {
    background-color: var(--color-background-middle-button);
    cursor: pointer;
}

.article-list-next > a.article-next-next {
    float: left;
}

.article-list-next > a.article-next-prev {
    float: right;
}

.article-page-content {
    font-size: var(--font-size-18px);
    text-indent: 2em;
    line-height: 180%;
    margin-top: 20px;
}

.dropdown-pagination-jump .el-button {
    background-color: var(--color-background-middle-button);
    border: 1px solid var(--color-background-middle-button-border);
    color: var(--color-middle-button-text);
    position: relative;
    top: 0;
}

.article {
    margin-top: 10px;
    overflow-x: hidden;
}

:root {
  --color-site-rice: #FFFDF7;
  --color-site-orange: #99D6EA;
  --color-site-darkblue: #6798C0;
  --color-site-graygreen: #FDD85D;
  --color-site-rice-dark: #FDC921;
}

