/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 加载动画 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 顶部导航栏 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 28px;
    color: #ff6b6b;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.search-btn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background-color: #4ecdc4;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background-color: #45b7aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

/* 分类导航 */
.category-nav {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.categories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
}

.category-btn {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.category-btn.active {
    background-color: #ff6b6b;
    color: #fff;
}

/* 横幅区域 */
.banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 30px;
}

.banner-content {
    text-align: center;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

/* 游戏展示区 */
.games-section {
    padding: 30px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.sort-options select {
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-options select:focus {
    outline: none;
    border-color: #ff6b6b;
}

/* 游戏网格 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-height: 80vh; /* 设置最大高度为视口高度的80% */
    overflow-y: auto; /* 垂直方向溢出时显示滚动条 */
    padding-right: 10px; /* 为滚动条预留空间 */
}

/* 为滚动条添加样式 */
.games-grid::-webkit-scrollbar {
    width: 8px;
}

.games-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 游戏卡片 */
.game-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ff6b6b;
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.quick-play-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #ff6b6b;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.game-card:hover .quick-play-btn {
    opacity: 1;
    transform: translateY(0);
}

.quick-play-btn:hover {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.game-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.tag.primary {
    background-color: #ff6b6b;
    color: #fff;
}

.game-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.play-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #999;
}

.play-btn {
    background-color: #4ecdc4;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.play-btn:hover {
    background-color: #45b7aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

/* 分页控件 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.pagination-btn:hover:not(.disabled) {
    background-color: #f0f0f0;
    border-color: #ff6b6b;
}

.pagination-btn.active {
    background-color: #ff6b6b;
    color: #fff;
    border-color: #ff6b6b;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 14px;
    color: #666;
    margin: 0 15px;
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

/* 淡入动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 模态框样式补全 */
.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close:hover {
    color: #ff6b6b;
}

.modal-body {
    padding: 30px;
}

.modal-game-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.modal-game-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.modal-game-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.modal-game-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.info-item i {
    color: #ff6b6b;
    font-size: 18px;
}

.modal-play-btn {
    background-color: #4ecdc4;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.modal-play-btn:hover {
    background-color: #45b7aa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-info .logo i {
    color: #4ecdc4;
}

.footer-info .logo h3 {
    font-size: 24px;
    margin: 0;
    color: #fff;
}

.footer-info p {
    margin-top: 15px;
    color: #ccc;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.footer-contact i {
    color: #4ecdc4;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
}

/* 响应式设计补全 */
@media (max-width: 768px) {
    /* 导航栏响应式 */
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .search-box {
        order: 3;
        margin: 0;
        max-width: none;
        width: 100%;
    }
    
    /* 横幅响应式 */
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-stats {
        gap: 20px;
    }
    
    /* 游戏网格响应式 */
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    /* 区块头部响应式 */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* 页脚响应式 */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    /* 模态框响应式 */
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-game-title {
        font-size: 24px;
    }
    
    /* 支持按钮二维码响应式 */
    .support-qrcode {
        bottom: 45px;
        width: 280px;
        padding: 15px;
    }
    
    .qrcode-img {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    /* 标志响应式 */
    .logo h1 {
        font-size: 20px;
    }
    
    /* 横幅响应式 */
    .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    /* 游戏网格响应式 */
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    /* 游戏操作响应式 */
    .game-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .play-btn {
        justify-content: center;
    }
    
    /* 分页控件响应式 */
    .pagination {
        flex-wrap: wrap;
    }
    
    /* 支持按钮二维码响应式 */
    .support-qrcode {
        bottom: 40px;
        width: 250px;
        padding: 12px;
    }
    
    .qrcode-img {
        width: 100px;
        height: 100px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: rotate(0deg);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }
.game-card:nth-child(7) { animation-delay: 0.7s; }
.game-card:nth-child(8) { animation-delay: 0.8s; }
.game-card:nth-child(9) { animation-delay: 0.9s; }
.game-card:nth-child(10) { animation-delay: 1s; }
.game-card:nth-child(11) { animation-delay: 1.1s; }
.game-card:nth-child(12) { animation-delay: 1.2s; }
/* 添加更多游戏卡片的动画延迟 */
.game-card:nth-child(n+13) {
    animation-delay: 1.3s;
}

/* 用户操作按钮样式 */
.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #fff;
}

.login-btn {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.login-btn:hover {
    background-color: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.register-btn {
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.register-btn:hover {
    background-color: #4ecdc4;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

/* 认证模态框样式 */
.auth-modal {
    max-width: 450px;
    width: 90%;
}

.auth-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
}

.forgot-password {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #ff5252;
    text-decoration: underline;
}

.auth-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-submit {
    background-color: #ff6b6b;
    color: #fff;
}

.login-submit:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.register-submit {
    background-color: #4ecdc4;
    color: #fff;
}

.register-submit:hover {
    background-color: #45b7aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.auth-switch {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.auth-switch a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-switch a:hover {
    color: #ff5252;
    text-decoration: underline;
}

.agree-terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.agree-terms input {
    margin-top: 3px;
}

.agree-terms a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.agree-terms a:hover {
    color: #ff5252;
    text-decoration: underline;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 支持按钮样式 */
.support-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.support-button {
    display: inline-block;
    background-color: #ff4757;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    position: relative; /* 为二维码弹窗提供定位上下文 */
}

.support-button:hover {
    background-color: #ff3742;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.support-text {
    display: inline-block;
    vertical-align: middle;
}

/* 支持按钮二维码弹窗样式 */
.support-qrcode {
    display: none;
    position: absolute;
    bottom: 50px; /* 位于按钮上方 */
    right: 0;
    width: 380px; /* 增大弹窗宽度 */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px; /* 增大内边距 */
    z-index: 1000;
    text-align: center;
}

.support-qrcode:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -8px;
    bottom: -16px;
    width: 0;
    height: 0;
    border-width: 8px 8px 8px 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.support-button:hover .support-qrcode {
    display: block;
    animation: fadeIn 0.3s ease;
}

.support-qrcode h4 {
    font-size: 22px; /* 增大标题文字 */
    font-weight: bold;
    margin: 0 0 12px 0;
    color: #333;
}

.support-message {
    font-size: 20px; /* 增大说明文字 */
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
    text-align: center;
}

.qrcode-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.qrcode-item {
    text-align: center;
}

.qrcode-img {
    width: 160px; /* 增大二维码图片 */
    height: 160px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
}

.qrcode-item p {
    font-size: 18px; /* 增大二维码下方文字 */
    margin: 0;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .support-button-container {
        bottom: 15px;
        right: 15px;
    }
    
    .support-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .support-qrcode {
        bottom: 45px;
        width: 300px;
        padding: 20px;
    }
    
    .support-qrcode h4 {
        font-size: 20px;
    }
    
    .support-message {
        font-size: 18px;
    }
    
    .qrcode-img {
        width: 130px;
        height: 130px;
    }
    
    .qrcode-item p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .support-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .support-qrcode {
        bottom: 40px;
        width: 260px;
        padding: 15px;
    }
    
    .support-qrcode h4 {
        font-size: 18px;
    }
    
    .support-message {
        font-size: 16px;
    }
    
    .qrcode-img {
        width: 110px;
        height: 110px;
    }
    
    .qrcode-item p {
        font-size: 14px;
    }
}