.container {
    width: 100%;
    /*max-width: 400px;*/
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner img{
    width: 100%;
}
.ibox{
    margin-top: 20px;
    width: 90%;
}

.ibox .content p {
    margin-bottom: 20px;
    font-weight: 900;
}

.content{
    text-align: center;
    margin-bottom: 40px;
}

.skill{
    padding-bottom: 60px;
}
.skill .list{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    gap: 5px;
}
.list .title{
    flex: 1;
}
.list .handle{
    display: flex;
    gap: 5px;
}

.list .handle button{
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #fff;
}

.footer{
    position: fixed;
    bottom: 2px;
    width: 90%;
    display: flex;
    padding-top: 20px;
    background-color: #fff;
}

.footer .start{
    width: 70%;
    height: 50px;
    padding: 10px;
    background-color: #1672e3;
    color: #fff;
    border: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    cursor: pointer;
    font-size: 1em;
}

.footer .share{
    flex: 1;
    height: 50px;
    padding: 10px;
    background-color: green;
    color: #fff;
    border: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    font-size: 1em;
}

.modal-overlay {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    display: flex; /* 在显示时使用 flex 布局 */
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.modal-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-close {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.modal-close {
    width: 100%;
    height: 40px;
    padding: 10px;
    background-color: #1672e3;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
}