@charset "UTF-8";
/* 国画展示独立样式 - 无全局冲突版 */
.art-view-root {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    line-height: 1.6;
}

.art-view-root .art-header {
    text-align: center;
    margin-bottom: 25px;
}
.art-view-root .art-main-title {
    font-size: 26px;
    color: #c86f7d;
    margin-bottom: 8px;
}
.art-view-root .art-author-info {
    font-size: 16px;
    color: #666;
}

.art-view-root .art-img-box {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}
.art-view-root .art-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.art-view-root .art-img-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(200, 111, 125, 0.9);
    color: #fff;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: bold;
    border-bottom-right-radius: 8px;
}

.art-view-root .art-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 15px;
}
.art-view-root .art-info-table td {
    padding: 12px 15px;
    border: 1px solid #eee;
    text-align: center;
}
.art-view-root .art-info-table td:first-child,
.art-view-root .art-info-table td:nth-child(3) {
    background: #fdf6f8;
    color: #c86f7d;
    font-weight: bold;
}

/* 移动端适配：表格改为4行2列 */
@media (max-width: 768px) {
  .art-info-table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .art-info-table td {
    width: 50%;
    box-sizing: border-box;
  }
}

.art-view-root .art-download-title {
    font-size: 18px;
    margin-bottom: 15px;
}
.art-view-root .art-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}
.art-view-root .art-download-btn {
    background: #f9d6e0;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.art-view-root .art-download-btn:hover {
    background: #f7c0d1;
}
.art-view-root .art-download-btn a {
    color: #FF0000 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.art-view-root .art-author-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c86f7d;
}
.art-view-root .art-author-box h4 {
    color: #c86f7d;
    margin-bottom: 10px;
    font-size: 16px;
}