baojingindex.css 355 B

123456789101112131415161718192021
  1. .box {
  2. position: relative;
  3. width: 100%;
  4. height: 200px;
  5. text-align: center;
  6. color: #2828d6;
  7. background-color: #2828d6;
  8. }
  9. .box:after {
  10. position: absolute;
  11. left: 0;
  12. right: 0;
  13. bottom: -100px;
  14. z-index: -1;
  15. content: ' ';
  16. height: 100px;
  17. width: 100%;
  18. border-radius: 0 0 70% 70%;
  19. background-color: #2828d6;
  20. }