/* 为屏幕宽度小于480px的设备定义样式 */
@media screen and (max-width: 800px) {


    /* 头部区域样式 *//* 为屏幕宽度小于480px的设备定义样式 */
    header {
        background-color: #273067;
        padding: 1px 0;
        width: 850px; /* 确保头部宽度为100% */
    }

    /* 主内容容器 *//* 为屏幕宽度小于480px的设备定义样式 */
    .header-content {
        max-width: 780px; /* 设置内容的最大宽度 */
        margin: 0 auto; /* 居中对齐 */
        display: flex;
        justify-content: space-between; /* 左右对齐，中间保持空间 */
        align-items: left; /* 垂直居中 */
        padding: 0 0px; /* 两侧增加内边距 */
    }

    /* 左侧LOGO *//* 为屏幕宽度小于480px的设备定义样式 */
    .header-left img {
        max-height: 70px; /* 限制LOGO的高度 */
        width: auto; /* 按比例缩放宽度 */
    }

    /* 中间文本 *//* 为屏幕宽度小于480px的设备定义样式 */
    .header-content span {
        flex: 1; /* 占据中间剩余空间 */
        text-align: center; /* 文本居中对齐 */
        color: white;
        font-size: 10px;
        line-height: 1;
    }

    /* 按钮容器 *//* 为屏幕宽度小于480px的设备定义样式 */
    .header-right {
        display: flex;
        gap: 6px; /* 按钮之间的间距 */
    }

    /* 按钮样式 *//* 为屏幕宽度小于480px的设备定义样式 */
    .button {
        display: inline-block;
        text-align: center;
        padding: 10px 20px;
        font-size: 10px;
        font-weight: bold;
        border-radius: 10px;
        text-decoration: none;
        color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    /* LINE按钮样式 *//* 为屏幕宽度小于480px的设备定义样式 */
    .button-line {
        background-color: #4CAF50;
    }

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

    /* 按钮容器 *//* 为屏幕宽度小于480px的设备定义样式 */
    .button-container {
        display: flex;
        gap: 10px; /* 按钮之间的间距 */
        width: 80%;
    }

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

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


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

    /* 为屏幕宽度小于480px的设备定义样式 */
    .fixed-image02 {
        position: fixed;
        left: 10px; /* 距离左侧 10px */
        bottom: 25%; /* 距离底部 10px */
        width: 40px; /* 默认宽度 */
        height: 133px; /* 默认高度 */
    }

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

      .fixed-imageRightToTopLine {
        position: fixed;
        right: 10px; /* 距离右侧 10px */
        bottom: 25%; /* 距离底部 10px */
        width: 100px; /* 默认宽度 */
        height: 100px; /* 默认高度 */
      }
/* 导航栏背景 */
.newnav-bar {
    background-color: #4a56a7; /* 棕色背景 */
    width: 850px;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 菜单容器 */
.newnav-container {
    width: 780px;
    display: flex;
    justify-content: space-between; /* 等间距分布 */
    align-items: center;
    margin: 0 auto; /* 居中对齐 */
    align-items: left; /* 垂直居中 */
    padding: 0 0px; /* 两侧增加内边距 */
    
}

/* 菜单项 */
.newnav-item {
    color: white;
    text-decoration: none;
    padding: 1px 1px;
    font-size: 10px;
    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);
}

 /* 主内容区域样式 */
 main {
    width: 800px;
    margin: 10px auto;
    display: flex;
    gap: 10px;
}

.left-column {
    width: 20%;
}
.left-column img {
    width: 100%;
    margin-bottom: 10px;
}
.right-column {
    width: 70%;
}
.right-column img {
    width: 100%;
    height: auto;
}

    
}