/* ----------------------------------------------
 * Generated by Animista on 2023-10-30
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-down-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-down-center {
    0% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes scale-down-center {
    0% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

.scale-down-center {
    -webkit-animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation show-up
 * ----------------------------------------
 */
@-webkit-keyframes showup {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes showup {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.showup {
    -webkit-animation: showup 0.4s forwards ease-out;
    animation: showup 0.4s forwards ease-out;
}

/**
 * ----------------------------------------
 * animation show-up
 * ----------------------------------------
 */
@-webkit-keyframes clip {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes clip {
    0% {
        clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

.clip-path-animate {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    -webkit-animation: clip 0.4s forwards cubic-bezier(0, .3, .6, 1);
    animation: clip 0.4s forwards cubic-bezier(0, .3, .6, 1);
}

/**
 * ----------------------------------------
 * animation scale-down-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-down-center {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-down-center {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.scale-down-center {
    -webkit-animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-top {
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.tracking-in-expand {
    -webkit-animation: tracking-in-expand 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

/**
 * ----------------------------------------
 * animation text-pop-up-top
 * ----------------------------------------
 */
@-webkit-keyframes text-pop-up-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        text-shadow: none;
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        text-shadow: 0 1px 0 #cccccc, 0 2px 0 #cccccc, 0 3px 0 #cccccc, 0 4px 0 #cccccc, 0 5px 0 #cccccc, 0 6px 0 #cccccc, 0 7px 0 #cccccc, 0 8px 0 #cccccc, 0 9px 0 #cccccc, 0 50px 30px rgba(0, 0, 0, 0.3);
    }
}

@keyframes text-pop-up-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        text-shadow: none;
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        text-shadow: 0 1px 0 #cccccc, 0 2px 0 #cccccc, 0 3px 0 #cccccc, 0 4px 0 #cccccc, 0 5px 0 #cccccc, 0 6px 0 #cccccc, 0 7px 0 #cccccc, 0 8px 0 #cccccc, 0 9px 0 #cccccc, 0 50px 30px rgba(0, 0, 0, 0.3);
    }
}

.text-pop-up-top {
	-webkit-animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation circle
 * ----------------------------------------
 */
@-webkit-keyframes circle-animation {
    0% {
        -webkit-clip-path: circle(0%);
        clip-path: circle(0%);
    }

    100% {
        -webkit-clip-path: circle(100%);
        clip-path: circle(100%);
    }
}

@keyframes circle-animation {
    0% {
        -webkit-clip-path: circle(0%);
        clip-path: circle(0%);
    }

    100% {
        -webkit-clip-path: circle(100%);
        clip-path: circle(100%);
    }
}

.circle-animation {
    -webkit-animation: circle-animation 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: circle-animation 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.circle-animation-reverse {
    -webkit-animation: circle-animation 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both reverse;
    animation: circle-animation 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both reverse;
}

.wow {
    visibility: hidden;
}

.prefers-reduced-motion-reduce .wow {
    visibility: visible;
}

.attract-hover-easing {
    will-change: transform;
    -webkit-transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

.entry-animation img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* --------------- Reset CSS --------------- */
html,
body {
    height: 100%;
}

body {
    overflow-x: hidden;
	-webkit-text-size-adjust: 100% !important;
    -moz-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
}

dl,
ol,
ul,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl dd:last-child {
    margin-bottom: 0 !important;
}

dl dt {
    font-weight: normal;
}

a {
    color: #000000;
}

a:hover {
    color: currentColor;
    text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}

input[type='number'] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* --------------- Common Style --------------- */
.font-songTi {
    font-family: "font", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.aspect-ratio {
    position: relative;
}

.aspect-ratio:before {
    content: "";
    display: block;
    width: 1px;
    margin-left: -1px;
    height: 0;
}

.aspect-ratio-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aspect-ratio-content,
.aspect-ratio-content>img {
    width: 100%;
    height: 100%;
}

.aspect-ratio-content>img {
    -o-object-cover: cover;
    -o-object-position: center;
    object-fit: cover;
    object-position: center;
}

.justify-content-evenly {
    -ms-flex-pack: distribute;
    justify-content: space-evenly;
}

@media (min-width: 1400px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1360px;
    }
}

/* --------------- Main Area --------------- */
#main {
    padding-bottom: 60px;
    background-color: #2A2A31;
}

/* --------------- Index Page --------------- */
#home-page-navigation {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroller-container.is-dragging a,
#home-page-navigation.is-dragging a {
    pointer-events: none;
}

/* 隐藏滚动条轨道 */
#home-page-navigation::-webkit-scrollbar {
    width: 0px;
}

/* 自定义滚动条轨道背景颜色 */
#home-page-navigation::-webkit-scrollbar-track {
    background-color: transparent;
}

/* 自定义滚动条滑块样式 */
#home-page-navigation::-webkit-scrollbar-thumb {
    background-color: transparent;
}

/* 鼠标悬停时滚动条滑块样式 */
#home-page-navigation::-webkit-scrollbar-thumb:hover {
    background-color: transparent;
}

.home-page-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.home-page-banner::before {
    padding-top: 43.310776%;
}

.home-page-banner .aspect-ratio-content {
    background-image: url(../images/index/25.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0px -5px 6px rgba(42, 42, 49, 1);
}

.home-page-banner~section {
    padding: 60px 0;
}

.home-page-top {
    position: relative;
    z-index: 1;
    height: 100vh;
    max-height: 57vw;
    min-height: 45vw;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 60px;
}

.home-page-title {
    color: #FFFFFF;
    font-size: 39px;
    text-align: center;
    letter-spacing: 0.1em;
    width: 940px;
    margin: 0 auto;
    padding: 37px 0px;
    position: relative;
    z-index: 1;
}

.home-page-title::before,
.home-page-title::after {
    content: "";
    position: absolute;
    z-index: -1;
}

.home-page-title::before {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, transparent 20px, #FFC659 21px) top left,
        radial-gradient(circle at top right, transparent 20px, #FFC659 21px) top right,
        radial-gradient(circle at bottom right, transparent 20px, #FFC659 21px) bottom right,
        radial-gradient(circle at bottom left, transparent 20px, #FFC659 21px) bottom left;
    background-size: 55% 55%;
    background-repeat: no-repeat;
}

.home-page-title::after {
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: radial-gradient(circle at top left, transparent 20px, #7D352B 21px) top left,
        radial-gradient(circle at top right, transparent 20px, #7D352B 21px) top right,
        radial-gradient(circle at bottom right, transparent 20px, #7D352B 21px) bottom right,
        radial-gradient(circle at bottom left, transparent 20px, #7D352B 21px) bottom left;
    background-size: 55% 55%;
    background-repeat: no-repeat;
}

.page-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0 92px;
    background-image: url(../images/index/26-left.png),
        url(../images/index/26-right.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center, right center;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/index/1.png) center no-repeat;
    background-size: auto 85%;
}

.page-title span {
    display: block;
    position: relative;
    z-index: 1;
}

.home-page-navigation {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    will-change: transform;
}

.navigation-item {
    width: 11.75%;
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

@media (any-hover: hover) {
    .navigation-item:hover {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@media (any-hover: none) {
    #home-page-navigation {
        overflow: hidden;
    }
}

.navigation-item img {
    width: 100%;
    height: auto;
}

.navigation-item--link {
    position: relative;
}

.navigation-item--link-font {
    color: #FFFFFF;
    font-size: 28px;
    letter-spacing: 0.15em;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 12em;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navigation-item--link-font .font {
    height: 8.18em;
    padding: 50px 0;
    text-align: center;
    width: 1.55em;
    line-height: 1.25;
    /* -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr; */
    background-image: url(../images/public/17-2-right.png),
        url(../images/public/17-2-left.png);
    background-repeat: no-repeat;
    background-size: 40% auto;
    background-position: center 12px, center calc(100% - 12px);
}

.navigation-item--link-font>img {
    width: 50px;
}

.navigation-item--link img {
    pointer-events: none;
}

.home-section-title {
    color: #FFFFFF;
    font-size: 28px;
    letter-spacing: 1px;
    width: 7.5em;
    text-align: center;
    margin: 0 auto;
    padding: 0 45px;
    background-image: url(../images/index/12-left.png),
        url(../images/index/12-right.png);
    background-position: left center, right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.home-section-gap {
    margin-top: 60px;
}

.society-introduction-content {
    position: relative;
    color: #FFFFFF;
    font-size: 18px;
    text-indent: 2em;
    text-align: justify;
    line-height: 1.7;
    letter-spacing: 1.5px;
    padding: 60px;
    background-image: url(../images/index/11.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.society-introduction-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2A2A31;
}

.society-introduction-content p:not(:last-child) {
    margin-bottom: 15px !important;
}

.membership-service {
    position: relative;
}

.membership-service::before {
    content: "";
    position: absolute;
    top: -70px;
    right: 0;
    width: 100%;
    height: calc(100% + 140px);
    background-image: url(../images/index/18.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right top;
    pointer-events: none;
}

.membership-service--item .aspect-ratio-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/index/13-3.png);
    background-size: cover;
}

.membership-service--item:nth-child(2) .aspect-ratio-content {
    background-image: url(../images/index/14-3.png);
}

.membership-service--item:nth-child(3) .aspect-ratio-content {
    background-image: url(../images/index/15-3.png);
}

.membership-service--link .aspect-ratio-content {
    padding: 20px;
}

.membership-service--link::before {
    padding-top: 65.402844%;
}

.membership-service--link-content {
    height: 100%;
    background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8) 10px, transparent 10px, transparent 20px, rgba(255, 255, 255, .8) 20px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8) 10px, transparent 10px, transparent 20px, rgba(255, 255, 255, .8) 20px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8) 10px, transparent 10px, transparent 20px, rgba(255, 255, 255, .8) 20px),
        repeating-linear-gradient(270deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8) 10px, transparent 10px, transparent 20px, rgba(255, 255, 255, .8) 20px);
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
}

.membership-service--link-content .font {
    font-size: 22px;
    color: #FFFFFF;
    letter-spacing: 0.15em;
}

.arrow-icon {
    width: 55px;
    height: auto;
}

.society-constitution .society-constitution-box {
    border-radius: 10px;
    background-color: #7D352B;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #FFFFFF;
    background-image: url(../images/index/1-right.png),
        url(../images/index/1-left.png);
    background-position: left center, right center;
    background-size: auto 85%;
    background-repeat: no-repeat;
}

.society-constitution-btn {
    color: #FFFFFF;
    padding: 10px 35px;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0;
}

.society-dynamic-left::before {
    padding-top: 70.723684%;
}

.society-dynamic-left .aspect-ratio-content {
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    border-radius: 10px;
    background-image: url(../images/index/16.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.society-dynamic--list {
    height: 100%;
}

.society-dynamic--item,
.society-dynamic--link {
    width: 100%;
    color: #FFFFFF;
}

.society-dynamic--link {
    display: block;
}

.society-dynamic--link-title {
    font-size: 18px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: calc(1em * 1.5);
}

.society-dynamic--link-details {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    margin-top: 10px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: calc(2em * 1.5);
}

.society-dynamic--link-title,
.society-dynamic--link-details {
    letter-spacing: 1.5px;
}

@media (any-hover: hover) {

    .society-dynamic--link-title,
    .society-dynamic--link-details {
        -webkit-transition: color .3s;
        transition: color .3s;
    }

    .society-dynamic--link:hover .society-dynamic--link-title {
        color: #D6C6A5;
    }

    .society-dynamic--link:hover .society-dynamic--link-details {
        color: rgb(214, 198, 165, .6);
    }
}

.society-dynamic--last-item,
.society-dynamic--last-item a {
    color: #FFFFFF;
}

.society-dynamic--last-item a {
    font-size: 16px;
    padding: 8px 25px;
    border-radius: 3px;
    letter-spacing: 1.5px;
    background-color: #7D352B;
}

.society-notice {
    position: relative;
    z-index: 1;
}

.society-notice-content {
    padding: 60px;
    color: #FFFFFF;
    background-color: #F9F7F3;
}

.corner-top::before,
.corner-top::after,
.corner-bottom::before,
.corner-bottom::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background-image: url(../images/public/17.png);
    background-size: cover;
}

.corner-top::before {
    top: 10px;
    left: 10px;
}

.corner-top::after {
    top: 10px;
    right: 10px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.corner-bottom::before {
    left: 10px;
    bottom: 10px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.corner-bottom::after {
    right: 10px;
    bottom: 10px;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.society-notice--item {
    padding: 15px 0;
    font-size: 18px;
    color: #7D352B;
}

.society-notice--item:first-child {
    padding-top: 0px;
}

.society-notice--item:last-child {
    padding-bottom: 0px;
}

.society-notice--item+.society-notice--item {
    background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 5px, transparent 5px, transparent 10px, rgba(0, 0, 0, .3) 10px);
    background-size: 100% 1px;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.society-notice--link {
    font-size: 18px;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.society-notice--link span+span {
    margin-left: 120px;
}

.society-notice--more {
    padding: 8px 150px;
    border-radius: 4px;
    background-color: #7D352B;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0px;
    color: #FFFFFF;
    font-size: 15px;
}

.academic-achievements {
    position: relative;
}

.academic-achievements::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10%;
    width: 100%;
    height: 160%;
    background-image: url(../images/index/19.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.academic-achievements,
.academic-achievements a,
.section-title-has-more,
.section-title-has-more a {
    color: #FFFFFF;
}

.academic-achievements--more {
    position: absolute;
    right: 0;
    bottom: 0;
    letter-spacing: 1.5px;
}

.academic-achievements--link {
    font-size: 22px;
    padding: 40px 20px;
    position: relative;
    background-color: rgba(255, 255, 255, .1);
}

@media (any-hover: hover) {
    .entry-animation {
        -webkit-transition: transform .3s;
        transition: transform .3s;
    }

    .entry-animation:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .academic-achievements--link {
        -webkit-transition: background .3s, transform .3s;
        transition: background .3s, transform .3s;
    }

    .academic-achievements--link:hover {
        background-color: #7D352B;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.academic-achievements--link .font {
    height: 3em;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: calc(2em * 1.5);
}

.academic-achievements--link .arrow-icon {
    margin-top: 30px;
}

.branch .branch-inner {
    padding: 60px 0px;
    background-image: url(../images/index/20.png);
    background-repeat: no-repeat;
    background-size: cover;
}

@keyframes branch-content {
    0% {
        padding: 0px 15px;
    }
}

.branch-content-animation {
    -webkit-animation: branch-content 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: branch-content 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.branch-content {
    margin-left: -20px;
    margin-right: -20px;
    border: 2px solid #FFFFFF;
    padding: 18px 33px;
}

.branch--row,
.branch--row .branch--link {
    color: #7D352B;
}

.branch--row {
    padding: 35px 25px;
    background-color: #F9F7F3;
}

.branch--item:nth-child(n + 5) {
    margin-top: 30px;
}

.branch--link {
    display: block;
    font-size: 18px;
}

/* --------------- Introduction Page --------------- */
.page-breadcrumb~section {
    padding: 60px 0px;
}

.page-breadcrumb {
    min-height: 120px;
    max-height: 350px;
}

.page-breadcrumb::before {
    padding-top: 18.28125%;
}

.page-breadcrumb .aspect-ratio-content {
    background-image: url(../images/public/1.png);
    background-size: cover;
}

.page-breadcrumb .breadcrumb {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.page-breadcrumb,
.page-breadcrumb a,
.breadcrumb-item+.breadcrumb-item::before {
    color: #FFFFFF;
    font-size: 24px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\e665";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-content--box {
    padding: 50px;
    background-color: #F9F7F3;
}

.content-title {
    font-size: 28px;
    text-align: center;
}

.introduction-title {
    color: #7D352B;
    text-align: left;
    margin-bottom: 25px !important;
}

.main-content--list,
.main-content--container,
.contact-information--item {
    font-size: 18px;
}

.main-content--list,
.main-content--container {
    margin-top: 40px;
}

.main-content--item {
    padding: 10px 0px 10px 0px;
    letter-spacing: 1.5px;
    position: relative;
}

.main-content--item::before {
    content: "";
    display: block;
    flex-shrink: 0;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #999999;
}

.main-content--item:first-child {
    padding-top: 0px;
}

.main-content--item:last-child {
    padding-bottom: 0px;
}

.main-content--link {
    display: block;
    margin-left: 15px;
}

.main-content--container p {
    opacity: 0;
    text-indent: 2em;
    letter-spacing: 1px;
    text-align: justify;
}

.main-content--container p[style*="text-align: center"],
.main-content--container p[style*="text-align:center"] {
    text-indent: 0em;
}

/* .prefers-reduced-motion-reduce .main-content--container p {
    opacity: 1;
} */

.main-content--container table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    max-width: 100% !important;
}

.main-content--container table p {
    text-indent: 0em;
    margin-bottom: 0em !important;
}

.main-content--container table td,
.main-content--container table tr,
.main-content--container table th {
    border: 1px solid #4C4C4C;
    padding: 3px 5px;
}

.main-content--container img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.main-content--container p{
    margin-bottom: 1em !important;
}

.main-content--container>p:last-child {
    margin-bottom: 0 !important;
}

.main-content--container a {
    color: #7D352B;
}

.introduction-hr {
    height: 1px;
    margin: 25px 0;
    border-color: transparent;
    background-image: repeating-linear-gradient(90deg, #7d352b, #7d352b 5px, transparent 5px, transparent 10px, #7d352b 10px);
    background-size: 100% 1px;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.contact-information--item .contact-icon {
    width: 28px;
    margin-right: 10px;
}

.contact-information--item span {
    color: #7D352B;
}

.contact-information--item {
    min-width: 300px;
}

.contact-information--item:nth-child(n + 3) {
    margin-top: 20px;
}

/* --------------- Organization --------------- */
.main-content--tab {
    height: 120px;
    margin-top: -60px;

    position: relative;
    z-index: 10;
    background: radial-gradient(circle at top left,
            transparent 14px,
            #F3EDE0 15px) top left,
        radial-gradient(circle at top right,
            transparent 14px,
            #F3EDE0 15px) top right,
        radial-gradient(circle at bottom right,
            transparent 14px,
            #F3EDE0 15px) bottom right,
        radial-gradient(circle at bottom left,
            transparent 14px,
            #F3EDE0 15px) bottom left;
    background-size: 60% 60%;
    background-repeat: no-repeat;
}

.main-content--tab-wrap,
.main-content--tab-inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.main-content--tab-wrap {
    width: calc(100% - 30px);
    margin: 0 auto;
    -webkit-mask: linear-gradient(90deg,
            transparent,
            #FFFFFF 2%,
            #FFFFFF 98%,
            transparent);
    mask: linear-gradient(90deg,
            transparent,
            #FFFFFF 2%,
            #FFFFFF 98%,
            transparent);
}

.main-content--tab-inner {
    padding: 0px 15px;
    min-width: 100%;
    justify-content: space-evenly;
}

.main-content--tab-item {
    text-align: center;
}

.main-content--tab-item .current-icon {
    opacity: 0;
    visibility: hidden;
    width: 80px;
    height: auto;
}

.main-content--tab-item.current .current-icon {
    opacity: 1;
    visibility: visible;
}

.main-content--tab-item .font {
    font-size: 22px;
    letter-spacing: 1.5px;
    border-radius: 50px;
    white-space: nowrap;
    -webkit-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

.common-component-content-attribute {
    margin: 30px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.common-component-content-attribute-item {
    font-size: 16px;
}

.common-component-content-attribute-item:not(:last-of-type) {
    margin-right: 20px;
}

/* --------------- Dynamic --------------- */
.society-dynamic--article+.society-dynamic--article {
    margin-top: 50px;
}

.society-dynamic--article .aspect-ratio-content {
    -webkit-transition: transform .35s;
    transition: transform .35s;
}

.society-dynamic--article:hover .aspect-ratio-content {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.article-thumbnail {
    overflow: hidden;
}

.article-thumbnail::before {
    padding-top: 66.666666%;
}

.article-content-wrap {
    background-color: #F9F7F3;
}

.article-content {
    height: 100%;
    padding: 40px 25px 25px 25px;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-content .article-title {
    font-size: 26px;
    color: #7D352B;
}

.article-content .article-desc {
    margin-top: 25px;
    font-size: 16px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: calc(2em * 1.5);
}

.article-content .article-title,
.article-content .article-desc {
    width: 100%;
}

.article-content .article-title-box {
    width: 100%;
}

.article-content .article-other-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.article-content .article-other-box::after {
    content: "";
    margin-left: auto;
    min-width: 70px;
    width: 70px;
    height: 28px;
    background-image: url(../images/public/16.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.article-time {
    color: #666666;
}

.article-content>img {
    margin-top: auto;
}

/* --------------- Pagination --------------- */
.common-component-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
    padding: 60px 0 0 0;
    position: relative;
    z-index: 10;
}

.common-component-pagination.no-padding-bottom {
    padding-bottom: 0;
}

.common-component-pagination-item {
    padding: 10px;
    margin: 0 5px 10px 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    user-select: none;
}

.main-content--box .common-component-pagination-item {
    color: #7D352B;
}

.common-component-pagination-item-active,
a.common-component-pagination-item:hover,
a.common-component-pagination-item:focus {
    border-radius: 50%;
    color: #FFFFFF;
    background-color: #7D352B;
    background-size: cover;
}

.main-content--box .common-component-pagination-item-active,
.main-content--box a.common-component-pagination-item:hover,
.main-content--box a.common-component-pagination-item:focus {
    color: #FFFFFF;
    background-color: #7D352B;
}

.common-component-pagination-input {
    text-align: center;
    outline: none;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    margin: 0 5px;
    padding: 0 15px;
    width: 60px;
    height: 30px;
    color: #7D352B;
    border-radius: 15px;
    border: 1px solid #F9F7F3;
    background-color: #F9F7F3;
}

.main-content--box .common-component-pagination-input {
    border: 1px solid #7D352B;
}

.common-component-pagination,
.common-component-pagination-btn {
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Helvetica, Arial, sans-serif;
}

.common-component-pagination-btn {
    margin: 0 5px;
    width: 35px;
    height: 35px;
    border-radius: 30px;
    border: none;
    color: #FFFFFF;
    background-color: #7D352B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-component-pagination-btn:hover,
.common-component-pagination-btn:focus {
    background-color: #7D352B;
}

.common-component-pagination-right {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* --------------- Branch --------------- */
.latest_catalog--list>article:nth-of-type(n + 4) {
    margin-top: 30px;
}

.latest_catalog--list,
.latest_catalog--link {
    color: #7D352B;
}

.latest_catalog--link {
    padding: 40px 20px;
    font-size: 22px;
    background-color: #FFFFFF;
}

.latest_catalog--link .arrow-icon {
    width: 50px;
    margin-top: 30px;
}

/* --------------- Member Publishing --------------- */
.archaeological_discovery--list,
.archaeological_discovery--link {
    color: #7D352B;
}

.archaeological_discovery--link {
    font-size: 20px;
    letter-spacing: 2px;
    padding: 40px;
    background-color: #F9F7F3;
    -webkit-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
    border: 1px solid #7D352B;
}

.archaeological_discovery--link:hover {
    color: #F9F7F3;
    background-color: #7D352B;
}

.archaeological_discovery--link span {
    width: calc(100% - 120px);
}

.archaeological_discovery--link .arrow-icon {
    width: 50px;
}

.archaeological_discovery--link:hover .arrow-icon+.arrow-icon {
    display: block;
}

.archaeological_discovery--link:hover .arrow-icon,
.archaeological_discovery--link .arrow-icon+.arrow-icon {
    display: none;
}

.archaeological_discovery--article {
    margin-top: 30px;
}

/* =================== common-component-line =================== */
.common-component-line-list > div:last-child .common-component-line {
    margin-bottom: 0px;
}

.common-component-line {
    position: relative;
    z-index: 5;
    background-color: #F9F7F3;
    margin-bottom: 50px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    -webkit-transition: transform .5s;
    -moz-transition: transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
}

.common-component-line:hover {
    transform: translateY(-10px) scale(1.01);
}

.common-component-line-inner {
    width: 100%;
    border: 1px solid #7D352B;
    padding: 20px;
    display: flex;
    align-items: center;
}

.common-component-line-time-box {
    --width: 100px;
    width: var(--width);
    height: var(--width);

    background-color: #7D352B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.common-component-line-year {
    font-size: 30px;
    color: #FFFFFF;
}

.common-component-line-date {
    font-size: 20px;
    color: #FFFFFF;
}

.common-component-line-title {
    font-size: 26px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Helvetica, Arial, sans-serif;
    color: #7D352B;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
    margin-right: 50px;
}

.common-component-line-title.small {
    font-size: 20px !important;
}

.common-component-line-inner:after {
    content: "";
    width: 50px;
    height: 28px;
    background-image: url(../images/public/16.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* --------------- Footer --------------- */
#footer {
    font-size: 14px;
    padding: 15px 0;
    background-color: #7D352B;
}

#footer, #footer a {
    color: #FFFFFF;
}

/* .footer-navigation,
.footer-navigation a {
    color: #FFFFFF;
    letter-spacing: 1.5px;
}

.footer-bottom {
    margin-top: 80px;
}

.footer-bottom,
.footer-bottom a {
    color: #FFFFFF;
}

.footer-bottom-right {
    text-align: center;
    letter-spacing: 1.5px;
}

.footer-bottom-right p {
    margin-top: 20px;
}

.qrcode {
    padding: 10px;
    background-image: repeating-linear-gradient(0deg, #ffffff, #ffffff 5px, transparent 5px, transparent 10px, #ffffff 10px),
        repeating-linear-gradient(90deg, #ffffff, #ffffff 5px, transparent 5px, transparent 10px, #ffffff 10px),
        repeating-linear-gradient(180deg, #ffffff, #ffffff 5px, transparent 5px, transparent 10px, #ffffff 10px),
        repeating-linear-gradient(270deg, #ffffff, #ffffff 5px, transparent 5px, transparent 10px, #ffffff 10px);
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
}

.qrcode img {
    width: 100%;
    height: auto;
}

.footer-item {
    padding: 6px 0;
    letter-spacing: 1.5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-item:first-child,
.footer-item.zfhf {
    padding-top: 0px;
}

.footer-item:last-child,
.footer-item.zfhf {
    padding-bottom: 0px;
}

.footer-item.ICP>img {
    width: auto;
    height: 24px;
    margin-left: 30px;
}

.footer-item.sydw img {
    height: 70px;
    margin-left: 40px;
}

.friendly-links {
    margin-top: 40px;
}

.friendly-links span {
    font-size: 24px;
    margin-bottom: 5px;
}

.friendly-links a,
.footer-item,
.footer-bottom-right,
.footer-navigation,
.footer-navigation a {
    font-size: 18px;
}

.friendly-links a+a {
    margin-left: 20px;
} */

/* --------------- Response --------------- */
@media (max-width: 1399px) {

    /* =================== common-component-line =================== */
    .common-component-line-title {
        font-size: 22px;
    }

    .common-component-line-title.small {
        font-size: 18px;
    }

    .page-breadcrumb {
        min-height: 250px;
    }

    /* --------------- Index --------------- */
    .membership-service::before {
        top: 0px;
        height: 100%;
    }

    .academic-achievements::before {
        bottom: 0px;
        height: 100%;
    }

    /* .footer-item.sydw img {
        height: 60px;
    } */

    .home-page-title::before {
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top left, transparent 17px, #FFC659 17px) top left,
            radial-gradient(circle at top right, transparent 17px, #FFC659 17px) top right,
            radial-gradient(circle at bottom right, transparent 17px, #FFC659 17px) bottom right,
            radial-gradient(circle at bottom left, transparent 17px, #FFC659 17px) bottom left;
        background-size: 55% 55%;
        background-repeat: no-repeat;
    }

    .home-page-title::after {
        top: 1px;
        left: 1px;
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        background: radial-gradient(circle at top left, transparent 17px, #7D352B 17px) top left,
            radial-gradient(circle at top right, transparent 17px, #7D352B 17px) top right,
            radial-gradient(circle at bottom right, transparent 17px, #7D352B 17px) bottom right,
            radial-gradient(circle at bottom left, transparent 17px, #7D352B 17px) bottom left;
        background-size: 55% 55%;
        background-repeat: no-repeat;
    }

    /* --------------- Dynamic --------------- */
    .article-content {
        padding: 30px 25px 25px 25px;
    }

    .article-content .article-title {
        font-size: 24px;
    }

    .article-content .article-other-box::after {
        min-width: 60px !important;
        width: 60px !important;
        height: 25px !important;
    }

    .society-dynamic--link-details {
        margin-top: 6px;
    }

    .society-introduction-content {
        padding: 50px;
    }

    .home-page-title {
        font-size: 28px;
        padding: 25px 0px;
        width: 653px;
    }

    .navigation-item--link-font {
        font-size: 24px;
        height: 10em;
    }

    .navigation-item--link-font .font {
        height: 80%;
        padding: 40px 0;
    }

    .navigation-item--link-font>img {
        width: 45px;
    }

    .academic-achievements--link {
        padding: 30px 20px;
    }

    .latest_catalog--link {
        padding: 30px 20px;
    }

    /* --------------- Introduction --------------- */
    .content-title {
        font-size: 26px;
    }

    .contact-information--item .contact-icon {
        width: 25px;
    }
}

@media (max-width: 1199px) {

    /* =================== common-component-line =================== */
    .common-component-line {
        padding: 15px !important;
        margin-bottom: 40px;
    }

    .common-component-line-inner {
        padding: 15px !important;
    }

    .common-component-line-time-box {
        --width: 60px;
        margin-right: 15px;
    }

    .common-component-line-year {
        font-size: 20px !important;
    }

    .common-component-line-date {
        font-size: 16px !important;
    }

    .common-component-line-title {
        font-size: 20px;
    }

    .common-component-line-title.small {
        font-size: 18px;
    }

    /* --------------- Member Publishing --------------- */
    .archaeological_discovery--link {
        padding: 40px;
    }

    /* .footer-item.sydw img {
        height: 55px;
    } */

    /* --------------- Branch --------------- */
    .latest_catalog--link {
        font-size: 22px;
    }

    .latest_catalog--link .arrow-icon {
        width: 45px;
        margin-top: 20px;
    }

    /* --------------- Index --------------- */
    .home-section-title {
        font-size: 26px;
        width: 8em;
    }

    .society-constitution .society-constitution-box {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .society-constitution-btn {
        padding: 8px 35px;
    }

    .branch--item:nth-child(n + 4) {
        margin-top: 25px;
    }

    .society-notice--link,
    .branch--link {
        font-size: 16px;
    }

    .academic-achievements--item:nth-child(n + 3) {
        margin-top: 30px;
    }

    .academic-achievements--link {
        padding: 25px 20px;
    }

    .academic-achievements--link .arrow-icon {
        margin-top: 25px;
    }

    .society-notice--item {
        padding: 12px 0;
    }

    .society-notice--item:first-child {
        padding-top: 0px;
    }

    .society-notice--item:last-child {
        padding-bottom: 0px;
    }

    .society-notice-content {
        padding: 50px;
    }

    .society-dynamic--link-details {
        margin-top: 5px;
    }

    .society-dynamic--last-item a {
        padding: 6px 25px;
    }

    .membership-service--link .aspect-ratio-content {
        padding: 15px;
    }

    .membership-service--link-content .arrow-icon {
        width: 50px;
    }

    .membership-service--link-content .font {
        font-size: 20px;
    }

    .society-introduction-content {
        font-size: 16px;
        padding: 45px;
    }

    .society-introduction-content p:not(:last-child) {
        margin-bottom: 10px !important;
    }

    .home-page-top {
        height: auto;
        margin-bottom: 0;
        max-height: initial;
        min-height: auto;
        padding-top: 80px !important;
        padding-bottom: 50px !important;
    }

    #home-page-navigation {
        margin-top: 80px;
    }

    .navigation-item--link-font {
        font-size: 22px;
    }

    .navigation-item--link-font .font {
        padding: 30px 0px;
        background-position: center 6px, center calc(100% - 6px);
    }

    .academic-achievements::before {
        background-size: 50% auto;
        background-position: left bottom;
    }

    /* --------------- Organization --------------- */
    .main-content--tab {
        height: 110px;
        margin-top: -55px;
    }

    .main-content--tab-item .font {
        font-size: 20px;
    }

    .main-content--tab-item .current-icon {
        width: 70px;
    }

    /* --------------- Dynamic --------------- */
    .society-dynamic--article+.society-dynamic--article {
        margin-top: 40px;
    }

    .article-content {
        padding: 20px;
    }

    .article-content .article-title {
        font-size: 22px;
    }

    .article-content .article-desc {
        margin-top: 20px;
    }

    .article-content .article-desc,
    .article-content .article-time{
        font-size: 14px;
    }

    .article-content .arrow-icon {
        width: 50px;
    }

    .article-content .article-other-box{
        margin-top: 15px!important;
    }

    .article-content .article-other-box::after {
        min-width: 50px !important;
        width: 50px !important;
        height: 20px !important;
    }

    .common-component-pagination {
        padding-top: 50px;
    }

    /* --------------- Introduction --------------- */
    #main {
        padding-bottom: 50px;
    }

    .home-page-banner~section,
    .page-breadcrumb~section {
        padding: 50px 0px;
    }

    .page-breadcrumb,
    .page-breadcrumb a,
    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 22px;
    }

    .content-title {
        font-size: 24px;
    }

    .main-content--item::before {
        width: 5px;
        height: 5px;
    }

    .corner-top::before,
    .corner-top::after,
    .corner-bottom::before,
    .corner-bottom::after {
        width: 20px;
        height: 20px;
    }

    /* --------------- Footer --------------- */
    /* .friendly-links a,
    .footer-item,
    .footer-bottom-right {
        font-size: 16px;
    } */
}

@media (max-width: 991px) {

    /* =================== common-component-line =================== */
    .common-component-line {
        margin-bottom: 30px;
    }

    .common-component-line-time-box {
        --width: 50px;
        margin-right: 10px;
    }

    .common-component-line-date {
        font-size: 14px !important;
    }

    .common-component-line-year,
    .common-component-line-title,
    .common-component-line-title.small {
        font-size: 16px !important;
    }

    .common-component-line-inner:after {
        width: 45px;
    }

    .common-component-line-title {
        margin-right: 30px;
    }

    /* --------------- Member Publishing --------------- */
    .archaeological_discovery--link {
        padding: 30px;
        font-size: 18px;
    }

    .archaeological_discovery--link span {
        width: calc(100% - 100px);
    }

    .archaeological_discovery--link .arrow-icon,
    .latest_catalog--link .arrow-icon {
        width: 40px;
    }

    /* .footer-item.sydw img {
        height: 50px;
    } */

    /* --------------- Branch --------------- */
    .latest_catalog--link {
        padding: 25px 20px;
        font-size: 22px;
    }

    .archaeological_discovery--link .arrow-icon,
    .latest_catalog--link .arrow-icon {
        width: 40px;
    }

    .latest_catalog--link .arrow-icon {
        margin-top: 20px;
    }

    .latest_catalog--list>article:nth-of-type(n + 3) {
        margin-top: 30px;
    }

    /* --------------- Index --------------- */
    .membership-service--link .aspect-ratio-content {
        padding: 10px;
    }

    .branch--item:nth-child(n + 3) {
        margin-top: 20px;
    }

    .society-constitution .society-constitution-box {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .society-constitution-btn {
        padding: 6px 30px;
        margin: 30px auto 0;
    }

    .academic-achievements--link {
        font-size: 20px;
    }

    .society-notice-content {
        padding: 40px;
    }

    .society-notice--link span+span {
        margin-left: 80px;
    }

    .society-dynamic--list {
        height: auto;
        margin-top: 30px;
    }

    .society-dynamic--link-details {
        margin-top: 10px;
    }

    .society-dynamic--item+.society-dynamic--item {
        margin-top: 20px;
    }

    .society-dynamic--last-item a {
        padding: 8px 25px;
        font-size: 14px;
    }

    .society-dynamic--link-title {
        font-size: 18px;
        word-break: break-all;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        max-height: calc(2em * 1.5);
    }

    .membership-service--link-content .arrow-icon {
        width: 45px;
    }

    .membership-service--link-content .font {
        font-size: 18px;
    }

    .home-page-title {
        width: 673px;
        font-size: 30px;
        padding: 25px 0;
    }

    .home-page-title::before {
        background: radial-gradient(circle at top left, transparent 16px, #FFC659 17px) top left,
            radial-gradient(circle at top right, transparent 16px, #FFC659 17px) top right,
            radial-gradient(circle at bottom right, transparent 16px, #FFC659 17px) bottom right,
            radial-gradient(circle at bottom left, transparent 16px, #FFC659 17px) bottom left;
        background-size: 55% 55%;
        background-repeat: no-repeat;
    }

    .home-page-title::after {
        background: radial-gradient(circle at top left, transparent 16px, #7D352B 17px) top left,
            radial-gradient(circle at top right, transparent 16px, #7D352B 17px) top right,
            radial-gradient(circle at bottom right, transparent 16px, #7D352B 17px) bottom right,
            radial-gradient(circle at bottom left, transparent 16px, #7D352B 17px) bottom left;
        background-size: 55% 55%;
        background-repeat: no-repeat;
    }

    .navigation-item--link-font {
        font-size: 20px;
    }

    .navigation-item--link-font>img {
        width: 40px;
    }

    #home-page-navigation {
        width: 100%;
    }

    .navigation-item {
        min-width: 110px;
    }

    .navigation-item+.navigation-item {
        margin-left: 10px;
    }

    .academic-achievements--link .arrow-icon {
        margin-top: 20px;
        width: 50px;
    }

    /* --------------- Organization --------------- */
    .main-content--tab {
        height: 100px;
        margin-top: -50px;
    }

    .main-content--tab-item .font {
        font-size: 18px;
    }

    .main-content--tab-item .current-icon {
        width: 60px;
    }

    .common-component-content-attribute,
    .main-content--container {
        margin-top: 20px;
    }

    .main-content--item::before {
        width: 4px;
        height: 4px;
    }

    .main-content--link {
        margin-left: 10px;
    }

    /* --------------- Dynamic --------------- */
    .society-dynamic--article+.society-dynamic--article {
        margin-top: 30px;
    }

    .article-content {
        padding: 15px;
    }

    .article-content .article-title {
        font-size: 20px;
    }

    .article-content .article-desc {
        font-size: 14px;
        margin-top: 15px;
    }

    .article-content .arrow-icon {
        width: 45px;
        margin-top: 10px;
    }

    .common-component-pagination {
        padding-top: 40px;
    }

    .common-component-pagination-item,
    .common-component-pagination-btn {
        font-size: 14px;
        width: 30px;
        height: 30px;
    }

    /* --------------- Introduction --------------- */
    #main {
        padding-bottom: 40px;
    }

    .home-page-banner~section,
    .page-breadcrumb~section {
        padding: 40px 0;
    }

    .home-page-top {
        padding-bottom: 40px !important;
    }

    .page-breadcrumb {
        min-height: 220px;
    }

    .page-breadcrumb,
    .page-breadcrumb a,
    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 20px;
    }

    .main-content--box {
        padding: 40px;
    }

    .corner-top::before,
    .corner-top::after,
    .corner-bottom::before,
    .corner-bottom::after {
        width: 18px;
        height: 18px;
    }

    .contact-information--item:nth-child(n + 2) {
        margin-top: 15px;
    }

    /* --------------- Footer --------------- */
    /* #footer {
        padding: 60px 0px;
    }

    .footer-bottom {
        margin-top: 50px;
    }

    .friendly-links {
        margin-top: 30px;
    }

    .friendly-links span {
        font-size: 22px;
    }

    .footer-bottom-right {
        margin-top: 30px;
    }

    .footer-bottom-right p {
        margin-top: 15px;
    }

    .footer-navigation a:nth-child(n + 5) {
        margin-top: 10px;
    } */
}

@media (max-width: 767px) {

    /* --------------- Member Publishing --------------- */
    .archaeological_discovery--link {
        font-size: 16px;
    }

    .archaeological_discovery--article+.archaeological_discovery--article {
        margin-top: 20px;
    }

    .archaeological_discovery--link span {
        width: calc(100% - 60px);
    }

    /* .footer-item.sydw img {
        height: 35px;
    } */

    #footer {
        font-size: 13px;
        padding: 10px 0;
    }

    /* --------------- Branch --------------- */
    .latest_catalog--link {
        font-size: 20px;
    }

    .latest_catalog--link .arrow-icon {
        margin-top: 10px;
    }

    .latest_catalog--list>article:nth-of-type(n + 2) {
        margin-top: 20px;
    }

    /* --------------- Index --------------- */
    .home-section-title {
        font-size: 24px;
    }

    .society-constitution .society-constitution-box {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .society-constitution-btn {
        margin: 25px auto 0;
        font-size: 14px;
    }

    .academic-achievements--item:nth-child(n + 2) {
        margin-top: 30px;
    }

    .section-title-has-more {
        text-align: right;
    }

    .academic-achievements--more {
        position: static;
        display: inline-block;
        font-size: 14px;
        margin-top: 15px;
    }

    .society-notice-content {
        padding: 35px 30px;
    }

    .society-notice--link span+span {
        margin-left: 50px;
    }

    .membership-service--item:nth-child(n + 3) {
        margin-top: 30px;
    }

    .society-introduction-content {
        padding: 35px;
    }

    .home-page-title {
        width: 490px;
        font-size: 26px;
        padding: 20px 0;
    }

    .home-page-title::before {
        background: radial-gradient(circle at top left, transparent 12px, #FFC659 13px) top left,
            radial-gradient(circle at top right, transparent 12px, #FFC659 13px) top right,
            radial-gradient(circle at bottom right, transparent 12px, #FFC659 13px) bottom right,
            radial-gradient(circle at bottom left, transparent 12px, #FFC659 13px) bottom left;
        background-size: 55% 55%;
        background-repeat: no-repeat;
    }

    .home-page-title::after {
        background: radial-gradient(circle at top left, transparent 12px, #7D352B 13px) top left,
            radial-gradient(circle at top right, transparent 12px, #7D352B 13px) top right,
            radial-gradient(circle at bottom right, transparent 12px, #7D352B 13px) bottom right,
            radial-gradient(circle at bottom left, transparent 12px, #7D352B 13px) bottom left;
        background-size: 55% 55%;
        background-repeat: no-repeat;
    }

    .navigation-item--link-font {
        font-size: 18px;
    }

    .academic-achievements--link .arrow-icon {
        width: 45px;
        margin-top: 10px;
    }

    .academic-achievements--link {
        padding: 20px;
    }

    /* --------------- Dynamic --------------- */
    .article-content .article-title {
        font-size: 22px;
    }

    .article-content .article-other-box{
        margin-top: 10px!important;
    }

    .article-content .article-other-box::after {
        min-width: 60px !important;
        width: 60px !important;
        height: 25px !important;
    }

    .content-title {
        font-size: 22px;
    }

    .common-component-pagination-item {
        margin: 0 3px 10px 3px;
    }

    .common-component-content-attribute-item {
        font-size: 14px;
    }

    .main-content--list,
    .main-content--container,
    .contact-information--item {
        font-size: 16px;
    }

    /* --------------- Organization --------------- */
    .main-content--tab {
        height: 90px;
        margin-top: -45px;
    }

    .main-content--tab-item .font {
        font-size: 16px;
    }

    .main-content--tab-item+.main-content--tab-item {
        margin-left: 40px;
    }

    .main-content--tab {
        background: radial-gradient(circle at top left, transparent 10px, #F3EDE0 11px) top left,
            radial-gradient(circle at top right, transparent 10px, #F3EDE0 11px) top right,
            radial-gradient(circle at bottom right, transparent 10px, #F3EDE0 11px) bottom right,
            radial-gradient(circle at bottom left, transparent 10px, #F3EDE0 11px) bottom left;
        background-size: 60% 60%;
        background-repeat: no-repeat;
    }

    /* --------------- Introduction --------------- */
    .page-breadcrumb {
        min-height: 150px;
    }

    .page-breadcrumb .aspect-ratio-content>.container {
        margin-bottom: 30px;
    }

    .page-breadcrumb,
    .page-breadcrumb a,
    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 18px;
    }

    .main-content--box {
        padding: 30px;
    }

    .corner-top::before,
    .corner-top::after,
    .corner-bottom::before,
    .corner-bottom::after {
        width: 15px;
        height: 15px;
    }

    .corner-top::before {
        top: 5px;
        left: 5px;
    }

    .corner-top::after {
        top: 5px;
        right: 5px;
    }

    .corner-bottom::before {
        left: 5px;
        bottom: 5px;
    }

    .corner-after::before {
        right: 5px;
        bottom: 5px;
    }

    .main-content--list,
    .main-content--container,
    .contact-information--item {
        font-size: 16px;
    }

    /* --------------- Footer --------------- */
    /* #footer {
        padding: 50px 0px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .friendly-links {
        margin-top: 30px;
    }

    .friendly-links span {
        font-size: 20px;
    }

    .friendly-links a+a {
        margin-left: 15px;
    }

    .footer-bottom-right p {
        margin-top: 10px;
    }

    .footer-navigation,
    .footer-navigation a {
        font-size: 16px;
    }

    .footer-navigation a:nth-child(n + 4) {
        margin-top: 5px;
    } */
}

@media (max-width: 576px) {

    /* --------------- Service --------------- */
    .main-content--tab-item+.main-content--tab-item {
        margin-left: 30px;
    }

    /* --------------- Index --------------- */
    /* .footer-item.sydw img {
        margin-left: 0px;
    } */

    .home-section-title {
        font-size: 22px;
        width: 9em;
    }

    .society-constitution .society-constitution-box {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .academic-achievements--link {
        font-size: 18px;
    }

    .branch-content {
        padding: 15px;
    }

    .branch--row {
        padding: 20px;
    }

    .branch-content,
    .branch--row {
        margin-right: 0;
        margin-left: 0;
    }

    .branch--row>.col,
    .branch--row>[class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    .branch--item:nth-child(n + 2) {
        margin-top: 15px;
    }

    .society-notice-content {
        padding: 30px;
    }

    .society-notice--link span+span {
        margin-left: 20px;
    }

    .society-notice--more {
        padding: 6px 0px;
        font-size: 14px;
        width: 120px;
        text-align: center;
    }

    .membership-service--link-content .arrow-icon {
        width: 50px;
    }

    .membership-service--link-content .font {
        font-size: 20px;
    }

    .membership-service--item:nth-child(n + 2) {
        margin-top: 30px;
    }

    .society-introduction-content {
        padding: 30px;
    }

    .home-page-title {
        width: calc(100% - 40px);
        font-size: 22px;
        padding: 15px 0;
    }

    .page-title {
        padding: 0 30px;
    }

    .home-page-title::before {
        background: radial-gradient(circle at top left, transparent 8px, #FFC659 9px) top left,
            radial-gradient(circle at top right, transparent 8px, #FFC659 9px) top right,
            radial-gradient(circle at bottom right, transparent 8px, #FFC659 9px) bottom right,
            radial-gradient(circle at bottom left, transparent 8px, #FFC659 9px) bottom left;
        background-size: 55% 55%;
        background-repeat: no-repeat;
    }

    .home-page-title::after {
        background: radial-gradient(circle at top left, transparent 8px, #7D352B 9px) top left,
            radial-gradient(circle at top right, transparent 8px, #7D352B 9px) top right,
            radial-gradient(circle at bottom right, transparent 8px, #7D352B 9px) bottom right,
            radial-gradient(circle at bottom left, transparent 8px, #7D352B 9px) bottom left;
        background-size: 55% 55%;
        background-repeat: no-repeat;
    }

    .membership-service::before {
        background-size: 30% auto;
    }

    .academic-achievements::before {
        background-size: 33% auto;
        background-position: left bottom;
    }

    /* --------------- Dynamic --------------- */
    .content-title,
    .article-content .article-title {
        font-size: 20px;
    }

    .article-content .article-desc {
        font-size: 16px;
        margin-top: 10px;
    }

    .article-content .article-other-box::after {
        min-width: 50px !important;
        width: 50px !important;
        height: 20px !important;
    }

    .article-content .arrow-icon {
        display: none;
        width: 45px;
        margin-top: 10px;
    }

    /* --------------- Introduction --------------- */
    .main-content--box {
        padding: 30px 20px;
    }

    .page-breadcrumb,
    .page-breadcrumb a,
    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 16px;
    }

    /* --------------- Branch --------------- */
    .latest_catalog--link {
        font-size: 18px;
    }

    /* --------------- Organization --------------- */
    .main-content--tab {
        height: 80px;
        margin-top: -40px;
    }

    /* --------------- Footer --------------- */
    /* .footer-bottom {
        margin-top: 30px;
    }

    .friendly-links {
        margin-top: 10px;
    }

    .footer-bottom-right {
        margin-top: 30px;
    }

    .footer-item.zfhf {
        padding: 6px 0;
    } */
}

@media (max-width: 499px) {

    .main-content--list,
    .main-content--container,
    .contact-information--item {
        font-size: 14px;
    }

    .article-content .article-title {
        font-size: 18px;
    }

    .article-content .article-desc {
        font-size: 14px;
    }
}

@media (max-width: 350px) {

    /* --------------- Index --------------- */
    .home-section-title {
        font-size: 20px;
    }

    .society-constitution-btn {
        padding: 6px 25px;
        margin: 15px auto 0;
        font-size: 12px;
    }

    .membership-service--link-content .arrow-icon {
        width: 45px;
    }

    .membership-service--link-content .font {
        font-size: 18px;
    }

    .society-notice-content,
    .society-introduction-content {
        padding: 20px;
    }

    .home-page-title {
        width: calc(100% - 30px);
        font-size: 22px;
        padding: 15px 0;
    }

    /* --------------- Dynamic --------------- */
    .article-content {
        padding: 15px;
    }

    .article-content .article-title {
        font-size: 18px;
    }
}
