/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Footer主容器 - 宽度1920px, 高度90px */
.footer {
    position: relative;
    width: 100%;
    height: 90px;
    background-color: #0069A8; /* paint_2:314 - 蓝色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer背景路径 */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0069A8; /* paint_2:314 */
    z-index: 1;
}

/* Logo区域容器 - 宽度135px, 高度47.03px, 位置(893, 21) */
.footer-logo {
    position: relative;
    width: 135px;
    height: 47.032257080078125px;
    margin-top: 10px;
    z-index: 2;
}

/* PI Logo SVG */
.pi-logo {
    width: 100%;
    height: 100%;
    display: block;
}

/* Logo内部元素通用样式 */
.pi-logo path {
    fill: #FFFFFF; /* paint_2:211 - 白色 */
}

/* 响应式设计 - 适配不同屏幕尺寸 */
@media (max-width: 1920px) {
    .footer {
        width: 100%;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .footer {
        height: auto;
        padding: 20px;
    }
    
    .footer-logo {
        width: 100px;
        height: auto;
        margin: 0 auto;
    }
}
