/* brandLaw.scss 转换为纯CSS */
.dongpeng-container {
  max-width: 1080px !important;
}
.about-us-header {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.about-us-header .header-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us-header .header-content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.about-us-header .header-content .title {
  font-size: var(--banner-title);
  font-weight: bold;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}
.about-us-header .header-content .subtitle {
  font-size: var(--banner-subhead);
  animation: fadeInUp 1s ease 0.3s both;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .about-us-header {
    height: 350px;
  }
  .about-us-header .header-content .title {
    font-size: 2rem;
  }
  .about-us-header .header-content .subtitle {
    font-size: 1.2rem;
  }
}
.title-deta {
  max-width: 1080px;
  width: 58vw;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.title-deta .dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  margin: 0 10px;
}
.title-deta .brand-title {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  letter-spacing: 3px;
}
.title-deta .slogan {
  flex: 1;
  font-size: 12px;
  color: #666;
  font-style: normal;
  text-align: left;
  margin-left: 10px;
  align-self: flex-end;
}
.title-deta .search-wrap {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 5px;
}
.title-deta .search-input {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: var(--font-size-base);
  outline: none;
}
.title-deta .search-input::placeholder {
  color: #999;
}
.title-deta .search-btn {
  padding: 4px 8px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 12px;
}
.title-deta .search-btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .title-deta {
    width: 90vw !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px auto !important;
  }
  .title-deta .brand-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    letter-spacing: 2px;
  }
  .title-deta .slogan {
    font-size: 11px;
    margin-left: 5px;
    flex-basis: 100%;
    margin-top: 5px;
    text-align: center;
  }
  .title-deta .search-input,
  .title-deta .search-btn {
    padding: 6px 10px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .title-deta {
    gap: 5px;
  }
  .title-deta .dot {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }
  .title-deta .brand-title {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .title-deta .slogan {
    font-size: 10px;
  }
}
.image-screen {
  max-width: var(--max-width-view);
  padding: 0 30px;
  width: 70vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .image-screen {
    width: 90vw;
  }
}
