@charset "UTF-8";
.clearFloat {
  clear: both;
  display: block;
}

.lmTitleContainer {
  text-align: center;
  padding: 0 10px;
}

.lmTitleContainer > h1 {
  font-size: 28px;
  color: #000;
  padding-top: 50px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  border-bottom: 2px solid #dc3545;
  display: inline-block;
}

.lmTitleContainer > h2 {
  font-size: 14px;
  color: #333;
  margin-top: 15px;
  margin-bottom: 30px;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.btn {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid #fff;
  transition: all 0.3s;
}

.btn-red {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.btn-red:hover {
  background: #c82333;
  border-color: #bd2130;
}

.btn-blue {
  background: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

.btn-blue:hover {
  background: #004494;
  border-color: #003c82;
}

.divider {
  width: 30px;
  height: 2px;
  background: #333;
  margin: 20px auto 0;
}

.mainHeaderContainer {
  height: 70px;
}

header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  z-index: 999;
  position: fixed;
  width: 100%;
}

header .header-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
}

header .logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0056b3 0%, #dc3545 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  flex-shrink: 0;
}

header .logo .logo-icon::after {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: #fff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

header .logo > div > div {
  font-size: 24px;
  background: linear-gradient(90deg, #c82333, #77065b, #860832);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: flow 6s infinite linear;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
}

header .logo > div > div > span {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
}

header nav a {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 10px;
  transition: background all 0.3s;
  white-space: nowrap;
}

header nav a:hover, header nav a.active {
  background: #bd2130;
  color: #fff;
}

header .menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
}

.banner-wrapper .banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-wrapper .banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-wrapper .banner-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, rgba(34, 49, 68, 0.8) 0%, rgba(0, 86, 179, 0) 100%);
  z-index: 1;
}

.banner-wrapper .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 90%;
}

.banner-wrapper .banner-content h1 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.banner-wrapper .banner-content p {
  font-size: 14px;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.banner-wrapper .banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  color: #fff;
}

.banner-wrapper .banner-arrow.left {
  left: 15px;
}

.banner-wrapper .banner-arrow.right {
  right: 15px;
}

.banner-wrapper .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.banner-wrapper .scroll-down::after {
  content: '✓';
  font-size: 16px;
  color: #fff;
}

.history-section {
  width: 100%;
  padding: 50px 0;
  background: #000 url("../images/1059-1920x800.jpg") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.history-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.history-section .history-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.history-section .history-content h2 {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.history-section .history-content p {
  font-size: 14px;
  margin-bottom: 10px;
  max-width: 100%;
}

.about-section {
  padding: 50px 0;
  background: #fff;
}

.about-section .about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-section .about-inner .about-text h2 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-section .about-inner .about-text p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}

.about-section .about-inner .about-img img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.job-section {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/1070-1920x800.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.job-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(3, 41, 83, 0.8) 0%, rgba(220, 53, 69, 0) 100%);
  z-index: 1;
}

.job-section .job-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.job-section .job-content h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.job-section .job-content h3 {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 10px;
}

.job-section .job-content p {
  font-size: 13px;
  margin-bottom: 20px;
  max-width: 100%;
}

.part3Container > div {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.part3Container > div > ul {
  display: block;
  margin: 0;
  padding: 0;
}

.part3Container > div > ul > li {
  width: 25%;
  float: left;
  list-style: none;
}

.part3Container > div > ul > li > div {
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.part3Container > div > ul > li > div > img {
  width: 100%;
  opacity: 0.8;
  border-radius: 5px;
}

.part3Container > div > ul > li > div > h2 {
  font-size: 20px;
  color: #333;
  line-height: 2;
  font-weight: normal;
  /* 1. 强制不换行 */
  white-space: nowrap;
  /* 2. 超出部分隐藏 */
  overflow: hidden;
  /* 3. 超出显示省略号 */
  text-overflow: ellipsis;
  /* 4. 必须给宽度/最大宽度！ */
}

.part3Container > div > ul > li > div > h1 {
  font-size: 14px;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 控制显示行数，改成1就是单行 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-weight: normal;
  /* 可选：优化排版 */
  word-break: break-all;
}

.part3Container > div > ul > li > div:hover {
  transform: translateY(-5px);
}

.part3Container > div > ul > li > div:hover > img {
  opacity: 1;
}

.part4Container {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.part4Container > div > span {
  display: block;
}

.part4Container > div > span > div {
  width: 50%;
  float: left;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.part4Container > div > span > div > div {
  margin: 10px;
  background-color: rgba(248, 247, 242, 0.3);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.part4Container > div > span > div > div > h1 {
  font-size: 24px;
  text-align: left;
  color: #333;
}

.part4Container > div > span > div > div > h2 {
  height: 50px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: normal;
}

.part4Container > div > span > div > div > div {
  font-size: 20px;
  line-height: 2;
  color: #a51c1c;
}

.part4Container > div > span > div > div:hover {
  cursor: pointer;
  transform: translateY(-5px);
  scale: 1.02;
}

.contact-section {
  width: 100%;
  padding: 50px 0;
  background: #000 url("../images/1059-1920x800.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.contact-section .contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-section .contact-inner .contact-text h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-section .contact-inner .contact-info p {
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-section .contact-inner .contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-section .contact-inner .impressum {
  padding: 18px;
  border-radius: 4px;
  text-align: right;
}

.contact-section .contact-inner .impressum > img {
  width: 120px;
}

.contact-section .contact-inner .scroll-top {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #0056b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.contact-section .contact-inner .scroll-top::after {
  content: '^';
  font-size: 18px;
  color: #fff;
}

footer {
  background: #0a1629;
  padding: 18px 0;
  color: #fff;
  font-size: 12px;
}

footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: right;
}

@media (max-width: 992px) {
  .part4Container {
    margin: 0 auto;
    padding-bottom: 60px;
    width: auto;
  }
  .part4Container > div > span {
    display: block;
  }
  .part4Container > div > span > div {
    width: auto;
    float: none;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
  }
  .part4Container > div > span > div > div {
    margin: 10px;
    background-color: rgba(248, 247, 242, 0.3);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .part4Container > div > span > div > div > h1 {
    font-size: 24px;
    text-align: left;
    color: #333;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 末尾显示 ... */
    width: 100%;
    /* 必须设置宽度 */
  }
  .part4Container > div > span > div > div > h2 {
    height: 50px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: normal;
  }
  .part4Container > div > span > div > div > div {
    font-size: 20px;
    line-height: 2;
    color: #a51c1c;
  }
  .about-section {
    padding: 50px 0;
    background: #fff;
  }
  .about-section .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: none;
    gap: 30px;
    align-items: center;
  }
  .about-section .about-inner .about-img img {
    max-width: none;
  }
  .about-section .about-inner .about-text h2 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
  }
  .about-section .about-inner .about-text p {
    text-indent: 20px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
  }
  .codex-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  .btn-blue,
  .btn-red {
    float: none !important;
    margin: 10px auto 0;
    display: inline-block;
  }
  header .menu-toggle {
    display: block;
  }
  .part3Container > div {
    width: auto;
  }
  .part3Container > div > ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .part3Container > div > ul > li {
    width: 50%;
    float: left;
    list-style: none;
  }
  .part3Container > div > ul > li > div {
    margin: 10px;
    padding: 10px;
    background-color: #f4f6f7;
    border-radius: 10px;
    cursor: pointer;
  }
  .part3Container > div > ul > li > div > img {
    width: 100%;
    border-radius: 5px;
  }
  .part3Container > div > ul > li > div > h2 {
    font-size: 20px;
    color: #333;
    line-height: 2;
    font-weight: normal;
    /* 1. 强制不换行 */
    white-space: nowrap;
    /* 2. 超出部分隐藏 */
    overflow: hidden;
    /* 3. 超出显示省略号 */
    text-overflow: ellipsis;
    /* 4. 必须给宽度/最大宽度！ */
  }
  .part3Container > div > ul > li > div > h1 {
    font-size: 16px;
    color: #62748e;
    line-height: 2;
  }
  .part3Container > div > ul > li > div:hover {
    transform: translateY(-5px);
  }
  .part3Container > div > ul > li > div:hover > img {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .part4Container {
    margin: 0 auto;
    padding-bottom: 60px;
    width: auto;
  }
  .part4Container > div > span {
    display: block;
  }
  .part4Container > div > span > div {
    width: auto;
    float: none;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
  }
  .part4Container > div > span > div > div {
    margin: 10px;
    background-color: rgba(248, 247, 242, 0.3);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .part4Container > div > span > div > div > h1 {
    font-size: 24px;
    text-align: left;
    color: #333;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 末尾显示 ... */
    width: 100%;
    /* 必须设置宽度 */
  }
  .part4Container > div > span > div > div > h2 {
    height: 50px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: normal;
  }
  .part4Container > div > span > div > div > div {
    font-size: 20px;
    line-height: 2;
    color: #a51c1c;
  }
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
  nav {
    width: 100%;
    display: none;
    margin-top: 15px;
  }
  nav.show {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  nav a {
    display: block;
    padding: 10px 15px;
    text-align: center;
  }
  header .menu-toggle {
    display: block;
  }
  .about-section {
    padding: 50px 0;
    background: #fff;
  }
  .about-section .about-img img {
    max-width: none;
  }
  .about-section .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: none;
    gap: 30px;
    align-items: center;
  }
  .about-section .about-inner .about-text h2 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
  }
  .about-section .about-inner .about-text p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-indent: 20px;
  }
  .banner-content h1 {
    font-size: 20px;
  }
  .banner-content p {
    font-size: 14px;
  }
  .banner-arrow {
    font-size: 22px;
  }
  .about-section,
  .history-section,
  .job-section,
  .contact-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 18px;
  }
  .banner-wrapper {
    min-height: 340px;
  }
  .about-img img,
  .codex-img img {
    max-width: 200px;
  }
  .contact-inner {
    grid-template-columns: none !important;
    gap: 20px;
  }
  .impressum {
    padding: 15px;
    text-align: center !important;
  }
  .impressum > img {
    width: 60% !important;
  }
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .part3Container > div {
    width: auto;
  }
  .part3Container > div > ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .part3Container > div > ul > li {
    width: 100%;
    float: left;
    list-style: none;
  }
  .part3Container > div > ul > li > div {
    margin: 10px;
    padding: 10px;
    background-color: #f4f6f7;
    border-radius: 10px;
    cursor: pointer;
  }
  .part3Container > div > ul > li > div > img {
    width: 100%;
    border-radius: 5px 5px 0 0;
  }
  .part3Container > div > ul > li > div > h2 {
    font-size: 20px;
    color: #333;
    line-height: 2;
    font-weight: normal;
    /* 1. 强制不换行 */
    white-space: nowrap;
    /* 2. 超出部分隐藏 */
    overflow: hidden;
    /* 3. 超出显示省略号 */
    text-overflow: ellipsis;
    /* 4. 必须给宽度/最大宽度！ */
  }
  .part3Container > div > ul > li > div > h1 {
    font-size: 16px;
    color: #62748e;
    line-height: 2;
  }
  .part3Container > div > ul > li > div:hover {
    transform: translateY(-5px);
  }
  .part3Container > div > ul > li > div:hover > img {
    opacity: 1;
  }
  .part4Container {
    margin: 0 auto;
    padding-bottom: 60px;
    width: auto;
  }
  .part4Container > div > span {
    display: block;
  }
  .part4Container > div > span > div {
    width: auto;
    float: none;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
  }
  .part4Container > div > span > div > div {
    margin: 10px;
    background-color: rgba(248, 247, 242, 0.3);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .part4Container > div > span > div > div > h1 {
    font-size: 24px;
    text-align: left;
    color: #333;
  }
  .part4Container > div > span > div > div > h2 {
    height: 50px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: normal;
  }
  .part4Container > div > span > div > div > div {
    font-size: 20px;
    line-height: 2;
    color: #a51c1c;
  }
}
