/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 80px;
    background: url('background-image.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* 透明头部 */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 18, 42, 0.6); /* 头部半透明 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

/* Logo */
.logo img {
	width: 150%;
    height: 85px;
	margin-left: -16%;
}

/* 导航菜单 */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    display: block;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #FFD700;
}

/* 下拉菜单（透明背景） */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    border-radius: 5px;
    overflow: hidden;
    min-width: 150px;
    backdrop-filter: blur(5px); /* 增加毛玻璃效果 */
}

/* 下拉菜单项 */
.dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 10px;
    display: block;
    color: white;
    white-space: nowrap;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2); /* 透明度增加 */
    color: #FFD700;
}

/* 使下拉菜单可见 */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* 电话按钮 */
.contact {
    display: flex;
    align-items: center;
    /* background: #007BFF; */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.contact img {
    width: 20px;
    margin-right: 5px;
}
/* 右侧固定按钮 */
.fixed-right-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px; /* 按钮间隔 */
    z-index: 1000;
}


/* 默认按钮样式 */
.right-btn {
    width: 120px;
    height: 40px;
    background: rgba(128, 128, 128, 0.5); /* 默认灰色 */
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

/* 鼠标悬浮时 */
.right-btn:hover {
    background: rgba(0, 123, 255, 1);
}

/* 当前选中的按钮变蓝色 */
.right-btn.active-btn {
    background: rgba(0, 123, 255, 1) !important;
    color: white;
}
/* 上部分（仅背景色） */
/* 上部分背景 */
.content-top {
    height: 350px; /* ✅ 适当调整高度 */
    background: url('../img/202521011.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 文字容器 */
.content-top-overlay {
    position: relative;
    z-index: 1; /* ✅ 确保文字在最前面 */
    color: white;
}

/* 标题 */
.content-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 副标题 */
.content-subtitle {
    font-size: 18px;
    font-weight: normal;
}

/* 主容器 */
.content-middle-top1 {
    width: 100%;
    background: #fff;
    padding: 50px 5%;
    display: flex;
    justify-content: center;
}

/* 内部内容容器（左右布局） */
.content-middle-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px; /* 左右间距 */
}

/* 左侧内容 */
.content-left {
    flex: 1;
    text-align: left;
}

/* 标题 */
.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.section-subtitle {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #000;
}

.section-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* 按钮容器 */
.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/* 按钮样式 */
.service-btn {
    background: #0066ff;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.service-btn:hover {
    background: #004bbd;
}

/* 右侧图片 */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-image {
    width: 100%;
    max-width: 600px;
}


/* 整体容器 */
.content-middle-top2 {
    width: 100%;
    background: #f7fbff; /* ✅ 设置淡色背景 */
    padding: 50px 5%;
    text-align: center;
}

/* 标题 */
.service-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* 卡片容器 */
.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* ✅ 确保在小屏幕上自动换行 */
}

/* 单个卡片 */
.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* ✅ 添加阴影 */
    text-align: center;
    width: 180px; /* ✅ 设置固定宽度 */
    transition: transform 0.3s ease-in-out;
}

/* 卡片悬停放大 */
.service-card:hover {
    transform: translateY(-5px);
}

/* 图标样式 */
.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

/* 文字样式 */
.service-card p {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

/* 整体容器 */
.content-middle-bottom1 {
    min-height: 660px; /* ✅ 适当调整高度 */
    background: url('../img/202521018.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 5%;
}

/* 主要内容容器 */
.container {
    width: 100%;
    max-width: 1200px;
}

/* 标题 */
.brand-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 40px;
}

/* 卡片容器（两行三列） */
.brand-service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

/* 单个卡片 */
.brand-service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* 悬停效果 */
.brand-service-card:hover {
    transform: translateY(-5px);
}

/* 卡片内图标 */
.brand-service-card img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

/* 标题 */
.brand-service-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

/* 描述 */
.brand-service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}






















.content-bottom {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* ✅ 让子元素上下排列 */
    justify-content: space-between; /* ✅ 均匀分布 */
    align-items: center;
    padding: 50px 5%;
    background: url('../img/bac7.jpg') no-repeat center center fixed;
    background-size: cover; /* 让背景图填充整个区域 */
}
.content6-top {
    display: grid;
    grid-template-columns: 34% 22% 22% 22%; /* 第一列占40%，其余均分 */
    gap: 10px; /* ✅ 设置列间距 */
    width: 100%;
    padding: 20px;
    border-radius: 10px;
	margin-top: 8%;
}

/* 第一列（五行） */
.column-1 {
    display: grid;
    grid-template-rows: auto auto auto auto auto; /* ✅ 五行 */
    gap: 10px; /* ✅ 设置行间距 */
    /* text-align: center; */
    padding: 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* ✅ 轻微阴影 */
}

/* 标题 */
.col-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
	text-align: left;
}

/* 内容 */
.col-content {
    font-size: 16px;
    color: white;
	margin-top: 5%;
	text-align: left;
	line-height: 2.5;
}

/* 电话 */
.col-phone {
    font-size: 16px;
    font-weight: bold;
    color: white;
	text-align: left;
	line-height: 2.5;
}

/* 邮箱 */
.col-email {
    font-size: 16px;
    color: white;
	text-align: left;
	line-height: 2.5;
}

/* 图标容器（让图标靠左） */
.col-icons {
    display: flex;
    justify-content: flex-start; /* ✅ 让图标靠左对齐 */
    align-items: center; /* ✅ 垂直居中 */
    gap: 10px; /* ✅ 设置图标之间的间距 */
}

/* 调整小图标大小 */
.col-icons img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* ✅ 让黑色图标变白色 */
}
/* 标题 */
.col-title2 {
    font-size: 18px;
    font-weight: bold;
    color: white;
	text-align: center;
}

/* 内容 */
.col-content2 {
    font-size: 17px;
    color: white;
	margin-top: 5%;
	text-align: center;
	line-height: 3.2;
}
/* 每列样式 */
.top-column {
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* ✅ 轻微阴影 */
}


/* 中部分整体样式 */
.content6-middle {
    text-align: left; /* ✅ 让文本左对齐 */
    width: 100%;
    padding: 20px;
    border-radius: 10px;
	margin-left: 1%;
}
/* 友情链接容器，保持水平排列 */
.friend-links {
    display: flex;
    align-items: center; /* ✅ 让标题和列表垂直居中对齐 */
    gap: 10px; /* ✅ 控制标题与列表之间的间距 */
    width: 100%;
}

/* 友情链接标题 */
.friend-title {
    font-size: 16px;
    font-weight: bold;
    color: white;
    white-space: nowrap; /* ✅ 防止换行 */
}

/* 友情链接列表 */
.friend-list {
    display: flex;
    flex-wrap: wrap; /* ✅ 让链接自动换行 */
    gap: 15px; /* ✅ 让链接之间有间隔 */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 每个链接项 */
.friend-list li {
    display: flex;
    align-items: center;
}

/* 友情链接的样式 */
.friend-list a {
    color: #ccc; /* ✅ 浅灰色字体 */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* 悬停变白 */
.friend-list a:hover {
    color: white;
}

/* 竖线分隔符 */
.friend-list li:not(:last-child)::after {
    content: "|";
    color: #777;
    margin-left: 15px;
}

/* 下部分整体样式 */
.content6-bottom {
    display: flex;
    align-items: center; /* ✅ 让文本垂直居中 */
    width: 100%;
    padding: 15px;
    color: #ccc; /* ✅ 文字浅灰色 */
    font-size: 16px;
	margin-left: 1.5%;
}

/* 版权文本样式 */
.copyright-text {
    text-align: left; /* ✅ 文字居中 */
}

/* 备案号链接 */
.copyright-text a {
    color: #aaa; /* ✅ 浅灰色 */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* 备案号悬停变亮 */
.copyright-text a:hover {
    color: white;
}
