.compliance-page2{
    width: 100%;
    
}

:root {
    --tech-blue: #3c2add;
    --cyber-purple: #6c00ff;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f4ff 100%);
}

body {
    background: var(--dark-bg);
    color: #0f0c0c;
    font-family: 'Helvetica Neue', sans-serif;
}

.cyber-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.cyber-card {
    background: linear-gradient(145deg, rgba(222, 193, 231, 0.8), rgba(184, 192, 231, 0.9));
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
}

.cyber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--tech-blue), var(--cyber-purple));
    -webkit-mask-size: contain;
    margin-bottom: 20px;
}

/* .glow-border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, 
        transparent 48%, 
        var(--tech-blue) 50%, 
        transparent 52%
    );
    opacity: 0.3;
    animation: glowFlow 3s infinite linear;
} */

@keyframes glowFlow {
    0% { transform: translate(-50%, -50%) }
    100% { transform: translate(50%, 50%) }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    padding-left: 28px;
}

.feature-list li:before {
    content: "▶";
    color: var(--tech-blue);
    position: absolute;
    left: 0;
}
.cyber-text{
    width: 100%;
    height: 150px;
}
.cyber-text-title:nth-child(1){
    color: rgb(26, 34, 34);
    font-size: 30px;
    font-weight: 700;
}
.cyber-text-title:nth-child(2){
    color: rgb(37, 53, 53);
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
    margin-left: 300px;
}
.cyber-text-text{
    width: 100%;
    margin-top: 20px;
    text-align: justify;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
/* 手机端 */
@media (max-width: 576px) {
  .box { width: 100%; }
}

/* 平板 */
@media (min-width: 577px) and (max-width: 992px) {
  .box { width: 50%; }
}

/* 桌面端 */
@media (min-width: 993px) {
  .box { width: 25%; }
}