1. .box {
    2. width: 0;
    3. height: 0;
    4. border: 100px solid transparent;
    5. border-top-color: red; // 箭头朝下
    6. border-right-color: blue; // 箭头朝左
    7. border-bottom-color: pink; // 箭头朝上
    8. border-left-color: yellow; // 箭头朝右
    9. }