* {
  padding: 0;
  margin: 0;
}
html, body {
  height: 100vh;
  width: 100vw;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1.9;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}

.bg {
  background: url("../images/bj.jpg");
  background-size: cover;
  position: fixed;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  filter: blur(30px);
  z-index: -1;
}
.slogan {
  color: white;
  margin-top: 10px;
  font-size: 26px;   
}
.mask {
  width: 800px;
  height: 277px;
  -webkit-animation: move 20s infinite;
  animation: move 20s infinite;
  background-image: url(../images/bj.jpg);
  background-size: cover;
  -webkit-mask: url(https://www.sdgdh.com/images/logo.png); /* 双引号闭合正确 */
  mask: url(https://www.sdgdh.com/images/logo.png); /* 修复：补全双引号闭合 */
  -webkit-mask-size: cover;
  mask-size: cover;
}
@keyframes move {
  0% { background-position: 0 0; }
  50% { background-position: 100% 0; }
  100% { background-position: 0 0; /* 回到初始位置，确保循环流畅 */ }
}
/* WebKit 前缀版本同步补充 */
@-webkit-keyframes move {
  0% { background-position: 0 0; }
  50% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
.ewm img{width:180px;    border-radius: 10px; margin-top:20px;}

/* 新增logo样式 */
.logo {
    position: fixed; /* 固定在窗口 */
    top: 15px;       /* 距离顶部20px */
    left: 15px;      /* 距离左侧20px */
    z-index: 999;    /* 确保在最上层 */
    border-radius: 30px; /* 圆角效果 */
    padding:5px 10px;      /* 内边距 */
    /* 毛玻璃背景核心样式 */
    background: rgba(255, 255, 255, 0.35); /* 半透明白色背景（可调整透明度） */
    backdrop-filter: blur(10px); /* 背景模糊效果（数值越大越模糊） */
    -webkit-backdrop-filter: blur(10px); /* 兼容Safari浏览器 */
    border: 1px solid rgba(255, 255, 255, 0.2); /* 轻微边框增强层次感 */
    /* 呼吸动画 */
    animation: pulse 3s infinite ease-in-out;
}

/* 呼吸动画关键帧（保持发光效果） */
@keyframes pulse {
0% {
box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
}
50% {
box-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.7), 0 0 45px rgba(255, 255, 255, 0.5);
}
100% {
box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
}
}
.logo-img {
    width: 118px; /* 根据实际logo尺寸调整 */
    height: auto;
    display: block;
}



/* 原有元素样式补充 */
.slogan {
    position: relative;
    z-index: 1;
    margin-top: 10px; margin-bottom: 10px;
}
.footer {
  position: fixed; /* 固定在底部 */
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px; /* 上下内边距10px，左右20px */
  display: flex; /* 启用flex布局 */
  justify-content: space-between; /* 左右两端对齐 */
  align-items: center; /* 垂直居中 */
  color: #fff; /* 文字颜色，可根据背景调整 */
  font-size: 14px; /* 文字大小 */
  z-index: 998; /* 确保在内容之上，logo之下 */
}

/* 版权信息左对齐 */
.copyright {
  text-align: left;
}

/* 备案号右对齐 */
.ICP {
  text-align: right;
}

.ICP a, .slogan a{    text-decoration: none;
    color: #fff;}

@media(max-width:960px) {

.mask {
  width: 300px;
  height: 104px;
}

.slogan {
 
  font-size:18px;   padding: 0 4%;
}
.ewm img{width:160px;  }


.ICP, .ewm{
    display: none;
}

.logo {
    position: absolute; margin-bottom:15px; }
}

