:root {
    --primary-color: #ff5f6d;
    --secondary-color: #00bcd4;
    --accent-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #34495e;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 400;
    font-style: normal
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    border: none;
    font-family: MyCustomFont,sans-serif
}

body {
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden
}

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

a:hover {
    color: inherit
}

ul {
    list-style: none
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative
}

.btn {
    display: inline-block;
    color: #fff;
    margin: 0 2px;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 20px;
    background-color: rgba(255,255,255,.2);
    transition: all .3s ease
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52,152,219,.3);
    color: #fff!important
}

.btn-secondary {
    background: var(--secondary-color)
}

.btn-secondary:hover {
    box-shadow: 0 8px 20px rgba(46,204,113,.3)
}

.btn-accent {
    background: var(--accent-color)
}

.btn-accent:hover {
    box-shadow: 0 8px 20px rgba(231,76,60,.3)
}

.dropdown {
    position: absolute;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .375rem;
    width: 100%;
    top: 70px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)
}

.dropdown-item {
    padding: .5rem .75rem;
    cursor: pointer;
    transition: background-color .2s ease;
    color: #525252;
    text-align: left
}

.dropdown-item:hover {
    background-color: #edf2f7
}

.positionFixed {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(25 0 255 / 10%)
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgb(255 255 255 / 77%);
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: #fff
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color)
}

.logo img {
    height: 48px
}

.logo i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 28px
}

.nav-links {
    display: flex;
    align-items: center
}

.nav-links li {
    margin: 0 12px;
    position: relative
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    font-size: 18px;
    font-weight: 700
}

.nav-links a:hover {
    color: var(--primary-color)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 35px;
    left: 0;
    width: 0;
    height: 5px;
    border-radius: 30px;
    background-color: var(--primary-color);
    transition: var(--transition)
}

.nav-links a:hover::after {
    width: 100%
}

.auth-buttons {
    display: flex;
    align-items: center
}

.auth-buttons .btn {
    margin-left: 15px;
    padding: 10px 20px;
    background: var(--primary-color)
}

.auth-buttons .btn-secondary {
    background: var(--secondary-color)
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer
}

.hero {
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#f5f7fa 0,#c3cfe2 100%)
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/indexBg001.jpg) no-repeat center center/cover
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-background::-webkit-media-controls {
    display: none!important
}

.video-background_m {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgb(0 0 0 / 30%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 9;
    max-width: 900px;
    animation: fadeInUp 1s ease;
    margin: auto;
    margin-top: 100px;
    text-align: center
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 60px;
    line-height: 1.2;
    color: #ebebeb
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #d9d9d9
}

.hero-buttons {
    margin-top: 30px
}

.hero-buttons .btn {
    margin: 3px 5px
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52,152,219,.3) color: #fff
}

.search-box {
    position: relative;
    margin-top: 40px;
    width: 100%
}

.search-box input {
    width: 100%;
    padding: 20px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    transition: var(--transition)
}

.search-box input:focus {
    outline: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,.1)
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    padding: 0 30px;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition)
}

.search-box button:hover {
    background: #f33344
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    animation: floatImage 6s ease-in-out infinite;
    z-index: 1
}

.categories {
    padding: 100px 0;
    background-color: #fff
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color)
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #777
}

.categories-grid {
    column-count: 5;
    column-gap: 20px
}

.category-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    transform: translateY(0);
    margin-bottom: 20px
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
    background-color: #607d8b
}

.category-image {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center
}

.category-image img {
    height: auto;
    width: 100%;
    min-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer
}

.category-card:hover .category-image img {
    transform: scale(1.1)
}

.category-content {
    padding: 15px;
    text-align: center;
    position: absolute;
    left: 0;
    background-color: #fff;
    bottom: 0;
    right: 0;
    z-index: 999;
    transition: .2s linear;
    transform: translateY(60px);
    opacity: 0
}

.category-card:hover .category-content {
    transform: translateY(0);
    opacity: 1
}

.category-content h3 {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: unset
}

.category-content p {
    color: #777;
    font-size: .9rem
}

.category-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .8rem;
    margin-top: 15px
}

@media (max-width: 1200px) {
    .categories-grid {
        column-count:4;
        column-gap: 20px
    }
}

@media (max-width: 992px) {
    .categories-grid {
        column-count:3;
        column-gap: 20px
    }
}

@media (max-width: 768px) {
    .categories-grid {
        column-count:2;
        column-gap: 20px
    }
}

.popular {
    padding: 100px 0;
    background-color: #f9f9f9
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 30px
}

.material-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1)
}

.material-image {
    overflow: hidden;
    position: relative;
    height: 222px;
    display: flex
}

.material-image .album-preview .imgT {
    height: 148px;
    overflow: hidden;
    background-color: rgb(143 143 143 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.material-image .album-preview .imgT img {
    width: 100%;
    border-radius: 0;
    max-height: unset
}

.material-image .album-preview .imgB {
    position: relative;
    height: 80px;
    display: grid;
    grid-gap: 2px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 2px
}

.material-image .album-preview .imgB .imgH {
    height: 80px;
    background-color: rgb(143 143 143 / 10%);
    display: flex;
    align-items: center;
    overflow: hidden
}

.material-image .album-preview .imgB .imgH img {
    width: 100%;
    border-radius: 0;
    max-height: unset
}

.material-image .album-card:hover .album-preview img {
    transform: scale(1.05)
}

.material-image-b {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px
}

.material-image img {
    transition: var(--transition);
    min-width: 100%;
    max-height: 100%;
    object-fit: cover;
    padding: 10px;
    cursor: pointer
}

.material-card:hover .material-image img {
    transform: scale(1.1)
}

.material-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition)
}

.material-card:hover .material-overlay {
    opacity: 1
}

.material-overlay .btn {
    transform: translateY(20px);
    transition: var(--transition)
}

.material-card:hover .material-overlay .btn {
    transform: translateY(0)
}

.material-content {
    padding: 20px
}

.material-content h3 {
    margin-bottom: 10px;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: unset
}

.material-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee
}

.material-author {
    display: flex;
    align-items: center
}

.material-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px
}

.material-stats {
    display: flex;
    align-items: center
}

.material-stats span {
    display: flex;
    align-items: center;
    margin-left: 15px;
    font-size: .9rem;
    color: #777
}

.material-stats i {
    margin-right: 5px;
    color: var(--primary-color)
}

.membership {
    padding: 100px 0;
    background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
    color: #fff;
    text-align: center
}

.membership .section-header h2,.membership .section-header p {
    color: #fff
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap
}

.pricing-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    max-width: 350px;
    width: 100%;
    color: var(--text-color);
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.pricing-card:hover {
    transform: translateY(-10px)
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color)
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px)
}

.pricing-card.featured::before {
    content: '推荐';
    position: absolute;
    top: -1px;
    right: -30px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: .8rem
}

.pricing-header {
    margin-bottom: 30px
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color)
}

.pricing-price span {
    font-size: 1rem;
    color: #777
}

.pricing-description {
    color: #777;
    margin-bottom: 30px
}

.pricing-features {
    margin-bottom: 30px
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 10px
}

.stats {
    padding: 80px 0;
    background-color: #fff
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color)
}

.stat-text {
    font-size: 1.2rem;
    color: var(--text-color)
}

.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 80px 0 0
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 40px
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color)
}

.footer-links li {
    margin-bottom: 15px
}

.footer-links a {
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.1);
    transition: var(--transition)
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px)
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1)
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out
}

.modal.active {
    opacity: 1;
    visibility: visible
}

.modal-content {
    background-color: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(50px);
    transition: all .3s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,.1)
}

.modal.active .modal-content {
    transform: translateY(0);
    animation: fadeInUp .5s ease-out both
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-color);
    transition: var(--transition)
}

.modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1)
}

.modal-header {
    text-align: center;
    margin-bottom: 30px
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color)
}

.modal-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    font-weight: 700
}

.modal-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
    color: #666
}

.modal-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color)
}

.modal-form {
    display: none;
    animation: fadeInUp .5s ease-out both
}

.modal-form.active {
    display: block
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition)
}

.form-group input:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0,123,255,.2)
}

.form-footer {
    text-align: center;
    margin-top: 30px
}

.form-footer .btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition)
}

.form-footer .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,.1)
}

.form-footer .btn-secondary {
    background-color: var(--accent-color)
}

.form-footer .btn-secondary:hover {
    background-color: #5a6268
}

.form-footer p {
    margin-top: 20px;
    color: #777;
    font-size: .9rem
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none
}

@keyframes floatImage {
    0% {
        transform: translateY(-50%) translateX(0)
    }

    50% {
        transform: translateY(-53%) translateX(-10px)
    }

    100% {
        transform: translateY(-50%) translateX(0)
    }
}

@media (max-width: 1200px) {
    .hero-image {
        width:45%;
        right: 0
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size:28px
    }

    .hero-image {
        display: none
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto
    }

    .hero-buttons {
        justify-content: center
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px
    }

    .pricing-card.featured {
        transform: scale(1)
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px)
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding:15px 0
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,.1);
        transform: translateY(-150%);
        transition: var(--transition)
    }

    .nav-links.active {
        transform: translateY(0)
    }

    .nav-links li {
        margin: 15px 0
    }

    .mobile-menu {
        display: block
    }

    .auth-buttons {
        display: none
    }

    .hero {
        height: auto;
        padding: 120px 0 80px
    }

    .hero h1 {
        font-size: 20px
    }

    .hero p {
        font-size: 1rem
    }

    .section-header h2 {
        font-size: 2rem
    }

    .categories,.membership,.popular,.stats {
        padding: 60px 0
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction:column;
        gap: 15px
    }

    .search-box button {
        padding: 0 15px
    }

    .stat-number {
        font-size: 2.5rem
    }

    .stat-text {
        font-size: 1rem
    }
}

.heart-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    color: var(--accent-color);
    pointer-events: none;
    animation: heart-float 1s forwards
}

@keyframes heart-float {
    0% {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1)
    }

    100% {
        opacity: 0;
        transform: translate(-50%,-150%) scale(2)
    }
}

.item-sucai {
    margin-top: 120px
}

.item-sucai .container {
    width: 100%
}

.item-sucai .item-container {
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    overflow: hidden;
    display: flex;
    flex-direction: row
}

.item-sucai .material-preview {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f0f8ff;
    min-height: 600px
}

.item-sucai .material-preview-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f0f8ff;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px
}

.item-sucai .material-preview img {
    width: 80%;
    object-fit: contain;
    transition: transform .5s ease;
    max-width: 500px;
    max-height: 500px;
    cursor: pointer
}

.item-sucai .material-preview:hover img {
    transform: scale(1.03)
}

.item-sucai .preview-actions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px
}

.item-sucai .preview-btn {
    background: rgba(255,255,255,.9);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: all .3s ease
}

.item-sucai .preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15)
}

.item-sucai .preview-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-color)
}

.item-sucai .material-info {
    flex: 0 0 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    width: 400px;
    max-width: unset
}

.item-sucai .title {
    word-break: break-all;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis
}

.item-sucai .description {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8
}

.item-sucai .info-row {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    font-size: 14px
}

.item-sucai .info-label {
    flex: 0 0 80px;
    color: #888
}

.item-sucai .info-value {
    flex: 1;
    color: #444;
    font-weight: 500
}

.item-sucai .download-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s ease
}

.item-sucai .download-btn:hover {
    background: #3a5bed;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74,107,255,.3)
}

.item-sucai .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.item-sucai .action-btn {
    flex: 1;
    background: var(--secondary-color);
    color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all .3s ease
}

.item-sucai .action-btn:hover {
    background: #00a847
}

.item-sucai .action-btn svg {
    width: 18px;
    height: 18px
}

.item-sucai .tags {
    margin-top: 30px
}

.item-sucai .tags-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333
}

.item-sucai .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 121px;
    overflow: auto
}

.item-sucai .tag {
    padding: 6px 12px;
    border-radius: 30px;
    background: #f5f7ff;
    color: #5a6bcd;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s ease
}

.item-sucai .tag:hover {
    background: #e0e6ff;
    transform: translateY(-2px)
}

.item-sucai .related-title {
    font-size: 16px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333
}

.item-sucai .related-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.item-sucai .related-item {
    flex: 0 0 calc(33.33% - 8px);
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--light-gray);
    height: 70px;
    cursor: pointer;
    transition: all .3s ease
}

.item-sucai .related-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.item-sucai .related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,.1)
}

@media (max-width: 900px) {
    .item-sucai .container {
        flex-direction:column;
        margin: 0;
        border-radius: 0
    }

    .item-sucai .material-preview {
        min-height: 400px
    }

    .item-sucai .material-info {
        flex: 0 0 auto;
        padding: 30px 20px;
        width: unset
    }

    .item-sucai .related-item {
        flex: 0 0 calc(50% - 6px)
    }

    .item-sucai .item-container {
        display: block
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.item-sucai .container {
    animation: fadeIn .6s ease-out
}

.item-sucai .material-info>* {
    animation: fadeIn .6s ease-out forwards;
    opacity: 0
}

.item-sucai .title {
    animation-delay: .1s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.item-sucai .description {
    animation-delay: .2s
}

.item-sucai .info-row {
    animation-delay: .3s
}

.item-sucai .download-btn {
    animation-delay: .4s
}

.item-sucai .action-buttons {
    animation-delay: .5s
}

.item-sucai .tags {
    animation-delay: .6s
}

.item-sucai .related-title {
    animation-delay: .7s
}

.item-sucai .related-list {
    animation-delay: .8s
}

.item-sucai .search-container {
    width: 90%;
    border-radius: 16px;
    text-align: center;
    margin: auto;
    max-width: 800px
}

.item-sucai .search-title {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    font-weight: 700
}

.item-sucai .search-form {
    position: relative;
    margin-bottom: 20px
}

.item-sucai .search-input {
    width: 100%;
    padding: 16px 20px;
    padding-right: 50px;
    border: 2px solid #eaeaea;
    border-radius: 30px;
    font-size: 16px;
    color: #333;
    transition: all .3s ease;
    outline: 0
}

.item-sucai .search-input:focus {
    border-color: #4e7fff;
    box-shadow: 0 0 0 3px rgba(78,127,255,.2)
}

.item-sucai .search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: #4e7fff;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease
}

.item-sucai .search-button:hover {
    background-color: #3a6eff;
    transform: scale(1.05)
}

.item-sucai .search-icon {
    width: 20px;
    height: 20px
}

.item-sucai .search-suggestions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
}

.item-sucai .suggestion-tag {
    padding: 8px 16px;
    background-color: #f0f5ff;
    color: #4e7fff;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease
}

.item-sucai .suggestion-tag:hover {
    background-color: #4e7fff;
    color: #fff
}

@media (max-width: 768px) {
    .item-sucai .search-container {
        max-width:90%;
        padding: 30px 20px
    }

    .item-sucai {
        margin-top: 100px
    }

    .item-sucai .item-container {
        display: block
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px 0 0 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    max-width: 100%;
    overflow-x: auto;
    transition: all .3s ease;
    border-bottom: 1px solid #dfdfdf
}

.breadcrumb:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,.08)
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 0 2px
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    transition: all .25s ease
}

.breadcrumb-item a:hover {
    background-color: #eef2f7;
    color: #2c4971;
    transform: translateY(-1px)
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #aaa;
    font-size: 12px
}

.breadcrumb-item.active {
    color: #666;
    padding: 6px 8px;
    font-weight: 500
}

@media (max-width: 768px) {
    .breadcrumb {
        padding:10px 12px
    }

    .breadcrumb-item {
        font-size: 13px
    }
}

@media (max-width: 480px) {
    .breadcrumb-item a,.breadcrumb-item.active {
        padding:4px 6px
    }

    .breadcrumb-separator {
        margin: 0 4px
    }
}

.lists-scope .container {
    width: 100%
}

.lists-scope .search-container {
    background: var(--primary-color);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    padding-top: 160px
}

.lists-scope .search-wrapper {
    max-width: 1200px;
    margin: 0 auto
}

.lists-scope .search-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,.2);
    animation: fadeIn .8s ease-in-out
}

.lists-scope .search-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: .9;
    animation: fadeIn 1s ease-in-out
}

.lists-scope .search-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto 2rem;
    display: flex;
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
    border-radius: 50px;
    transition: transform .3s;
    animation: slideUp .6s ease-out
}

.lists-scope .search-box input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    outline: 0;
    font-size: 1.1rem
}

.lists-scope .search-btn {
    background: #ff7e5f;
    border: none;
    padding: 0 2rem;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background .3s
}

.lists-scope .search-btn:hover {
    background: #ff5e3a
}

.lists-scope .advanced-search {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn 1.2s ease-in-out
}

.lists-scope .search-option select {
    padding: .7rem 1.5rem;
    border: none;
    border-radius: 25px;
    background-color: rgba(255,255,255,.2);
    color: #fff;
    cursor: pointer;
    outline: 0;
    transition: background .3s
}

.lists-scope .search-option select:hover {
    background-color: rgba(255,255,255,.3)
}

.lists-scope .filter-container {
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,.05)
}

.lists-scope .filter-wrapper {
    margin: 0 auto
}

.lists-scope .filter-categories ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem
}

.lists-scope .filter-categories li {
    padding: .5rem 1rem;
    cursor: pointer;
    border-radius: 20px;
    transition: all .3s;
    background-color: #eaefff;
    font-weight: 500
}

.lists-scope .filter-categories li.active,.lists-scope .filter-categories li:hover {
    background-color: #00bcd4;
    color: #fff
}

.lists-scope .search-tags {
    margin-top: 20px;
    font-size: 12px;
    color: #fff
}

.lists-scope .search-tags a {
    display: inline-block;
    color: #fff;
    margin: 5px;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 20px;
    background-color: rgba(255,255,255,.2);
    transition: all .3s ease
}

.lists-scope .search-tags a:hover {
    background-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
    color: #fff
}

.lists-scope .filter-sorts {
    margin-bottom: 1.5rem
}

.lists-scope .sort-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .7rem
}

.lists-scope .sort-group h3 {
    font-size: .9rem;
    font-weight: 500;
    color: #666
}

.lists-scope .sort {
    display: inline-block;
    padding: .4rem .8rem;
    background-color: #f1f3f5;
    border-radius: 15px;
    font-size: .85rem;
    cursor: pointer;
    transition: all .3s
}

.lists-scope .sort.active {
    background-color: #00bcd4;
    color: #e9ecef
}

.lists-scope .sort:hover {
    background-color: #e9ecef;
    transform: translateY(-2px)
}

.lists-scope .sort-options {
    text-align: right;
    color: #666
}

.lists-scope .sort-options select {
    padding: .5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: 0;
    cursor: pointer;
    transition: all .3s
}

.lists-scope .sort-options select:hover {
    border-color: #aaa
}

.lists-scope .gallery-container {
    padding: 30px 0
}

.lists-scope .gallery-wrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px
}

.lists-scope .gallery-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: transform .4s,box-shadow .4s;
    animation: fadeIn .8s ease-in-out
}

.lists-scope .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1)
}

.lists-scope .image-wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../img/bgpng.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
    border: 1px solid #fff;
    border-radius: 10px
}

.lists-scope .image-wrapper-image {
    height: 270px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center
}

.lists-scope .image-wrapper img {
    height: auto;
    width: auto;
    min-width: 100%;
    max-height: 100%;
    transition: transform .5s
}

.lists-scope .gallery-item:hover .image-wrapper img {
    transform: scale(1.05)
}

.lists-scope .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity .4s
}

.lists-scope .gallery-item:hover .image-overlay {
    opacity: 1
}

.lists-scope .image-info {
    padding: 1.5rem;
    width: 100%;
    color: #fff
}

.lists-scope .image-info h3 {
    margin-bottom: .5rem;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.lists-scope .dimensions,.lists-scope .file-size {
    font-size: .85rem;
    opacity: .8;
    margin-bottom: .3rem
}

.lists-scope .action-buttons {
    display: flex;
    gap: .8rem;
    margin-top: 1rem
}

.lists-scope .download-btn,.lists-scope .favorite-btn {
    padding: .6rem 1.2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all .3s
}

.lists-scope .download-btn {
    background-color: #d33300;
    color: #fff;
    flex: 1
}

.lists-scope .download-btn:hover {
    background-color: #ff5722
}

.lists-scope .favorite-btn {
    background-color: rgba(255,255,255,.2);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0
}

.lists-scope .favorite-btn:hover {
    background-color: rgba(255,255,255,.3);
    color: #ff5e3a
}

.lists-scope .image-tags {
    padding: 1rem 1.5rem;
    display: flex;
    gap: .5rem
}

.lists-scope .image-tags .tag {
    font-size: .75rem;
    padding: .3rem .6rem
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width: 1200px) {
    .lists-scope .gallery-wrapper {
        grid-template-columns:repeat(4,1fr)
    }
}

@media (max-width: 768px) {
    .lists-scope .search-container h1 {
        font-size:2rem
    }

    .lists-scope .search-box {
        flex-direction: column;
        border-radius: 15px
    }

    .lists-scope .search-btn {
        width: 100px;
        padding: .8rem
    }

    .lists-scope .gallery-wrapper {
        grid-template-columns: repeat(2,1fr)
    }

    .lists-scope .filter-categories ul {
        gap: .7rem
    }

    .lists-scope .image-tags {
        display: none
    }

    .lists-scope .gallery-container {
        padding: 15px 0
    }
}

.album-scope .search-container {
    background: linear-gradient(135deg,#4568dc,#b06ab3);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
    text-align: center;
    transition: all .3s ease;
    margin-top: 110px
}

.album-scope .search-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15)
}

.album-scope .search-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,.2)
}

.album-scope .search-description {
    color: rgba(255,255,255,.9);
    font-size: 16px;
    margin-bottom: 30px
}

.album-scope .search-form {
    position: relative;
    max-width: 700px;
    margin: 0 auto
}

.album-scope .search-input {
    width: 100%;
    padding: 20px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    transition: all .3s ease
}

.album-scope .search-tags {
    margin-top: 20px;
    font-size: 12px;
    color: #fff
}

.album-scope .search-tags a {
    display: inline-block;
    color: #fff;
    margin: 5px;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 20px;
    background-color: rgba(255,255,255,.2);
    transition: all .3s ease
}

.album-scope .search-tags a:hover {
    background-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
    color: #fff
}

.album-scope .search-input:focus {
    outline: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    background: #fff
}

.album-scope .search-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    background: linear-gradient(135deg,#4568dc,#b06ab3);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease
}

.album-scope .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,.2)
}

.album-scope .albums-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin: 30px 0
}

.album-scope .album-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,.05);
    transition: all .3s ease;
    position: relative
}

.album-scope .album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1)
}

.album-scope .album-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.album-scope .album-preview .imgT {
    height: 148px;
    overflow: hidden;
    background-color: rgb(143 143 143 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.album-scope .album-preview .imgT img {
    width: 100%;
    border-radius: 0;
    max-height: unset
}

.album-scope .album-preview .imgB {
    position: relative;
    height: 80px;
    display: grid;
    grid-gap: 2px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 2px
}

.album-scope .album-preview .imgB .imgH {
    height: 80px;
    background-color: rgb(143 143 143 / 10%);
    display: flex;
    align-items: center;
    overflow: hidden
}

.album-scope .album-preview .imgB .imgH img {
    width: 100%;
    border-radius: 0;
    max-height: unset
}

.album-scope .album-card:hover .album-preview img {
    transform: scale(1.05)
}

.album-scope .album-info {
    padding: 20px
}

.album-scope .album-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.album-scope .album-count {
    display: inline-block;
    background: #f0f1f7;
    color: #6c757d;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px
}

@media (max-width: 1100px) {
    .album-scope .albums-grid {
        grid-template-columns:repeat(3,1fr)
    }
}

@media (max-width: 800px) {
    .album-scope .albums-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .album-scope .search-container {
        padding: 30px 20px
    }

    .album-scope .search-title {
        font-size: 26px
    }
}

@media (max-width: 500px) {
    .album-scope .albums-grid {
        grid-template-columns:1fr
    }

    .album-scope .search-input {
        padding: 15px 20px;
        font-size: 16px
    }

    .album-scope .search-btn {
        padding: 10px 20px;
        font-size: 14px
    }
}

.pic-scope .container {
    width: 100%
}

.pic-scope .search-section {
    margin-bottom: 40px;
    text-align: center;
    padding-top: 120px
}

.pic-scope .search-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto
}

.pic-scope .search-input {
    width: 100%;
    padding: 20px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: var(--transition)
}

.pic-scope .search-input:focus {
    outline: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,.15)
}

.pic-scope .search-button {
    position: absolute;
    right: 8px;
    top: 8px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition)
}

.pic-scope .search-button:hover {
    background-color: #2980b9;
    transform: scale(1.05)
}

.pic-scope .search-tags {
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px
}

.pic-scope .search-tags span {
    color: #282828
}

.pic-scope .search-tags a {
    display: inline-block;
    color: #525252;
    margin: 5px;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 20px;
    background-color: rgb(255 255 255);
    transition: all .3s ease
}

.pic-scope .search-tags a:hover {
    background-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
    color: #ff5f6d!important
}

.pic-scope .tag {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    background-color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,.05)
}

.pic-scope .tag:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px)
}

.pic-scope .filter-section {
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05)
}

.pic-scope .filter-group {
    margin-bottom: 20px;
    flex: 1;
    min-width: 300px;
    margin-right: 20px
}

.pic-scope .filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: left
}

.pic-scope .filter-options {
    display: flex;
    flex-wrap: wrap
}

.pic-scope .filter-option {
    padding: 8px 16px;
    margin: 0 8px 8px 0;
    background-color: #f5f7fa;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition)
}

.pic-scope .filter-option:hover {
    background-color: #e9ecef
}

.pic-scope .filter-option.active {
    background-color: var(--primary-color);
    color: #fff
}

.pic-scope .gallery {
    display: block;
    padding: unset;
    position: relative;
    overflow: hidden;
    margin: 20px 0
}

.pic-scope .gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: var(--transition);
    border-radius: 12px;
    background-color: #54a1d9;
    float: left;
    width: calc(20% - 8px);
    margin-right: 10px;
    margin-bottom: 10px
}

.pic-scope .gallery-item:nth-child(5n) {
    margin-right: 0
}

.pic-scope .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15)
}

.pic-scope .image-container {
    position: relative;
    overflow: hidden;
    max-height: 480px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center
}

.pic-scope .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.pic-scope .gallery-item:hover img {
    transform: scale(1.1)
}

.pic-scope .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-color: rgb(0 0 0 / 30%)
}

.pic-scope .gallery-item:hover .image-overlay {
    opacity: 1
}

.pic-scope .image-info {
    color: #fff;
    width: 100%
}

.pic-scope .image-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.pic-scope .dimensions,.pic-scope .size {
    font-size: 14px;
    opacity: .8;
    margin-bottom: 5px
}

.pic-scope .image-actions {
    display: flex;
    margin-top: 15px
}

.pic-scope .action-button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center
}

.pic-scope .action-button i {
    margin-right: 6px
}

.pic-scope .download {
    background-color: var(--primary-color);
    color: #fff
}

.pic-scope .download:hover {
    background-color: #2980b9
}

.pic-scope .favorite {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff
}

.pic-scope .favorite:hover {
    background-color: rgba(255,255,255,.1)
}

@media (max-width: 1200px) {
    .pic-scope .gallery-item {
        width:calc(25% - 8px)
    }

    .pic-scope .gallery-item:nth-child(4n) {
        margin-right: 0
    }
}

@media (max-width: 800px) {
    .pic-scope .gallery-item {
        width:calc(50% - 8px)
    }

    .pic-scope .gallery-item:nth-child(2n) {
        margin-right: 0
    }

    .pic-scope .search-input {
        font-size: 16px
    }

    .pic-scope .filter-section {
        flex-direction: column
    }

    .pic-scope .filter-group {
        margin-right: 0
    }
}

.albumHeader {
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(135deg,#f5f7fa 0,#e4e8f0 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    overflow: hidden
}

.albumHeader .album-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.albumHeader .album-info {
    flex: 1;
    min-width: 280px
}

.albumHeader .album-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    position: relative;
    display: inline-block
}

.albumHeader .album-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right,#3498db,#9b59b6);
    border-radius: 2px;
    transition: width .3s ease
}

.albumHeader .album-title:hover::after {
    width: 100%
}

.albumHeader .album-count {
    font-size: 16px;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 6px
}

.albumHeader .album-count i {
    color: #3498db
}

.albumHeader .searchs-box {
    position: relative;
    min-width: 280px
}

.albumHeader .searchs-input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: all .3s ease
}

.albumHeader .searchs-input:focus {
    outline: 0;
    box-shadow: 0 6px 16px rgba(52,152,219,.2)
}

.albumHeader .searchs-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: 0 0;
    border: none;
    color: #3498db;
    font-size: 18px;
    cursor: pointer;
    transition: all .2s ease
}

.albumHeader .searchs-btn:hover {
    color: #2980b9;
    transform: translateY(-50%) scale(1.1)
}

@media (max-width: 576px) {
    .albumHeader .album-title-section {
        flex-direction:column;
        align-items: flex-start
    }

    .albumHeader .searchs-box {
        width: 100%
    }

    .albumHeader .album-title {
        font-size: 28px
    }
}

.albumItem-scope {
    padding-top: 110px
}

.albumItem-scope .title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700
}

.albumItem-scope .container {
    width: unset
}

.albumItem-scope .search-container {
    border-radius: 10px;
    padding: 60px 20px
}

.albumItem-scope .search-title {
    text-align: center;
    margin-bottom: 20px;
    color: #4a89dc
}

.albumItem-scope .search-form {
    display: flex;
    gap: 10px;
    max-width: 800px;
    margin: auto
}

.albumItem-scope .search-input {
    flex: 1;
    padding: 12px 15px;
    border: 3px solid #4a89dc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color .3s,box-shadow .3s;
    width: 100px
}

.albumItem-scope .search-input:focus {
    border-color: #4a89dc;
    box-shadow: 0 0 0 3px rgba(74,137,220,.1);
    outline: 0
}

.albumItem-scope .search-btn {
    background-color: #4a89dc;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color .3s
}

.albumItem-scope .search-btn:hover {
    background-color: #3a70b5
}

.albumItem-scope .filter-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap
}

.albumItem-scope .filter-tag {
    background-color: #edf2f7;
    color: #4a5568;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .3s
}

.albumItem-scope .filter-tag:hover {
    background-color: #e2e8f0
}

.albumItem-scope .filter-tag.active {
    background-color: #4a89dc;
    color: #fff
}

.albumItem-scope .materials-container {
    display: block;
    padding: unset;
    position: relative;
    overflow: hidden;
    margin: 30px 0
}

@media (max-width: 1100px) {
    .albumItem-scope .materials-container {
        grid-template-columns:repeat(3,1fr)
    }
}

@media (max-width: 768px) {
    .albumItem-scope .materials-container {
        grid-template-columns:repeat(2,1fr)
    }

    .albumItem-scope {
        padding-top: 90px
    }
}

@media (max-width: 480px) {
    .albumItem-scope .materials-container {
        grid-template-columns:1fr
    }
}

.albumItem-scope .material-item {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,.05);
    transition: transform .3s,box-shadow .3s;
    border-radius: 12px;
    float: left;
    width: calc(20% - 8px);
    margin-right: 10px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative
}

.albumItem-scope .material-item:nth-child(5n) {
    margin-right: 0
}

.albumItem-scope .material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,.1)
}

.albumItem-scope .material-img-container {
    position: relative;
    overflow: hidden;
    background-image: url(../img/bgpng.jpg)
}

.albumItem-scope .material-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.albumItem-scope .material-item:hover .material-img {
    transform: scale(1.05)
}

.albumItem-scope .material-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,rgba(0,0,0,.7),transparent);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    color: #fff;
    border-radius: 10px
}

.albumItem-scope .material-item:hover .material-overlay {
    opacity: 1
}

.albumItem-scope .material-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.albumItem-scope .material-actions {
    display: flex;
    gap: 10px
}

.albumItem-scope .action-btn {
    background-color: rgba(255,255,255,.2);
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color .3s
}

.albumItem-scope .action-btn:hover {
    background-color: rgba(255,255,255,.3)
}

.albumItem-scope .material-info {
    padding: 15px
}

.albumItem-scope .material-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.albumItem-scope .material-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.albumItem-scope .material-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888
}

@media (max-width: 1200px) {
    .albumItem-scope .material-item {
        width:calc(25% - 8px)
    }

    .albumItem-scope .material-item:nth-child(4n) {
        margin-right: 0
    }
}

@media (max-width: 800px) {
    .albumItem-scope .material-item {
        width:calc(50% - 8px)
    }

    .albumItem-scope .material-item:nth-child(2n) {
        margin-right: 0
    }
}

.vip-scope {
    margin-top: 100px
}

.vip-scope .container {
    width: unset
}

.vip-scope .vip-section {
    text-align: center;
    padding: 2rem 0
}

.vip-scope .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg,var(--primary-color),var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block
}

.vip-scope .section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 3rem
}

.vip-scope .membership-cards {
    justify-content: center;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.vip-scope .membership-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column
}

.vip-scope .membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15)
}

.vip-scope .card-header {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.vip-scope .card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px
}

.vip-scope .basic .card-header {
    background: linear-gradient(135deg,#a8dadc 0,#457b9d 100%);
    color: #fff
}

.vip-scope .basic .card-header::after {
    background: #1d3557
}

.vip-scope .professional .card-header {
    background: linear-gradient(135deg,#8338ec 0,#3a86ff 100%);
    color: #fff
}

.vip-scope .professional .card-header::after {
    background: #560bad
}

.vip-scope .flagship .card-header {
    background: linear-gradient(135deg,#f72585 0,#7209b7 100%);
    color: #fff
}

.vip-scope .flagship .card-header::after {
    background: #3f37c9
}

.vip-scope .membership-type {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0
}

.vip-scope .membership-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 1rem 0
}

.vip-scope .price-period {
    font-size: 1rem;
    opacity: .8
}

.vip-scope .membership-description {
    font-size: .95rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 0
}

.vip-scope .card-content {
    padding: 1.5rem;
    flex-grow: 1
}

.vip-scope .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left
}

.vip-scope .feature-list li {
    padding: .8rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center
}

.vip-scope .feature-list li:last-child {
    border-bottom: none
}

.vip-scope .feature-list li::before {
    content: "✓";
    margin-right: 10px;
    color: #03a9f4;
    font-weight: 700
}

.vip-scope .card-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    text-align: center
}

.vip-scope .btn-subscribe {
    display: inline-block;
    padding: .8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    width: 80%;
    cursor: pointer;
    border: none
}

.vip-scope .basic .btn-subscribe {
    color: #fff;
    background: linear-gradient(90deg,#457b9d,#1d3557)
}

.vip-scope .basic .btn-subscribe:hover {
    background: linear-gradient(90deg,#1d3557,#457b9d);
    box-shadow: 0 5px 15px rgba(29,53,87,.4)
}

.vip-scope .professional .btn-subscribe {
    color: #fff;
    background: linear-gradient(90deg,#3a86ff,#560bad)
}

.vip-scope .professional .btn-subscribe:hover {
    background: linear-gradient(90deg,#560bad,#3a86ff);
    box-shadow: 0 5px 15px rgba(58,134,255,.4)
}

.vip-scope .flagship .btn-subscribe {
    color: #fff;
    background: linear-gradient(90deg,#7209b7,#f72585)
}

.vip-scope .flagship .btn-subscribe:hover {
    background: linear-gradient(90deg,#f72585,#7209b7);
    box-shadow: 0 5px 15px rgba(247,37,133,.4)
}

.vip-scope .recommended {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff9f1c;
    color: #fff;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    transform: translate(30%,-30%) rotate(45deg) translateX(20%);
    transform-origin: top right;
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,.1)
}

@media (max-width: 1100px) {
    .vip-scope .membership-cards {
        gap:1.5rem
    }

    .vip-scope .membership-card {
        width: 300px
    }
}

@media (max-width: 900px) {
    .vip-scope .membership-cards {
        justify-content:center;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 20px
    }

    .vip-scope .membership-card {
        width: 100%;
        max-width: 400px
    }
}

.all-scope {
    margin-top: 110px
}

.all-scope .container {
    width: 100%
}

.all-scope .search-section {
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
    transition: transform .3s
}

.all-scope .search-section:hover {
    transform: translateY(-5px)
}

.all-scope .search-container {
    max-width: 800px;
    margin: 0 auto
}

.all-scope .search-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,.2)
}

.all-scope .search-box {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1)
}

.all-scope .search-box input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 18px;
    outline: 0;
    transition: all .3s
}

.all-scope .search-box input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,.3)
}

.all-scope .search-btn {
    background: #ff9a8b;
    background: linear-gradient(to right,#ff9a8b 0,#ff6a88 100%);
    border: none;
    color: #fff;
    padding: 0 35px;
    cursor: pointer;
    font-size: 18px;
    transition: all .3s
}

.all-scope .search-btn:hover {
    background: linear-gradient(to right,#ff6a88 0,#ff9a8b 100%)
}

.all-scope .search-tags {
    margin-top: 20px;
    font-size: 16px
}

.all-scope .search-tags a {
    display: inline-block;
    color: #fff;
    margin: 5px;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 20px;
    background-color: rgba(255,255,255,.2);
    transition: all .3s ease
}

.all-scope .search-tags a:hover {
    background-color: rgba(255,255,255,.4);
    transform: translateY(-2px)
}

.all-scope .filter-section {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.all-scope .filter-container {
    display: grid;
    flex-wrap: wrap;
    gap: 30px
}

.all-scope .filter-group {
    flex: 1;
    min-width: 250px
}

.all-scope .filter-group h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333
}

.all-scope .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.all-scope .filter-options a {
    text-decoration: none;
    color: #555;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: #f5f5f5;
    transition: all .3s;
    font-size: 14px
}

.all-scope .filter-options a.active,.all-scope .filter-options a:hover {
    background-color: #764ba2;
    color: #fff!important
}

.all-scope .color-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.all-scope .color-item {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all .3s
}

.all-scope .color-item:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px #764ba2
}

.all-scope .gallery-section {
    margin-bottom: 40px
}

.all-scope .gallery-grid {
    display: block;
    padding: unset;
    position: relative;
    overflow: hidden
}

.all-scope .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    transition: all .3s ease;
    float: left;
    width: calc(20% - 8px);
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative
}

.all-scope .gallery-item:nth-child(5n) {
    margin-right: 0
}

.all-scope .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,.2)
}

.all-scope .image-container {
    position: relative;
    overflow: hidden;
    min-height: 200px
}

.all-scope .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform .5s ease
}

.all-scope .gallery-item:hover .image-container img {
    transform: scale(1.05)
}

.all-scope .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,rgba(0,0,0,.8) 0,transparent 70%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    transition: all .3s ease;
    padding: 20px;
    color: #fff
}

.all-scope .gallery-item:hover .overlay {
    opacity: 1
}

.all-scope .image-info {
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: all .3s ease .1s
}

.all-scope .gallery-item:hover .image-info {
    transform: translateY(0);
    opacity: 1
}

.all-scope .image-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.all-scope .image-info p {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: .9
}

.all-scope .actions {
    display: flex;
    gap: 10px;
    margin-top: 15px
}

.all-scope .action-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 5px
}

.all-scope .download-btn {
    background-color: #764ba2;
    color: #fff
}

.all-scope .edit-btn {
    background-color: rgba(255,255,255,.2);
    color: #fff
}

.all-scope .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,.1)
}

@media (max-width: 1200px) {
    .all-scope .gallery-item {
        width:calc(25% - 8px)
    }

    .all-scope .gallery-item:nth-child(4n) {
        margin-right: 0
    }
}

@media (max-width: 800px) {
    .all-scope .gallery-item {
        width:calc(50% - 8px)
    }

    .all-scope .gallery-item:nth-child(2n) {
        margin-right: 0
    }

    .all-scope .search-section {
        padding: 40px 20px
    }

    .all-scope .search-section h1 {
        font-size: 2rem
    }

    .all-scope .search-box input {
        padding: 15px 20px;
        font-size: 16px
    }

    .all-scope .filter-container {
        flex-direction: column;
        gap: 20px
    }
}

.login-scope {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: Arial,sans-serif;
    padding-top: 180px;
    padding-bottom: 100px
}

.login-scope .login-container {
    background: rgba(255,255,255,.95);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
    width: 480px;
    padding: 30px;
    transition: all .3s ease
}

.login-scope .login-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.25)
}

.login-scope .login-header {
    text-align: center;
    margin-bottom: 30px
}

.login-scope .login-header h2 {
    color: #333;
    font-size: 28px;
    font-weight: 700
}

.login-scope .login-header p {
    color: #777;
    font-size: 14px;
    margin-top: 5px
}

.login-scope .layui-form-item {
    margin-bottom: 25px
}

.login-scope .layui-input-wrap {
    position: relative
}

.login-scope .layui-input-prefix i {
    color: #999;
    font-size: 18px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%)
}

.login-scope .layui-input {
    padding-left: 40px!important;
    border-radius: 8px!important;
    font-size: 16px;
    height: 50px
}

.login-scope .layui-btn {
    border-radius: 8px!important;
    font-size: 16px;
    height: 50px;
    background-color: #1a2a6c!important;
    color: #fff!important;
    border: none!important;
    transition: all .3s ease
}

.login-scope .layui-btn:hover {
    background-color: #b21f1f!important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26,42,108,.3)
}

.login-scope .codeadd {
    height: 50px;
    font-size: 16px
}

.login-scope .tongyi {
    text-align: center;
    margin-top: 20px;
    color: #999;
    font-size: 14px
}

.login-scope .tongyi a {
    color: #1a2a6c;
    text-decoration: none
}

.login-scope .tongyi a:hover {
    text-decoration: underline
}

.login-scope .login-footer {
    text-align: center;
    margin-top: 30px;
    color: #999;
    font-size: 12px
}

.icon-scope .container {
    width: 100%
}

.icon-scope .search-tags {
    margin-top: 20px;
    font-size: 12px;
    color: #fff
}

.icon-scope .search-tags a {
    display: inline-block;
    color: #fff;
    margin: 5px;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 20px;
    background-color: rgba(255,255,255,.2);
    transition: all .3s ease
}

.icon-scope .search-tags a:hover {
    background-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
    color: #fff
}

.icon-scope .search-section {
    background-color: #3a6ea5;
    padding: 60px 0;
    text-align: center;
    padding-top: 120px;
    /* background-image:url(../img/ak.png); */
}

.icon-scope .search-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff
}

.icon-scope .search-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative
}

.icon-scope .search-input {
    width: 100%;
    padding: 18px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: var(--box-shadow);
    font-size: 18px;
    transition: var(--transition)
}

.icon-scope .search-input:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(58,110,165,.2)
}

.icon-scope .search-button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition)
}

.icon-scope .search-button:hover {
    background-color: #2a5a8a
}

.icon-scope .filter-section {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px
}

.icon-scope .filter-button {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition)
}

.icon-scope .filter-button.active,.icon-scope .filter-button:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color)
}

.icon-scope .gallery-section {
    padding: 20px 0 40px
}

.icon-scope .gallery-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-color)
}

.icon-scope .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 20px
}

.icon-scope .svg-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column
}

.icon-scope .svg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.1)
}

.icon-scope .svg-preview {
    height: 200px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    cursor: pointer
}

.icon-scope .svg-preview svg {
    max-width: 100%;
    max-height: 100%;
    transition: var(--transition)
}

.icon-scope .svg-card:hover .svg-preview svg {
    transform: scale(1.05)
}

.icon-scope .svg-title {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid #eee;
    cursor: pointer
}

@media screen and (max-width: 1200px) {
    .icon-scope .gallery-grid {
        grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
        gap: 25px
    }
}

@media screen and (max-width: 992px) {
    .icon-scope .gallery-grid {
        grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
        gap: 20px
    }
}

@media screen and (max-width: 768px) {
    .icon-scope .search-title {
        font-size:30px
    }

    .icon-scope .gallery-grid {
        grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
        gap: 15px
    }
}

@media screen and (max-width: 576px) {
    .icon-scope .gallery-grid {
        grid-template-columns:repeat(2,1fr);
        gap: 15px
    }
}

.ColorEditing {
    text-align: center;
    padding: 30px
}

.ColorEditing .top {
    display: flex;
    justify-content: center;
    height: 360px
}

.ColorEditing .top .lipath {
    width: 150px;
    text-align: center;
    overflow: auto;
    background-color: #f5f5f5;
    padding: 10px;
    padding-top: 0
}

.ColorEditing .top li {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    border: 5px solid #e6e6e6
}

.ColorEditing .top li.hover {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 5px solid #bacbf7
}

.ColorEditing .top .lipath svg {
    display: block;
    width: 100%!important;
    height: 100%!important
}

.ColorEditing #iconSvg {
    height: 360px;
    display: flex;
    width: 360px;
    margin: auto;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url(/view/default/public/img/bgpng001.jpg);
    padding: 30px
}

.ColorEditing #iconSvg svg {
    max-height: 100%;
    max-width: 100%
}

.ColorEditing .ColorsElection {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.ColorEditing .ColorsElection .li {
    width: 38px;
    height: 38px;
    background-color: #72b1e8;
    border-radius: 2px;
    margin-right: 10px;
    border: 6px solid #eee;
    cursor: pointer
}

.ColorEditing .ColorsElection .li {
    width: 38px;
    height: 38px;
    line-height: 28px;
    color: #05ad0c;
    font-size: 20px;
    font-weight: 700;
    border-radius: 2px;
    margin-right: 5px;
    border: 6px solid #f5f5f5;
    cursor: pointer
}

.ColorEditing .ColorsElection .hover {
    border: 6px solid #a7a7a7
}

.ColorEditing .download-btns {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    margin-top: 30px
}

.ColorEditing .download-btns .btn {
    display: inline-block;
    vertical-align: middle;
    height: 38px;
    line-height: 38px;
    border: 1px solid transparent;
    padding: 0 10px;
    background-color: #795548;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin: 0 5px
}

.ColorEditing .download-btns .layui-btn {
    padding: 0 10px
}

.right-fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 999
}

.right-fixed-buttons .fixed-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    outline: 0
}

.right-fixed-buttons .fixed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    color: #fff!important
}

.right-fixed-buttons .fixed-btn svg {
    width: 24px;
    height: 24px
}

.right-fixed-buttons .to-top-btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s,visibility .3s
}

.right-fixed-buttons .to-top-btn.show {
    opacity: 1;
    visibility: visible
}

.right-fixed-buttons .my-btn {
    background-color: #00bcd4;
    color: #fff
}

.right-fixed-buttons .vip-btn {
    background-color: #ffc107;
    color: #fff
}

.right-fixed-buttons .to-top-btn {
    background-color: #ff5f6d;
    color: #fff
}

.jieqi {
    --primary-color: #00bcd4;
    --primary-light: #eef2ff;
    --primary-dark: #4338ca;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --transition: all 0.3s ease;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.jieqi * {
    box-sizing: border-box
}

.jieqi-container {
    position: relative;
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
    border-radius: var(--radius)
}

.jieqi-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color)
}

.jieqi-scroll-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0
}

.jieqi-scroll-track {
    display: flex;
    transition: transform .5s ease;
    will-change: transform
}

.jieqi-item {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 10px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.jieqi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)
}

.jieqi-item.current {
    border: 2px solid var(--primary-color)
}

.jieqi-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color)
}

.jieqi-icon svg {
    width: 32px;
    height: 32px
}

.jieqi-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color)
}

.jieqi-date {
    font-size: 14px;
    color: var(--text-light)
}

.jieqi-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500
}

.jieqi-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px
}

.jieqi-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition)
}

.jieqi-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-color)
}

.jieqi-btn svg {
    width: 20px;
    height: 20px
}

@media (max-width: 768px) {
    .jieqi-item {
        width:150px
    }

    .jieqi-icon {
        width: 50px;
        height: 50px
    }

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

    .jieqi-name {
        font-size: 16px
    }
}

@media (max-width: 480px) {
    .jieqi-item {
        width:130px;
        padding: 15px
    }

    .jieqi-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px
    }

    .jieqi-icon svg {
        width: 20px;
        height: 20px
    }

    .jieqi-name {
        font-size: 14px
    }

    .jieqi-date {
        font-size: 12px
    }
}

.zhuanjieIndex *,.zhuanjieIndex ::after,.zhuanjieIndex ::before {
    box-sizing: inherit
}

.zhuanjieIndex .album-title {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px
}

.zhuanjieIndex .album-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,#ff4d4d,#f9cb28)
}

.zhuanjieIndex .tab-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px
}

.zhuanjieIndex .tab-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    color: #666;
    transition: all .3s ease;
    font-weight: 500
}

.zhuanjieIndex .tab-btn:hover {
    background: #e0e0e0;
    color: #333!important
}

.zhuanjieIndex .tab-btn.active {
    background: linear-gradient(135deg,#ff4d4d,#f9cb28);
    color: #fff;
    box-shadow: 0 4px 12px rgba(249,203,40,.3)
}

.zhuanjieIndex .keywords-grid {
    display: none;
    grid-template-columns: repeat(auto-fill,minmax(120px,1fr));
    gap: 15px;
    animation: fadeIn .5s ease
}

.zhuanjieIndex .keywords-grid.active {
    display: grid
}

.zhuanjieIndex .keyword-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s ease;
    text-align: center;
    word-break: break-word;
    border: 1px solid #eee
}

.zhuanjieIndex .keyword-item:hover {
    background: linear-gradient(135deg,#ff4d4d,#f9cb28);
    color: #fff!important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,77,77,.2);
    border-color: transparent
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width: 768px) {
    .zhuanjieIndex .tab-nav {
        gap:8px
    }

    .zhuanjieIndex .tab-btn {
        padding: 8px 15px;
        font-size: 14px
    }

    .zhuanjieIndex .keywords-grid {
        grid-template-columns: repeat(auto-fill,minmax(100px,1fr));
        gap: 10px
    }

    .zhuanjieIndex .keyword-item {
        padding: 10px 8px;
        font-size: 13px
    }
}

@media (max-width: 480px) {
    .zhuanjieIndex .album-title {
        font-size:22px
    }

    .zhuanjieIndex .tab-nav {
        gap: 5px
    }

    .zhuanjieIndex .tab-btn {
        padding: 6px 12px;
        font-size: 12px
    }

    .zhuanjieIndex .keywords-grid {
        grid-template-columns: repeat(auto-fill,minmax(80px,1fr))
    }

    .zhuanjieIndex .keyword-item {
        padding: 8px 5px;
        font-size: 12px
    }
}

.yinxiao {
    font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.yinxiao * {
    box-sizing: border-box
}

.yinxiao-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 30px
}

.yinxiao-search {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.yinxiao-search-input {
    flex: 1;
    position: relative
}

.yinxiao-search-input input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all .3s ease;
    background: #f9f9f9;
    color: #333
}

.yinxiao-search-input input:focus {
    border-color: #00c6ff;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0,198,255,.2)
}

.yinxiao-search-input button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #00c6ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all .3s ease
}

.yinxiao-search-input button:hover {
    background: #0097e6
}

.yinxiao-tags {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.yinxiao-tag {
    padding: 8px 15px;
    background: #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all .2s ease;
    font-weight: 500
}

.yinxiao-tag:hover {
    background: #00c6ff;
    color: #fff;
    transform: translateY(-2px)
}

.yinxiao-tag.active {
    background: #00c6ff;
    color: #fff
}

.yinxiao-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px
}

.yinxiao-category {
    padding: 12px 20px;
    background: #fff;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    font-weight: 600;
    text-align: center
}

.yinxiao-category:hover {
    background: #00c6ff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,198,255,.3)
}

.yinxiao-category.active {
    background: #00c6ff;
    color: #fff
}

.yinxiao-list {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 25px
}

.yinxiao-item {
    background: rgba(255,255,255,.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    position: relative
}

.yinxiao-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,.1)
}

.yinxiao-item-top {
    background: linear-gradient(135deg,#09f 0,#00c6ff 100%);
    padding: 20px;
    color: #fff;
    position: relative
}

.yinxiao-item-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.yinxiao-item-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    height: 26px;
    overflow: hidden
}

.yinxiao-item-tag {
    background: rgba(255,255,255,.3);
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 15px
}

.yinxiao-item-duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px
}

.yinxiao-item-bottom {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.yinxiao-play-button {
    background: #00c6ff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(0,198,255,.4);
    border: none
}

.yinxiao-play-button:hover {
    transform: scale(1.1);
    background: #09f
}

.yinxiao-play-button i {
    font-size: 20px
}

.yinxiao-countdown {
    font-size: 16px;
    font-weight: 600;
    color: #333
}

.yinxiao-actions {
    display: flex;
    gap: 15px
}

.yinxiao-action-button {
    background: 0 0;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #666;
    transition: all .2s ease
}

.yinxiao-action-button:hover {
    color: #00c6ff;
    transform: scale(1.2)
}

.yinxiao-action-button.favorite.active {
    color: #f36
}

.yinxiao-progress {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden
}

.yinxiao-progress-bar {
    height: 100%;
    background: #00c6ff;
    width: 0%;
    transition: width .1s linear
}

@media (max-width: 768px) {
    .yinxiao-list {
        grid-template-columns:repeat(auto-fill,minmax(250px,1fr))
    }

    .yinxiao-search-input {
        margin-bottom: 15px
    }

    .yinxiao-category {
        flex: 1;
        min-width: calc(50% - 8px)
    }
}

@media (max-width: 480px) {
    .yinxiao-list {
        grid-template-columns:1fr
    }

    .yinxiao-category {
        min-width: calc(100% - 8px)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.yinxiao-item.playing .yinxiao-play-button {
    background: #f36;
    animation: pulse 1.5s infinite
}

.yinxiao-item.playing .yinxiao-item-top {
    background: linear-gradient(135deg,#f36 0,#ff6b6b 100%)
}

.yinxiaoHeader {
    margin: 0 auto;
    padding: 25px;
    border-radius: 16px;
    background: linear-gradient(145deg,#f9f9f9,#fff);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    color: #333;
    margin-bottom: 30px
}

.yinxiaoHeader * {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.yinxiaoHeader .search-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center
}

.yinxiaoHeader .search-title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 22px;
    background: linear-gradient(180deg,#2196f3,#ff5722);
    margin-right: 10px;
    border-radius: 3px
}

.yinxiaoHeader .search-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative
}

.yinxiaoHeader .search-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #eaeaea;
    border-radius: 50px;
    font-size: 16px;
    color: #333;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,.02);
    padding-right: 50px;
    width: 100%
}

.yinxiaoHeader .search-input:focus {
    outline: 0;
    border-color: #8e54e9;
    box-shadow: 0 4px 15px rgba(142,84,233,.15)
}

.yinxiaoHeader .search-button {
    position: absolute;
    right: 15px;
    background: linear-gradient(135deg,#4776e6,#3c7dea);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.yinxiaoHeader .search-button:hover {
    transform: scale(1.05)
}

.yinxiaoHeader .categories {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.yinxiaoHeader .category-item {
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    user-select: none
}

.yinxiaoHeader .category-item i {
    margin-right: 6px;
    font-size: 14px
}

.yinxiaoHeader .category-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px)
}

.yinxiaoHeader .category-item.active {
    background: linear-gradient(135deg,#4776e6,#00a2ff);
    color: #fff;
    box-shadow: 0 4px 10px rgba(142,84,233,.2)
}

.yinxiaoHeader .filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 15px
}

.yinxiaoHeader .filter-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center
}

.yinxiaoHeader .filter-section-title i {
    margin-right: 8px
}

.yinxiaoHeader .filter-options {
    display: flex;
    gap: 15px
}

.yinxiaoHeader .filter-option {
    position: relative
}

.yinxiaoHeader .filter-select {
    padding: 8px 35px 8px 15px;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    appearance: none;
    transition: all .3s ease
}

.yinxiaoHeader .filter-option::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e54e9;
    pointer-events: none
}

.yinxiaoHeader .filter-select:focus {
    outline: 0;
    border-color: #8e54e9;
    box-shadow: 0 0 0 3px rgba(142,84,233,.1)
}

.yinxiaoHeader .tags-section {
    padding: 15px 0;
    border-top: 1px solid #f0f0f0
}

.yinxiaoHeader .tags-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    align-items: center
}

.yinxiaoHeader .tags-title i {
    margin-right: 8px
}

.yinxiaoHeader .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.yinxiaoHeader .tag {
    padding: 6px 12px;
    background: rgb(84 184 233 / 10%);
    color: #009cff;
    border-radius: 4px;
    font-size: 13px;
    transition: all .3s ease;
    cursor: pointer;
    display: flex;
    align-items: center
}

.yinxiaoHeader .tag:hover {
    background: rgba(142,84,233,.2);
    transform: translateY(-2px)
}

.yinxiaoHeader .tag-close {
    margin-left: 6px;
    font-size: 10px;
    opacity: .7
}

.yinxiaoHeader .tag-close:hover {
    opacity: 1
}

@media (max-width: 768px) {
    .yinxiaoHeader {
        padding:20px 15px;
        border-radius: 12px
    }

    .yinxiaoHeader .filter-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px
    }

    .yinxiaoHeader .filter-options {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px
    }

    .yinxiaoHeader .category-item {
        padding: 8px 15px;
        font-size: 13px
    }
}

.yinxiaoItem {
    margin: 30px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,120,215,.08);
    overflow: hidden;
    display: flex;
    transition: all .3s ease;
    margin-top: 120px
}

.yinxiaoItem .player-section {
    flex: 1;
    min-width: 0;
    padding: 30px;
    background: linear-gradient(135deg,#e6f7ff 0,#f0f8ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.yinxiaoItem .title-container {
    margin-bottom: 30px
}

.yinxiaoItem .title {
    font-size: 28px;
    font-weight: 700;
    color: #0078d7;
    margin-bottom: 8px;
    line-height: 1.3
}

.yinxiaoItem .subtitle {
    font-size: 16px;
    color: #666;
    opacity: .8
}

.yinxiaoItem .player-container {
    display: flex;
    align-items: center;
    margin-bottom: 25px
}

.yinxiaoItem .play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0078d7;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    margin-right: 30px;
    box-shadow: 0 10px 20px rgba(0,120,215,.2)
}

.yinxiaoItem .play-btn:hover {
    background: #005a9e;
    transform: scale(1.05)
}

.yinxiaoItem .play-btn:active {
    transform: scale(.95)
}

.yinxiaoItem .pause-icon,.yinxiaoItem .play-icon {
    width: 32px;
    height: 32px
}

.yinxiaoItem .pause-icon {
    display: none
}

.yinxiaoItem.playing .play-icon {
    display: none
}

.yinxiaoItem.playing .pause-icon {
    display: block
}

.yinxiaoItem .controls-container {
    flex: 1;
    min-width: 0
}

.yinxiaoItem .progress-container {
    width: 100%;
    height: 10px;
    background: rgba(0,120,215,.1);
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.yinxiaoItem .progress-bar {
    height: 100%;
    background: #0078d7;
    border-radius: 5px;
    width: 0;
    transition: width .1s;
    position: relative
}

.yinxiaoItem .progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    opacity: 0;
    transition: opacity .2s
}

.yinxiaoItem .progress-container:hover .progress-bar::after {
    opacity: 1
}

.yinxiaoItem .time-info {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #666
}

.yinxiaoItem .duration {
    white-space: nowrap
}

.yinxiaoItem .waveform {
    height: 60px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.yinxiaoItem .waveform-bar {
    width: 3px;
    height: 100%;
    background: rgba(0,120,215,.2);
    border-radius: 3px;
    transition: height .2s ease
}

.yinxiaoItem.playing .waveform-bar {
    animation: soundwave 1s infinite
}

.yinxiaoItem .waveform-bar:nth-child(2n) {
    animation-delay: .3s
}

.yinxiaoItem .waveform-bar:nth-child(3n) {
    animation-delay: .5s
}

.yinxiaoItem .waveform-bar:nth-child(4n) {
    animation-delay: .7s
}

@keyframes soundwave {
    0%,100% {
        height: 20%;
        background: rgba(0,120,215,.2)
    }

    50% {
        height: 80%;
        background: rgba(0,120,215,.5)
    }
}

.yinxiaoItem .info-section {
    width: 320px;
    padding: 30px;
    background: #fff;
    border-left: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column
}

.yinxiaoItem .info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px
}

.yinxiaoItem .info-title {
    font-size: 20px;
    font-weight: 600;
    color: #333
}

.yinxiaoItem .favorite {
    background: 0 0;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 24px;
    transition: all .3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.yinxiaoItem .favorite.active {
    color: #fc0
}

.yinxiaoItem .favorite:hover {
    background: #f9f9f9;
    color: #fc0
}

.yinxiaoItem .info-block {
    margin-bottom: 25px
}

.yinxiaoItem .info-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px
}

.yinxiaoItem .info-value {
    font-size: 16px;
    color: #333;
    font-weight: 500
}

.yinxiaoItem .keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.yinxiaoItem .keyword {
    display: inline-block;
    background: #edf8ff;
    padding: 6px 12px;
    border-radius: 20px;
    color: #0078d7;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s
}

.yinxiaoItem .keyword:hover {
    background: #d4edff;
    transform: translateY(-2px)
}

.yinxiaoItem .actions {
    margin-top: auto;
    display: flex;
    gap: 10px
}

.yinxiaoItem .action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s
}

.yinxiaoItem .download-btn {
    background: #0078d7;
    color: #fff
}

.yinxiaoItem .download-btn:hover {
    background: #005a9e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,120,215,.2)
}

.yinxiaoItem .share-btn {
    background: #f0f8ff;
    color: #0078d7
}

.yinxiaoItem .share-btn:hover {
    background: #d4edff;
    transform: translateY(-2px)
}

.yinxiaoItem .action-icon {
    width: 18px;
    height: 18px
}

@media (max-width: 900px) {
    .yinxiaoItem {
        flex-direction:column;
        box-shadow: 0 5px 20px rgba(0,120,215,.1)
    }

    .yinxiaoItem .info-section {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f0f0f0
    }

    .yinxiaoItem .player-section {
        padding: 25px
    }

    .yinxiaoItem .title {
        font-size: 22px
    }

    .yinxiaoItem .play-btn {
        width: 60px;
        height: 60px;
        margin-right: 20px
    }

    .yinxiaoItem .pause-icon,.yinxiaoItem .play-icon {
        width: 24px;
        height: 24px
    }

    .yinxiaoItem .waveform {
        height: 40px
    }
}

.header-tab {
    position: relative
}

.header-tab .submenu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    padding: 20px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    display: flex;
    gap: 20px;
    z-index: 9999
}

.header-tab .nav-item:hover .submenu-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.header-tab .tab-bar {
    width: 158px;
    text-align: center;
    height: 380px;
    overflow: auto;
    padding-right: 15px
}

.header-tab .tab-item {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    color: #888;
    transition: all .3s;
    position: relative;
    margin: 5px 0;
    border: 1px solid #c7e5a4;
    background-color: #fcfff8
}

.header-tab .tab-item.active,.header-tab .tab-item:hover {
    color: #52c41a;
    background: #f8fff0
}

.header-tab .tab-cate {
    overflow-y: auto;
    padding-right: 10px;
    height: 380px;
    width: calc(100% - 148px)
}

.header-tab .content-area {
    display: none;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.header-tab .content-area.active {
    display: block;
    animation: fadeIn .3s ease
}

.header-tab .category-group {
    break-inside: avoid
}

.header-tab .category-title {
    color: #52c41a;
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 8px;
    border-left: 3px solid;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header-tab .item-list {
    list-style: none;
    overflow: auto
}

.header-tab .item {
    font-size: 13px;
    padding: 6px 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s;
    float: left;
    text-align: center;
    color: #52c41a;
    background: #f8fff0;
    margin-right: 10px;
    box-shadow: 3px 3px 1px #cfcfcf
}

.header-tab .item:hover {
    background: #f0f9eb;
    transform: translateX(4px)
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.vip-prompt {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: linear-gradient(135deg,#ff9a9e 0,#fad0c4 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform .3s ease;
    animation: pulse 2s infinite,shake 3s infinite;
    max-width: 90%
}

.vip-icon {
    font-size: 24px;
    margin-right: 10px;
    color: gold;
    text-shadow: 0 0 5px rgba(255,215,0,.7)
}

.vip-text {
    font-weight: 700;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,.2)
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,154,158,.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255,154,158,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,154,158,0)
    }
}

@keyframes shake {
    0%,100%,20%,40%,60%,80% {
        transform: translateX(0)
    }

    25%,45%,5%,65%,85% {
        transform: translateX(-4px)
    }

    10%,30%,50%,70%,90% {
        transform: translateX(4px)
    }
}

.vip-prompt:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg,#fa709a 0,#fee140 100%);
    animation: none
}

@media (max-width: 768px) {
    .vip-prompt {
        padding:10px 15px;
        left: 15px;
        bottom: 15px
    }

    .vip-text {
        font-size: 14px
    }
}
.style-beijing {
    background-color: #009688;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 400px;
}
