/* 基础样式 */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #333;
    --link-color: #2980b9;
    --container-width: 1200px;
    --accent-color: #e74c3c; /* 新增强调色，用于突出某些元素 */
    --background-color: #f8f9fa; /* 背景颜色 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif; /* 使用现代无衬线字体 */
    line-height: 1.8;
    color: var(--text-color);
    background: var(--background-color);
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 40px; /* 增加整体容器的内边距 */
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px; /* 增加列之间的间距 */
    padding-bottom: 160px; /* 增加底部内边距 */
}

/* 侧边栏样式 */
.sidebar {
    background: white;
    padding: 30px;
    border-radius: 16px; /* 增加边框圆角 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* 增加阴影效果 */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease; /* 增加过渡动画 */
}

.sidebar:hover {
    transform: translateY(-5px); /* 悬停时向上移动 */
}

/* 品牌标识 */
.branding {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--background-color) 0%, #e9ecef 100%);
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 增加阴影效果 */
}

.logo {
    width: 180px; /* 增加 logo 大小 */
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(44, 62, 80, 0.1); /* 增加边框宽度 */
    transition: transform 0.3s ease; /* 增加过渡动画 */
}

.logo:hover {
    transform: scale(1.05); /* 悬停时放大 */
}

.company-name {
    font-size: 2.2rem; /* 增加字体大小 */
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px; /* 增加字母间距 */
}

.company-slogan {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* 联系方式 */
.contact-list {
    list-style: none;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 90%; /* 调整宽度 */
    margin: 0 auto;
    transition: box-shadow 0.3s ease; /* 增加过渡动画 */
}

.contact-list:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* 悬停时增加阴影效果 */
}

.contact-list li {
    margin-bottom: 10px; /* 调小行间距 */
    display: flex;
    align-items: center;
    gap: 15px; /* 增加图标和文本之间的间距 */
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
    justify-content: flex-start;
    width: 100%;
    transition: background-color 0.3s ease; /* 增加过渡动画 */
}

.contact-list li:hover {
    background-color: #f5f5f5; /* 悬停时背景变色 */
}

.contact-list li i {
    color: var(--secondary-color); /* 图标颜色 */
    font-size: 1.2rem; /* 图标大小 */
}

/* 二维码样式 */
.qrcode-box {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: box-shadow 0.3s ease; /* 增加过渡动画 */
}

.qrcode-box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* 悬停时增加阴影效果 */
}

.qrcode-img {
    width: 180px; /* 增加二维码大小 */
    height: 180px;
    display: block;
    margin: 0 auto 15px;
    border: 2px solid #eee; /* 增加边框宽度 */
    transition: transform 0.3s ease; /* 增加过渡动画 */
}

.qrcode-img:hover {
    transform: scale(1.05); /* 悬停时放大 */
}

/* 主要内容区 */
.main-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease; /* 增加过渡动画 */
}

.main-content:hover {
    transform: translateY(-5px); /* 悬停时向上移动 */
}

.introduction {
    margin-bottom: 40px;
}

.introduction h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    border-left: 6px solid var(--secondary-color); /* 增加边框宽度 */
    padding-left: 20px;
    font-size: 2rem; /* 增加标题字体大小 */
    letter-spacing: 1px; /* 增加字母间距 */
}

/* 图片容器 */
.image-container {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.project-image {
    width: 90%; /* 增加图片宽度 */
    max-width: 700px;
    margin: 30px auto;
    border: 4px double var(--secondary-color); /* 增加边框宽度 */
    border-radius: 16px;
    display: block;
    transition: transform 0.3s ease; /* 增加过渡动画 */
}

.project-image:hover {
    transform: scale(1.03); /* 悬停时放大 */
}

/* 业务内容区 */
.business {
    margin-top: 30px;
}

.business h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.business ul {
    list-style-type: disc;
    padding-left: 20px;
}

.business ul li {
    margin-bottom: 10px;
}

/* 按钮组 */
.cta-buttons {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.cta-buttons a {
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease; /* 增加过渡动画 */
    text-align: center;
    font-size: 1.1rem; /* 增加字体大小 */
    letter-spacing: 1px; /* 增加字母间距 */
}

.cta-buttons a:hover {
    background: var(--accent-color); /* 悬停时背景变色 */
    transform: translateY(-3px); /* 悬停时向上移动 */
}

/* 底部样式 */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    transition: background-color 0.3s ease; /* 增加过渡动画 */
}

footer:hover {
    background-color: white; /* 悬停时背景变色 */
}

footer a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.3s ease; /* 增加过渡动画 */
}

footer a:hover {
    color: var(--accent-color); /* 悬停时文字变色 */
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
        padding-bottom: 200px;
    }

    .project-image {
        width: 100%;
        max-width: none;
        margin: 20px auto;
    }

    .company-name {
        font-size: 1.8rem;
    }

    .contact-list li {
        font-size: 1rem;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
    }

    .qrcode-img {
        width: 150px;
        height: 150px;
    }
}    