@charset "UTF-8";
:root {
  --main-color: #0b53b3;
  --btn-color: #d60018;
  --thrid-color: #09318d;
}

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

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

.w1200 {
  max-width: 1200px !important;
  width: calc(100% - 45rem) !important;
  margin: 0 auto;
  box-sizing: border-box;
}

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

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

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-16 {
  font-size: 1rem;
}

.font-18 {
  font-size: 1.125rem;
}

.font-20 {
  font-size: 1.25rem;
}

.font-22 {
  font-size: 1.375rem;
}

.font-24 {
  font-size: 1.5rem;
}

.font-26 {
  font-size: 1.625rem;
}

.font-28 {
  font-size: 1.75rem;
}

@media screen and (max-width: 992px) {
  .font-12 {
    font-size: 12px;
  }
  .font-14 {
    font-size: 14px;
  }
  .font-16 {
    font-size: 16px;
  }
  .font-18 {
    font-size: 18px;
  }
  .font-20 {
    font-size: 20px;
  }
  .font-22 {
    font-size: 20px;
  }
  .font-24 {
    font-size: 22px;
  }
  .font-26 {
    font-size: 24px;
  }
  .font-28 {
    font-size: 26px;
  }
}

.line-1 {
  line-height: 1;
}

.line-l2 {
  line-height: 1.2;
}

.line-14 {
  line-height: 1.4;
}

.line-16 {
  line-height: 1.6;
}

.line-18 {
  line-height: 1.8;
}

.line-20 {
  line-height: 2;
}

.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;
}

.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;
}

@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;
  }
}

p {
  margin: 0;
}

#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%;
}
