.my-evt-header-area {
    padding: 20px 10px;
    margin: 20px 0 40px 0;
    background-color: #f9f9f9;
    border-radius: 6px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
    height: 330px;
}

.my-evt-header-main {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;  /* 若想居中 */
    height: 100%;
}

/* 左侧活动图 */
.my-evt-main-k{
    width: 50%;
}
.my-evt-main-k img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* 右侧信息 */
.my-evt-info-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

/* 标题 */
.my-evt-title {
    margin: 0 0 15px;
    font-size: 24px;
    color: #333;
    letter-spacing: .1rem;
}

/* 细节 */
.my-evt-details  {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.my-evt-details p {
    margin: 6px 0;
    color: #adadad;
}
.my-evt-details strong {
    color: #adadad;
    margin-right: 4px;
}
.my-evt-details span {
    color: #1d1010;
    margin-right: 4px;
}

/* 报名按钮 */
.my-evt-signup-button {
    margin: 20px;
}
.my-evt-btn {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    color: #fff;
    background-color: #005cff;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s;
}
.my-evt-btn:hover {
    background-color: #005885;
}
.fengexian{
    margin-bottom: 40px;
}
.xian{
    border:1px dashed #9C98987A;
}

/* 主容器：文章+侧边栏并排 */
.my-evt-main-container {
    display: flex;
    /*gap: 20px;*/
    max-width: 1200px;
    margin: 0 auto; /* 让它居中 */
    margin-bottom: 20px;
}

/* 文章内容区 */
.my-evt-article {
    flex: 1;
    /*background-color: #fff;*/
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}
.my-evt-content {
    line-height: 1.8;
    color: #333;
    padding: 0 10px 10px 10px;
}
.my-evt-content>p>img{
    width: 100%;
}
.my-evt-excerpt {
    margin-bottom: 15px;
    font-style: italic;
    color: #777;
}

/* 侧边栏 */
.my-evt-sidebar {
    width: 300px; /* 或根据你需要的sidebar宽度 */
    border-radius: 6px;
    box-sizing: border-box;
}
.wp-block-image img{
    width:100%;
}

.my-evt-content .post-note {
    font-size: 13px;
    line-height: 1.8em;
    padding: 15px;
    background: #eef7ff;
    margin-bottom: 0;
}

@media screen and (max-width:768px){
    .my-evt-header-area{
        padding: 10px 20px;
        height: 100%;
        box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 10%);
        margin: 20px 0 20px 0;
    }
    .my-evt-header-main{
        flex-direction: column;
    }
    .my-evt-main-k{
        width: 100%;
    }
    .my-evt-info-right{
        width: 100%;
    }
    .my-evt-signup-button{
        text-align: center;
    }
    .my-evt-main-container {
        display: block; /* 或者 flex-direction: column; 也可 */
    }

    /* 正文区域 + 侧边栏都占满宽度 */
    .my-evt-main-container .my-evt-article,
    .my-evt-main-container .my-evt-sidebar {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 20px; /* 两个区块之间留点间距 */
    }
    .fengexian{
        margin-bottom: 20px;
    }
}
