/**
 * PicShow - 国风金风格
 * 特征：传统纹样，书法字体，鎏金边框，米黄底色，古典韵味
 */
.ps-style-oriental {
    --ps-bg: #f5f0e3;
    --ps-bg-secondary: #ece5d0;
    --ps-card-bg: #faf7ee;
    --ps-text: #3d2b1f;
    --ps-text-secondary: #6b5244;
    --ps-text-muted: #9a8672;
    --ps-border: #c8b898;
    --ps-primary: #b8860b;
    --ps-primary-light: #d4a843;
    --ps-primary-dark: #8b6914;
    --ps-shadow: 0 2px 8px rgba(61,43,31,0.08);
    --ps-shadow-hover: 0 8px 24px rgba(184,134,11,0.15);
    --ps-radius: 4px;
    --ps-radius-sm: 4px;
    --ps-radius-lg: 4px;
}

.ps-style-oriental body {
    background: #f5f0e3;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30 Z' fill='none' stroke='%23c8b898' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
}

.ps-style-oriental .ps-header {
    background: rgba(245,240,227,0.96);
    border-bottom: 2px solid #b8860b;
}

.ps-style-oriental .ps-card {
    border: 1px solid #c8b898;
    position: relative;
}
.ps-style-oriental .ps-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(184,134,11,0.25);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}
.ps-style-oriental .ps-card-cover {
    border-radius: 4px 4px 0 0;
}

.ps-style-oriental .ps-widget {
    border: 1px solid #c8b898;
}

.ps-style-oriental .ps-widget-title {
    border-bottom: 1px solid #b8860b;
    font-weight: 400;
    letter-spacing: 3px;
    text-align: center;
}

.ps-style-oriental .ps-tag {
    border: 1px solid #b8860b;
    background: transparent;
    border-radius: 2px;
    color: #b8860b;
}

.ps-style-oriental .ps-footer {
    border-top: 2px solid #b8860b;
    background: #ece5d0;
}

.ps-style-oriental .ps-btn-primary {
    background: #b8860b;
    border-radius: 2px;
}

.ps-style-oriental .ps-hero-title {
    font-family: "Noto Serif SC", "Source Han Serif SC", serif;
    letter-spacing: 3px;
}

/* 四角装饰 */
.ps-style-oriental .ps-section-title {
    text-align: center;
    letter-spacing: 2px;
}
.ps-style-oriental .ps-section-title::before {
    content: '◆ ';
    color: #b8860b;
    font-size: 0.7em;
}
.ps-style-oriental .ps-section-title::after {
    content: ' ◆';
    color: #b8860b;
    font-size: 0.7em;
}

/* 回纹边框装饰 */
.ps-style-oriental .ps-card-body::before {
    content: '';
    display: block;
    height: 1px;
    background: repeating-linear-gradient(90deg, #b8860b, #b8860b 4px, transparent 4px, transparent 8px);
    margin-bottom: 10px;
    opacity: 0.4;
}
