:root {
    --primary-color: #0057ff;
    --secondary-color: #44adfe;
    --accent-color: #00c2ff;
    --text-color: #fff;
    --dark-blue: #001428;
    --border-radius: 20px;
}

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

body {
    padding-top: 0;
    background-color: #000;
    color: var(--text-color);
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

.hero {
    margin-top: 0;
    padding-top: 80px;
    background: #000;
    position: relative;
    overflow: visible !important;
    min-height: 90vh;
    padding-bottom: 20px;
}

.hero::before {
    background: url('../assets/images/grid.svg') repeat;
    opacity: 0.15;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.award-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.award-badge img {
    height: 16px;
    vertical-align: middle;
    margin-left: 5px;
}

.button {
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.button-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-weight: 600;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 87, 255, 0.4);
}

.button-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.button-blue {
    background: #0061FF;
    color: white;
}

/* 页面部分样式 */
section {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.hero {
    border-radius: 0;
    margin-top: 0;
    z-index: 1;
    box-shadow: none;
}

/* 咨询按钮样式 */
.consultation-button {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: auto;
    max-width: max-content;
}

.consultation-button svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    stroke: white;
    stroke-width: 2;
}

.consultation-button:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 微信二维码弹窗样式 */
.wechat-qrcode {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.wechat-qrcode img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.wechat-qrcode::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 24px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0, 0, 0, 0.04);
}

.consultation-button:hover .wechat-qrcode {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* New标签样式 */
.new-badge {
    display: inline-block;
    background: #FF0000;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 6px;
    vertical-align: middle;
} 