/* 公共弹窗 */
.home-dialog {
    background: url(../images/dialog-bg.png);
    background-size: 100% 100%;
    position: fixed;
    z-index: 101;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    /* height: 50vw; */
    padding: 2%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.home-dialog .close {
    cursor: pointer;
    position: absolute;
    top: 5%;
    right: 5%;
    width: 20px;
    height: 20px;
    background: url(../images/close.png);
    background-size: 100% 100%;
}

.home-dialog .dialogTitle {
    font-size: 25px;
    font-weight: 600;
}

.home-dialog .imgTitle {
    width: 40%;
}

.doalogImgTitle {
    width: 30% !important;
    margin-top: 7%;
}

.home-dialog img {
    max-width: 100%;
}

/* 遮罩 */
#zao {
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0.5;
    display: none;
}
