<div class="box_coun">
<div class="squ"></div>
<div class="coun_name">某某村</div>
</div>
.box_coun{
width: 300px;
height: 80px;
position: relative;
margin: 100px auto;
font-size: 60px;
text-align: center;
}
.box_coun::after{
content: ''; /* 用伪元素来生成一个矩形 */
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
z-index: -1;
background: #58a;
transform: perspective(.5em) rotateX(-5deg);
transform-origin: left;
}