/* CSS Document */
/* 将其保存为 feature-style.css 文件
  并放置在 /skin/css/ 目录下
*/

/* 全局和字体设置 */
body {
    /* 避免覆盖您网站原有的字体设置，此行可以注释掉或删除 */
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Microsoft YaHei", sans-serif; */
}

/* 最外层容器，用于提供白色背景和上下边距 */
.feature-section {
    width: 100%;
    background-color: #ffffff; /* 白色背景 */
    padding: 60px 0; /* 上下内边距 */
    box-sizing: border-box;
    overflow: hidden; /* 防止内容溢出 */
}

/* 标题区域 */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.section-header h2 .light-text {
    font-weight: 400;
}

.section-header p {
    font-size: 16px;
    color: #888;
    margin: 0;
}

/* 卡片和箭头的外层容器 */
.feature-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* 卡片和箭头之间的间距 */
    max-width: 1200px; /* 限制最大宽度，使其居中 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 20px; /* 两侧留出一些空间 */
    box-sizing: border-box;
}

/* 卡片组的容器 */
.feature-card-wrapper {
    display: flex;
    gap: 30px; /* 卡片之间的间距 */
    flex-grow: 1;
    justify-content: center;
}

/* 单个卡片样式 */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content {
    width: 255px; /* 固定宽度 */
    height: 214px; /* 固定高度 */
    border-radius: 16px;
    background-color: #f4f6f8;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .card-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-content img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保证图片不变形地填满容器 */
}

/* 特殊卡片1: 橙色背景 */
.card-standard {
    background-image:
        radial-gradient(circle at 20px 20px, rgba(255,255,255,0.3) 5%, transparent 5.5%),
        linear-gradient(to top right, #ff8a65, #ff5722);
    background-size: 40px 40px, 100% 100%;
    color: white;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
}

.card-standard h3 {
    font-size: 24px;
    margin: 0;
}

.card-standard p {
    font-size: 20px;
    margin: 5px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 5px;
    display: inline-block;
}

/* 卡片下方的文字说明 */
.card-caption {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* 向右箭头样式 */
.arrow-next {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0; /* 防止箭头被压缩 */
}

.arrow-next:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.arrow-next span {
    font-size: 24px;
    color: #888;
}

