*{
    margin: 0;
    padding: 0;
}

#app{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

/* footer相关 */
#footerOutBox{
    width: 100vw;
    height: 40vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background-image: url(https://static.igem.wiki/teams/5458/footer/footer-background.png);
    flex-direction: column;
    background-color: #89a3d9;
}


#footerBox{
    width: 100vw;
    height: 30vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    /* background-image: url(https://static.igem.wiki/teams/5458/footer/footer-background.png); */
    flex-direction: row;
    /* background-color: #89a3d9; */
}

#footerLogoBox{
    width: 20vw;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footerLogo{
    width: 9vw;
}

#PhotoListBox{
    width: 50vw;
    height: 30vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

#PhotoBox{
    width: 9vw;
    height: 9vw;
    border-radius: 4.5vw;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
}

/* footer!!! 如果这里放的是宽屏的照片， 只用写height，比如footer1Img*/
/* 如果这里是竖屏的照片，只用写width，比如footer2Img */
/* 后续根据放的照片类型来改就行 */
/* 如果是正方形类似的照片随便写一个都可以，height和width不能在同一个里出现，不然照片会变形 */
#footer1Img{
    height: 9vw;
    /* width: 9vw; */
}

#footer2Img{
    /* height: 9vw; */
    width: 9vw;
}

#footer3Img{
    height: 9vw;
    /* width: 9vw; */
}