@charset "utf-8";

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Microsoft YaHei", sans-serif;
}

/* 整体容器 300x300 */
.container {
    width: 300px;
    height: 320px;
    position: relative;
    overflow: hidden;
    /* background-color: #000; */
}

/* 对话框气泡 */
.dialog-bubble {
    position: absolute;
    top: 0px;
    left: 70px;
    z-index: 10;
    width: 168px;
    height: 86px;
}

/* 对话框SVG背景图 */
.dialog-bg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 对话框文字（叠加在SVG上方） */
.dialog-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 12px;
    box-sizing: border-box;
}

.dialog-text p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

/* WebP动画显示区域 300x250，定位在右下角 */
.webp-area {
    width: 300px;
    height: 250px;
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
}