* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

html,body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-image: url(./img/background_img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* 主页面top栏 */
.backgroundImgBoxTopColumn {
    margin: 1.5% 1%;
    width: 98%;
    min-width: 450px;
    height: 75px;
    border-radius: 35px;
    background: linear-gradient(to top, #ffffff1a, #dfbb8c3b);
    backdrop-filter: blur(4px);
    -webkit-box-shadow:0px 0px 26px 0px #8a292f92;
    -moz-box-shadow:0px 0px 26px 0px #8a2930bf;
    box-shadow:0px 0px 26px 0px #8a292f81;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 10px;
    z-index: 999;
}

/* 主页面top栏左目 */
.backgroundImgBoxTopColumnLeftBox {
    margin-left: 2%;
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
}

.aratarBox {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.aratarBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.aratarName {
    width: 140px;
    height: 90%;
    color: #8f855a;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    line-height: 50px;
    /* 文字阴影：水平偏移 1px | 垂直偏移 1px | 模糊半径 3px | 阴影颜色（黑色半透明） */
    text-shadow: 1.5px 1.5px 3.5px #222222;
}

.backgroundImgBoxTopColumnRightBox {
    margin-right: 3%;
    width: 250px;
    height: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.howToChatMe {
    width: 100%;
    height: 100%;
    color: #8f855a;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    line-height: 50px;
    text-shadow: 1.5px 1.5px 3.5px #000000b3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flowchartBox {
    margin: 50px auto;
    padding: 10px 0 0 0;
    width: 85%;
    min-width: 600px;
    height: 450px;
    min-height: 450px;
    border-radius: 15px;
    background-color: #4d4b4b95;
    backdrop-filter: blur(3px);
    -webkit-box-shadow:0px 0px 6px 0px rgba(0,0,0,0.39);
    -moz-box-shadow:0px 0px 6px 0px rgba(0,0,0,0.39);
    box-shadow:0px 0px 6px 0px rgba(0,0,0,0.39);
}

.svgBox {
    margin: auto;
    width: 97%;
    height: 348.57px;
    border-radius: 10px;
    background-color: #dfdfdf;
    position: relative;
    overflow: auto;
}

.svgBox svg {
    width: 3858px;
    stroke-dasharray: 3858px;
    stroke-dashoffset: 3858px;
}

.svgBox svg path {
    animation: move1 10s linear forwards;
}

@keyframes move1 {
    0% {
        stroke-dashoffset: 3858px;
    }
    100% {
        stroke-dashoffset: 0px;
    }
}

.item {
    position: absolute;
    left: 30px;
    top: 120px;
    width: 258px;
    font-size: 14px;
}

.item h5 {
    font-size: 14px;
    margin-bottom: 15px;
}

.item2 {
    left: 400px;
    animation: translate1 1s linear forwards 1s;
    opacity: 0;
}

.item3 {
    left: 800px;
    top: 50px;
    animation: translate2 1s linear forwards 2s;
    opacity: 0;
}

@keyframes translate1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-80px);
        opacity: 1;
    }
}
@keyframes translate2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
        opacity: 1;
    }
}

.importantBox {
    margin: auto;
    width: 97%;
    height: 91.43px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.encapsulationBox {
    height: 100%;
    font-size: 60px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.encapsulationBox::after {
    content: "ImportantEvents";
    color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #ff69b480, #fe00007d, #ffa6017d, #ffff017e, #0081027c, #40e1d184, #4208987c, #9400d47d);
    background-clip: text;
    /* 裁剪 clip path */
    clip-path: circle(100px at 100% 50%);
    animation: move2 5s linear infinite;
}

@keyframes move2 {
    0% {
      clip-path: circle(100px at 0% 50%);
    }
    50% {
      clip-path: circle(100px at 100% 50%);
    }  
    100% {
      clip-path: circle(100px at 0% 50%);
    }
}