/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    /* background: linear-gradient(180deg, #4fd1c5 0%, #38b2ac 100%); */
    background-image: url('/css/imgs/home/bg.png');
    background-repeat: no-repeat;
    background-size:cover;
    color: #fff;
    min-height: 100vh;
    /*max-width: 750px;*/
    overflow-x: hidden;
    margin: 0 auto;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 35px 20px 0 20px;
    position: relative;
    background-image: url('/css/imgs/home/bottom.png') ;
    background-repeat: no-repeat;
    background-size:contain;
    background-position: bottom;
}

/* 头部样式 */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.logo img{width: 72%;}


.subtitle {
    font-size: 1rem;
    color: #fff;
    margin-left:20px;
}
.subtitle img{
    width: 62%;
}

/* 气泡容器 */
.bubble-container {
    margin-top: -50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-grow: 1;
    position: relative;
}

/* 气泡样式 */
.bubble {
    border-radius: 50%;
    /* background-color: rgba(255, 255, 255, 0.2); */
    /* backdrop-filter: blur(5px); */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
    position: relative;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.bubble-content {
    text-align: center;
}

.bubble-content  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* 气泡位置 */
#party-course {
    width: 42%;
    height: 42%;
    top: 0px;
    right: -32%;
}

#governance {
    width: 42%;
    height: 42%;
    top:-136px;
    right: -2%;
}

#activities {
    width: 36%;
    height: 36%;
    top: -22px;
    right:3%;
}

#services {
    width: 36%;
    height: 36%;
    top: -166px;
    right:10%;
}

#partners {
    width: 42%;
    height: 42%;
    top: -80px;
    right: 22%;
}

/* 底部样式 */
.footer {
    margin-top: -110px;
    height: 168px;
    text-align: right;
}

.footer img{
    width: 38%;
}


