/* 隐藏弹框 */
.modal {
    display: none;
    position: fixed;
    z-index: 999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    overflow: auto;

    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* 弹框内容 */
.modal-content {
    width: 540px;
    height: 477px;
    background: #FFFFFF;
    border-radius: 31px;
    margin: 10% auto 0;
    position: relative;
    padding-top: 30px;
}

.model-image {
    width: 500px;
    height: auto;
    /* background-color: red; */    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;

}

.model-image-item {
    position: relative;
}


/* 关闭按钮 */
.image-close {
    color: #fff;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    cursor: pointer;
}

.model-image .image {
    width: 100%;
}


/* 关闭按钮 */
.close {
    color: #aaa;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.login-tabs {
    border-bottom: 1px solid #E9E8E8;
    gap: 28px;
    padding: 0 30px 10px;
}

.login-tabs-item {
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    position: relative;
    cursor: pointer;
}

.login-tabs-item:hover {
    opacity: 0.8;
}

.login-tabs-item.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #0073FF;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;

}

.login-form {
    margin-top: 60px;
    padding: 0 30px;
}

.form-item {
    width: 100%;
    height: 60px;
    border: 1px solid #eee;
    border-radius: 10px;

}


.phone-pre {
    width: 100px;
    height: 60px;
    border-right: 1px solid#eee;
    gap: 10px;
    cursor: pointer;
    position: relative;


}

.phone-pre::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;

}

.phone-pre:hover .phone-pre-list {
    display: block;
}

.phone-pre-list {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    position: absolute;
    top: 60px;
    display: none;

    background-color: #fff;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    border-radius: 4px;


}


.phone-pre-list-item {
    width: 100%;
    height: 90px;


}

.phone-pre-list-child {
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;

}

.phone-pre-list-child:hover {
    background-color: #2176ED;
}


.form-input {
    flex: 1;
    padding: 0 20px;
}

.code-action {
    width: 120px;
    height: 40px;
    border-left: 1px solid #eee;
    cursor: pointer;
}

.login-action {
    width: 100%;
    height: 50px;
    background: #2176ED;
    border-radius: 18px 18px 18px 18px;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    margin-top: 60px;
    cursor: pointer;
}

.login-bottom {
    width: 100%;
    height: 69px;
    background: #D9D9D9;
    margin-top: 44px;

    border-bottom-left-radius: 31px;

    border-bottom-right-radius: 31px;
    font-weight: 400;
    font-size: 20px;
    color: #817F7F;
}

.a-link {
    color: #000;
}


/* 案例弹框部分 */

.image-content {
    width: 100%;
    padding: 30px;

}

.image-content .image {
    width: 100%;
    height: 400px;
    object-fit: contain;
}