/* Common Utility Classes */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'OPPOSans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

ul,
li,
dl,
dt,
dd,
p {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.content {
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
}

/* Footer Container */
footer {
  padding: 20px 0;
  background: #1a1a1a; /* Dark background matching image */
  color: #999999;
  font-size: 12px;
}

.footer-con {
  align-items: flex-start;
}

/* Left Section */
.footer-left {
  width: 45%;
  margin-right: 100px;
}

.footer-logo-box {
  margin-bottom: 24px;
}

.footer-logo {
  height: 50px; /* Adjust based on actual logo ratio */
  width: auto;
  display: block;
}

.footer-info p {
  line-height: 20px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #999;
}

/* Right Section */
.footer-right {
  width: 55%;
  justify-content: space-between;
}

.footer-right dl {
  /* width: 25%;  */
}

.footer-right dt {
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}

.footer-right dd {
  margin-bottom: 10px;
  position: relative;
}

.footer-right dd a {
  color: #999;
  font-size: 12px;
  line-height: 16px;
}

.footer-right dd a:hover {
  color: #3b5ce0;
}

/* QR Code Popup Styles (kept from original) */
.footer-right dd:hover .plat-box {
  display: flex;
}

.plat-box {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 4px;
  padding: 10px;
  position: absolute;
  top: -130px; /* Adjust based on position */
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Arrow for popup */
.plat-box::after {
  content: '';
  display: block;
  position: absolute;
  border: 8px solid transparent;
  border-top: 8px solid #fff;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.plat-box img {
  width: 100%;
  height: 100%;
}

.plat-text {
  font-size: 12px;
  color: #333;
  text-align: center;
  line-height: 1.4;
}
