/*
 * @Author: zruixu ruixu.zheng@goodwinsoft.net
 * @Date: 2025-12-17 00:15:10
 * @LastEditors: zruixu ruixu.zheng@goodwinsoft.net
 * @LastEditTime: 2026-01-04 15:09:25
 * @FilePath: \mcpn\css\global.css
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 */
/* 基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.container {
  width: 1100px;
  margin: 0 auto;
}

.header {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
  height: 70px;
  object-fit: contain;
}

.company-name {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  /* gap: 30px; */
}

.main-nav ul li {
  min-width: 70px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
  padding: 5px 0;
  position: relative;
}

.main-nav a.active {
  color: white;
  background-image: linear-gradient(90deg, #32cc9a, #03c2df);
}

.main-nav a.active-child {
  color: #00a896;
  background-image: none;
}

.actives::after {
  background-image: url('/assets/svg/icon-arrow-down-white.svg') !important;

}

.footer {
  position: relative;
  width: 100%;
  padding: 40px 0;
  margin-top: auto;
  overflow: hidden;

}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/2x/foot@2x.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-content {
  margin-top: 120px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.footer-police {
  width: 16px;
  height: 16px;
}

.copyright {
  font-size: 14px;
  margin-bottom: 15px;
}

.legal-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
}

.headerImg {
  width: 100%;
  height: auto;

  img {
    width: 100%;
    height: auto;
  }
}

.title {
  position: relative;
  margin-bottom: 50px;
  padding-top: 15px;
  color: #30b284;
  font-size: 28px;
  font-weight: 600;
}

.title::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 3px;
  background-color: #30b284;
}

a {
  color: white;
  text-decoration: none;
}