.welcome {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Helvetica Neue, sans-serif;
    overscroll-behavior: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 100;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(12px);
}

.hero {
    position: relative;
    height: 770px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-video {
    object-fit: cover;
    object-position: center bottom;
    background: #000;
    pointer-events: none;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .15) 60%, rgba(0, 0, 0, .25));
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0, #000);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin: 0;
    line-height: 92px;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 28px;
    color: hsla(0, 0%, 100%, .7);
    margin: 16px 0 0;
    font-weight: 400;
}

.hero-models-label {
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 10;
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -.64px;
}

.brand-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brand-scroll-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brand-scroll-left-83cff376 24s linear infinite;
}

.brand-logo-item {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 40px;
    opacity: .85;
    transition: opacity .2s;
}

.explore-text {
    display: inline-block;
    padding: 6px 24px;
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 200px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.cap-section {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    background: #000;
}

.section-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(44, 255, 248, .1);
    border-radius: 8px;
    color: #2cfff8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 24px;
}

.section-desc {
    font-size: 18px;
    color: #9aa0ae;
    line-height: 1.6;
    margin: 0;
}

.cap-card {
    flex: 1;
    min-width: 0;
    height: 373px;
    background: #131418;
    border: 1px solid hsla(0, 0%, 100%, .06);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all .3s;
}

.cap-image {
    position: relative;
    width: 100%;
    height: 222px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 212, 255, .15), rgba(155, 92, 255, .15));
}

.cap-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(5, 6, 8, .8));
    pointer-events: none;
}

.cap-play-icon {
    position: absolute;
    top: 15px;
    left: 14px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 6, 8, .7);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 10px;
}

.cap-card-body {
    padding: 18px 23px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cap-title {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #fff;
    letter-spacing: -.01em;
}

.cap-desc {
    font-size: 14px;
    font-weight: 400;
    color: #6b7180;
    margin: 0;
    line-height: 21px;
}

.el-image__inner {
	border: unset;
}

.el-image__error,
.el-image__placeholder {
    background: #000;
}

#app {
  height: 100vh;
  background: #000;
}
#app,
body,
html {
  overscroll-behavior: none;
  background: #000;
}
/* Tailwind CSS 转换样式 */
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.relative {
  position: relative;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-40px {
  padding-left: 40px;
  padding-right: 40px;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.h-36px {
  height: 36px;
}
.mt-10px {
  margin-top: 10px;
}
.mt-64px {
  margin-top: 64px;
}
.gap-16px {
  gap: 16px;
}
.py-38px {
  padding-top: 38px;
  padding-bottom: 38px;
}
.w-1280px {
  width: 1280px;
}
.w-1200px {
  width: 1200px;
}
.overflow-hidden {
  overflow: hidden;
}

.el-image__inner {
  border: unset;
}