/* 案例板块容器 - 移动端专用 */
.ui-showcase-block {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* 标题区域 */
.showcase-head {
    text-align: center;
}
.showcase-head h2 {
    font-size: 28px;
    color: #263c92;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.showcase-head p {
    font-size: 17px;
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
}
.showcase-line {
    width: 60px;
    height: 3px;
    background-color: #ff3385;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* 主大图卡片 */
.showcase-banner-card {
    height: 260px;
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}
.showcase-banner-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.showcase-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.showcase-banner-card:hover img {
    transform: scale(1.03);
}
.showcase-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e40082;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 0 30px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 51, 133, 0.3);
    transition: all 0.3s ease;
}
.showcase-banner-card:hover .showcase-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 51, 133, 0.4);
}

/* 卡片网格布局 单列 */
.showcase-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.showcase-item-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}
.showcase-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.card-image-box {
    overflow: hidden;
    height: 180px;
}
.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.showcase-item-card:hover .card-image-box img {
    transform: scale(1.08);
}
.card-info-inner {
    padding: 20px;
    background: #c7e8fa;
    text-align: center;
}
.card-info-inner h3 {
    font-size: 21px;
    color: #263c92;
    margin-bottom: 8px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.showcase-item-card:hover .card-info-inner h3 {
    color: #e40082;
}
.card-info-inner p {
    font-size: 16px;
    color: #263c92;
}

/* 通用按钮 通栏 */
.showcase-custom-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 0;
    padding: 14px 40px;
    background-color: #165DFF;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.25);
}
.showcase-custom-btn:hover {
    background-color: #0040cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(22, 93, 255, 0.35);
}
.showcase-custom-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(22, 93, 255, 0.2);
}

/* ========== 公司优势板块 移动端 ========== */
.biz-exp-block {
    width: 100%;
    padding: 0 15px;
    margin: 80px auto;
    margin-bottom: 50px;
}

.biz-title-wrap {
    margin-bottom: 35px;
}
.biz-main-title {
    font-size: 28px;
    color: #263c92;
    font-weight: 700;
    margin-bottom: 10px;
}
.biz-sub-title {
    font-size: 19px;
    color: #888;
    font-weight: 400;
}

/* 内容布局 单列 */
.biz-layout-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.biz-large-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}
.biz-large-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.biz-large-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.biz-large-card:hover img {
    transform: scale(1.03);
}

.biz-grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.biz-grid-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}
.biz-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.biz-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.biz-grid-item:hover img {
    transform: scale(1.08);
}

.biz-info-bar {
    background: linear-gradient(to right, #e0f0ff, #f0f7ff);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    margin-top: 30px;
}
.biz-info-main {
    font-size: 23px;
    color: #263c92;
    font-weight: 700;
    margin-bottom: 14px;
}
.biz-info-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* ========== 三大产品板块 移动端 ========== */
.proseries-wrap {
    width: 100%;
    padding: 0 15px;
    margin: 30px auto;
}

.proseries-head {
    text-align: center;
    margin-bottom: 100px;
}
.proseries-title {
    font-size: 34px;
    color: #165DFF;
    font-weight: 700;
    margin-bottom: 12px;
}
.proseries-desc {
    font-size: 18px;
    color: #666;
}

/* 产品单列网格 */
.proseries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 140px;
}

.proseries-card {
    position: relative;
    transition: all 0.45s ease;
    cursor: pointer;
}
.proseries-card:hover {
    transform: translateY(-12px);
}

.proseries-3d-stage {
    position: relative;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.proseries-ellipse {
    width: 82%;
    height: 70px;
    background: linear-gradient(180deg, #c5e2ff 0%, #eaf4ff 80%);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 30px 35px -15px rgba(22,93,255,0.25),
        0 10px 20px -5px rgba(22,93,255,0.15),
        inset 0 -8px 15px rgba(255,255,255,0.6);
    transform: perspective(800px) rotateX(40deg);
    transition: all 0.5s ease;
}
.proseries-card:hover .proseries-ellipse {
    transform: perspective(800px) rotateX(40deg) scale(1.08);
    box-shadow: 
        0 40px 45px -18px rgba(22,93,255,0.35),
        0 15px 25px -8px rgba(22,93,255,0.25),
        inset 0 -10px 20px rgba(255,255,255,0.7);
}

.proseries-gold-line {
    display: none;
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f6e28c, #d4af37);
    border-radius: 2px;
    opacity: 0.9;
}

.proseries-img {
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: auto;
    transition: transform 0.6s ease;
    z-index: 2;
}
.proseries-card:hover .proseries-img {
    transform: translateX(-50%) scale(1.12);
}

.proseries-name {
    text-align: center;
    font-size: 22px;
    color: #263c92;
    font-weight: 600;
    margin-bottom: 10px;
}
.proseries-feature {
    text-align: center;
    font-size: 16px;
    color: #263c92;
    line-height: 1.5;
}

/* ========== 公司新闻板块 移动端 ========== */
.admin-news-container {
    width: 100%;
    padding: 0 15px;
    margin: 50px auto;
}

.admin-news-head {
    text-align: center;
    /* margin-bottom: 60px; */
    opacity: 0;
    transform: translateY(20px);
    animation: adminFadeUp 0.8s 0.2s forwards;
}
@keyframes adminFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.admin-news-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    position: relative;
    display: inline-block;
}
.admin-news-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #165DFF;
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.5s ease;
    animation: adminLine 0.8s 0.6s forwards;
}
@keyframes adminLine {
    to { transform: translateX(-50%) scaleX(1); }
}

/* 新闻布局单列 */
.admin-news-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.admin-news-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    background: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: adminFadeUp 0.8s 0.4s forwards;
}
.admin-news-main:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 20px 50px rgba(22,93,255,0.15);
}

.admin-news-main-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.admin-news-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease, filter 0.5s ease;
}
.admin-news-main:hover .admin-news-main-img img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.admin-news-main-body {
    text-align: center;
    padding: 20px;
}
.admin-news-main-title {
    font-size: 19px;
    color: #222;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.admin-news-main:hover .admin-news-main-title {
    color: #e40082;
}
.admin-news-main-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.admin-news-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: adminFadeUp 0.8s 0.6s forwards;
}

.admin-news-item {
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    cursor: pointer;
    transition: all 0.35s ease;
}
.admin-news-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: #e40082;
    transition: width 0.4s ease;
}
.admin-news-item::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 40%;
    font-size: 18px;
    color: #e40082;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.35s ease;
}

.admin-news-item:hover {
    padding-left: 20px;
}
.admin-news-item:hover::before {
    width: 100%;
}
.admin-news-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.admin-news-item-title {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.admin-news-item:hover .admin-news-item-title {
    color: #e40082;
    font-weight: 600;
}
.admin-news-item-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .click-guide-icon {
        position: absolute;
        bottom: 10px;
        right: 140px;
        width: 40px;  /* 根据你图标的大小调整 */
        height: 40px;
        
        /* === 关键：在这里设置你的图标图片 === */
        background-image: url('../image/dianji.png');
        background-size: contain;   /* 确保图片完整显示 */
        background-repeat: no-repeat;
        background-position: center;
        z-index: 5;
        animation: pulse 2s infinite; /* 保持跳动动画 */
    }

    /* 定义跳动动画 */
    @keyframes pulse {
        0% { transform: scale(0.8); }
        50% { transform: scale(1.1); } /* 图片也会跟着缩放，产生跳动感 */
        100% { transform: scale(0.8); }
    }
}