@charset "UTF-8";
@font-face {
  font-family: "cool";
  /* 自定义字体名称 */
  src: url("../font/阿里巴巴普惠体 R.otf") format("opentype");
  /* 字体文件路径和格式 */
}
body {
  overflow-x: hidden;
  font-family: "cool", sans-serif;
  height: 100vh;
  background-color: #f4f6fa;
  padding: 0;
  margin: 0;
  /* 设置body的高度为100视口高度 */
  /* 动画效果 */
}
body .footer {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 40px 0;
  margin-top: 60px;
}
body .footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
body .footer .footer-content .footer-item img {
  width: 300px;
  height: auto;
}
body .footer .footer-content .footer-item .footer-item-title {
  font-size: 20px;
  font-weight: 550;
  color: #333;
  margin-bottom: 15px;
}
body .footer .footer-content .footer-item .footer-item-content {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .footer .footer-content .footer-item .footer-item-content a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
body .footer .footer-content .footer-item .footer-item-content a:hover {
  color: #0066c1;
}
body .background-container {
  width: 100%;
  height: 100vh;
  /* 高度为100视口高度 */
  background-image: url("../image/back2.webp");
  /* 替换为你的图片路径 */
  background-size: cover;
  background-position: center center;
  /* 水平和垂直居中 */
}
body .tabber {
  background: transparent;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 36px;
  height: 60px;
  width: 100vw;
  box-sizing: border-box;
  padding: 0 50px 0 200px;
  z-index: 1000;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .tabber .logo {
  position: absolute;
  top: 10px;
  left: 40px;
  width: 150px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .tabber .nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 50px;
}
body .tabber .nav-menu .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  width: 100px;
}
body .tabber .nav-menu .nav-item:hover {
  color: #0081f4;
}
body .tabber .nav-menu .nav-item:hover::after {
  width: 100%;
}
body .tabber .nav-menu .nav-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0081f4;
  transition: width 0.3s ease;
}
body .tabber .giveMeMoney {
  background-color: rgba(153, 153, 153, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 150px;
  height: 50px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    /* 从下方20px开始 */
  }
  to {
    opacity: 1;
    transform: translateY(0);
    /* 恢复到原始位置 */
  }
}
body .introduction {
  position: absolute;
  top: 40%;
  left: 50%;
  animation: fadeInUp 1s ease-in-out forwards;
}
body .introduction .title {
  font-size: 36px;
  font-weight: 550;
  color: white;
}
body .introduction .content {
  line-height: 2;
  font-size: 16px;
  color: #ccc;
}
body .productGroup {
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body .productGroup .productTitle {
  font-size: 36px;
  font-weight: 550;
  color: black;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}
body .productGroup .productTitle .line {
  width: 50px;
  height: 4px;
  background-color: #0081f4;
  margin: 20px auto;
}
body .productGroup .productTitle .backimg {
  width: 400px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -10;
  position: absolute;
  top: -80px;
  left: 40%;
}
body .productGroup .productTitle .productContent {
  font-size: 16px;
  color: #999;
  margin-top: 10px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
}
body .productGroup .productTitle .productContent.show {
  animation: fadeInUp 1s ease-in-out forwards;
}
body .productGroup .productTitle .productContent .box {
  width: 80vw;
  height: 200px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 56px;
  font-weight: bold;
  color: #333;
}
body .productGroup .productCards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(20px);
}
body .productGroup .productCards.show {
  animation: fadeInUp 1s ease-in-out forwards;
}
body .productGroup .productCards .card {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
body .productGroup .productCards .card.show {
  animation: fadeInUp 1s ease-in-out forwards;
}
body .productGroup .productCards .card:hover {
  transform: translateY(-10px);
}
body .productGroup .productCards .card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
body .productGroup .productCards .card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
body .productGroup .productCards .card .cardTitle {
  font-size: 20px;
  font-weight: 550;
  color: #333;
  margin-bottom: 15px;
}
body .productGroup .productCards .card .cardContent {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
body .productGroup .newsContainer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
body .productGroup .newsContainer .newsCard {
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
body .productGroup .newsContainer .newsCard:hover {
  transform: translateY(-5px);
}
body .productGroup .newsContainer .newsCard .newsImage {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}
body .productGroup .newsContainer .newsCard .newsImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .productGroup .newsContainer .newsCard .newsContent {
  padding: 20px;
  flex-grow: 1;
}
body .productGroup .newsContainer .newsCard .newsContent h3 {
  font-size: 24px;
  font-weight: 550;
  color: #333;
  margin-bottom: 10px;
}
body .productGroup .newsContainer .newsCard .newsContent p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
body .productGroup .productShowcaseContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
body .productGroup .productShowcaseContainer .showcaseImage {
  position: relative;
  width: 700px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}
body .productGroup .productShowcaseContainer .showcaseImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
body .productGroup .productShowcaseContainer .showcaseImage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  border-radius: 12px;
  z-index: 1;
}
body .productGroup .productShowcaseContainer .productShowcase {
  position: relative;
  margin: 0 20px;
}
body .productGroup .productShowcaseContainer .productShowcase .showcaseContent {
  position: absolute;
  top: 65%;
  left: 20px;
  color: white;
  z-index: 2;
}
body .productGroup .productShowcaseContainer .productShowcase .showcaseContent h3 {
  font-size: 36px;
  font-weight: bold;
}
body .productGroup .productShowcaseContainer .productShowcase .showcaseContent p {
  font-size: 16px;
  color: #ccc;
}
body .modelDisplay {
  width: 100%;
  padding: 40px 0;
}
body .modelDisplay .model-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
body .modelDisplay .model-container .model-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
body .modelDisplay .model-container .model-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
body .modelDisplay .model-container .model-item .model-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
body .modelDisplay .model-container .model-item .model-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
body .modelDisplay .model-container .model-item .model-info {
  padding: 20px;
  text-align: center;
}
body .modelDisplay .model-container .model-item .model-info h3 {
  font-size: 20px;
  color: #333;
  margin: 0 0 10px;
}
body .modelDisplay .model-container .model-item .model-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
body .showWay {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
body .showWay .nav-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
body .showWay .nav-buttons .nav-btn {
  padding: 15px 30px;
  border: 2px solid #8A2BE2;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}
body .showWay .nav-buttons .nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(138, 43, 226, 0.2), transparent);
  transition: all 0.5s ease;
}
body .showWay .nav-buttons .nav-btn:hover {
  background: rgba(138, 43, 226, 0.1);
  color: #8A2BE2;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}
body .showWay .nav-buttons .nav-btn:hover::before {
  left: 100%;
}
body .showWay .nav-buttons .nav-btn.active {
  background: #8A2BE2;
  color: white;
  border-color: #8A2BE2;
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}
body .showWay .content-container {
  position: relative;
  width: 100%;
  min-height: 400px;
}
body .showWay .content-container .content-section {
  position: absolute;
  left: -250px;
  display: flex;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}
body .showWay .content-container .content-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  gap: 40px;
}
body .showWay .content-container .content-section .content-text {
  min-width: 600px;
  padding: 20px;
}
body .showWay .content-container .content-section .content-text h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}
body .showWay .content-container .content-section .content-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}
body .showWay .content-container .content-section .content-text .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
body .showWay .content-container .content-section .content-text .tags .tag {
  padding: 6px 12px;
  background: rgba(0, 129, 244, 0.1);
  color: #0081f4;
  border-radius: 20px;
  font-size: 14px;
}
body .showWay .content-container .content-section .content-media {
  min-width: 590px;
  transform: none;
  transition: none;
}
body .showWay .content-container .content-section .content-media video {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}/*# sourceMappingURL=style.css.map */