.detail-top{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-left{
    width: 996px;
    height: 560px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #cccccc;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}
.detail-play{
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000000;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 9999;
}
.detail-play .playbtn{
    width: 61px;
    height: 61px;
}
.detail-play:hover{
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000000;
    opacity: 0.2;
}
.detail-play:hover .playbtn{
    width: 61px;
    height: 61px;
}
.detail-left .cover{
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}
.detail-left:hover .cover{
    transform: scale(1.05);
}
.detail-right{
    margin-left: 30px;
    flex: 1;
    height: 560px;
    border-radius: 12px;
    border: 1px solid #cccccc;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 55px;
    box-sizing: border-box;
}
.detail-badge{
    position: absolute;
    right: 30px;
    top: 0;
    width: 51px;
    height: 61px;
    background: url(../images/icon-badge.png);
    background-size: cover;
    color: #ffffff;
    font-weight: 500;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-title{
    font-weight: bold;
    font-size: 36px;
    color: #333333;
}
.detail-info{
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
}
.detail-info span{
    margin-left: 15px;
}
.detail-btn{
    width: 100%;
    height: 68px;
    margin-top: 20px;
    background: #0C6CFE;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 500;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
}
.detail-btn:hover{
    background: #188EF6;
    transform: scale(1.05);
}
.detail-biaoti{
    margin-top: 30px;
    font-weight: bold;
    font-size: 28px;
    color: #333333;
}
.detail-content{
    margin-top: 30px;
}
.detail-content p{
    margin: 0;
    padding: 0;
    background: #f30;
}
.detail-content img{
    max-width: 100%;
}