﻿/* Modernized CSS for 8000xj.com */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f2f5;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    /* Subtle grid dot pattern */
    font-size: 14px;
    font-family: "Microsoft Yahei", tahoma, arial, Hiragino Sans GB, sans-serif;
    color: #333;
    line-height: 1.6;
}

img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff6600;
}

.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

.wrapper {
    width: 1200px;
    margin: 20px auto;
    position: relative;
    z-index: 1;
}

/* Header/Banner */
[align="center"]>img {
    display: block;
    margin: 0 auto;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Card Styling */
.taptap-top-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.taptap-top-card:nth-child(1) {
    animation-delay: 0.1s;
}

.taptap-top-card:nth-child(2) {
    animation-delay: 0.3s;
}

.taptap-top-card:nth-child(3) {
    animation-delay: 0.5s;
}

.taptap-top-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(224, 55, 48, 0.3);
    /* Reddish accent border on hover */
}

.top-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 25px;
}

.top-card-left2{margin:0 60px;}
.top-card-left2 p{text-indent: 2em}

.mobile-device .top-card-left2 {margin:0}

.top-card-left .card-middle-title {
    text-align: center;
    display: block;
    margin-bottom: 0px;
}

.left-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.left-content .card-left-image {
    flex-shrink: 0;
}

.left-info {
    flex: 1;
}

.left-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.card-left-image img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-middle-title h4 {
    font-size: 24px;
    /* Larger title */
    background: linear-gradient(to right, #e03730, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-block;
}

.card-middle-footer .t03 {
    color: #6600c0;
    font-size: 15px;
    font-weight: bold;
    display: block;
    margin-bottom: 12px;
}

.card-middle-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
    line-height: 2;
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #e03730;
    text-align: left;
}

/* Highlight labels like 【游戏介绍】 */
.card-middle-description b,
.card-middle-description strong {
    color: #333;
}

.card-middle-author {
    flex: 1;
    font-size: 13px;
    color: #888;
    margin: 0;
    background: #fff;
    border: 1px dashed #ddd;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.card-middle-author::before {
    content: '🕒';
    /* Time icon */
    font-size: 14px;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-tags .btn {
    background: #f0fdf4;
    /* Light green background */
    color: #16a34a;
    border: 1px solid #dcfce7;
    padding: 6px 16px;
    /* Slightly larger clickable area */
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: default;
}

.card-tags .btn::before {
    content: '✓';
    font-weight: 900;
}

/* Individual tag hover effect */
.card-tags .btn:hover {
    background: #16a34a;
    color: #fff;
    border-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.top-card-right {
    width: 480px;
    flex-shrink: 0;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.top-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.taptap-top-card:hover .top-card-right img {
    transform: scale(1.08);
    /* Smoother zoom */
}



/* Button Styling */
/* Button Styling */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #ff5500);
    color: #fff;
    padding: 10px 30px;
    /* Larger button */
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.6);
}

.btn-primary::after {
    /* Shine effect */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
    transition: 0.5s;
}

.card-left-info {
    margin-top: 15px;
    font-size: 12px;
    color: #888;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 140px;
    margin-left: auto;
    margin-right: auto;
}

.card-left-info p {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #eee;
    padding-bottom: 2px;
}


/* Footer Styling */
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.03);
}

.hao123-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.hao123-footer .item {
    font-size: 12px;
    color: #666;
}

.hao123-footer .item:hover {
    color: #ff6600;
}

/* Order Numbers - 3D Ribbon Style */
.top-card-order-triangle {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e03730 50%, #b01a14 50%);
    /* 3D fold effect */
    clip-path: polygon(0 0, 100% 0, 0 100%);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 12px;
    /* Match card radius */
    z-index: 1;
}

.top-card-order-text {
    position: absolute;
    top: 5px;
    left: 8px;
    color: #fff;
    font-family: 'Impact', sans-serif;
    font-size: 18px;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transform: rotate(-45deg);
    /* Angled number */
}

/* Recommendation Stars */
.t04 {
    color: #ffcc00;
    font-size: 20px;
}

.t04::before {
    content: "★★★★★";
}

/* Responsive */
@media (max-width: 1200px) {
    .wrapper {
        width: 95%;
    }

    .top-card-right {
        width: 350px;
    }
}

@media (max-width: 900px) {
    .taptap-top-card {
        flex-direction: column;
    }

    .top-card-left,
    .top-card-middle,
    .top-card-right {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .top-card-right {
        height: auto;
    }

    
}

.mobile-device .card-middle-author::before{font-size:12px;}
.mobile-device .card-middle-author{font-size:10px;}
.mobile-device .t04 {
        font-size:14px;
    }