body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
}

a {
    text-decoration: none;
}

.xiangqingye a {
    color: #fff;
}

.xiangqingye h2 {
    color: #ff3366;
    font-size: 24px;
}


.layout {
    background-color: #121212;
}

.layout-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px;
}

.layout h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ff3366;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
}

.header-top {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 10px 0;
}

.header-menu {
    display: flex;
    gap: 40px;
}

.header-menu-item {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.search-container {
    max-width: 600px;
    margin: 15px auto;
}

.download-popup-content .doa {
    font-size: 20px;
    font-weight: 700;
}

.new-released-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.new-released-item {
    height: auto;
    width: 100%;
    margin-bottom: 20px;
}

.new-released-item-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 8px;
}

.header {
    background-color: #1f1f1f;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.header-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.header-logo img {
    height: 32px;
    margin-right: 5px;
}

.header-menu {
    display: flex;
    gap: 20px;
}

.header-menu-item {
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
}

.header-menu-item.active {
    color: #fff;
}

.header-menu-item.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff3366;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-button {
    position: relative;
    color: #fff;
    cursor: pointer;
}

.download-popup {
    width: 280px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #2c2c2c;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-top: 8px;
}

.download-button:hover .download-popup {
    display: block;
}

.qr-container {
    margin-top: 15px;
    display: flex;
    gap: 16px;
}

.qr-item {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qr-item img {
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}

.qr-item img:hover {
    transform: scale(1.05);
}

.qr-item span {
    font-size: 14px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .download-popup {
        right: -100px;
    }

    .qr-container {
        gap: 12px;
    }

    .qr-item img {
        width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .download-popup {
        right: 5px;
    }

    .qr-item img {
        width: 80px;
    }
}

.search-container {
    width: 100%;
    margin-top: 10px;
}

.search {
    display: flex;
    align-items: center;
    background: #2c2c2c;
    border-radius: 20px;
    padding: 6px 15px;
    width: 100%;
}

.search-input {
    width: 100%;
}

.search-input input {
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
    width: 100%;
    padding: 5px;
}

.search-icon {
    margin-right: 8px;
    color: #666;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .header-menu {
        display: none;
        /* 改为使用 display 来控制显示/隐藏 */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1f1f1f;
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
        z-index: 1000;
    }

    .header-menu.open {
        display: flex;
        padding: 16px 0;
    }

    .header-menu-item {
        padding: 10px 0;
        text-align: center;
    }
}

.new-released {
    margin-top: 30px;
}

.new-released-title {
    color: #ff3366;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    padding: 2.6875rem 1.4375rem 1.8125rem;
}

.new-released-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 1.4375rem;
    justify-content: flex-start;
    gap: 1rem;
}

.new-released-item {
    height: 25.375rem;
    width: calc(25% - 0.75rem);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.new-released-item:hover {
    transform: scale(1.05);
}

.new-released-item-img img {
    border-radius: .625rem;
    height: 19.53125rem;
    overflow: hidden;
    position: relative;
    width: 14.65625rem;
}

.new-released-item-img img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.new-released-item-title {
    color: #e9e9e9;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.625rem;
    overflow: hidden;
    padding-top: .5rem;
    margin-top: .25rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.new-released-none-content {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 8.6875rem 5.6875rem;
    height: 12.6875rem;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .new-released-item {
        width: calc(33.333% - 0.75rem);
    }
}

@media screen and (max-width: 768px) {
    .new-released-item {
        width: calc(50% - 0.5rem);
        height: auto;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-released-item-img img {
        height: auto;
        aspect-ratio: 2/3;
    }
}

@media screen and (max-width: 480px) {
    .new-released-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .new-released-list {
        gap: 0.5rem;
    }

    .new-released-item-title {
        font-size: 1.1rem;
        padding-top: 0.4rem;
    }
}

.search {
    width: 100%;
    max-width: 600px;
    background: #2c2c2c;
    border-radius: 20px;
    padding: 6px 15px;
    display: flex;
    align-items: center;
}

.search-input input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    padding: 5px;
}

.footer {
    margin-top: 40px;
    background-color: #1f1f1f;
    padding: 40px 20px;
    color: #fff;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links p {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    margin: 0;
}

.footer-links a:hover {
    color: #fff;
}

.footer-download {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-download img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .footer-sections {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .footer-download {
        align-items: center;
    }
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 35px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .header-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1f1f1f;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .header-menu.open {
        padding: 16px 0;
        max-height: 300px;
        transition: max-height 0.5s ease-in;
    }
}

@media screen and (max-width: 992px) {
    .new-released-item {
        width: calc(33.333% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-released-item {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .new-released-item {
        width: 100%;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
}

.layout-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #1f1f1f;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.header-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-left {
    flex: 0 0 auto;
}

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0;
}

.header-right {
    flex: 0 0 auto;
}

@media screen and (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
        gap: 10px;
    }

    .search-container {
        order: 3;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
    }
}

.new-released {
    margin-top: 30px;
}

.new-released-title {
    color: #ff3366;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    padding: 0px;
}

.new-released-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: flex-start;
    gap: 1rem;
}

.new-released-item {
    height: 26.375rem;
    width: calc(25% - 0.75rem);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.new-released-item:hover {
    transform: scale(1.05);
}

.new-released-item-img img {
    border-radius: .625rem;
    height: 19.53125rem;
    overflow: hidden;
    position: relative;
    width: 14.65625rem;
}

.new-released-item-img img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.new-released-item-title {
    color: #e9e9e9;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.625rem;
    overflow: hidden;
    padding-top: .5rem;
    margin-top: .25rem;
    min-height: 3.25rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    word-break: break-word;
}

@media screen and (max-width: 480px) {
    .new-released-item-title {
        font-size: 1.1rem;
        padding-top: 0.4rem;
        min-height: 2.85rem;
    }
}

.new-released-none-content {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 8.6875rem 5.6875rem;
    height: 12.6875rem;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .new-released-item {
        width: calc(33.333% - 0.75rem);
    }
}

@media screen and (max-width: 768px) {
    .new-released-item {
        width: calc(50% - 0.5rem);
        height: auto;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-released-item-img img {
        height: auto;
        aspect-ratio: 2/3;
    }
}

@media screen and (max-width: 480px) {
    .new-released-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .new-released-list {
        gap: 0.5rem;
    }

    .new-released-item-title {
        font-size: 1.1rem;
        padding-top: 0.4rem;
    }
}

.search {
    width: 98%;
    max-width: 90%;
    margin: 0 auto;
    background: #2c2c2c;
    border-radius: 20px;
    padding: 6px 15px;
    display: flex;
    align-items: center;
}

.search-input input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    padding: 5px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 35px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1024px) {
    .search {
        max-width: 100%;
    }

    .search-container {
        max-width: 100%;
        margin: 0px auto;
    }
}

@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .header-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1f1f1f;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .header-menu.open {
        max-height: 300px;
        transition: max-height 0.5s ease-in;
    }
}

@media screen and (max-width: 992px) {
    .new-released-item {
        width: calc(33.333% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-released-item {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .new-released-item {
        width: 100%;
    }

    .header-top {
        width: 94%;
    }
}

.open-app {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #3d3b47;
    padding: 8px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.open-app-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.open-app-text {
    flex: 1;
    color: #fff;
    font-size: 14px;
    margin: 0 15px;
}

.open-app-button {
    background: #ff3366;
    color: #fff;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

@media screen and (max-width: 480px) {
    .open-app {
        padding: 8px 20px;
    }

    .open-app-text {
        font-size: 12px;
        margin: 0 10px;
    }

    .open-app-button {
        padding: 6px 16px;
    }
}

/* Flex 容器 */
.flex-container {
    display: flex;
    align-items: center; /* 垂直居中 */
    gap: 20px; /* 左右间距 */
}

/* 图片区域 - 占比35% */
.image-section {
    width: 35%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.05);
}

.content-section {
    width: 65%;
    padding-right: 20px;
    font-family: 'Arial', sans-serif;
}

.content-section h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 24px;
}

.content-section .dfsdf {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.app-download-neirong {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.app-download-neirong a:hover {
    background-color: #eaeaea;
}

.app-download-neirong img {
    width: 100px;
}

.app-download-neirong {
    display: flex;

}

/* 移动端优化 */
@media screen and (max-width: 768px) {
    .flex-container {
        flex-direction: column; /* 垂直排列 */
        align-items: flex-start; /* 左对齐 */
        gap: 15px; /* 调整间距 */
    }

    .image-section {
        width: 100%; /* 图片区域占满宽度 */
        margin-bottom: 15px; /* 添加底部间距 */
    }

    .content-section {
        width: 100%; /* 内容区域占满宽度 */
        padding-right: 0; /* 移除右侧内边距 */
    }

    .content-section h2 {
        font-size: 20px; /* 调整标题字体大小 */
    }

    .content-section .dfsdf {
        font-size: 14px; /* 调整段落字体大小 */
    }

    .app-download-neirong {
        align-items: center; /* 居中对齐 */
        gap: 10px; /* 调整间距 */
    }

    .app-download-neirong img {
        width: 80px; /* 调整图片大小 */
    }
}