@charset "UTF-8";
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
li { list-style: none; }
a, button, input { 
    -webkit-tap-highlight-color: transparent; 
    text-decoration: none; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.28rem;
    color: #333;
    background: #fff;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.clearfix { zoom: 1; }

.dsNone { display: none; }

.textAc { text-align: center; }
.textAr { text-align: right; }
.textAl { text-align: left; }

.fl { float: left; }
.fr { float: right; }

.ov { overflow: hidden; }

.dsinbl { display: inline-block; }

.v_a { vertical-align: middle; }

.fw_b { font-weight: bold; }

.p_re { position: relative; }
.p_ab { position: absolute; }

.pd20 { padding: 0.2rem; }
.p_rl20 { padding: 0 0.2rem; }
.pdrl24 { padding: 0 0.24rem; }

.mb_30 { margin-bottom: 0.3rem; }

.section-divider {
    height: 0.16rem;
    background: #f5f5f5;
    border-bottom: 1px solid #eaeaea;
    box-shadow: inset 0 0.3rem 0.2rem -0.3rem rgba(0, 0, 0, 0.1);
    margin: 0.3rem 0;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0.88rem; 
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    padding: 0 0.24rem;
    overflow: hidden; 
    transition: height 0.3s ease; 
}

.header.expanded {
    height: 1.8rem; 
}

.header__logo img {
    height: 0.56rem;
}

.header__search-btn {
    font-size: 0.28rem;
    color: #007AFF;
    font-weight: 500;
    height: 0.56rem;
    padding: 0 0.2rem;
    border-radius: 0.28rem;
    border: 1px solid #007AFF;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.header__search-btn:hover {
    background: #007AFF;
    color: #fff;
}

.header__search-btn:active {
    transform: scale(0.96);
}

.floating-search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.floating-search-modal.active {
    display: block;
    pointer-events: auto;
}

.floating-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-search-modal.active .floating-search-overlay {
    opacity: 1;
}

.floating-search-content {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 500px;
    background: #fff;
    border-radius: 0.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search__form {
    display: flex;
    align-items: center;
    position: relative;
    background: #f8f8f8;
    border-radius: 0.5rem;
    margin: 0.3rem;
    padding-right: 0.8rem; 
}

.search__input {
    flex: 1;
    height: 0.6rem;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 0.2rem;
    font-size: 0.28rem;
    color: #333;
    min-width: 0; 
}

.search__input::placeholder {
    color: #aaa;
}

.search__btn {
    width: 0.4rem;
    height: 0.4rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-0.8l-0.3-0.3c0.9-1 1.4-2.3 1.4-3.7 0-3.3-2.7-6-6-6s-6 2.7-6 6 2.7 6 6 6c1.4 0 2.7-0.5 3.7-1.4l0.3 0.3v0.8l5 5 1.5-1.5-5-5z' fill='%23666'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.floating-search-close {
    position: absolute;
    top: 50%;
    right: 0.2rem;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: none;
    border: none;
    font-size: 0.5rem;
    color: #999;
    cursor: pointer;
    z-index: 10;
    line-height: 0.5rem;
    text-align: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.floating-search-close:hover,
.floating-search-close:active {
    color: #333;
    background: #e0e0e0;
}

.navbar {
    width: 100%;
    height: 0.7rem;
    line-height: 0.7rem; 
    font-size: 0.28rem;
    position: relative;
    background: #11ad11;
    display: flex;
    align-items: center;
}

.navbar__list {
    display: flex;
    flex: 1; 
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none; 
}

.navbar__list li {
    flex: 1;
    text-align: center;
    height: 100%;
}

.navbar__list li a {
    display: block;
    height: 100%;
    color: #fff;
    text-decoration: none; 
}

.navbar__list li.active a {
    background: #16c616;
}

.game-section__header {
    display: flex;
    border-bottom: 2px solid #eaeaea;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0.24rem;  
    min-height: 0.8rem;
    margin-bottom: 0.2rem;
}

.game-section__title {
    font-size: 0.32rem;
    font-weight: normal;
    color: #333;
    margin: 0;
    line-height: 1.2;
}
.game-section__more-link {
    color: #fff;   
    font-size: 0.24rem;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    padding: 0.05rem 0.2rem;    
    background-color: #333;     
    border-radius: 0.1rem;     
    transition: background-color 0.3s ease; 
}

.game-section,
.game-categories {
    padding: 0 0.24rem;
}
.game-card {
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid #f6f6f6;
    text-decoration: none;
}
.game-card__thumbnail {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    margin-right: 0.3rem;  
    border-radius: 0.3rem;
    object-fit: cover;
    overflow: hidden;
    flex-shrink: 0;
}
.game-card__content {
    flex: 1;
    min-width: 0;
}
.game-card__title {
    font-size: 0.3rem;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
    max-height: 1.12rem;    
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
}
.game-card__details {
    font-size: 0.24rem;
    color: #999;
    margin-top: 0.08rem;
}
.game-card__details .game-card__category {
    margin-right: 0.1rem;
}

.game-card__details .game-card__size:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 0.2rem;
    background: #090a09;
    margin: 0 0.22rem;  
}

.game-card__update-time {
    font-size: 0.24rem;
    color: #fa0000;
    flex: none;
    white-space: nowrap;
    padding: 0.08rem 0.16rem;
    line-height: 1;
    border: 1px solid #fa0000;  
    border-radius: 0.08rem;  
}

.game-categories__title {
    font-size: 0.32rem;
    color: #333;
    padding: 0.2rem 0 0.15rem;    
    line-height: 1.2;
    font-weight: normal; 
}

.game-categories__title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;  
    margin-top: 0.1rem;  
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;            
    margin: 0.2rem 0 0.3rem;  
}

.category-tag {
    flex: 0 1 calc((100% - 3 * 0.2rem) / 4); 
    min-width: 1.4rem;                      
    max-width: 100%;                       
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: 0.24rem;
    background-color: #e3e3e3;
    color: #686b6a;
    text-align: center;
    text-decoration: none;
    border-radius: 0.08rem;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.links {
    padding: 0.24rem;
    border-radius: 0.1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.links__title {
    font-size: 0.32rem;
    color: #333;
    line-height: 1.2;
    font-weight: normal;
}

.links__title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin-top: 0.1rem;
}

.links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    margin: 0.2rem 0 0.3rem;
}

.links__item {
    padding: 0.1rem 0.2rem;
    font-size: 0.26rem;
    color: #555;
    background-color: #f0f0f0;
    text-decoration: none;
    border-radius: 0.1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer {
    text-align: center;
    background-color: #080808;
    color: #c5c5c5;
    font-size: 0.24rem;
    line-height: 1.6;
    padding: 0.46rem 0;
}

.footer__content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.24rem;
}

.footer a {
    color: #c5c5c5;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.category-navigation {
    padding: 0.2rem;
}

.category-navigation__title {
    font-size: 0.28rem;
    font-weight: 600;
    color: #333;
    padding-bottom: 0.15rem;
}

.category-navigation__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 0.2rem; 
}

.category-navigation__item {
    margin: 0;
}

.category-navigation__item a {
    display: block;
    padding: 0.12rem 0.24rem;  
    font-size: 0.24rem;   
    color: #555;
    background-color: #f0f0f0;
    border-radius: 0.12rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.category-navigation__item--active a {
    background-color: #0070f3;
    color: #fff;
    font-weight: bold;
    border-color: #0070f3;
}

.content {
    padding: 0.24rem;
}

.tab-nav {
    display: flex;
    margin: 0.1rem 0;
}

.tab-nav__item {
    flex: 1;
    font-size: 0.28rem;
    color: #555;
    background: #f0f0f0;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.5;
    border-radius: 0.1rem 0.1rem 0 0;
    transition: background 0.3s ease;
}

.tab-nav__item--active {
    background: #007acc;
    color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel--active {
    display: block;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.game-item {
    border: 1px solid #eee;
    border-radius: 0.1rem;
    overflow: hidden;
}

.game-link {
    display: flex;
    align-items: center;  
    padding: 0.2rem;
    text-decoration: none;
    color: inherit;
    gap: 0.2rem; 
}

.game-thumb {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0.1rem;
    flex-shrink: 0;    
}

.game-info {
    display: flex;
    flex-direction: column;
    justify-content: center;  
    flex: 1;          
    min-width: 0;        
    gap: 0.06rem;           
}

.game-title {
    font-size: 0.28rem;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-brief {
    font-size: 0.24rem;
    color: #777;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-brief i {
    margin: 0 0.1rem;
    color: #ccc;
}

.game-date {
    font-size: 0.22rem;
    color: #999;
    margin: 0;
}

.game-btn {
    flex-shrink: 0;        
    padding: 0.1rem 0.3rem;
    background: #007acc;
    color: #fff;
    border-radius: 0.1rem;
    font-size: 0.26rem;
    font-weight: normal;
}

.pagination {
    text-align: center;
    margin: 0.2rem 0;
    font-size: 0.26rem;
    white-space: nowrap;   
    overflow-x: auto;  
    padding: 0.1rem 0;
}

.pagination a,
.pagination select,
.pagination span {
    display: inline-flex;  
    align-items: center;
    justify-content: center;
    white-space: nowrap;      
    padding: 0.1rem 0.3rem;
    margin: 0 0.1rem;
    border: 1px solid #ddd;
    border-radius: 0.05rem;
    text-decoration: none;
    color: #333;
    min-width: 1em;        
    background: #fff;
}

.pagination a:hover,
.pagination select:hover {
    background: #f0f0f0;
}

.pagination .current {
    background: #007acc;
    color: #fff;
    border-color: #007acc;
    font-weight: bold;
}

.pagination a:not(.current) {
    min-width: 0.8rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.24rem;
    color: #666;
    padding: 0.2rem 0.1rem;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.breadcrumb i,
.breadcrumb-separator {
    margin: 0 0.1rem;
    color: #ccc;
}
.breadcrumb-item {
    color: #333;
    text-decoration: none;
}
.breadcrumb-item:hover {
    text-decoration: underline;
}
.breadcrumb-current {
    font-weight: bold;
    color: #000;
}

.game-header-wrapper {
    width: 100%;
}

.game-header {
    display: flex;
    padding: 0.2rem;
    background: #fff;
    align-items: flex-start;
    gap: 0.2rem;
}

.game-header__thumb {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 0.2rem;
    overflow: hidden;
}

.game-header__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-header__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.game-header__title {
    font-size: 0.44rem;
    font-weight: bold;
    color: #333;
    line-height: 0.44rem;
    margin: 0 0 0.1rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.game-specs {
    font-size: 0.24rem;
    color: #999;
    line-height: 0.4rem;
}

.game-specs__row {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.1rem;
}

.game-specs__item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 2.3rem;
    min-width: 2.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.1rem;
    background: #f8f8f8;
    border-radius: 0.05rem;
    height: 0.4rem;
}

.game-specs__item dt {
    color: #666;
    font-weight: normal;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-specs__item dd {
    margin: 0;
    margin-left: 0.05em;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.game-specs__item dd b,
.game-specs__item dd a {
    font-weight: normal;
    color: #333;
}

.game-specs__item dd a {
    color: #ff7e38;
}

.game-specs__item time {
    color: #666;
}

.btn--download {
    display: block;
    width: calc(100% - 0.4rem);
    max-width: 100%;
    margin: 0.2rem auto;
    background: #ff7e38;
    color: #fff;
    text-align: center;
    font-size: 0.3rem;
    font-weight: bold;
    line-height: 0.6rem;
    border-radius: 0.6rem;
    text-decoration: none;
}

.btn--download:hover {
    background: #e67030;
}

.tab-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
	gap: 0.1rem;
    border-bottom: 1px solid #ddd;
}
.tab-nav__item {
    margin: 0;
}
.tab-nav__item a {
    display: block;
    padding: 0.2rem 0.4rem;
    text-decoration: none;
    color: #666;
    font-size: 0.28rem;
}
.tab-nav__item.active a,
.tab-nav__item a:hover {
    color: #007acc;
    border-bottom: 2px solid #007acc;
}

.game-gallery {
    width: 100%;
    margin: 0.2rem auto;
    border-radius: 0.15rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.game-gallery .swiper-slide img {
    border-radius: 0.1rem;
    object-fit: cover; 
}

.swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    opacity: 0.4;
    background: #999;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff7e38; 
}

.content-body {
    line-height: 1.7;
    font-size: 0.28rem; 
    color: #333;
}

.content-section {
    padding: 0.3rem 0.25rem;
    background-color: #fff;
    border-radius: 0.1rem; 
    border: 1px solid #eee;
}

.section-title {
    font-size: 0.32rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0.1rem 0 0.1rem;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid #ff7e38;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-wrap: wrap;
}

.section-title time {
    font-size: 0.28rem;
    color: #666;
    font-weight: normal;
    background-color: #f5f5f5;
    padding: 0.05rem 0.2rem;
    border-radius: 0.08rem;
}

.section-content {
    font-size: 0.28rem;
    color: #333;
    line-height: 1.7;
}

.content-section-summary p {
    color: #fa6161;
}

.content-section-changelog p {
    color: #0027ff;
}

.content-section-history p {
	color: #9e9e9e
}

.section-content p,
.section-content ul,
.section-content ol,
.section-content table,
.section-content pre {
    margin: 0.3rem 0;
}

.section-content ul,
.section-content ol {
    padding-left: 0.4rem;
}

.section-content li {
    line-height: 1.6;
}

.section-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.26rem;
}

.section-content th,
.section-content td {
    border: 1px solid #ddd;
    padding: 0.15rem 0.2rem;
    text-align: left;
}

.section-content img {
    display: block;
    margin: 0.3rem auto;
    max-width: 90%;
    height: auto;
    border-radius: 0.08rem;
}

.section-content pre {
    background-color: #f8f8f8;
    padding: 0.3rem;
    border-radius: 0.08rem;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.26rem;
    color: #333;
    border: 1px solid #eee;
}

.no-data {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 0.6rem 0;
    margin: 0;
    font-size: 0.28rem;
}

.section-header {
    display: flex;
    align-items: center;
    padding: 0 0.24rem;
    margin-bottom: 0.2rem;
}

.section-header.pdrl24 {
    padding: 0 0.24rem;
}

.section-header-title {
    font-size: 0.32rem;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.5;
}

.card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.24rem;
    padding: 0 0.24rem;
    list-style: none;
    margin: 0;
}

.card-list--small {
    justify-content: space-between;
}

.card-item {
    flex: 1 1 calc(50% - 0.12rem); 
    max-width: calc(50% - 0.12rem);
    background: #fff;
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 0.04rem 0.1rem rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card-item:hover {
    transform: translateY(-0.04rem);
}

.card-link {
    display: block;
    text-decoration: none;
}

.card-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.1rem 0.1rem 0 0;
    background-color: #f8f8f8;
}
.card-title {
    font-size: 0.28rem;
    color: #333;
    text-align: center;
    padding: 0.16rem 0.12rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.version-list {
    list-style: none;
    margin: 0;
    padding: 0 0.24rem 0.2rem;
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0.24rem;
    background: #f8f8f8;
    border-radius: 0.1rem;
    margin-bottom: 0.16rem;
    font-size: 0.28rem;
    color: #333;
}

.version-item:last-child {
    margin-bottom: 0;
}

.version-name a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.version-name a:hover {
    color: #ff7e38;
}

.rank-list {
    list-style: none;
    margin: 0;
    padding: 0 0.24rem;
}

.rank-item {
    padding: 0.2rem 0;
    border-bottom: 1px solid #eee;
}

.rank-item:first-child {
    padding-top: 0;
}

.rank-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rank-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.rank-link:hover .rank-title {
    color: #ff7e38;
}

.rank-text {
    flex: 1;
    padding-left: 0.2rem;
    min-width: 0; 
}

.rank-title {
    font-size: 0.3rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-meta {
    font-size: 0.24rem;
    color: #999;
    margin-top: 0.08rem;
}

.rank-meta i {
    margin: 0 0.1rem;
    font-style: normal;
}

.rank-item img {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0.08rem;
    object-fit: cover;
}

.btn {
    display: inline-block;
    font-size: 0.28rem;
    text-align: center;
    line-height: 1.5;
    border-radius: 0.08rem;
    white-space: nowrap;
    min-width: 1rem;
    padding: 0 0.2rem;
    transition: all 0.3s ease;
}

.btn--outline {
    border: 1px solid #ff7e38;
    color: #ff7e38;
    background: transparent;
}

.btn--outline:hover {
    background: #fff3ed;
    border-color: #ff6a1f;
    color: #ff6a1f;
}

.btn--mini {
    font-size: 0.24rem;
    padding: 0 0.16rem;
    height: 0.48rem;
    line-height: 0.48rem;
    background: #ff7e38;
    color: #fff;
    border: none;
}

.btn--mini:hover {
    background: #ff6a1f;
}

.goTop {
    display: none;
    position: fixed;
    right: 0.24rem;
    bottom: 1.2rem; 
    z-index: 999;
}

.goTop a {
    display: block;
    width: 0.8rem;    
    height: 0.8rem;
    background: #007AFF;  
    border-radius: 50%;  
    box-shadow: 0 0.04rem 0.1rem rgba(0, 0, 0, 0.2);
    position: relative;
    transition: background 0.2s ease;
}

.goTop a::before {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z' fill='%23fff'/%3E%3C/svg%3E") no-repeat center;
    background-size: 0.4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.collenText h1 {
    margin: 0.2rem auto;
    max-width: 90%;
    text-align: center;
}

.tag-list__items {
    border-top: 1px solid #e9e9e9;
    padding: 0 0.24rem;
    list-style: none;
    margin: 0;
}

.tag-list__item {
    border-bottom: 1px solid #f6f6f6;
    position: relative;
    padding: 16px 0; 
}

.tag-list__link {
    display: block;
    padding-right: 0.2rem;
    padding-left: 0.2rem; 
    text-decoration: none;
    color: inherit;
    overflow: hidden; 
}

.tag-list__thumb {
    float: left;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.46rem;
    border-radius: 0.2rem;
    object-fit: cover;
}

.tag-list__title {
    font-size: 0.3rem;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-list__meta {
    font-size: 0.24rem;
    color: #999;
    margin: 0 0 2px;
    line-height: 1.4;
}

.tag-list__separator {
    margin: 0 0.1rem;
}

.tag-list__date {
    font-size: 0.24rem;
    color: #666;
    margin: 0 0 6px;
    line-height: 1.4;
}

.tag-list__btn  {
    display: block;
    width: 1.2rem;
    height: 0.56rem;
    line-height: 0.56rem;
    text-align: center;
    font-size: 0.28rem;
    color: #11ad11;
    border: 1px solid #11ad11;
    border-radius: 0.08rem;
    position: absolute;
    right: 0.24rem;
    top: calc(50% + 8px); 
    transform: translateY(-50%); 
    font-weight: normal;
    background: transparent;
    text-decoration: none;
}

.content-tags {
    margin: 0.3rem 0; 
    font-size: 0.28rem; 
}

.content-tags__header {
    padding: 0 0.24rem;
}

.content-tags__title {
    font-size: 0.32rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 0.2rem;
    line-height: 1.4;
}

.content-tags__list-wrapper {
    padding: 0 0.24rem;
    overflow: hidden; 
}

.content-tags__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; 
    gap: 0.2rem; 
}

.content-tags__item {
    margin: 0;
}

.tag-link {
    display: inline-block;
    padding: 0.12rem 0.24rem;
    background-color: #f0f8ff;
    color: #0056b3;
    font-size: 0.26rem;
    line-height: 1;
    border-radius: 0.08rem;
    text-decoration: none;
    border: 1px solid #d0e7ff;
    transition: all 0.2s ease;
}

.tag-link:hover {
    background-color: #e0f0ff;
    border-color: #a0d0ff;
    transform: scale(1.05);
}

.tag-link:active {
    opacity: 0.8;
}

.search-no-results {
    text-align: center;
    padding: 1.5rem 0.5rem;
    background: #f9f9f9;
}

.no-results-title {
    font-size: 0.32rem;
    font-weight: 500;
    color: #666;
}

.no-results-title span {
    color: #007bff;
    font-weight: 600;
}

.search-section {
    margin: 0.2rem 0;
}

.search-section__title {
    font-size: 0.34rem;
    font-weight: 600;
    color: #111;
    padding: 0 0.24rem;
    margin-bottom: 0.3rem;
}

.search-more-link {
    text-align: center;
    padding: 0.4rem 0;
    background: #f9f9f9;
}

.more-btn {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    font-size: 0.28rem;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 0.08rem;
    background: white;
}

.more-btn:hover {
    background: #f0f8ff;
}

.more-btn span {
    font-weight: 600;
}