/* 响应式控制 */
@media (max-width: 768px) {
  .pc-visable {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-visable {
    display: none !important;
  }
}

/* PC端可见元素样式 */
.pc-visable {
  display: block;
}

/* 基础样式 */
body {
  background-color: #0e74bb;
  position: relative;
}

.blur-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/group/bg1.png) repeat;
  background-size: 100%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.8;
}

/* 主容器样式 */
#main {
  width: 19.2rem;
  min-height: 10.8rem;
  margin: 0 auto;
  background: url(../img/group/bg1.png) no-repeat;
  background-size: 100%;
  position: relative;
}

#main img {
  max-width: 100%;
  max-height: 100%;
}

/* 头部样式 */
#main .header {
  line-height: 1;
  padding-top: 1rem;
  margin-bottom: 0.6rem;
  font-size: 0;
  text-align: center;
}

#main .header img {
  display: block;
  margin: 0 auto;
}

#main .header .title1 {
  margin-top: 0.5rem;
}

#main .header .title2 {
  margin-top: -0.1rem;
}

/* 导航菜单样式 */
#main .nav-box {
  font-size: 0;
  list-style: none;
  padding: 0;
  margin-bottom: 0.8rem;
  text-align: center;
}

#main .nav-box li {
  text-align: center;
  display: inline-block;
  margin: 0 1rem;
}

#main .nav-box li .icon {
  margin-bottom: 0.1rem;
  font-size: 0;
  display: block;
  transition: transform 0.2s ease;
  overflow: visible;
}

#main .nav-box .text {
  font-weight: 600;
  font-size: 0.34rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

#main .nav-box .text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 100%;
  height: 0.05rem;
  background: #ffd633;
  transition: height 0.2s ease;
}

#main .nav-box li:hover .icon {
  opacity: 0.8;
  transform: scale(1.1);
}

#main .nav-box li:hover .text:after {
  height: 0.08rem;
}

/* 装饰元素样式 */
#main .dog {
  position: absolute;
  left: 4.2rem;
  top: 6.5rem;
}

#main .btn-query {
  position: absolute;
  right: 1.7rem;
  top: 8rem;
  transition: transform 0.2s ease;
}

#main .btn-query:hover {
  transform: scale(1.1);
}

#main .dw {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: center;
}

/* 页脚样式 */
#main .footer {
  position: relative;
  text-align: center;
  margin: 0.5rem;
  color: #fff;
}

.mobile-visable .vertical-img {
  width: 100%;
  display: block;
}
.mobile-visable .horizontal-group {
  display: flex;
  width: 100%;
  gap: 0; /* 新增 */
  line-height: 0; /* 新增 */
}
.mobile-visable .horizontal-img {
  /* width: 50%; */
  flex-shrink: 0;
  border: 0; /* 新增 */
}
.mobile-visable img {
  width: 100%;
  height: auto;
  vertical-align: top;
  display: block; /* 修改 */
}
