* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

.main-wrapper {
    width: 100%;
    background: url(./cxzxBg-20250625.png) center top no-repeat;
    background-color: #edf3fa;
    /* background-size: 100% 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.main-container {
    width: 1300px;
    margin: 460px auto 0 auto;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    position: relative;
    border-radius: 16px;
}

.content-row {
    display: flex;
    gap: 30px;
}

.content-col {
    background: #edf3fa;
    border-radius: 12px 12px 0 0;
    flex-direction: column;
    width: 420px;
}
.content-col.right{
    width: 400px;
    background: #fff;
}
.meeting-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 18px;
    object-fit: cover;
    height: 120px;
    background: #eee;
}

.section-header {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    height: 65px;
    line-height: 65px;
    padding: 0 25px;
    background: linear-gradient(to right, #2d6af7, #414de8, #592bd7);
    border-radius: 12px 12px 0 0;
}

.section-header .more-link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    float: right;
}

.section-list {
    background: #fff;
    padding: 20px;
    list-style: none;
    font-size: 16px;
    line-height: 40px;
}

.section-list li{
    position: relative;
    padding-left: 20px;
}

.section-list li a{
    color: #333333;
}

.section-list li::before{
    content: '';
    width: 5px;
    height: 5px;
    background: #333;
    border-radius: 50%;
    left: 0;
    position: absolute;
    top: 46%;
}

.intro-section {
    padding: 0 30px;
}

.intro-header {
    height: 65px;
    line-height: 65px;
    text-align: center;
    padding-top: 24px;
}

.intro-content {
    color: #222;
    font-size: 18px;
    line-height: 36px;
    text-indent: 36px;
    padding: 20px 0;
}

.footer {
    height: 150px;
    width: 100%;
    background: #5b9bf5;
    color: #fff;
    text-align: center;
    font-size: 16px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.footer-logo {
    width: 60px;
    vertical-align: middle;
    margin-bottom: 8px;
}

@media (max-width: 1350px) {
    .main-container {
        width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 1100px) {
    .content-row {
        flex-direction: column;
        gap: 12px;
    }

    .content-col {
        max-width: 100%;
    }
}