@charset "UTF-8";
:root {
  --main-color: #edcc31;
  --text-color: #012d5e;
  --font50: 3.125rem;
  --font40: 2.5rem;
  --font30: 1.875rem;
  --font20: 1.25rem;
  --font18: 1.125rem;
  --font16: 1rem;
  --font14: .875rem;
  --header-height: 6.5625rem;
  --extend-width: 10rem;
}

@media screen and (min-width: 1920px) {
  :root {
    --extend-width: calc((100% - 1600px)/2);
  }
}

@media screen and (max-width: 992px) {
  :root {
    --header-height: 60px;
  }
}

.container {
  max-width: 1600px !important;
  width: calc(100% - 20rem) !important;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
  }
}

.w1260 {
  max-width: 1260px !important;
  width: calc(100% - 41.25rem) !important;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .w1260 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
  }
}

.font-bold {
  font-weight: bold;
}

.overflow-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

@media screen and (max-width: 640px) {
  .overflow-xs-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
  }
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.img100 img {
  display: block;
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* flex布局 */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 0;
}

/* 定位 */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.d-none {
  display: none !important;
}

@media screen and (max-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .justify-lg-content-center {
    justify-content: center !important;
  }
  .justify-lg-content-end {
    justify-content: flex-end !important;
  }
  .justify-lg-content-between {
    justify-content: space-between !important;
  }
  .justify-lg-content-around {
    justify-content: space-around !important;
  }
  .align-lg-items-start {
    align-items: flex-start !important;
  }
  .align-lg-items-center {
    align-items: center !important;
  }
  .align-lg-items-end {
    align-items: flex-end !important;
  }
  .full-lg-width {
    width: 100% !important;
  }
}

@media screen and (max-width: 640px) {
  .flex-xs-wrap {
    flex-wrap: wrap !important;
  }
  .d-xs-block {
    display: block !important;
  }
}

#videModal.cur {
  opacity: 1;
  pointer-events: auto;
}

#videModal.cur .modal_bai {
  transform: translateX(-50%) translateY(-50%) scale(1);
}

#videModal {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}

#videModal .modal_bai {
  background: rgba(255, 255, 255, 0.35);
  padding: 1rem;
  box-shadow: 0px 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.2);
  border-radius: 0.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

#videModal .modal_bai .modal-header {
  border: none;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  color: #333;
  padding-left: 0;
  padding-right: 0;
}

#myModalLabel {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1rem;
}

#videModal .modal_bai .close {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(50%) translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  font-size: 1.125rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

#videModal .modal_bai .modal-body {
  padding: 0;
  width: 90vw;
  height: 90vh;
}

#videModal .modal_bai .modal-body video {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

#videModal .modal_bai .modal-body iframe {
  width: 100%;
  height: 100%;
}

pre {
  white-space: normal;
}
