.tipmodal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.tipmodal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 820px;
    height: 324px;
    border-radius: 8px;
}

.tipclose {
    width: 24px;
    height: 24px;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
}


.tipmodal-body {
    display: flex;
    align-items: center;
    padding: 100px 107px;
    font-weight: 400;
    font-size: 20px;
    color: #141414;
    box-sizing: border-box;
}

.tipicon {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}
.tipicon img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.tiptitle {
    font-family: Alibaba PuHuiTi 3.0, Alibaba PuHuiTi 30;
    height: 60px;
    font-weight: bold;
    display: flex;
    align-items: center;
    background: #F6F7FB;
    padding: 13px 40px;
    font-size: 24px;
    color: #141414;
    border-radius: 8px;
    position: relative;
}