body {
    min-height: 100vh;
    background-color: #121212;
    color: #fff;
}

.container {
    width: 1200px;
    margin: 48px auto;
}

/* 筛选区*/
.game-accounts-filter {
    display: flex;
    justify-content: space-between;
}

.game-accounts-filter-left {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 40%;
}

.game-accounts-filter-right {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 60%;
    padding-left: 16px;
}

.form-select {
    flex-basis: 0; /* 初始宽度为0 */
    flex-grow: 1; /* 平分剩余的空间 */
    background-color: #242424;
    font-size: 14px;
    color: #fff;
    border: 1px solid #212529;
    border-radius: 5px;
    padding: 16px 12px !important;
}

.form-select:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.game-accounts-tags {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

/* 标签*/
.game-accounts-tags button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    background-color: #242424;
    border: 1px solid #242424; /* 选中时的边框颜色 */
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease; /* 平滑过渡效果 */
}

/* 鼠标移入效果 - 悬停状态 */
.game-accounts-tags button:hover {
    background-color: #333333; /* 稍微变亮的颜色 */
}

/* 点击效果 - 激活状态 */
.game-accounts-tags button:active {
    background-color: #1A1A1A; /* 更深的颜色 */
}

.game-accounts-tags button.selected {
    border: 1px solid #FF7A2F; /* 选中时的边框颜色 */
    background-color: #1A1A1A; /* 选中时的背景颜色 */
}

.game-accounts-wrapper {
    margin: 48px auto;
    /* 禁用选中*/
    -webkit-user-select: none;
}

.game-accounts-list {
    margin: 0;
    padding: 0;
    list-style: none;
    min-height: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
    color: white;
}

.game-accounts-item {
    background-color: #1D1A0E;
    padding: 16px;
    border-radius: 5px;
    overflow: hidden;
}

.game-accounts-item-img {
    width: 100%;
}

.game-accounts-item-img img {
    width: 100%;
    object-fit: contain;
    /*aspect-ratio: 1 / 1;*/
}

.game-accounts-item-img p {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin: 0;
    padding: 8px;
    background-color: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.game-accounts-item-title {
    font-size: 18px;
    font-weight: 700;
    padding: 16px 0;
    line-height: 1.5;
    display: inline-block;
    word-break: break-all;
    min-height: 114px;
}

.game-accounts-item-quantity {
    font-size: 13px;
    color: #787878;
    line-height: 1.5;
}

.game-accounts-item-price {
    display: flex;
    justify-content: space-between;
    font-size: 28px;
    font-weight: 700;
    padding-top: 16px;
}

/*购物车添加按钮*/
.game-accounts-item-price-add {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    background-color: #FF7A2F;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* 平滑过渡效果 */
}

/* 鼠标移入效果 - 悬停状态 */
.game-accounts-item-price-add:hover {
    background-color: #E66C29; /* 加深10%后的颜色 */
}

/* 点击效果 - 激活状态 */
.game-accounts-item-price-add:active {
    background-color: #CC5D24; /* 进一步加深后的颜色 */
}

.load-more {
    margin: 0 auto;
    text-align: center;
}

.load-more-button {
    background-color: #FF7A2F;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 48px;
    margin: 48px 0;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    line-height: normal;
    display: none;
}

.item-info-wrapper {
    position: fixed;
    top: 100px;
    /*right: 0;*/
    right: -24%;
    width: 24%;
    min-height: calc(100vh - 200px);
    background-color: #242424;
    border: 1px solid #242424;
    border-radius: 5px 0 0 5px;
    transition: all 0.5s ease;
    z-index: 99;
}

.item-content {
    padding: 16px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
}

.item-content .item-img {
    max-width: 100%;
}
.item-content .item-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
}

.item-content .item-info-left {
    display: block;
    padding-right: 12px;
}

.item-content .item-info-name {
    font-size: 20px;
    word-break: break-all;
}
.item-content .item-info-price {
    font-size: 28px;
    font-weight: 700;
    color: #FF7A2F;
    margin-top: 16px;
}
.item-content .buy-now-button {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    background-color: #FF7A2F;
    border-radius: 5px;
    padding: 12px 22px;
    flex-shrink: 0;
    cursor: pointer;
}

.customer-feedback-wrapper, .news-wrapper {
    margin: 64px auto;
}

.customer-feedback-title, .news-title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid #a2afb9;
}

.news-list {
    margin: 0;
    padding: 0;
    list-style: none;
    min-height: 3rem;
}

.news-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    padding: 4px;
    border: 1px solid #bbc6ce;
    border-radius: 8px;
    margin-bottom: 16px;
    cursor: pointer;
}

.news-item-text {
    flex-grow: 1;
    padding: 8px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.news-item-text summary {
    width: 100%;
    line-height: 1.5;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
}

.news-item-text a {
    color: #fff !important;
}

.news-item-btn {
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #FF7A2F;
    padding: 4px;
}

.customer-feedback-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-feedback-title-text {
    flex-basis: 0;
    flex-grow: 1;
}

.customer-feedback-title-button {
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.customer-feedback-title-button-left,
.customer-feedback-title-button-right {
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #242424;
    padding: 4px;
    border-radius: 5px;
    cursor: pointer;
}

.customer-feedback-title-button-right {
    transform: rotate(180deg);
}

/* 点击效果 */
.customer-feedback-title-button button:active {
    background-color: #FF7A2F;
}

.customer-feedback-title-button button:hover {
    background-color: #FF7A2F;
}

.swiper {
    width: 100%;
    height: 240px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 120px;
    height: 100%;
    object-fit: cover;
}

.customer-feedback-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
}

.customer-feedback-list-item {
    background-color: #242424;
    min-height: 2rem;
    border-radius: 10px;
    padding: 16px;
    text-align: left;
    cursor: pointer;
}

.customer-feedback-list-item-username {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.customer-feedback-list-item-location {
    font-size: 13px;
    color: #73828c;
}

.customer-feedback-list-item-star {
    margin: 16px 0;
}

.customer-feedback-list-item-text {
    font-size: 12px;
}


