:root {
  --header-height: 65px;
  --swiper-item-gap: 20px;
  --swiper-item-width: 145px;
  --background-color: #030712;
}
@keyframes shadowbox {
  0% {
    background-color: #ff4d4d;
    transform: scale(1);
  }
  100% {
    background-color: transparent;
    transform: scale(2);
  }
}
@keyframes opacity {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes color {
  50%,
  to {
    background-position: 0% 50%;
  }
  100% {
    background-position: 50% 100%;
  }
}
@keyframes movex {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2700px);
  }
}
body {
  position: relative;
  min-height: 100vh;
  color: white;
  background-image: url(https://data.chizhouyuanzhou.cn/openclaw/images/20260331/main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--background-color);
}
header {
  border-bottom: 1px solid #E2E2E3;
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(10px);
}
header .container {
  height: var(--header-height);
  display: flex;
  align-items: center;
}
header .container .logo svg {
  width: 34px;
  height: 34px;
}
header .container h1 {
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
}
header .container ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
}
header .container ul li {
  cursor: pointer;
}
header .container #download_button {
  background-image: linear-gradient(135deg, #ff4d4d, #c1121f);
  box-shadow: 0 4px 14px rgba(255, 77, 77, 0.35);
  padding: 8px 16px;
  border-radius: 1000px;
  font-size: 14px;
  font-weight: bold;
  margin-left: 32px;
}
section.main {
  padding: 120px 0 100px;
}
section.main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.main .container .tag {
  border: 1px solid rgba(255, 77, 77, 0.28);
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 100vw;
  animation: opacity 1s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
}
section.main .container .tag .circle {
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.main .container .tag .circle::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  animation: shadowbox 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
section.main .container .tag .circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #ff4d4d;
  border-radius: 100%;
  position: absolute;
}
section.main .container .tag span {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ff4d4d;
}
section.main .container h1 {
  background-image: linear-gradient(135deg, #f0f4ff 0%, #ff4d4d 52%, #00e5cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 72px;
  font-weight: bold;
  margin-top: 40px;
  letter-spacing: -1.8px;
  animation: color 4s ease infinite alternate;
  background-size: 200% 200%;
}
section.main .container h2 {
  font-size: 72px;
  font-weight: bold;
  letter-spacing: -1.8px;
}
section.main .container p {
  color: #9ca3af;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}
section.main .container #download_button {
  width: 270px;
  height: 60px;
  background-image: linear-gradient(135deg, #ff4d4d 0%, #c1121f 100%);
  box-shadow: 0 8px 28px rgba(255, 77, 77, 0.45);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 20px;
  animation: scale 4s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
}
section.main .container #download_button svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  stroke: #fff;
  fill: transparent;
}
section.main .container #download_button span {
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
}
section.main .container .des {
  color: #9ca3af;
  font-size: 14px;
  text-align: center;
}
section.main .container .tabs_container {
  background-color: rgba(15, 18, 30, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px 2px rgba(255, 77, 77, 0.2);
  margin-top: 40px;
  animation: move 4s linear infinite alternate;
}
section.main .container .tabs_container .tabs_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
section.main .container .tabs_container .tabs_title .box_list {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
section.main .container .tabs_container .tabs_title .box_list > div {
  background-color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
section.main .container .tabs_container .tabs_title span {
  color: #6b7280;
  font-size: 12px;
}
section.main .container .tabs_container .tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
section.main .container .tabs_container .tabs li {
  padding: 9px 13px;
  font-size: 12px;
  font-weight: bold;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
section.main .container .tabs_container .tabs li.active {
  color: #ff4d4d;
  border-color: #ff4d4d;
  background-color: rgba(255, 77, 77, 0.1);
}
section.main .container .tabs_container .tabs_content {
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}
section.main .container .tabs_container .tabs_content li {
  display: none;
  font-size: 14px;
}
section.main .container .tabs_container .tabs_content li .user,
section.main .container .tabs_container .tabs_content li .openclaw {
  color: #6b7280;
  font-family: "黑体" sans-serif;
  font-weight: 600;
}
section.main .container .tabs_container .tabs_content li .user_content,
section.main .container .tabs_container .tabs_content li .openclaw_content {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  margin-top: 5px;
}
section.main .container .tabs_container .tabs_content li .openclaw {
  color: #00e5cc;
  margin-top: 10px;
}
section.main .container .tabs_container .tabs_content li .think,
section.main .container .tabs_container .tabs_content li .result {
  color: #6b7280;
  margin-top: 10px;
}
section.main .container .tabs_container .tabs_content li .qing {
  color: #00e5cc;
}
section.main .container .tabs_container .tabs_content li .red {
  color: #ff4d4d;
}
section.main .container .tabs_container .tabs_content li .openclaw_content {
  margin-top: 10px;
}
section.main .container .tabs_container .tabs_content li.active {
  display: block;
}
section.model .title {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 32px;
  color: #7B8BA5;
  text-align: center;
}
section.model .title span {
  color: #ff4d4d;
  font-weight: bold;
  padding: 0 10px;
}
section.model ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 80%;
  margin: 0 auto;
  margin-top: 60px;
}
section.model ul li {
  box-sizing: border-box;
}
section.model ul li img {
  width: 100%;
}
section.messagechannel {
  padding: 100px 0;
}
section.messagechannel .container .title {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 32px;
  color: #7B8BA5;
  text-align: center;
}
section.messagechannel .container .title span {
  color: #ff4d4d;
  font-weight: bold;
  padding: 0 10px;
}
section.messagechannel .container .swiper_container {
  overflow: hidden;
  margin-top: 50px;
  position: relative;
}
section.messagechannel .container .swiper_container .swiper_box {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  animation: movex 20s linear infinite;
}
section.messagechannel .container .swiper_container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--background-color) 0%, transparent 10%, transparent 90%, var(--background-color) 100%);
  z-index: 1;
}
section.messagechannel .container .swiper_container ul {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
section.messagechannel .container .swiper_container ul li {
  width: 240px;
  height: 80px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 7px 7px 7px 7px;
  gap: 30px;
}
section.messagechannel .container .swiper_container ul li img {
  width: 60px;
  height: 60px;
}
section.features {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.02);
}
section.features .top_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.features .top_title .title {
  font-size: 32px;
  font-weight: bold;
}
section.features .top_title .title span {
  color: #ff4d4d;
}
section.features .top_title .subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #9ca3af;
}
section.features ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
section.features ul li {
  padding: 30px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
section.features ul li svg {
  color: #f87171;
  background-color: rgba(239, 68, 68, 0.1);
  padding: 12px;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
section.features ul li h3 {
  font-size: 20px;
  margin-top: 20px;
}
section.features ul li p {
  color: #9ca3af;
  margin-top: 15px;
}
section.features ul li:hover {
  border-color: #ff4d4d;
  box-shadow: 0 0 10px #ff4d4d;
  transform: translateY(-5px);
}
section.features ul li:hover svg {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 10px #ff4d4d;
}
section.integrations {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
section.integrations .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
section.integrations .container .title {
  font-size: 36px;
  font-weight: bold;
}
section.integrations .container .title span {
  background-image: linear-gradient(90deg, #ff4d4d 0%, #ff9999 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
section.integrations .container p {
  color: #9ca3af;
  margin-top: 30px;
  width: 600px;
  text-align: center;
}
section.integrations .container #download_button {
  width: 270px;
  height: 60px;
  background-image: linear-gradient(135deg, #ff4d4d 0%, #c1121f 100%);
  box-shadow: 0 8px 28px rgba(255, 77, 77, 0.45);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 20px;
  animation: scale 4s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
}
section.integrations .container #download_button svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  stroke: #fff;
  fill: transparent;
}
section.integrations .container #download_button span {
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
}
footer {
  background-color: var(--background-color);
  color: #fff;
  padding: 15px;
}
footer .container {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
}
footer .container a {
  color: inherit;
}
footer .container div::after {
  content: '';
  height: 10px;
  border-right: 1px solid #333;
  margin-left: 20px;
}
footer .container div:last-of-type::after {
  display: none;
}
