/* 标准规范页面样式 - 遵循项目设计规范 */
.radial-layout-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
}

.central-image-wrapper {
    width: 320px;
    height: 320px;
    margin: 0 auto 5rem;
    position: relative;
}

@media (max-width: 768px) {
    .central-image-wrapper {
        width: 240px;
        height: 240px;
        margin-bottom: 3rem;
    }
}

.central-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.image-caption span {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.radial-text-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.text-segment {
    position: absolute;
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .text-segment {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }
}

.segment-1 {
    top: -100px;
    right: 0;
}

.segment-2 {
    bottom: -80px;
    left: 50px;
}

.segment-3 {
    top: 150px;
    right: 100px;
}

.text-segment p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* 装饰元素 */
.central-image-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background-color: rgba(44, 110, 203, 0.1);
    z-index: -1;
}

/* 动画效果 */
@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.rollIn {
    animation-name: rollIn;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 3s infinite;
}

/* 基础布局样式 */
.standards-layout-container {
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
}

/* 图片区域样式 */
.image-section {
    flex: 1;
    position: relative;
    margin-right: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.standard-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

/* 内容区域样式 */
.content-section {
    flex: 1;
    display: flex;
    align-items: center;
}

.text-content {
    padding: 1rem;
}

.text-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

/* 响应式设计 - 移动端布局 */
@media (max-width: 768px) {
    .standards-layout-container {
        flex-direction: column;
        padding: 1rem;
    }

    .image-section {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .image-caption {
        font-size: 1rem;
        padding: 1rem;
    }
}
