.btitle {
    font-size: 40px;
}

.development-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5vh;
    width: 80vw;
}

.image-icon {
    height: 10vh;
    min-height: 64px;
    margin-left: 40px;
    margin-right: 40px;
}

.introduce-container {
    width: auto;
}

.introduce {
    font-size: large;
}

.link-button {
    background-color: rgb(166, 84, 241);
    margin-left: 40px;
    margin-right: 40px;
}

.ba {
    color: aliceblue;
}


/* 响应式 */
@media screen and (min-width: 870px) {
    .project {
        width: 70%;
        height: 25vh;
        min-height: 160px;
        border: 4px solid gray;
        border-radius: 3em;
        margin-top: 3vh;
        /* padding: 1em; */
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
}

@media screen and (max-width: 869px) {
    .project {
        width: 70%;
        height: 35vh;
        min-width: 300px;
        border: 4px solid gray;
        border-radius: 3em;
        margin-top: 3vh;
        padding: 0 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
}
