body{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
#container{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}
#container>*{
    width: 100%;
}
#container main{
    flex: 1;
}
.page-box{
    width: 100%;
    height:4rem;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.page-box img{
    height: 50%;
    object-fit: contain;
}
.page-box h1{
    font-size: 0.25rem;
    margin-top: 0.2rem;
    font-weight: normal;
}
.container-box{
    padding: 0.5rem 2.6rem;
}
.container-box .container-item{
    margin-bottom: 0.4rem;
}
.container-box .container-item h1{
    font-size: 0.28rem;
    font-weight: bold;
    color: rgba(34, 34, 34, 1);
    line-height: 0.38rem;
    margin-bottom: 0.2rem;
}

.container-box .container-item ul{
    /* list-style: disc;
    list-style-position: inside; */
    color: grey;
}

.container-box .container-item ul li{
    font-size: 0.16rem;
    line-height: 0.3rem;
    margin-bottom: 0.15rem;
    color: rgba(95, 100, 100, 1);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: start;
}
/* .container-box .container-item ul li::before {
    content: " "; 
    display: inline-block;
    width: 0.07rem; 
    height: 0.07rem;
    margin-right: 0.5em; 
    background-color: rgba(95, 100, 100, 1);
    border-radius: 50%; 
  } */
.circle-marker{
    display: flex;
    height: 0.3rem;
    margin-right: 0.08rem;
    align-items: center;
    /* line-height: 0.3rem;
    border-radius: 50%;
    background-color: rgba(95, 100, 100, 1); */
}
.circle-marker::before{
    content: " "; 
    display: inline-block;
    width: 0.06rem; 
    height: 0.06rem;
    background-color: rgba(95, 100, 100, 1);
    border-radius: 50%; 
}
.flex1{
    flex: 1;
}
