/* 头部区域样式 */
header {
    background-color: #273067;
    padding: 20px 0;
    width: 100%; /* 确保头部宽度为100% */
}

/* 主内容容器 */
.header-content {
    width: min(90%, 1200px); /* 保持最大 1200px，同时适应小屏幕 */
    margin: 0 auto; /* 居中 */
    display: flex;
    justify-content: space-between; /* 左右对齐 */
    align-items: center; /* 垂直居中 */
    padding: 0 20px; /* 两侧增加内边距 */
    gap: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column; /* 让内容在小屏幕上垂直排列 */
        text-align: center;
        gap: 15px; /* 让间距更大一些 */
    }
}

/* 左侧LOGO */
.header-left img {
    max-height: 200px; /* 限制LOGO的高度 */
    width: auto; /* 按比例缩放宽度 */
}

/* 中间文本 */
.header-content span {
    flex: 1; /* 占据中间剩余空间 */
    text-align: center; /* 文本居中对齐 */
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

/* 按钮容器 */
.header-right {
    display: flex;
    gap: 10px; /* 按钮之间的间距 */
}

/* 按钮样式 */
.button {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* LINE按钮样式 */
.button-line {
    background-color: #4CAF50;
}

/* 电话按钮样式 */
/* 电话按钮样式 */
.phone-button {
    background-color: #FF9800; /* 橙色背景 */
    color: white; /* 白色文字 */
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 按钮阴影 */
    text-decoration: none; /* 去掉下划线 */
    line-height: 1.5;
}

/* 按钮容器 */
.button-container {
    display: flex;
    gap: 10px; /* 按钮之间的间距 */
    width: 100%;
}

.phone-button .phone-number {
    font-size: 16px;
}




 .header-content img {
     height: 100px;
 }


 .header-right img {
     margin-left: 10px;
     height: 100px;
 }

 /* 主内容区域样式 */
 main {
     width: 65%;
     margin: 20px auto;
     display: flex;
     gap: 20px;
 }
 .left-column {
     width: 30%;
 }
 .left-column img {
     width: 80%;
     margin-bottom: 10px;
 }
 .right-column {
     width: 70%;
 }
 .right-column img {
     width: 100%;
     height: auto;
 }

 /* 页脚样式 */
 footer {
     background-color: #eee;
     text-align: center;
     padding: 10px 0;
     font-size: 14px;
 }

/* 固定图片样式 */
.fixed-image {
    position: fixed;
    right: 10px; /* 距离右侧 10px */
    bottom: 30%; /* 距离底部 10px */
    width: 97px; /* 图片宽度 */
    height: 97px; /* 图片高度 */
}

.fixed-image img {
    width: 100%; /* 图片宽度100%填充容器 */
    height: 100%; /* 图片高度100%填充容器 */
    object-fit: cover; /* 确保图片按比例显示 */
    border-radius: 8px; /* 可选：让图片有一点圆角 */
}
.fixed-image02 {
    position: fixed;
    right: 10px; /* 距离右侧 10px */
    bottom: 35%; /* 距离底部 10px */
    width: 60px; /* 默认宽度 */
    height: 200px; /* 默认高度 */
}

.fixed-imageRightToTop02 {
    position: fixed;
    /* 固定位置 */
    right: 10px;
    /* 距离屏幕右边 10px */
    bottom: 18%;
    /* 距离屏幕顶部 50%，即垂直居中 */
    transform: translateY(-50%);
    /* 居中对齐 */
    width: 40px;
    /* 图片宽度 */
    height: auto;
    /* 自动调整高度 */
    z-index: 1000;
    /* 保证图片显示在最前面 */
  }

      .fixed-imageRightToTop {
        position: fixed;
        /* 固定位置 */
        right: 10px;
        /* 距离屏幕右边 10px */
        bottom: 1%;
        /* 距离屏幕顶部 50%，即垂直居中 */
        transform: translateY(-50%);
        /* 居中对齐 */
        width: 20px;
        /* 图片宽度 */
        height: auto;
        /* 自动调整高度 */
        z-index: 1000;
        /* 保证图片显示在最前面 */
      }

.fixed-image img {
    width: 80%; /* 图片宽度100%填充容器 */
    height: 80%; /* 图片高度100%填充容器 */
    bottom: 2%; /* 距离底部 10px */
    object-fit: cover; /* 确保图片按比例显示 */
    border-radius: 8px; /* 可选：让图片有一点圆角 */
}

.fixed-imageRightToTop02 {
    position: fixed;
    /* 固定位置 */
    right: 10px;
    /* 距离屏幕右边 10px */
    bottom: 18%;
    /* 距离屏幕顶部 50%，即垂直居中 */
    transform: translateY(-50%);
    /* 居中对齐 */
    width: 40px;
    /* 图片宽度 */
    height: auto;
    /* 自动调整高度 */
    z-index: 1000;
    /* 保证图片显示在最前面 */
  }

/* 导航栏背景 */
.newnav-bar {
    background-color: #4a56a7; /* 棕色背景 */
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 菜单容器 */
.newnav-container {
    width: 1226px;
    margin: 0 auto; /* 水平居中 */
    display: flex;
    justify-content: space-between; /* 等间距分布 */
    align-items: center;
}

/* 菜单项 */
.newnav-item {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    background-color:  #4a56a7; /* 深棕色按钮背景 */
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.newnav-item:hover {
    background-color: #CD853F; /* 浅棕色 */
    transform: translateY(-2px);
}
