/* 背景图片 */
body {
    background-image: url('img/res-bg.png');/* 设置背景图片填充整个页面 */
    background-size: 100% 100%; /* 背景图片填充整个页面 */
    background-repeat: no-repeat; /* 背景图片不重复 */
    background-position: center center; /* 背景图片居中对齐 */
    background-attachment: fixed; /* 背景图片固定，不随滚动条移动 */
}

/* 设置LOGO位置和样式 */
.logo {
    position: fixed; /* 固定位置 */
    bottom: -56px; /* 距离底部10px */
    left: 10px; /* 距离左侧10px */
    width: 200px; /* LOGO宽度，可以根据需要调整 */
    height: 200px; /* LOGO高度，可以根据需要调整 */
    background-image: url('img/res-logo.png'); /* LOGO图片路径 */
    background-size: contain; /* 背景图片按比例缩放 */
    background-repeat: no-repeat; /* 背景图片不重复 */
    background-position: center; /* 背景图片居中对齐 */
    z-index: 1000; /* 保证LOGO在最上层 */
}

/* 文字样式 */
.text1 {
    font-size: 25px;
    opacity: 0.8;
}

.text2 {
    font-size: 14px;
    opacity: 0.5;
}

.text3 {
    font-size: 16px;
    opacity: 1.0;
}

.extendLink {
    font-size: 16px;
    opacity: 1.0;
}
