/* 上传信息弹窗 */
.alert {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    font-size: 0;
    overflow-y: scroll;
}

.alert::-webkit-scrollbar {/*滚动条整体样式*/
    width: 4px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.alert::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 2px;
    background: rgba(227, 87, 75);
}

.alert::-webkit-scrollbar-track {/*滚动条里面轨道*/
    border-radius: 2px;
    background: rgba(20, 48, 68, .2);
}

.alert-box {
    width: 56%;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    overflow: hidden;
}

.upload-title {
    line-height: 75px;
    padding: 0 4%;
    text-align: start;
    font-size: 18px;
    font-weight: 700;
    color: #143044;
    border-bottom: 1px solid rgba(210, 215, 211, .5);
}

.upload-box {
    padding: 30px 8%;
}

.upload-box-item {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
}

.upload-box-item:nth-child(2n+0) {
    margin-right: 0;
}

.upload-box-item p {
    text-align: start;
    font-size: 14px;
    font-weight: 400;
    color: #143044;
    line-height: 24px;
    opacity: 0.75;
}

.upload-box-item-title {
    width: 100%;
    margin-bottom: 5px;
}

.upload-box-item input,
.upload-box-item select,
.upload-box-item textarea {
    box-sizing: border-box;
    color: #143044;
    background: #F1F2F6;
    border: 1px solid #E0E3ED;
    border-radius: 2px;
}

.upload-box-item input {
    width: 100%;
    line-height: 50px;
    height: 50px;
    padding: 0 18px;
}

.upload-box-item select {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 18px;
    /*将默认的select选择框样式清除*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: #F1F2F6 url(../img/icon-select.png) no-repeat;
    background-position: right;
}

.upload-box-item textarea {
    width: 100%;
    height: 150px;
    padding: 18px;
    line-height: 22px;
    resize : none;
    font-family: "FZLTHJW", "Microsoft YaHei" !important;
}

.upload-img-box {
    width: 100%;
    height: 150px;
}

.upload-img-box div {
    display: inline-block;
    width: 29%;
    height: 150px;
    text-align: center;
    border: 1px solid #E0E3ED;
    border-radius: 2px;
    margin-right: 10px;
    background: #F1F2F6 url(../img/icon-upload.png) center no-repeat;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.upload-img-box div img {
    max-width: 100%;
    max-height: 100%;
}

.upload-img-box p {
    display: inline-block;
    vertical-align: bottom;
}

.upload-video-box {
    width: 100%;
    height: 228px;
    border: 1px solid #E0E3ED;
    border-radius: 2px;
    background: #F1F2F6 url(../img/icon-upload.png) center no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-video-box video {
    max-width: 100%;
    max-height: 100%;
}

.upload-box-item-qa {
    width: 100%;
    height: 228px;
    margin-top: 29px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.upload-box-item-qa div {
    text-align: start;
    font-size: 18px;
    font-weight: 700;
    color: #143044;
    line-height: 24px;
    margin-bottom: 10px;
}

.upload-box-btn {
    margin-top: 10px;
    margin-bottom: 30px;
}

.upload-box-btn div {
    display: inline-block;
    vertical-align: top;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 52px;
    text-align: center;
    cursor: pointer;
}

.upload-box-btn-confirm {
    width: 154px;
    background: #E46358;
    color: #FFFFFF;
    margin-right: 25px;
}

.upload-box-btn-cancel {
    width: 115px;
    background: #F1F2F6;
    border: 1px solid #E0E3ED;
    color: #143044;
}

/* 弹出视频 */
.alertVideo {
    display: none;
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    top: 0;
    left: 0;
}
.alertVideo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 66%;
    height: 100%;
    margin: 0 auto;
}
.alertVideo-core {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
}
.alertVideo-close {
    width: 28px;
    height: 28px;
    position: absolute;
    right: -28px;
    top: -28px;
    z-index: 3;
    background: url(../img/index/close.png) no-repeat center;
    cursor: pointer;
    opacity: .7;
    transition: all .6s ease;
}
.alertVideo-core video {
    width: 100%;
}


@media screen and (max-width:1199px) {
    .alertVideo-content {
        width: 80%;
    }
    .alert-box {
        width: 100%;
        margin: 0!important;
        overflow-y: scroll;
    }
    .upload-title {
        line-height: .7rem;
        font-size: .36rem;
    }
    .upload-box {
        padding: .3rem 8%;
    }
    .upload-box-item {
        width: 100%;
        margin: 0 0 .3rem;
    }
    .upload-box-item p {
        font-size: .28rem;
        line-height: .28rem;
    }
    .upload-box-item-qa {
        height: auto;
        margin-top: .3rem;
    }
    .upload-box-item-qa div {
        font-size: .36rem;
        margin-bottom: .1rem;
        line-height: 1;
    }
    .upload-box-btn {
        width: 100%;
        margin: .1rem 0 .3rem;
        display: flex;
        justify-content: space-between;
    }
    .upload-box-btn div {
        font-size: .32rem;
        line-height: 1rem;
    }
    .upload-box-btn-confirm {
        width: 50%;
        margin-right: auto;
    }
    .upload-box-btn-cancel {
        width: 38%;
    }
}