
/* pc端中间部分 */
.pc-main{
    width: 100%;
    position: absolute;
    height: calc(100vh - 16rem);
    overflow: auto;
    box-sizing: border-box;
}
.pc-main .list-ip{
    width: 80%;
    height: 100%;
    opacity: 0.7;
    position: relative;
    margin: 0 auto;
   display: flex;
   align-items: center;
}
.pc-main .list-ip .nodata{
width: 100%;
font-size: 3rem;
font-weight: bold;
text-align: center;
color: rgb(255, 255, 255);
}
.pc-main .list-ip p{
   background-color: rgb(114, 23, 23);
   opacity: 0.9;
   text-align: center;
   color: #ffffff;
   font-size: 2rem;
   font-weight: bold;
   border-radius: 10px;
   box-shadow: 0px 0px 10px rgb(255, 255, 255);
   padding: 5px 10px;
}
.pc-main .list-ip .one{
    display: inline-block;
    width: 4rem;
    height: 3px;
    background-color: rgb(204, 204, 204);
    margin-left:1px;
}
.pc-main .list-ip .two{
    display: inline-block;
    width: 3px;
    height: 100%;
    background-color: rgb(204, 204, 204);
}
.pc-main .list-ip ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
.pc-main .list-ip ul li{
    height:16.5%;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: auto;
    
    /* border-bottom: 3px solid rgb(204, 204, 204); */
}
.pc-main .list-ip ul li span:nth-child(1){
    display: inline-block;
    width: 10rem;
    height: 3px;
    background-color: rgb(204, 204, 204);
}
.pc-main .list-ip ul li span:nth-child(2){
    position: absolute;
    top:20%;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
}
.pc-main .list-ip ul li span:nth-child(3){
    display: inline-block;
    border: 1px solid white;
    font-size: 1.7rem;
    line-height: 3rem;
    text-align: center;
    background-color: black;
    opacity: 0.8;
    padding: 0px 10px;
    box-shadow: 0px 0px 6px rgb(255, 255, 255);
}
.pc-footer .footer p span a{
color: #ffffff;
}
/* 移动端中间部分 */
.mob-main{
    box-sizing: border-box;
    width: 100%;
    padding: 0px 1.5rem;
    height: calc(100vh - 12rem);
    overflow: auto;
}
.mob-main .list-ip{
    width: 100vw;
    height: 100%;
    margin: 0 auto;
    opacity: 0.7;
    position: relative;
   display: flex;
   align-items: center;
}
.mob-main .list-ip .nodata{
    width: 100%;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: rgb(255, 255, 255);
    }
.mob-main .list-ip p{
    background-color: rgb(114, 23, 23);
    opacity:1;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(255, 255, 255);
    padding: 5px 10px;
 }
 .mob-main .list-ip .one{
     display: inline-block;
     width: 1.5rem;
     height:2px;
     background-color: rgb(204, 204, 204);
     margin-left:1px;
 }
 .mob-main .list-ip .two{
     display: inline-block;
     width: 2px;
     height: 100%;
     background-color: rgb(204, 204, 204);
 }
 .mob-main .list-ip ul{
     width: 100%;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     
 }
 .mob-main .list-ip ul li{
     height:16.5%;
     width: 100%;
     color: white;
     display: flex;
     align-items: center;
     position: relative;
     overflow: auto;
     
     /* border-bottom: 3px solid rgb(204, 204, 204); */
 }
 .mob-main .list-ip ul li span:nth-child(1){
     display: inline-block;
     width: 2.5rem;
     height: 2px;
     background-color: rgb(204, 204, 204);
 }
 .mob-main .list-ip ul li span:nth-child(2){
     position: absolute;
     top:0;
     font-size:0.8rem;
     font-weight: bold;
     color: rgb(255, 255, 255);
 }
 .mob-main .list-ip ul li span:nth-child(3){
     display: inline-block;
     border: 1px solid white;
     font-size: 0.8rem;
     text-align: center;
     background-color: black;
     opacity: 0.8;
     padding: 5px 10px;
     box-shadow: 0px 0px 6px rgb(255, 255, 255);
 }