
/* pc端中间部分 */
.pc-main{
    width: 100%;
    height: calc(100vh - 15rem);
    /* box-shadow: 0px 0px 20px rgb(255, 255, 255); */
    overflow: auto;
    box-sizing: border-box;
    position: relative;
    /* margin: 0 auto; */
    display: flex;
    /* border-radius: 15px; */
    display: flex;
    align-items: center;
    padding: 20px;
}
.pc-main .pc-left{
    width: 35%;
    height: 100%;
    
}
.pc-main .pc-right{
    box-sizing: border-box;
    width: 65%;
    height: 100%;
    border: 10px solid rgb(0, 0, 0);
    box-shadow: 0px 0px 20px rgb(0, 0, 0);
    background-color: rgb(158, 158, 158);
    opacity: 0.7;
    border-radius: 30px;
}

/* 移动端中间部分 */
.mob-main{
    box-sizing: border-box;
    width: 100%;
    height: calc(100vh - 8rem);
    overflow: auto;
    position: relative;
}
.mob-main .mobbar{
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
}
