/* 全局样式 */
:root {
    --primary-color: #007AFF;
    --secondary-color: #0056b3;
    --text-color: #333;
    --bg-color: #fff;
    --section-padding: 80px 5%;
    --nav-padding: 14%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-image: url('rwa one_slices/渐变填充 1@2x.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

section {
    /* padding: var(--section-padding); */
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* 导航栏样式 */
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 var(--nav-padding);
    background-color: #F7F8FB;
    position: fixed;
    height: calc(31.5 * 100vw / 960);
    width: 100%;
    top: 0;
    z-index: 1000;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.logo img {
    height: calc(23.5 * 100vw / 960);
    width: calc(57.5 * 100vw / 960);
    margin-top: calc(8 * 100vw / 960);
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: calc(52 * 100vw / 960);
    gap: calc(35 * 100vw / 960);
    /* margin-top: calc(-6 * 100vw / 960); */
}


.nav-links li {
    line-height: calc(9 * 100vw / 960);
}

.nav-links a {
    text-decoration: none;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(9 * 100vw / 960);
    line-height: calc(9 * 100vw / 960);
    color: #000000;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: calc(13.5 * 100vw / 960);
    margin-left: auto;
    margin-right: calc(23 * 100vw / 960);
}

.social-links img {
    width: calc(18 * 100vw / 960);
    height: calc(18 * 100vw / 960);
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* Hero区域样式 */
.hero {
    padding: 0 var(--nav-padding);
    text-align: center;
    height: calc(501.5 * 100vw / 960);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-content {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding-top: calc(150 * 100vw / 960);
    position: relative;
}

.hero-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(232 * 100vw / 960);
    height: calc(257 * 100vw / 960);
    top: calc(183.5 * 100vw / 960);
    background-image: url('rwa one_slices/图层 2@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.hero-bg-left {
    position: absolute;
    width: calc(75.7 * 100vw / 960);
    height: calc(65 * 100vw / 960);
    left: 0;
    top: calc(367 * 100vw / 960);
    background-image: url('rwa one_slices/图层 4 拷贝@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-bg-right {
    position: absolute;
    width: calc(108 * 100vw / 960);
    height: calc(78 * 100vw / 960);
    right: calc(17 * 100vw / 960);
    top: calc(160.5 * 100vw / 960);
    background-image: url('rwa one_slices/图层 4@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero h1 {
    font-family: "Microsoft YaHei";
    font-size: calc(28 * 100vw / 960);
    line-height: calc(28 * 100vw / 960);
    font-weight: bold;
    color: #47494F;
    margin-bottom: calc(24 * 100vw / 960);
}

.hero h2 {
    font-family: "Microsoft YaHei";
    font-size: calc(28 * 100vw / 960);
    line-height: calc(28 * 100vw / 960);
    font-weight: bold;
    color: #2764FF;
    margin-bottom: calc(45.5 * 100vw / 960);
    max-width: calc(537 * 100vw / 960);
}

.hero p {
    font-family: "Microsoft YaHei";
    font-size: calc(14 * 100vw / 960);
    line-height: calc(14 * 100vw / 960);
    font-weight: 400;
    color: #414141;
    line-height: calc(21 * 100vw / 960);
    max-width: calc(474 * 100vw / 960);
    margin: 0 auto;
}

.hero-image {
    max-width: 100%;
    margin-top: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-arrow {
    position: absolute;
    width: calc(9 * 100vw / 960);
    height: calc(8 * 100vw / 960);
    left: 50%;
    transform: translateX(-50%);
    top: calc(492.5 * 100vw /960);
    background-image: url('rwa one_slices/三角形 1@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

/* 产品展示区域 */
.products-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    height: calc(475 * 100vw / 960);
}

.products-title {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(24 * 100vw / 960);
    color: #47494F;
    line-height: calc(24 * 100vw / 960);
    font-style: italic;
    margin-top: calc(102.5 * 100vw / 960);
    position: relative;
    display: inline-block;
}

.products-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 98%;
    height: calc(7 * 100vw / 960);
    background: #D9E4FF;
    z-index: -1;
    margin-left: calc(3 * 100vw / 960);
}

.products-subtitle {
    margin-top: calc(24.5 * 100vw / 960);
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(17 * 100vw / 960);
    color: #2764FF;
    line-height: calc(17 * 100vw / 960);
}

.product-diagram {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.product-diagram-img {
    width: calc(517 * 100vw / 960);
    height: calc(224.5 * 100vw / 960);
}

.products-arrow {
    position: absolute;
    width: calc(9 * 100vw / 960);
    height: calc(8 * 100vw / 960);
    left: 50%;
    /* transform: translateX(-50%); */
    top: calc(967.5 * 100vw / 960);
    background-image: url('rwa one_slices/三角形 1@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}



/* 资产发行流程 */
.asset-issuance-section {
    text-align: center;
    height: calc(379.5 * 100vw / 960);
}

.issuance-title {
    margin-top: calc(125.5 * 100vw / 960);
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(24 * 100vw / 960);
    color: #47494F;
    line-height: calc(24 * 100vw / 960);
}

.issuance-subtitle {
    margin-top: calc(32.5 * 100vw / 960);
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(20 * 100vw / 960);
    color: #2764FF;
    line-height: calc(20 * 100vw / 960);
}



.issuance-diagram img {
    width: calc(637 * 100vw / 960);
    height: calc(224.5 * 100vw / 960);
}

.issuance-arrow {
    position: absolute;
    width: calc(9 * 100vw / 960);
    height: calc(8 * 100vw / 960);
    left: 50%;
    /* transform: translateX(-50%); */
    top: calc(1472.5 * 100vw / 960);
    background-image: url('rwa one_slices/三角形 1@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}



/* 团队介绍 */
.team {
    text-align: center;
    height: calc(555 * 100vw / 960);
}

.team-title {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(24 * 100vw / 960);
    line-height: calc(24 * 100vw / 960);
    margin-top: calc(79.5 * 100vw / 960);
    margin-bottom: calc(50 * 100vw / 960);
    color: #47494F;
    font-style: italic;
    
    
    position: relative;
    display: inline-block;

}

.team-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 98%;
    height: calc(7 * 100vw / 960);
    background: #D9E4FF;
    z-index: -1;
    margin-left: calc(3 * 100vw / 960);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(179 * 100vw / 960), 1fr));
    column-gap: calc(38 * 100vw / 960);
    row-gap: calc(57 * 100vw / 960);
    width: calc(670 * 100vw / 960);
    margin: 0 auto;
    padding: 0 20px;
}

.team-image {
    transition: transform 0.3s ease;
    height: auto;
    width: calc(181 * 100vw / 960);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: calc(10 * 100vw / 960);
}

.team-image:hover {
    transform: translateY(-5px);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.team-image-text {
    font-family: "Microsoft YaHei";
    font-size: calc(15 * 100vw / 960);
    color: #47494F;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.team-member {
    text-align: left;
    padding: 0;
    transition: transform 0.3s ease;
    list-style: none;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-name {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(14 * 100vw / 960);
    color: #47494F;
    line-height: calc(14 * 100vw / 960);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.team-member-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(6 * 100vw / 960);
    background: #D9E4FF;
    z-index: -1;
    display: block;
}

.team-member .role {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(9 * 100vw / 960);
    color: #2764FF;
    line-height: calc(9 * 100vw / 960);
}

.member-info {
    margin-top: calc(5 * 100vw / 960);
    list-style: none;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(9 * 100vw / 960);
    color: #47494F;
    line-height: calc(9 * 100vw / 960);
}

.member-info li {
    color: #666;
    font-size: calc(9 * 100vw / 960);
    line-height: calc(12 * 100vw / 960);
    margin-bottom: calc(6 * 100vw / 960);
    position: relative;
}

.team-arrow {
    position: absolute;
    width: calc(9 * 100vw / 960);
    height: calc(8 * 100vw / 960);
    left: 50%;
    /* transform: translateX(-50%); */
    top: calc(2027 * 100vw / 960);
    background-image: url('rwa one_slices/三角形 1@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}


@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        margin-bottom: 20px;
    }
}

/* Token分配 */
.token-allocation {
    height: calc(474 * 100vw / 960);
    /* background-color: #f8f9fa; */
}

.token-allocation-title {
    margin-top: calc(30.5 * 100vw / 960);
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(24 * 100vw / 960);
    color: #47494F;
    line-height: calc(24 * 100vw / 960);
    font-style: italic;
}

.allocation-info {
    margin: calc(34 * 100vw / 960) auto 0;
    /* max-width: 1200px; */
    text-align: center;
}

.allocation-info-title{
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(18 * 100vw / 960);
    color: #47494F;
    line-height: calc(18 * 100vw / 960);
}

.token-amount {
    color: #2764FF;
}

.allocation-chart {
    margin-top: calc(24 * 100vw / 960);
}

.allocation-chart img {
    max-width: 100%;
    width: calc(654.5 * 100vw / 960);
    height: calc(283 * 100vw / 960);
}

.allocation-arrow {
    position: absolute;
    width: calc(9 * 100vw / 960);
    height: calc(8 * 100vw / 960);
    left: 50%;
    /* transform: translateX(-50%); */
    top: calc(2533  * 100vw / 960);
    background-image: url('rwa one_slices/三角形 1@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

/* 路线图 */

.roadmap-title {
    margin-top: calc(77.5 * 100vw / 960);
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(24 * 100vw / 960);
    color: #47494F;
    line-height: calc(24 * 100vw / 960);
    font-style: italic;

}

.roadmap-timeline {
    margin-top: calc(35 * 100vw / 960);
    text-align: center;
    margin-bottom: calc(225 * 100vw / 960);
}

.roadmap-timeline img {
    height: calc(257 * 100vw / 960);
    width: calc(614 * 100vw / 960);
}

.line-background {
    background-image: url('rwa one_slices/矢量智能对象 拷贝@2x.png');
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */


    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(861 * 100vw / 960);
    height: calc(1346 * 100vw / 960);
    top: calc(290 * 100vw / 960);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .navbar {
        padding: 1rem var(--nav-padding);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
} 