@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
 
}
@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
   
}
@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  
}
@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  
}
@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
   
}
@font-face {
  font-display: swap;
  font-family: Rubik;
  font-style: normal;
  font-weight: 600;
  
}
@font-face {
  font-display: swap;
  font-family: Rubik;
  font-style: normal;
  font-weight: 700;
 
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
body {
  background-color: #000;
  color: #fff;
  font-family: Poppins
}
img {
  max-width: 100%
}
.over, a, button {
  transition: all .4s ease
}
.over:hover {
  opacity: .7
}
.list-style-none {
  list-style: none !important
}
a {
  text-decoration: none
}
a:hover {
  text-decoration: underline
}
ul {
  list-style: none
}
p, ul {
  margin: 0;
  padding: 0
}
.text-left {
  text-align: left
}
.text-right {
  text-align: right
}
.text-center {
  text-align: center
}
.d-flex {
  display: flex
}
.text-uppercase {
  text-transform: uppercase
}
.flex-start {
  justify-content: flex-start
}
.flex-end {
  justify-content: flex-end
}
.flex-center {
  justify-content: center
}
.align-center {
  align-items: center
}
.w-100 {
  width: 100%
}
.container {
  padding-left: 15px;
  padding-right: 15px
}
@media only screen and (max-width:991px) {
  .container {
    max-width: 100%;
    min-width: 100%;
    padding-left: 8px !important;
    padding-right: 8px !important
  }
}
.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%
}
@media (min-width:768px) {
  .container {
    max-width: 750px !important
  }
}
@media (min-width:992px) {
  .container {
    max-width: 970px !important
  }
}
@media (min-width:1200px) {
  .container {
    max-width: 1170px !important
  }
}
@media (min-width:1400px) {
  .container {
    max-width: 1296px !important
  }
}
.text-overflow {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis
}
body {
  background-attachment: fixed;
  background-image: url(../fonts/bg-site.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  overflow: hidden auto;
  position: relative;
  width: 100%
}
#pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px auto
}
#pages li {
  list-style-type: none;
  margin: 2px 0
}
#pages a {
  border: 1px solid #ccc;
  padding: 1px 2px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 3px;
  color: #fff;
  display: block;
  text-wrap: nowrap;
}
.body a {
  color: #fff
}
.red a {
  color: red;
}
.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000; /* Optional: background color for when video is loading */
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zhibo_btn a {
  background:linear-gradient(135deg,#002672,#f53434);
  color: white;
  padding: 3px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border: none;
  transition: transform 0.5s;
  animation: spring-animation 1s infinite alternate;
}
 
.zhibo_btn a:active {
  transform: scale(0.9);
}
 
@keyframes spring-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}