
乒乓球图案logo
```html
body {
fontfamily: Arial, sansserif;
backgroundcolor: f4f4f4;
textalign: center;
padding: 20px;
}
h1 {
color: 333;
}
.pingpongicon {
width: 150px;
height: 150px;
backgroundcolor: fff;
borderradius: 50%;
display: flex;
justifycontent: center;
alignitems: center;
boxshadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.paddle {
width: 70px;
height: 10px;
backgroundcolor: 000;
position: absolute;
top: 50px;
}
.paddle.left {
transform: rotate(45deg);
left: 55px;
}
.paddle.right {
transform: rotate(45deg);
right: 55px;
}
.ball {
width: 20px;
height: 20px;
backgroundcolor: ff6600;
borderradius: 50%;
position: absolute;
top: 65px;
}

乒乓球小图案设计