* {
    padding: 0;
    margin: 0;
}

body {
    overflow: hidden;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container .header {
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #5375F6;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
}

.container .content {
    flex: 1;
    overflow-y: scroll;
    padding: 0 14px;
    padding-bottom: 20px;
}

.container .content .downItem {
    display: flex;
    padding: 10px 0;
    /* border-bottom: 1px solid #f5f5f5; */
}

.downItem:nth-of-type(even) {
    background: rgba(83, 117, 246, 0.08);
}

.container .content .downItem .left {
    width: 15px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    word-wrap: break-word;
    color: #5375F6;
    font-weight: 550;
    text-align: center;
    border-right: 4px solid rgba(83, 117, 246, 0.08);
}

.container .content .downItem .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6px;
}

.container .content .right .item {
    display: flex;
    border-bottom: 1px solid rgba(83, 117, 246, 0.1);
}

.downItem:nth-of-type(even) .left {
    border-right: 4px solid #fff;
}

.downItem:nth-of-type(even) .right .item {
    border-bottom: 1px solid #fff
}

.downItem .right .item:last-child {
    border-bottom: none;
}

.container .content .right .item .downName {
    flex: 1;
    font-size: 14px;
    padding: 10px;
}

.container .content .right .item .downIcon {
    text-align: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 90px;
    text-align: center;
}

.container .content .right .item .downIcon .imgDiv {
    margin-left: 10px;
}

.container .content .right .item .img {
    width: 34px;
    height: 34px;
}

.videoDialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    /*width: 100vw;*/
    /*height: 100vh;*/
    background: rgba(0, 0, 0, 0.5);
}

.videoDialog #iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

.videoDialog .videoDiv {
    position: relative;
    /*margin-top: 34%;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    height: 60%;
    background: #fff;
    /*padding-bottom: 20px;*/

}

.videoDialog .title {
    height: 60px;
    line-height: 60px;
    text-align: left
}

.videoDialog .close {
    padding-top: 20px;
    text-align: center;
}