/*submissionBox 样式*/

#submission-box-popBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1,1,0,.15);
    z-index: 1;
}

.submission-box-iframeBox {
    /*float: right;*/
    width: 100%;
}

.click-clear{
    width: 50%;
    /*background: #999;*/
    height: 100vh;
    float: left;
}


/********************* 右侧浮出层  ***************************/
.submission-box{
    float: right;
    width: 50%;
    color: #181818;
    background: #f1f1f1;
    margin: 0;
    height: 100vh;
    z-index: 999;
    position: relative;
}

/** header **/
.submission-box-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    line-height: 28px;
    padding: 16px 24px;
    border-bottom: 1px solid rgb(230, 235, 239);
    font-size: 18px;
    background-color: rgb(255, 255, 255);
}

/** content **/
.submission-box-content{
    margin-bottom: 15px;
    overflow: hidden;
    height: calc(100vh - 220px);
}

/** submit **/
.submission-box-priceResult{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    border-top: 1px solid rgb(230, 235, 239);
    background-color: rgb(255, 255, 255);
    padding: 40px 0 40px 0;
    position: absolute;
    bottom: 0;
}

.submission-box-price{
    line-height: 17px;
    font-size: 24px;
    color: #ff8a00;
    letter-spacing: 0;
    text-align: right;
}

.submission-box-submit{
    top: 0 !important;
    transform: translateY(0%) !important;
    vertical-align: middle;
    background: #fe6a00;
    width: 152px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    margin-right: 15px;
    border: 0;
    border-radius: 2px;
}
.submission-box-submit-disabled{
    background: #666;
    cursor: not-allowed !important;
}