/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", sans-serif;
}

/* 页脚容器 */
.footer {
  background-color: #10182d;
  background-image: url("../image/footerbj.png");
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%233b6dc5' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
  color: #fff;
  padding: 60px 0 30px;
  background-repeat: no-repeat;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 页脚内容布局 */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

/* 左侧公司信息 */
.footer-info {
  flex: 1;
  min-width: 280px;
}

.company-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff7d00 0%, #4096ff 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.logo-icon i {
  font-size: 20px;
  color: white;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.logo-english {
  font-size: 12px;
  color: #86909c;
  margin-top: 2px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-title {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-address {
  color: #86909c;
  font-size: 14px;
  line-height: 1.6;
}

.wechat-qrcode {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.qrcode-img {
  width: 110px;
  height: 110px;
  background-color: white;
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.qrcode-img::before,
.qrcode-img::after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  height: 62%;
  z-index: 1;
}
.qrcode-img::before {
  bottom: 100%;
  background: linear-gradient(to bottom, rgba(255, 191, 164, 0), #d4042c);
}
.qrcode-img.actived::before {
  transform: translateY(270%);
  transition: transform 1.5s;
}
.qrcode-img::after {
  top: 100%;
  background: linear-gradient(to top, rgba(255, 191, 164, 0), #d4042c);
}
.qrcode-img.actived::after {
  transition: transform 1.5s 1.5s;
  transform: translateY(-270%);
}

.qrcode-text {
  width: 110px;
  text-align: center;
  font-size: 13px;
  color: #86909c;
}

/* 右侧链接区域 */
.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  min-width: 280px;
}

.link-group {
  flex: 1;
  min-width: 120px;
}

.link-title {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}

.link-list {
  list-style: none;
}

.link-list li {
  margin-bottom: 12px;
}

.link-list a {
  color: #86909c;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.link-list a:hover {
  color: white;
}

/* 版权&备案信息 */
.copyright {
  padding-top: 20px;
  border-top: 1px solid #2c3038;
  text-align: center;
  font-size: 14px;
  color: #86909c;
}
.copyright a {
  color: #86909c;
}
/* 响应式调整 */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    gap: 30px;
    margin-top: 20px;
  }
}

.right_bar {
  position: fixed;
  top: calc(90px + 10vh);
  right: 0;
  width: 50px;
  height: 203px;
  z-index: 10;
  display: none;
}
.right_bar li {
  width: 62px;
  height: 50px;
  z-index: 20;
}
.right_bar li.rtbar_li1,
.right_bar li.rtbar_li4 {
  position: absolute;
  left: 0;
}
.right_bar li.rtbar_li1 {
  top: 0;
  width: 172px;
}
.right_bar li.rtbar_li2 {
  position: absolute;
  top: 51px;
  left: 0;
}
.right_bar li.rtbar_li3 {
  position: absolute;
  top: 102px;
  left: 0;
  width: 126px;
}
.right_bar li.rtbar_li4 {
  top: 153px;
}
.rtbar_li4 {
  position: absolute;
  top: 153px;
  left: 0;
}
.right_bar li a {
  display: block;
  color: #fff;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  background-color: #39424b;
  opacity: 0.8;
  border-radius: 6px;
}
.right_bar li a img {
  display: block;
  float: left;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin: 12px 12px 14px 14px;
}
.right_bar li a:hover {
  background-color: #0953a8;
  opacity: 1;
}
.rtbar_shwx {
  display: none;
  position: absolute;
  top: -65px;
  left: -190px;
  padding-bottom: 9px;
  background: #fff;
}
.rtbar_shwx img {
  padding: 10px 10px 20px 10px;
  background-color: #fff;
}
