body {
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;
    color: #333;
    font-family: 'Arial', sans-serif;
}

a {
    color: #93278F;
    text-decoration: none;
}

a:hover {
    opacity: 0.85;
}

.duanshipinchuhai_4 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.header-box-logo img {
    height: 45px;
}

.header-box-nav .nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item a {
    padding: 10px 12px;
    color: #93278F;
    font-size: 16px;
    font-weight: 500;
}

.nav-item a:hover {
    border-radius: 16px;
    background: #93278F;
    color: #fff;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(147, 39, 143, 0.1);
}

.section-box-1 {
    margin: 20px 0 40px;
}

.section-box-1-content-text-dowload-countdown,
.section-box-3-content-text-download-Countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-box-1-content-text-dowload-countdown span,
.section-box-3-content-text-download-Countdown span {
    font-weight: 600;
}

.section-box-1-content,
.section-box-3-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
}

.section-box-1-content-img img,
.section-box-3-content-img img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(147, 39, 143, 0.15);
}

.section-box-1-content-text,
.section-box-3-content-text {
    flex: 1;
    min-width: 280px;
}

.section-box-1-content-text-title h1,
.section-box-3-content-text-title h2 {
    color: #93278F;
    font-size: 26px;
    margin-bottom: 16px;
    margin-top: 0px;
}

.section-box-1-content-text-title p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.section-box-3 {
    margin: 80px 0 60px;
}

.section-box-3-content-text-download-button h2,
.section-box-1-content-text-dowload-button h2 {
    font-size: 18px !important;
    color: #000 !important;
    font-weight: 600;
}

.section-box-1-content-text-tags .tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: #93278F;
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    margin-right: 10px;
    box-shadow: 0 2px 6px rgba(147, 39, 143, 0.2);
}

.countdown-time {
    font-size: 20px;
    font-weight: bold;
    color: #93278F;
    background: #f8eefb;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.animated-arrow {
    font-size: 28px;
    color: #93278F;
    animation: arrowMove 1.5s infinite ease-in-out;
    display: inline-block;
    margin-right: 8px;
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateX(8px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.6;
    }
}

.section-box-3 h2 {
    font-size: 26px;
    color: #93278F;
    margin-bottom: 20px;
}

.section-box-3-content-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-box-3-content-btn-group .btn {
    display: inline-block;
    background-color: #93278F;
    color: #fff;
    padding: 12px 45px;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(147, 39, 143, 0.2);
    transition: 0.3s;
}

.section-box-3-content-btn-group .btn:hover {
    background-color: #7c1e79;
}

.footer-box {
    background-color: #d4d4d436;
    margin-top: 60px;
    padding: 20px 20px;
    margin: 30px 0;
    border-radius: 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

@media (min-width: 1024px) {
    .footer-content-list {
        flex: 1 1 100px;
    }
}

.footer-content-list h3 {
    font-size: 18px;
    color: #93278F;
    margin-bottom: 14px;
}

.footer-content-list p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.footer-content-list-sign {
    display: flex;
    gap: 12px;
}

.footer-content-list-sign img {
    width: 130px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .header-box {
        align-items: flex-start;
    }

    .header-box-nav .nav-list {
        gap: 10px;
    }

    .section-box-1-content,
    .section-box-3-content {
        flex-direction: column;
    }

    .section-box-1-content-img img,
    .section-box-3-content-img img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
    }

    .footer-content {
        flex-direction: column;
    }
}

.section-box-2 {
    margin: 40px 0 60px !important;
}

.section-box-2-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.comment-card {
    background: rgba(147, 39, 143, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(147, 39, 143, 0.3), transparent);
    z-index: 0;
}

.comment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.comment-img {
    z-index: 1;
}

.comment-img img.custom-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 评论内容 */
.comment-text {
    text-align: center;
    z-index: 1;
}