body{
    margin: 0 ;
    padding:  0;
    background-image: url(../static/images/bg.jpg);
    background-size: 100% 100vh;
    background-repeat: no-repeat;
}
.toast_box {
    /* width: 100%; */
    position: absolute;
    bottom: 50%;
    left: 50%;
    /* justify-content: center; */
    z-index: 10;
    transform: translate(-50%, -50%);
    display: none;
}
             
.toast_box p {
    box-sizing: border-box;
    padding: 10px 20px;
    width: max-content;
    /* 提示框的背景色 */
    background: #707070;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 6px;
    opacity: 0.8;
} 
.container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.container .item {
    display: flex;
    margin-bottom: 110px;
    width: 60vw;
    height: 10vh;
    background-color: white;
    overflow: hidden;
    justify-content: space-between;
    padding: 0 10px;
    box-shadow: 0px 16px 35px 0px 
    rgba(0, 0, 0, 0.43);

}
.container .item .title{
 
    display: flex;
    align-items: center;
	font-size: 22px;
	line-height: 24px;
	color: #129978;
}
.container .item .icon{
    /* border: 1px solid ; */
    /* width: 100px;w */
    width: 50%;
    display: flex;
    align-items: center;
}
.container .item img{
 width: 100%;
}