body {
    position: relative;
}

html,
body {
    height: 100%;
}

.expectedbox {
    position: fixed;
    width: 100%;
    height: 100%;
    /* height: 768px; */
    background: rgba(0, 0, 0, 0.7);
    z-index: 666;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 开始动画 */

.expectedlistbox {
    width: 760px;
    height: 215px;
    border-radius: 5px;
    /* margin-top: 50%; */
    /* position: absolute; */
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    /* border-radius: 20px 20px 0px 0; */
    animation: choicestart 1s;
    /* overflow: scroll; */
    display: flex;
    flex-direction: column;
}

.expectedbox .expectedtitle {
    /* width: 84px; */
    height: 58px;
    font-size: 18px;
    font-family: PingFang SC;
    background-color: #005792;
    border-radius:5px 5px 0 0;
    margin-bottom: 20px;
    color: #fff;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.expectedbox .expectedtitle span {
    margin-left: 5px;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 16px;
    color: rgba(204, 204, 204, 1);
    opacity: 1;
}

.expectedbox .expectedtitle .expectedsure {
    position: absolute;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    line-height: 16px;
    color: #333;
    opacity: 1;
    right: 20px;
    cursor: pointer;
    width: 92px;
    height: 32px;
    border-radius: 3px;
    background-color: #e55352;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.expectedboxnone {
    display: none
}

.expectedbox #expectedcontent {
    margin: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
}

.expectedbox #expectedcontent>div:hover {
    background: #e55352;
    color: #fff;
}

.expectedbox #expectedcontent>div {
    margin: 5px 5px;
    height: 30px;
    background-color: #5a6269;
    opacity: 1;
    padding: 15px 15px;
    border-radius: 3px;
    font-size: 16px;
    font-family: PingFang SC;
    justify-content: space-around;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.expectedaction {
    background: #e55352!important;
    color: #fff !important;
}