/**
 * 整体居中功能；
 * 背景透明虚化
 * 溢出隐藏
 * 边缘圆角化
 * 文字增加淡阴影
 */
.description{
    /*background: hsla(0,0%,100%,.25) border-box;*/
    background: hsl(0deg 0% 100% / 8%) border-box;;
    overflow: hidden;
    border-radius: 1em;
    box-shadow:0 0 8px 1px hsla(0,0%,100%,.3) inset, 0 0.5em 1em rgba(0, 0, 0, 0.6);;
    text-shadow: 0 1px 1px hsla(0,0%,100%,.3);

}

/*使用滤镜模糊边缘*/
.description::before{
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    -webkit-filter: blur(20px);
    filter: blur(20px);
}