:root {
    --primary-color: #0a58ca;
    --secondary-color: #084298;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --transition-speed: 0.3s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* 导航栏样式 */
.z47324navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.z47324navbar-brand img {
    height: 45px;
}

.z47324nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.z47324nav-link:hover {
    color: var(--primary-color) !important;
}

/* 英雄区域样式 */
.z47324hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.z47324hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.1;
}

.z47324hero-content {
    position: relative;
    z-index: 1;
}

.z47324hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.z47324hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* 英雄区域图片样式 */
.z47324hero-image-container {
    position: relative;
    height: auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 2rem;
}

.z47324hero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 平板设备响应式 */
@media (max-width: 991px) {
    .z47324hero-image-container {
        min-height: 250px;
        margin-top: 1.5rem;
    }
    
    .z47324hero-image {
        max-width: 250px;
    }
}

/* 手机设备响应式 */
@media (max-width: 767px) {
    .z47324hero-image-container {
        min-height: 200px;
        margin-top: 1rem;
        padding: 0.5rem;
    }
    
    .z47324hero-image {
        max-width: 200px;
        border-radius: 12px;
    }
}

/* 小屏手机响应式 */
@media (max-width: 575px) {
    .z47324hero-image-container {
        min-height: 180px;
        margin-top: 0.5rem;
    }
    
    .z47324hero-image {
        max-width: 180px;
        border-radius: 10px;
    }
}

/* 移除不必要的动画和效果 */
.z47324hero-image {
    transform: none;
    animation: none;
}

.z47324hero-image:hover {
    transform: none;
}

.z47324hero-image-shadow {
    display: none;
}

/* 优化图片加载 */
.z47324hero-image {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* 移除加载占位符 */
.z47324hero-image-container::before {
    display: none;
}

/* 英雄区域按钮样式 */
.z47324hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.z47324hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z47324hero-buttons .btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: #0a58ca;
    border: none;
}

.z47324hero-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: white;
}

.z47324hero-buttons .btn-primary {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    border: none;
    color: white;
}

.z47324hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #084298 0%, #0a58ca 100%);
}

.z47324hero-buttons .btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .z47324hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .z47324hero-buttons .btn {
        width: 100%;
    }
}

/* 特点卡片样式 */
.z47324feature-card {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) var(--transition-easing),
                box-shadow var(--transition-speed) var(--transition-easing);
    border: none;
    height: 100%;
    background: white;
}

.z47324feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.z47324feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(10, 88, 202, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* 按钮样式 */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
}

.download-btn:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
}

.register-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.register-btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* 下载区域样式 */
.z47324download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z47324download-header {
    max-width: 600px;
    margin: 0 auto;
}

.z47324download-header h2 {
    color: #0a58ca;
    font-weight: 700;
    margin-bottom: 1rem;
}

.z47324download-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.z47324download-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) var(--transition-easing),
                box-shadow var(--transition-speed) var(--transition-easing);
    background: #fff;
}

.z47324download-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.z47324platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.z47324ios-icon {
    background: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
    color: white;
}

.z47324android-icon {
    background: linear-gradient(135deg, #3DDC84 0%, #2BB673 100%);
    color: white;
}

.z47324download-info {
    background: rgba(10, 88, 202, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.z47324info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.z47324info-item:last-child {
    margin-bottom: 0;
}

.z47324info-item i {
    color: #0a58ca;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.z47324info-item span {
    color: #495057;
}

.z47324download-action .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.z47324download-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.z47324download-guide {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.z47324guide-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(10, 88, 202, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.z47324guide-item:hover {
    transform: translateX(5px);
    background: rgba(10, 88, 202, 0.1);
}

.z47324guide-item i {
    font-size: 2rem;
    color: #0a58ca;
    margin-right: 1.5rem;
}

.z47324guide-content h4 {
    color: #0a58ca;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.z47324guide-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* 安全保障区域样式 */
.z47324security-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z47324security-header {
    max-width: 600px;
    margin: 0 auto;
}

.z47324security-header h2 {
    color: #0a58ca;
    font-weight: 700;
    margin-bottom: 1rem;
}

.z47324security-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.z47324security-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.z47324security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.z47324security-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    color: white;
}

.z47324security-card h3 {
    color: #0a58ca;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.z47324security-features {
    background: rgba(10, 88, 202, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.z47324feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.z47324feature-item:last-child {
    margin-bottom: 0;
}

.z47324feature-item i {
    color: #0a58ca;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.z47324feature-item span {
    color: #495057;
}

/* 安全认证样式 */
.z47324security-certificates {
    margin-top: 4rem;
}

.z47324certificate-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.z47324certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.z47324certificate-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    color: white;
}

.z47324certificate-card h4 {
    color: #0a58ca;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.z47324certificate-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* 统计数据区域样式 */
.z47324stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
}

.z47324stat-item {
    text-align: center;
}

.z47324stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.z47324stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 页脚样式 */
.z47324footer {
    background: #f8f9fa;
    padding: 60px 0 30px;
    color: #495057;
}

.z47324footer-brand img {
    max-width: 100%;
    height: auto;
}

.z47324footer-title {
    color: #0a58ca;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.z47324footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z47324footer-links li {
    margin-bottom: 0.75rem;
}

.z47324footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.z47324footer-link:hover {
    color: #0a58ca;
}

.z47324footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
}

/* 移动端响应式 */
@media (max-width: 991px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-title {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-brand img {
        height: 35px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-top: 1.25rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    footer {
        padding: 25px 0 10px;
    }
    
    .footer-brand img {
        height: 30px;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.3rem;
    }
    
    .footer-bottom {
        padding-top: 0.75rem;
        font-size: 0.85rem;
    }
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .z47324hero-title {
        font-size: 3rem;
    }
    
    .z47324hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .z47324hero-title {
        font-size: 2.5rem;
    }
    
    .z47324feature-card {
        margin-bottom: 1.5rem;
    }
    
    .z47324download-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .z47324hero-title {
        font-size: 2rem;
    }
    
    .z47324hero-subtitle {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .z47324feature-card {
        margin-bottom: 1rem;
    }
    
    .z47324download-card {
        margin-bottom: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .z47324hero-title {
        font-size: 1.75rem;
    }
    
    .z47324hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .z47324feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .z47324download-card {
        padding: 1rem;
    }
}

/* APP预览样式 */
.app-preview-container {
    position: relative;
    perspective: 1000px;
    height: 500px;
}

.app-preview {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.app-screen {
    position: absolute;
    width: 280px;
    height: 580px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.app-screen:nth-child(1) {
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotateY(-15deg);
    z-index: 3;
}

.app-screen:nth-child(2) {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.app-screen:nth-child(3) {
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotateY(15deg);
    z-index: 1;
}

.app-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-preview-shadow {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
    border-radius: 50%;
    filter: blur(10px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .app-preview-container {
        height: 400px;
    }
    
    .app-screen {
        width: 200px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .app-preview-container {
        height: 300px;
    }
    
    .app-screen {
        width: 150px;
        height: 320px;
    }
}

/* 添加加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z47324hero-content,
.z47324feature-card,
.z47324download-card,
.z47324faq-item {
    animation: fadeIn 0.6s var(--transition-easing) forwards;
}

/* 优化滚动行为 */
html {
    scroll-behavior: smooth;
}

/* 优化图片加载 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 优化按钮点击效果 */
.btn {
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

/* 优化表单元素 */
input, select, textarea {
    transition: border-color var(--transition-speed) var(--transition-easing);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 88, 202, 0.25);
}

/* 基础响应式设置 */
html {
    font-size: 16px;
}

/* PC端响应式 */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .z47324hero-title {
        font-size: 3.5rem;
    }
    
    .z47324hero-subtitle {
        font-size: 1.25rem;
    }
    
    .z47324feature-card {
        padding: 2rem;
    }
    
    .z47324download-card {
        padding: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .z47324hero-title {
        font-size: 3rem;
    }
    
    .z47324hero-subtitle {
        font-size: 1.1rem;
    }
    
    .z47324feature-card {
        padding: 1.5rem;
    }
    
    .z47324download-card {
        padding: 1.5rem;
    }
}

/* 平板设备响应式 */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .z47324hero-title {
        font-size: 2.5rem;
    }
    
    .z47324hero-image-container {
        height: 400px;
        justify-content: center;
        padding-right: 0;
    }
    
    .z47324hero-image {
        transform: rotateY(-5deg);
    }
    
    .z47324feature-card {
        margin-bottom: 1.5rem;
    }
    
    .z47324download-card {
        margin-bottom: 1.5rem;
    }
    
    .footer {
        text-align: center;
    }
}

/* 手机设备响应式 */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .z47324hero-title {
        font-size: 2rem;
    }
    
    .z47324hero-subtitle {
        font-size: 1rem;
    }
    
    .z47324hero-image-container {
        height: 300px;
    }
    
    .z47324hero-image {
        max-width: 100%;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .z47324hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .z47324hero-buttons .btn {
        width: 100%;
    }
    
    .z47324feature-card {
        margin-bottom: 1rem;
    }
    
    .z47324download-card {
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

/* 小屏手机响应式 */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .z47324hero-title {
        font-size: 1.75rem;
    }
    
    .z47324hero-subtitle {
        font-size: 0.9rem;
    }
    
    .z47324hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .z47324feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .z47324download-card {
        padding: 1rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer-title {
        margin-top: 1.5rem;
    }
}

/* 优化图片响应式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 优化表格响应式 */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 优化表单响应式 */
.form-control {
    width: 100%;
}

/* 优化导航栏响应式 */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 优化卡片响应式 */
.card {
    margin-bottom: 1rem;
}

/* 优化按钮响应式 */
.btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 优化列表响应式 */
.list-group-item {
    padding: 0.75rem 1rem;
}

/* 优化模态框响应式 */
.modal-dialog {
    margin: 1rem auto;
}

@media (max-width: 575px) {
    .modal-dialog {
        margin: 0.5rem;
    }
} 

/* 下载区域手机端专用修复，避免卡片和按钮错位 */
@media (max-width: 767px) {
    .z47324download-section {
        padding: 48px 0;
    }

    .z47324download-header {
        margin-bottom: 1.5rem !important;
    }

    .z47324download-header h2 {
        font-size: 1.6rem;
    }

    .z47324download-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .z47324download-section .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 0;
    }

    .z47324download-card {
        border-radius: 12px;
        margin-bottom: 0 !important;
    }

    .z47324download-card .card-body {
        padding: 1rem !important;
    }

    .z47324download-card .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .z47324download-card .d-flex.align-items-center .ms-3 {
        margin-left: 0 !important;
    }

    .z47324platform-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .z47324download-info {
        padding: 1rem;
        margin-bottom: 1rem !important;
    }

    .z47324info-item {
        align-items: flex-start;
    }

    .z47324info-item i {
        margin-top: 0.2rem;
    }

    .z47324download-action .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

/* 列表页/内容页/首页移动端自适应修复 */
.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pagebar .pagelist li {
    display: inline-flex;
    margin: 0;
}

@media (max-width: 767px) {
    .z47324navbar {
        padding: 0.5rem 0;
    }

    .z47324navbar .navbar-collapse {
        margin-top: 0.5rem;
        max-height: 72vh;
        overflow-y: auto;
    }

    .z47324navbar .navbar-nav .nav-link {
        padding: 0.55rem 0.25rem !important;
        font-size: 0.95rem;
    }

    #article .card-body {
        padding: 0.75rem;
    }

    #article .z47324thumb-home {
        height: 96px !important;
    }

    #article h3.h5 {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .listbox .e2 li {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .listbox .e2 li h2.h5 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
        line-height: 1.35;
    }

    .listbox .e2 li p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .z47324thumb-list,
    .z47324thumb-related {
        height: 72px !important;
    }

    .z47324thumb-side {
        height: 50px !important;
    }

    .z47324thumb-cover {
        max-width: 100% !important;
        width: 100%;
        height: 170px !important;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    #article .z47324thumb-home {
        height: 88px !important;
    }

    .z47324thumb-list,
    .z47324thumb-related {
        height: 64px !important;
    }

    .z47324thumb-side {
        height: 46px !important;
    }

    .z47324thumb-cover {
        height: 150px !important;
    }

    .pagebar .pagelist {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
}


/* =============================================================================
   首页专属：Indigo + Coral（body.page-home）— 仅首页，hl-* 版式
   ============================================================================= */
body.page-home,
body.page-home.page-home--indigo {
    --hl-ink: #0f172a;
    --hl-muted: #64748b;
    --hl-brand: #4338ca;
    --hl-brand-2: #312e81;
    --hl-soft: #eef2ff;
    --hl-line: rgba(67, 56, 202, 0.14);
    --hl-accent: #fb7185;
    --hl-accent-2: #f43f5e;
    --hl-card: #ffffff;
    --hl-paper: #f8fafc;
    --hl-border: 1px solid var(--hl-line);
    --hl-r0: 12px;
    --hl-r1: 12px;
    --hl-r2: 16px;
    --hl-sh: 0 4px 20px rgba(15, 23, 42, 0.06);
    --hl-sh2: 0 8px 28px rgba(15, 23, 42, 0.09);
    overflow-x: hidden;
}

body.page-home .z47324container.container,
body.page-home .z47324row.row,
body.page-home .row {
    max-width: 100%;
}

body.page-home .hl-bento,
body.page-home .hl-mini,
body.page-home .hl-hero__panel,
body.page-home .hl-faq,
body.page-home .hl-article,
body.page-home .hl-stat,
body.page-home ol.hl-timeline {
    box-sizing: border-box;
}

body.page-home #article .hl-article.card {
    margin-bottom: 0;
}

/* 导航（首页 body.page-home + 列表/内页 body.page-sub 共用 hl-nav） */
body.page-home .hl-nav.z47324navbar,
body.page-sub .hl-nav.z47324navbar {
    background: linear-gradient(90deg, #1e1b4b 0%, #312e81 55%, #3730a3 100%) !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    padding: 0.65rem 0;
}

body.page-home .hl-nav .navbar-toggler-icon,
body.page-sub .hl-nav .navbar-toggler-icon {
    filter: invert(1) grayscale(100%);
}

body.page-home .hl-nav .z47324nav-link,
body.page-home .hl-nav .nav-link,
body.page-sub .hl-nav .z47324nav-link,
body.page-sub .hl-nav .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    border-radius: 8px;
}

body.page-home .hl-nav .z47324nav-link:hover,
body.page-home .hl-nav .nav-link:hover,
body.page-sub .hl-nav .z47324nav-link:hover,
body.page-sub .hl-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

body.page-home .hl-nav .navbar-collapse,
body.page-sub .hl-nav .navbar-collapse {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 12px;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
}

@media (min-width: 992px) {
    body.page-home .hl-nav .navbar-collapse,
    body.page-sub .hl-nav .navbar-collapse {
        background: transparent;
        margin-top: 0;
        padding: 0;
        box-shadow: none;
    }
}

/* 首屏 */
body.page-home .z47324hero-section.hl-hero {
    background: radial-gradient(1200px 600px at 10% 0%, rgba(251, 113, 133, 0.2), transparent 55%),
        linear-gradient(165deg, #1e1b4b 0%, #312e81 40%, #4338ca 100%);
    padding: clamp(3rem, 8vw, 5.5rem) 0;
    position: relative;
    overflow: hidden;
}

body.page-home .z47324hero-section.hl-hero::before {
    display: none;
}

.hl-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hl-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 1rem;
}

body.page-home .hl-hero .z47324hero-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.65rem, 4.2vw, 2.75rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hl-hero__lead.z47324hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1rem !important;
    max-width: 38rem;
}

.hl-hero__note {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 40rem;
}

.hl-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hl-hero__panel {
    width: 100%;
    max-width: min(100%, 420px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--hl-r2);
    padding: 1.2rem 1.25rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--hl-sh);
}

.hl-hero__panel-head {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.75rem;
}

.hl-hero__panel-list li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin-bottom: 0.55rem;
}

.hl-hero__panel-list li:last-child {
    margin-bottom: 0;
}

.hl-hero__panel-list i {
    color: var(--hl-accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

body.page-home .hl-hero .z47324hero-image-container {
    min-height: 0 !important;
    height: auto;
    margin-top: 0.75rem;
    padding: 0;
}

body.page-home .hl-hero__img.z47324hero-image {
    max-width: 220px;
    border-radius: var(--hl-r0);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    margin: 0;
}

.hl-hero__micro {
    max-width: 40rem;
}

/* 按钮 */
body.page-home .btn,
body.page-home .btn-lg {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
    justify-content: center;
}

body.page-home .z47324hero-buttons {
    margin-top: 0.5rem;
}

.hl-btn {
    border-radius: 12px !important;
    font-weight: 600 !important;
    padding: 0.7rem 1.25rem !important;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hl-btn--solid {
    background: #fff !important;
    color: var(--hl-brand-2) !important;
    border-color: #fff !important;
}

.hl-btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: var(--hl-sh2);
}

.hl-btn--accent {
    background: linear-gradient(135deg, var(--hl-accent), var(--hl-accent-2)) !important;
    color: #1e1b4b !important;
    border: none !important;
}

.hl-btn--accent:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 10px 28px rgba(244, 63, 94, 0.35);
}

.hl-btn--ghost {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
}

.hl-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.hl-btn--outline {
    background: transparent !important;
    color: var(--hl-brand) !important;
    border-color: var(--hl-line) !important;
}

.hl-btn--outline:hover {
    background: var(--hl-soft) !important;
    border-color: var(--hl-brand) !important;
}

/* 渠道条 */
.hl-band {
    background: var(--hl-soft);
    border-bottom: var(--hl-border);
    padding: 2.25rem 0;
}

.hl-band__title {
    color: var(--hl-ink);
    font-weight: 800;
}

.hl-band__text {
    color: var(--hl-muted);
    line-height: 1.85;
}

.hl-mini {
    background: #fff;
    border: var(--hl-border);
    border-radius: var(--hl-r2);
    padding: 1.2rem 1.25rem;
    box-shadow: var(--hl-sh);
}

.hl-mini__t {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hl-ink);
    margin-bottom: 0.5rem;
}

.hl-mini__p {
    color: var(--hl-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* 通用区块 */
.hl-section--paper {
    background: linear-gradient(180deg, #fff 0%, var(--hl-paper) 100%);
}

.hl-section--split {
    background: #fff;
    border-top: var(--hl-border);
    border-bottom: var(--hl-border);
}

.hl-section--faq {
    background: var(--hl-paper);
}

.hl-section--articles {
    background: #fff;
}

.hl-sechead__k {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hl-brand);
}

.hl-sechead__h {
    color: var(--hl-ink);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.hl-sechead__d {
    color: var(--hl-muted);
    line-height: 1.8;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.text-start .hl-sechead__d {
    margin-left: 0;
    margin-right: 0;
}

/* Bento */
.hl-bento {
    background: var(--hl-card);
    border: var(--hl-border);
    border-radius: var(--hl-r2);
    padding: 1.35rem 1.35rem 1.25rem;
    box-shadow: var(--hl-sh);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hl-bento:hover {
    transform: translateY(-2px);
    box-shadow: var(--hl-sh2);
}

.hl-bento--main {
    min-height: 100%;
}

.hl-bento__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--hl-r0);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-soft);
    color: var(--hl-brand);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hl-bento__h {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--hl-ink);
    margin-bottom: 0.65rem;
}

.hl-bento__p {
    color: var(--hl-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.hl-bento__ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--hl-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.hl-bento--side .hl-bento__h {
    font-size: 1rem;
}

/* 时间线外框 */
body.page-home ol.hl-timeline {
    border: var(--hl-border);
    border-radius: var(--hl-r2);
    background: var(--hl-soft);
    padding: 0.35rem 1.15rem 0.85rem;
    box-shadow: var(--hl-sh);
}

/* 时间线 */
.hl-timeline__item {
    display: flex;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: var(--hl-border);
}

.hl-timeline__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hl-timeline__n {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--hl-brand);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 统计 */
body.page-home .z47324stats-section.hl-stats {
    background: linear-gradient(120deg, #1e1b4b 0%, var(--hl-brand) 50%, #5b21b6 100%);
    padding: 3rem 0;
}

.hl-stats__k {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.hl-stats__note {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.65;
}

.hl-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--hl-r2);
    padding: 1rem 0.6rem;
    text-align: center;
    min-height: 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body.page-home .hl-stat .hl-stat__num {
    font-size: clamp(1.4rem, 3.5vw, 2.1rem);
    color: #fff;
}

body.page-home .hl-stat .hl-stat__lbl {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* 下载 */
body.page-home .z47324download-section.hl-download {
    background: linear-gradient(180deg, #fff, var(--hl-paper));
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

body.page-home .hl-download .z47324download-card.hl-dlcard {
    border: var(--hl-border) !important;
    border-radius: var(--hl-r2) !important;
    box-shadow: var(--hl-sh) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-home .hl-download .z47324download-card.hl-dlcard:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--hl-sh2) !important;
}

.hl-dlcard__ico {
    width: 52px;
    height: 52px;
    border-radius: var(--hl-r0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, var(--hl-brand));
}

.hl-dlcard__ico--alt {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

body.page-home .hl-download .z47324download-info {
    background: var(--hl-soft);
    border: none;
    border-radius: var(--hl-r0);
}

body.page-home .hl-download .z47324info-item i {
    color: var(--hl-brand);
}

/* 安全 */
body.page-home .z47324security-section.hl-security {
    background: #fff;
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

body.page-home .hl-security .z47324security-card.hl-seccard {
    border: var(--hl-border) !important;
    border-radius: var(--hl-r2) !important;
    box-shadow: var(--hl-sh) !important;
    padding: 1.25rem !important;
    text-align: left !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-home .hl-security .z47324security-card.hl-seccard:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--hl-sh2) !important;
}

body.page-home .hl-security .z47324security-card h3 {
    text-align: left !important;
    color: var(--hl-ink) !important;
    font-weight: 700;
    margin-bottom: 1rem !important;
}

body.page-home .hl-seccard__ico.z47324security-icon {
    margin: 0 0 1rem 0 !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 1.25rem !important;
    border-radius: var(--hl-r0) !important;
    background: linear-gradient(135deg, var(--hl-brand), var(--hl-brand-2)) !important;
}

body.page-home .hl-seccard__feat.z47324security-features {
    background: var(--hl-paper);
    border-radius: var(--hl-r0);
}

body.page-home .hl-security .z47324feature-item i {
    color: var(--hl-brand);
}

body.page-home .hl-cert.z47324certificate-card {
    border: var(--hl-border) !important;
    border-radius: var(--hl-r2) !important;
    box-shadow: var(--hl-sh) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-home .hl-cert.z47324certificate-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--hl-sh2) !important;
}

body.page-home .hl-cert__ico.z47324certificate-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 1.35rem !important;
    margin-bottom: 0 !important;
    border-radius: var(--hl-r0) !important;
    background: linear-gradient(135deg, var(--hl-accent), var(--hl-accent-2)) !important;
    color: #1e1b4b !important;
}

/* 术语 */
.hl-gloss {
    border: var(--hl-border) !important;
    border-radius: var(--hl-r2) !important;
    background: #fff;
    box-shadow: var(--hl-sh);
}

/* FAQ 网格 */
.hl-faq {
    background: #fff;
    border: var(--hl-border);
    border-left: 3px solid var(--hl-accent);
    border-radius: var(--hl-r2);
    padding: 1.1rem 1.15rem;
    box-shadow: var(--hl-sh);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hl-faq:hover {
    transform: translateY(-2px);
    box-shadow: var(--hl-sh2);
}

.hl-faq__q {
    color: var(--hl-ink);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hl-faq__a {
    color: var(--hl-muted);
    line-height: 1.65;
}

/* 文章 */
.hl-article {
    border-radius: var(--hl-r2);
    overflow: hidden;
    border: var(--hl-border) !important;
    box-shadow: var(--hl-sh);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hl-article:hover {
    transform: translateY(-2px);
    box-shadow: var(--hl-sh2) !important;
}

.hl-article__img {
    border-bottom: var(--hl-border);
}

.hl-article__link {
    color: var(--hl-ink);
}

.hl-article__link:hover {
    color: var(--hl-brand);
}

body.page-home .z47324footer-title {
    color: var(--hl-brand-2);
}

body.page-home .z47324footer-link:hover {
    color: var(--hl-brand);
}

@media (max-width: 991px) {
    body.page-home .hl-hero .z47324hero-image-container {
        height: auto !important;
        min-height: 0 !important;
    }

    body.page-home .hl-hero__img.z47324hero-image {
        transform: none;
    }

    body.page-home .hl-hero__panel {
        display: block !important;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    body.page-home .hl-hero .z47324hero-image-container.hl-hero__visual {
        justify-content: center;
    }

    body.page-home .hl-hero__img.z47324hero-image {
        max-width: min(240px, 85vw);
        margin-left: auto;
        margin-right: auto;
    }

    body.page-home .hl-section--paper.py-4,
    body.page-home .hl-section--split.py-4,
    body.page-home .hl-download.py-4,
    body.page-home .hl-security.py-4,
    body.page-home .hl-section--faq.py-4,
    body.page-home .hl-section--articles.py-4 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }
}

@media (max-width: 767px) {
    body.page-home .z47324hero-section.hl-hero {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    body.page-home .hl-hero__lead.z47324hero-subtitle,
    body.page-home .hl-hero__note,
    body.page-home .hl-hero__micro {
        max-width: 100%;
    }

    body.page-home .hl-hero .z47324hero-title {
        font-size: clamp(1.4rem, 5.8vw, 1.85rem);
    }

    body.page-home .hl-hero__badge {
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }

    body.page-home .hl-hero .z47324hero-buttons.hero-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    body.page-home .hl-hero .z47324hero-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
    }

    body.page-home .hl-band {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    body.page-home .hl-sechead__h {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    body.page-home .hl-sechead.mx-auto {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100%;
    }

    body.page-home ol.hl-timeline {
        padding: 0.35rem 0.85rem 0.85rem;
    }

    body.page-home .hl-timeline__item {
        align-items: flex-start;
        gap: 0.75rem;
    }

    body.page-home .hl-timeline__n {
        margin-top: 0.15rem;
    }

    body.page-home .z47324stats-section.hl-stats {
        padding-left: 0;
        padding-right: 0;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    body.page-home .hl-stats__note {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    body.page-home .hl-download .row.g-4 {
        --bs-gutter-x: 1.25rem;
        --bs-gutter-y: 1rem;
    }

    body.page-home .hl-download .hl-dlcard .card-body {
        padding: 1rem !important;
    }

    body.page-home .hl-download .z47324download-info {
        padding: 0.85rem !important;
    }

    body.page-home .hl-download .z47324info-item {
        align-items: flex-start;
    }

    body.page-home .hl-download .z47324info-item i {
        margin-top: 0.2rem;
    }

    body.page-home .hl-security .z47324security-card.hl-seccard {
        padding: 1.1rem !important;
    }

    body.page-home .hl-faq {
        padding: 1rem 0.95rem;
    }

    body.page-home .hl-stat {
        min-height: 0;
        padding: 0.85rem 0.35rem;
    }

    body.page-home #article .hl-article .card-body {
        padding: 0.75rem;
    }

    body.page-home #article .hl-article h3.h6 {
        font-size: 0.95rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    body.page-home #article .hl-article__img.z47324thumb-home {
        height: 96px !important;
    }
}

@media (max-width: 575px) {
    body.page-home .hl-tag {
        max-width: 100%;
        line-height: 1.45;
        text-align: left;
    }

    body.page-home .hl-hero__panel {
        padding: 0.95rem 1rem;
    }

    body.page-home .hl-hero__panel-list li {
        font-size: 0.84rem;
    }

    body.page-home .hl-mini {
        padding: 1rem 1rem;
    }

    body.page-home .hl-bento {
        padding: 1.1rem 1rem;
    }

    body.page-home .hl-gloss {
        padding: 0.9rem 0.95rem !important;
    }

    body.page-home .hl-stat .hl-stat__num {
        font-size: 1.15rem;
    }

    body.page-home .hl-stat .hl-stat__lbl {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    body.page-home #article .hl-article__img.z47324thumb-home {
        height: 88px !important;
    }
}
