/* 版权 div 样式 */
.copyright {
    width: 100%; /* 宽度随浏览器宽度 */
    height: 640px;
    background-image: url(../images/footer.png);
    background-size: cover;
    background-position: center;
    background-color: #f9f9f9; 
    padding-top: 200px;
    /* 顶部浅灰色分隔线 */
     /* border-top: 2px solid red ;      */
}




/* 版权主容器样式 */
#copyright-1 {
    width: 1440px;
    margin: 0 auto; /* 水平居中 */
    overflow: hidden; /* 清除浮动 */
    padding-top: 20px; /* 内侧上边距为20px */
    color: white; /* 所有文字为白色 */
    line-height: 25px; /* 行距为10px */
}

/* 版权左侧样式 */
#copyright-1-1 {

    float: left; /* 居左 */
    text-align: left; /* 文字居左 */
}

/* 版权左侧段落样式 */
#copyright-1-1 p {
  
    margin-bottom: 30px;
}

.logo_footer{
    width: 450px;
    height: 80px;
}
/* 版权右侧样式 */
#copyright-1-2 {
    width: 170px;
    height: 300px;
    float: right; /* 居右 */
    text-align: center; /* 文字居中对齐 */
}


/* 版权信息区域样式：底部声明栏 */
#copyright-info {
    width: 1440px;                    /* 固定宽度，保持与主容器一致 */
    margin: 0 auto;                   /* 水平居中 */
    text-align: center;               /* 文字居中对齐 */
    margin-top: 0px;  
    padding: 40px 0;                /* 上下内边距20px，左右为0 */
    font-size: 12px;                /* 字号12px，较小字体 */
    color: white;                    /* 字体颜色为深灰色 */
    border-top: 3px solid #fff;     /* 顶部浅灰色分隔线 */
}


