style.css 774 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .bg-box{
  2. width: 100%;
  3. height: 100%;
  4. background-image: url(../image/bg.jpg);
  5. background-size: 100% 100%;
  6. background-repeat: no-repeat;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. .content-box {
  12. width: 90%;
  13. height: 55%;
  14. background-color: #ffffff;
  15. border-radius: 10px;
  16. z-index: 99;
  17. margin-top: 15%;
  18. position: relative;
  19. }
  20. .content-box img {
  21. margin-top: 10%;
  22. width: 100%;
  23. }
  24. .headImg-box {
  25. width: 80px;
  26. height: 80px;
  27. border-radius: 40px;
  28. position: absolute;
  29. top: 15px;
  30. z-index: 100;
  31. }
  32. .num-box {
  33. font-size: 1rem;
  34. margin-top: 10%;
  35. margin-bottom: 5%;
  36. font-family: fantasy
  37. }
  38. .get-btn-box {
  39. width: 65%;
  40. height: 20%;
  41. border-radius: 3%;
  42. }