﻿/* 背景图容器样式 */
.service-bg-container {
    /* 核心修正：ASP.NET 中 wwwroot 是静态文件根目录，URL 中无需写 wwwroot */
    /* 正确路径：/ 直接对应 wwwroot 文件夹，所以路径为 /images/whitedove/置顶.jpg */
    background-image: url('/images/whitedove/置顶.jpg');
    /* 背景图填充容器，保持比例 */
    background-size: cover;
    /* 背景图居中显示 */
    background-position: center center;
    /* 背景图固定（可选，若滚动时背景错位可注释此行） */
    background-attachment: inherit;
    /* 防止背景图重复 */
    background-repeat: no-repeat;
    /* 设置内边距，让文字不贴边 */
    padding: 40px 20px;
    /* 设置最小高度，保证背景图展示效果 */
    min-height: 300px;
    /* 文字颜色（根据背景图调整，保证可读性） */
    color: #ffffff;
    /* 文字居中 */
    text-align: center;
    /* 文字阴影（增强可读性） */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


.service-title {
    font-size: 40px;
    font-weight: bold;
    margin: 45px 0;
}

.service-desc {
    font-size: 20px;
    line-height: 1.6;
}


/*大小标题样式*/

.title-section {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
}

.main-title {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    margin-top: 28px;
}

.sub-title {
    font-size: 16px;
    font-weight: normal;
    color: #666;
}