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

body {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 背景层 */
.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 内容层 */
.content-layer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    color: #ffffff;
}

/* 标题区域 */
.title-section {
    text-align: left;
    /*margin-top: 40px;*/
}

.title-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}



.subtitle {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    /*position: relative;*/
    /*background-image: url('../images/index_title1_bg.png');*/
    /*background-size: contain;*/
    /*background-repeat: no-repeat;*/
}


/* 引用区域 */
.quote-section {
    text-align: center;
    margin: 60px auto;
    /* max-width: 900px; */
    /* padding: 30px 40px; */
}

.quote-text {
    font-size: 13px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.quote-author {
    font-size: 16px;
    color: #ffffff;
    text-align: right;
    margin-top: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* 城市景观区域 */
.cityscape-section {
    width: 100%;
    /*height: 77px;*/
    /*margin-top: 100px;*/
    margin-bottom: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cityscape-image {
    width: 209px;
    height: 77px;
    object-fit: cover;
    object-position: bottom;
}


