/* 
* beauty-sections.css - 美妆行业解决方案页面区块样式
* 使用特定前缀beauty-确保样式独立性
*/

/* ================= Banner区块 ================= */
.beauty-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--beauty-dark-color);
}

.beauty-banner-content {
    position: relative;
    z-index: 5;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--beauty-light-color);
    padding: var(--beauty-spacing-xl);
    text-align: center;
}

.beauty-banner-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: var(--beauty-spacing-xl);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, var(--beauty-primary-color), var(--beauty-light-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--beauty-heading-font);
    line-height: 1.2;
    max-width: 900px;
    transform: perspective(500px) rotateX(10deg);
    z-index: 10;
}

.beauty-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--beauty-secondary-color) 0%, var(--beauty-primary-color) 100%);
    z-index: 1;
}

.beauty-banner-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.4;
}

.beauty-banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.beauty-banner-hotwords {
    position: absolute;
    z-index: 4;
}

.beauty-banner-hotword {
    position: absolute;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--beauty-light-color);
    animation: beautyFloat 6s ease-in-out infinite;
}

@keyframes beautyFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.beauty-data-panel {
    position: absolute;
    z-index: 6;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--beauty-border-radius-lg);
    padding: var(--beauty-spacing-lg);
    box-shadow: var(--beauty-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 280px;
    transition: all 0.3s ease;
}

.beauty-data-panel:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.beauty-data-panel-left {
    left: 5%;
    top: 40%;
}

.beauty-data-panel-right {
    right: 5%;
    top: 40%;
}

.beauty-data-panel-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-md);
    color: var(--beauty-light-color);
}

.beauty-data-item {
    margin-bottom: var(--beauty-spacing-md);
}

.beauty-data-value {
    font-family: var(--beauty-data-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--beauty-light-color);
    line-height: 1.2;
    margin-bottom: var(--beauty-spacing-xs);
}

.beauty-data-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.beauty-product-focus {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.beauty-product-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: beautyRotate 20s infinite linear;
}

@keyframes beautyRotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.beauty-banner-cta {
    position: relative;
    z-index: 8;
    margin-top: var(--beauty-spacing-xxl);
}

.beauty-banner-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--beauty-border-radius-md);
    background: linear-gradient(135deg, var(--beauty-accent-color) 0%, var(--beauty-primary-color) 100%);
    color: var(--beauty-light-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-banner-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.beauty-banner-cta-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.beauty-banner-cta-btn:hover:after {
    animation: beautyRipple 1s ease-out;
}

@keyframes beautyRipple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.beauty-credentials {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    display: flex;
    gap: var(--beauty-spacing-md);
}

.beauty-credential-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.beauty-credential-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .beauty-banner-title {
        font-size: 48px;
    }
    
    .beauty-data-panel {
        width: 220px;
    }
    
    .beauty-data-value {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .beauty-banner-title {
        font-size: 36px;
    }
    
    .beauty-data-panel {
        position: relative;
        width: 80%;
        margin: 10px auto;
        left: auto;
        right: auto;
        top: auto;
    }
    
    .beauty-data-panel-left, .beauty-data-panel-right {
        position: static;
        margin: 20px auto;
    }
    
    .beauty-product-focus {
        position: relative;
        bottom: auto;
        margin: 30px auto;
    }
}

/* ================= 其他区块共同样式 ================= */
.beauty-section {
    padding: var(--beauty-spacing-xxl) 0;
    position: relative;
}

.beauty-section-header {
    text-align: center;
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: var(--beauty-spacing-lg);
    color: var(--beauty-dark-color);
}

.beauty-section-subtitle {
    font-size: 18px;
    color: var(--beauty-neutral-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ================= 通用区块样式 ================= */
.beauty-section {
    padding: var(--beauty-spacing-xxl) 0;
    position: relative;
}

.beauty-section-header {
    text-align: center;
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--beauty-spacing-md);
}

.beauty-section-subtitle {
    font-size: 18px;
    color: var(--beauty-neutral-color);
    max-width: 800px;
    margin: 0 auto;
}

/* ================= 工具箱区块样式 ================= */
.beauty-tools-section {
    background-color: var(--beauty-light-color);
    padding: var(--beauty-spacing-xxl) 0;
}

.beauty-tools-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--beauty-spacing-xxl);
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-tools-category-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-xl);
    position: relative;
    padding-left: 15px;
}

.beauty-tools-category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--beauty-gradient-primary);
    border-radius: var(--beauty-border-radius-sm);
}

.beauty-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--beauty-spacing-lg);
}

.beauty-tool-item {
    display: flex;
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-lg);
    transition: all 0.3s ease;
}

.beauty-tool-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-tool-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--beauty-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--beauty-spacing-md);
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.beauty-tool-content {
    flex-grow: 1;
}

.beauty-tool-content h4 {
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-xs);
    color: var(--beauty-dark-color);
    font-size: 18px;
}

.beauty-tool-content p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    margin-bottom: var(--beauty-spacing-sm);
    line-height: 1.5;
}

.beauty-tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.beauty-tool-features span {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    background-color: rgba(46, 139, 87, 0.1);
    color: var(--beauty-secondary-color);
    font-weight: 600;
}

.beauty-resources-list {
    display: flex;
    flex-direction: column;
    gap: var(--beauty-spacing-lg);
}

.beauty-resource-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-lg);
    transition: all 0.3s ease;
}

.beauty-resource-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-resource-icon {
    width: 50px;
    height: 50px;
    background: var(--beauty-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: var(--beauty-spacing-md);
    flex-shrink: 0;
}

.beauty-resource-content {
    flex-grow: 1;
}

.beauty-resource-content h4 {
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-xs);
    color: var(--beauty-dark-color);
    font-size: 18px;
}

.beauty-resource-content p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    margin-bottom: var(--beauty-spacing-sm);
    line-height: 1.5;
}

.beauty-resource-link {
    display: inline-block;
    font-weight: 600;
    color: var(--beauty-secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.beauty-resource-link:hover {
    color: var(--beauty-accent-color);
}

.beauty-resource-link:after {
    content: '→';
    margin-left: 5px;
    transition: all 0.3s ease;
}

.beauty-resource-link:hover:after {
    margin-left: 10px;
}

.beauty-tools-cta {
    display: flex;
    justify-content: center;
    gap: var(--beauty-spacing-lg);
}

/* ================= 页面模块化区块样式 ================= */
.beauty-modules-section {
    background-color: var(--beauty-bg-light-color);
    padding: var(--beauty-spacing-xxl) 0;
}

.beauty-modules-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--beauty-spacing-xxl);
    margin-bottom: var(--beauty-spacing-xxl);
    align-items: center;
}

.beauty-modules-intro-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-md);
    color: var(--beauty-dark-color);
}

.beauty-modules-intro-content p {
    margin-bottom: var(--beauty-spacing-lg);
    line-height: 1.6;
}

.beauty-modules-features {
    padding-left: 0;
    list-style: none;
}

.beauty-modules-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--beauty-spacing-sm);
    font-weight: 500;
}

.beauty-modules-features li i {
    color: var(--beauty-secondary-color);
    margin-right: var(--beauty-spacing-sm);
}

.beauty-modules-intro-image {
    border-radius: var(--beauty-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-modules-intro-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.beauty-modules-intro:hover .beauty-modules-intro-image img {
    transform: scale(1.03);
}

.beauty-modules-showcase {
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-module-category {
    margin-bottom: var(--beauty-spacing-xl);
}

.beauty-module-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--beauty-spacing-lg);
}

.beauty-module-category-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--beauty-dark-color);
}

.beauty-module-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--beauty-gradient-primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.beauty-module-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--beauty-spacing-lg);
}

.beauty-module-item {
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.beauty-module-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-module-preview {
    overflow: hidden;
}

.beauty-module-preview img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.beauty-module-item:hover .beauty-module-preview img {
    transform: scale(1.1);
}

.beauty-module-info {
    padding: var(--beauty-spacing-md);
}

.beauty-module-info h4 {
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-xs);
    color: var(--beauty-dark-color);
}

.beauty-module-info p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    line-height: 1.5;
}

.beauty-templates {
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-xl);
}

.beauty-templates-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-lg);
    text-align: center;
}

.beauty-templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--beauty-spacing-lg);
}

.beauty-template-item {
    background-color: var(--beauty-bg-light-color);
    border-radius: var(--beauty-border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.beauty-template-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--beauty-shadow-md);
}

.beauty-template-preview {
    overflow: hidden;
}

.beauty-template-preview img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.beauty-template-item:hover .beauty-template-preview img {
    transform: scale(1.05);
}

.beauty-template-info {
    padding: var(--beauty-spacing-md);
}

.beauty-template-info h4 {
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-xs);
    color: var(--beauty-dark-color);
}

.beauty-template-info p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    margin-bottom: var(--beauty-spacing-sm);
    line-height: 1.5;
}

.beauty-template-link {
    display: inline-block;
    font-weight: 600;
    color: var(--beauty-secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.beauty-template-link:hover {
    color: var(--beauty-accent-color);
}

.beauty-modules-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--beauty-spacing-md);
}

.beauty-btn-separator {
    color: var(--beauty-neutral-color);
    font-weight: 500;
}

/* ================= 数据设计区块样式 ================= */
.beauty-data-section {
    background-color: var(--beauty-light-color);
    padding: var(--beauty-spacing-xxl) 0;
}

.beauty-data-container {
    margin-bottom: var(--beauty-spacing-xl);
}

.beauty-data-dashboard {
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-dashboard-preview {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
    border-radius: var(--beauty-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-dashboard-image {
    display: block;
    width: 100%;
    height: auto;
}

.beauty-dashboard-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.beauty-highlight-point {
    position: absolute;
    z-index: 2;
}

.beauty-highlight-dot {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--beauty-primary-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: var(--beauty-shadow-md);
    cursor: pointer;
    position: relative;
    z-index: 2;
    animation: beautyPulseDot 2s infinite;
}

@keyframes beautyPulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 228, 181, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 228, 181, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 228, 181, 0);
    }
}

.beauty-highlight-tooltip {
    position: absolute;
    left: 30px;
    top: -20px;
    width: 200px;
    background-color: white;
    border-radius: var(--beauty-border-radius-md);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.beauty-highlight-point:hover .beauty-highlight-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.beauty-highlight-tooltip h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--beauty-dark-color);
}

.beauty-highlight-tooltip p {
    font-size: 13px;
    color: var(--beauty-neutral-color);
    line-height: 1.4;
}

.beauty-data-modules {
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-data-module-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--beauty-spacing-xl);
}

.beauty-data-module {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-lg);
    transition: all 0.3s ease;
}

.beauty-data-module:hover {
    transform: translateY(-5px);
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-data-module-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--beauty-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--beauty-spacing-lg);
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.beauty-data-module-content {
    flex-grow: 1;
}

.beauty-data-module-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-sm);
    color: var(--beauty-dark-color);
}

.beauty-data-module-content p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    margin-bottom: var(--beauty-spacing-md);
    line-height: 1.6;
}

.beauty-data-features {
    padding-left: 0;
    list-style: none;
}

.beauty-data-features li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.beauty-data-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--beauty-secondary-color);
    font-weight: bold;
}

.beauty-data-cases {
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-data-cases-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-lg);
    text-align: center;
}

.beauty-data-case-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--beauty-spacing-lg);
}

.beauty-data-case {
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-lg);
    transition: all 0.3s ease;
}

.beauty-data-case:hover {
    transform: translateY(-5px);
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-data-case-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--beauty-spacing-md);
}

.beauty-data-case-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(46, 139, 87, 0.1);
    color: var(--beauty-secondary-color);
    font-size: 12px;
    font-weight: 600;
    margin-right: var(--beauty-spacing-sm);
}

.beauty-data-case-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--beauty-dark-color);
}

.beauty-data-case-content {
    margin-bottom: var(--beauty-spacing-md);
}

.beauty-data-case-content p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    line-height: 1.6;
}

.beauty-data-case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--beauty-spacing-md);
}

.beauty-data-metric {
    background-color: rgba(46, 139, 87, 0.1);
    border-radius: var(--beauty-border-radius-sm);
    padding: var(--beauty-spacing-sm);
    text-align: center;
}

.beauty-data-value {
    font-family: var(--beauty-data-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--beauty-secondary-color);
    margin-bottom: 2px;
}

.beauty-data-label {
    font-size: 12px;
    color: var(--beauty-neutral-color);
}

.beauty-data-cta {
    display: flex;
    justify-content: center;
    gap: var(--beauty-spacing-lg);
}

/* ================= 风险合规区块样式 ================= */
.beauty-compliance-section {
    background-color: var(--beauty-bg-light-color);
    padding: var(--beauty-spacing-xxl) 0;
}

.beauty-compliance-container {
    margin-bottom: var(--beauty-spacing-xl);
}

.beauty-compliance-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--beauty-spacing-xxl);
    margin-bottom: var(--beauty-spacing-xxl);
    align-items: center;
}

.beauty-compliance-intro h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-md);
    color: var(--beauty-dark-color);
}

.beauty-compliance-intro p {
    line-height: 1.6;
    font-size: 16px;
}

.beauty-compliance-radar {
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-lg);
    overflow: hidden;
}

.beauty-radar-chart {
    text-align: center;
}

.beauty-radar-chart img {
    max-width: 100%;
    height: auto;
    border-radius: var(--beauty-border-radius-md);
}

.beauty-compliance-modules {
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-compliance-module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--beauty-spacing-xl);
}

.beauty-compliance-module {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-lg);
    transition: all 0.3s ease;
}

.beauty-compliance-module:hover {
    transform: translateY(-5px);
    box-shadow: var(--beauty-shadow-lg);
}

.beauty-compliance-module-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--beauty-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--beauty-spacing-lg);
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.beauty-compliance-module-content {
    flex-grow: 1;
}

.beauty-compliance-module-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-sm);
    color: var(--beauty-dark-color);
}

.beauty-compliance-module-content p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    margin-bottom: var(--beauty-spacing-md);
    line-height: 1.6;
}

.beauty-compliance-points {
    padding-left: 0;
    list-style: none;
}

.beauty-compliance-points li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.beauty-compliance-points li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--beauty-secondary-color);
    font-weight: bold;
}

.beauty-risk-management {
    margin-bottom: var(--beauty-spacing-xxl);
}

.beauty-risk-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-lg);
    text-align: center;
}

.beauty-risk-process {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.beauty-risk-process:before {
    content: '';
    position: absolute;
    top: 35px;
    left: 55px;
    right: 55px;
    height: 3px;
    background: var(--beauty-gradient-primary);
    z-index: 1;
}

.beauty-risk-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 0 10px;
}

.beauty-risk-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--beauty-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--beauty-data-font);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--beauty-spacing-md);
    box-shadow: var(--beauty-shadow-md);
}

.beauty-risk-step-content {
    text-align: center;
}

.beauty-risk-step-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--beauty-dark-color);
}

.beauty-risk-step-content p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    line-height: 1.4;
}

.beauty-regulation-library {
    background-color: white;
    border-radius: var(--beauty-border-radius-lg);
    box-shadow: var(--beauty-shadow-md);
    padding: var(--beauty-spacing-xl);
}

.beauty-regulation-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-lg);
    text-align: center;
}

.beauty-regulations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--beauty-spacing-lg);
}

.beauty-regulation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--beauty-bg-light-color);
    border-radius: var(--beauty-border-radius-lg);
    padding: var(--beauty-spacing-lg);
    transition: all 0.3s ease;
    text-align: center;
}

.beauty-regulation-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--beauty-shadow-md);
}

.beauty-regulation-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--beauty-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: var(--beauty-spacing-md);
}

.beauty-regulation-content h4 {
    font-weight: 600;
    margin-bottom: var(--beauty-spacing-xs);
    color: var(--beauty-dark-color);
    font-size: 16px;
}

.beauty-regulation-content p {
    font-size: 14px;
    color: var(--beauty-neutral-color);
    margin-bottom: var(--beauty-spacing-md);
    line-height: 1.5;
}

.beauty-regulation-link {
    display: inline-block;
    font-weight: 600;
    color: var(--beauty-secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.beauty-regulation-link:hover {
    color: var(--beauty-accent-color);
}

.beauty-compliance-cta {
    display: flex;
    justify-content: center;
    gap: var(--beauty-spacing-lg);
}

/* ================= 响应式调整 ================= */
@media (max-width: 1200px) {
    .beauty-tools-container,
    .beauty-modules-intro {
        grid-template-columns: 1fr 1fr;
    }
    
    .beauty-regulations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beauty-tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .beauty-section-title {
        font-size: 32px;
    }
    
    .beauty-tools-container,
    .beauty-modules-intro,
    .beauty-compliance-overview,
    .beauty-data-module-list {
        grid-template-columns: 1fr;
        gap: var(--beauty-spacing-xl);
    }
    
    .beauty-module-items,
    .beauty-templates-grid,
    .beauty-data-case-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beauty-risk-process {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--beauty-spacing-lg);
    }
    
    .beauty-risk-process:before {
        display: none;
    }
    
    .beauty-risk-step {
        flex-direction: row;
        width: 100%;
        padding: var(--beauty-spacing-md);
        border-radius: var(--beauty-border-radius-md);
        box-shadow: var(--beauty-shadow-sm);
    }
    
    .beauty-risk-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 0;
        margin-right: var(--beauty-spacing-md);
    }
    
    .beauty-risk-step-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .beauty-section-title {
        font-size: 28px;
    }
    
    .beauty-module-items,
    .beauty-templates-grid,
    .beauty-data-case-cards,
    .beauty-regulations-grid,
    .beauty-compliance-module-grid {
        grid-template-columns: 1fr;
    }
    
    .beauty-tools-cta,
    .beauty-data-cta,
    .beauty-compliance-cta,
    .beauty-modules-cta {
        flex-direction: column;
        gap: var(--beauty-spacing-md);
    }
    
    .beauty-highlight-tooltip {
        width: 150px;
        left: 20px;
    }
} 