* {
    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;
    padding: 20px 30px;
    color: #ffffff;
}

/* 标题区域 */
.title-section {
    text-align: center;
    padding-top: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 222px;
    margin: 0 auto;
}

.title-image {
    max-width: 100%;
    height: auto;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    display: block;
    margin: 0 auto;
}

/* 信息面板区域 */
.info-panels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 100px;
    width: 100%;
    max-width: 1200px;
    align-self: center;
    position: relative;
}

.info-panel-title {
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 100;
    background: url('../images/index3_tip.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 44px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}

/* 信息面板通用样式 */
.info-panels {
    background: linear-gradient(180deg, #0D3B81 0%, #048BF7 100%);
    padding: 28px 14px 15px 40px;
}

.info-panel-content {
    font-size: 22px;
    line-height: 22px;
    text-align: left;
    line-height: 22px;
    font-weight: 600;
}

.info-panels-large {
    padding: 86px 20px;
    background: linear-gradient(180deg, #073392 31.43%, rgba(4, 139, 247, 0.1) 100%);
    border-radius: 0px 0px 5px 5px;
}

.info-panels-large-content {
    font-weight: 400;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
}