
.systemproduct-right-gradient {
   color: #ffffff;
    height: 36px;
    padding: 0 24px;
    font-size: 14px;
    line-height: 34px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #0097ff, #006aff);
    border-radius: 10px;
    display: block;
    cursor: pointer;
    width: 100px;
    margin-left: auto;
    border: none;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
    -webkit-user-select: none;
    margin-right: auto;
}

/* 鼠标悬停效果 */
.systemproduct-right-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #0088ee, #005de5);
}

/* 点击效果 */
.systemproduct-right-gradient:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



  .systemproduct-right-bottom-desc {
    animation: colorChange 5s infinite;
    height: 36px;
    padding: 0 24px;
    font-size: 16px;
    line-height: 34px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e0b3b3, #b4d3ff);
    border-radius: 10px;
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
  }

@keyframes colorChange {
  0% { color: #ff0000; }
  25% { color: #00ff00; }
  50% { color: #0000ff; }
  75% { color: #ff00ff; }
  100% { color: #ff0000; }
}


.systemproduct-left-title {
    color: #000;
    font-size: 20px;
    font-weight: 1000;
    height: 36px;
    padding: 0 24px;
    line-height: 34px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    margin-top: 5px;
    margin-bottom: 5px;
}


.systemproduct-right-bottom {
    color: #000;
    font-size: 14px;
    font-weight: 1000;
    padding-top: 50px;
    padding-left: 20px;
    margin-bottom: 150px;
}


.systemproduct-country img{
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}


.systemproduct-info {
    margin-top: 2px;
    margin-bottom: 3px;
}

.systemproduct-name {
    font-size: 16px;
}



.systemproduct-desc {
    color: #727272;
    font-size: 13px;
}



/* 修改原有样式 */
.systemproduct-tagline {
    height: 57px;
    position: absolute;
    right: -3px;  /* 原-3px改为0 */
    top: -3px;    /* 原-3px改为0 */
    width: 57px;
    z-index: 1; /* 确保显示层级 */
}

/* 移除可能存在的hover状态控制 */
.systemproduct-item:hover .systemproduct-tagline {
    opacity: 1 !important;
    visibility: visible !important;
}
.systemproduct-tagline img {
    height: 57px;
    width: 57px;
}
.systemproduct-tagline span {
    color: #fff;
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 16.5px;
    transform: rotate(45deg);
    font-weight: bold;
}
.systemproduct-tagline span {
    font-size: 12px;
    background: #f56c6c;
    color: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    margin-left: 6px;
    font-weight: 500;
}




            /* 容器基础样式 */
        .rainbow-box {
            position: relative;
            border-radius: 20px;
            box-sizing: border-box;
            overflow: hidden; /* 新增关键属性 */
        }

        /* 彩虹动画层 */
        .rainbow-box::before {
            content: '';
            position: absolute;
            top: -15%;  /* 调整尺寸保证覆盖 */
            left: -15%;
            width: 130%;
            height: 130%;
            background: linear-gradient(
                45deg, 
                #ff0000, #ff9900, 
                #ffff00, #33ff00,
                #0099ff, #ff00ff
            );
            animation: rotate 15s linear infinite;
            z-index: 1;
        }

        /* 修正后的遮罩层 */
        .rainbow-box::after {
            content: '';
            position: absolute;
            top: 15px;  /* 对应边框粗细 */
            left: 15px;
            right: 15px;
            bottom: 15px;
            background: #fff;
            border-radius: 18px; /* 20px - 2px */
            z-index: 2;
        }

        /* 内容区域 */
        .content1 {
            position: relative;
            height: 100%;
            padding: 20px;
            color: white;
            z-index: 3;
        }

        /* 优化后的动画 */
        @keyframes rotate {
            0% { 
                transform: rotate(0deg);
                filter: hue-rotate(0deg);
            }
            100% { 
                transform: rotate(360deg);
                filter: hue-rotate(360deg);
            }
        }
    
    
        /* 手机端隐藏 */
        @media (max-width: 768px) {
            .desktop-only {
                display: none !important;
            }
        }

        /* 电脑端样式 */
        @media (min-width: 769px) {
            .mobile-alert { display: none; }

            /* 框架容器 */
            .framework-container {
                max-width: 1600px;
                margin: 30px auto;
                padding: 40px;
                background: white;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                border: 1px solid #eee;
            }

            /* 按钮容器 */
        .systemproduct-categories {
            display: flex;
            gap: 20px;
            padding: 30px;
            justify-content: center;
        }

        /* 基础按钮样式 */
        .systemproduct-category {
            flex: 1 1 0;
            min-width: 180px;
            max-width: 220px;
            padding: 18px 25px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            white-space: nowrap;
            transform: scale(1); /* 明确初始状态 */
        }
/* 悬停状态 */
        .systemproduct-category:not(.active):hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            z-index: 1;
        }

            .systemproduct-category:last-child {
                border-right: none;
            }

            .systemproduct-category:hover {
                transform: scale(1.05);
                z-index: 2;
                box-shadow: 0 8px 20px rgba(108, 92, 231, 0.2);
            }

            .systemproduct-category.active {
                background: linear-gradient(135deg, #6c5ce7, #8e7cff);
            color: white;
            transform: scale(1.02) !important;
            box-shadow: 0 6px 12px rgba(108, 92, 231, 0.3);
            }
.systemproduct-category:hover:not(.active) {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
            /* 其他原有样式保持不变 */
            .systemproduct-category-img {
                width: 24px;
                height: 24px;
                background-size: contain;
            }

            /* 内容容器样式 */
        .systemproducts {
            display: none;
            position: relative;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 20px auto;
            max-width: 1400px;
        }

        .systemproducts.active {
            display: flex;
            animation: containerScale 0.6s ease forwards;
        }

        /* 左右容器动画 */
        .systemproduct-left-container,
        .systemproduct-right-container {
            flex: 1;
            opacity: 0;
            transform: translateX(-50%);
            animation: slideInLeft 0.8s ease forwards;
        }

        .systemproduct-right-container {
            transform: translateX(50%);
            animation: slideInRight 0.8s ease forwards;
        }

        /* 动画定义 */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes containerScale {
            from {
                transform: scale(0.95);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* 内容区样式 */
        .systemproduct-left-top {
        height: 400px;
        background-size: cover;
        padding: 40px;
        position: relative;
        box-shadow: 5px 3px 9px 5px rgba(0, 0, 0, 0.15);
        border-radius: 20px;
        margin-left: 50px;
    }

        .systemproduct-right-product {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 30px;
        }

/* 新增定位基准 */
.systemproduct-item {
    position: relative;
    display: block;
    overflow: visible !important; /* 确保图标不被裁剪 */
}








        .systemproduct-item {
            background: url(/themes/web/YiChen/hzhb/asytj/spbj.png) center / cover no-repeat #f0f0f0;
            padding: 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #333;
            display: block;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .systemproduct-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        /* 按钮点击动画 */
        @keyframes buttonClick {
            0% { transform: scale(1); }
            50% { transform: scale(0.95); }
            100% { transform: scale(1); }
        }

        .click-animation {
            animation: buttonClick 0.3s ease;
        }