


html, body {
  width: 100%;
  min-height: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  display: none;
}
.page {
  width: 100%;
  min-width: 1440px;
  height: auto;
  overflow-y: auto;
}
.page .float-menu {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  height: 200px;
  background: linear-gradient( 180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  /* background-color: red; */

}
.space {
  flex-grow: 1;
}
.page .float-menu .container {
  width: 1440px;
  height: 110px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 40px;
}
.page .float-menu .container .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.page .float-menu .container .menu .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page .float-menu .container .menu .menu-item .label {
  /* background-image: linear-gradient(to bottom, transparent,transparent 90%,#fff 90%, #fff); */
  /* background-size: 0 100%; */
  display: block;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  font-family: Source Sans Pro, Source Sans Pro;
  transition: all 0.3s;
}


.page .float-menu .container .menu .menu-item img {
  transition: transform 0.3s;
}
.page .float-menu .container .menu .menu-item:hover img {
  transform: rotateZ(180deg);
}
.page .float-menu .container .menu .menu-item:hover .dropdown {
  grid-template-rows: 1fr;
}
.page .float-menu .container .menu .menu-item .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.098);
  border-radius: 4px 4px 4px 4px;
  transition: all 0.3s;
  width: 160px;
  transform: translateX(-50%);
}
.page .float-menu .container .menu .menu-item .dropdown .dropdown-wrap {
  min-height: 0;
  display: flex;
  flex-direction: column;
  /* margin: 18px 0; */
}
.page .float-menu .container .menu .menu-item .dropdown .dropdown-wrap span {
  color: #121212;
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 700;
    font-size: 16px;
    /* height: 40px; */
    line-height: 22px;
    display: block;
    text-align: center;
    cursor: pointer;
    padding: 10px 0;
}
.page .float-menu .container .menu .menu-item .dropdown .dropdown-wrap span:first-child {
  margin-top: 5px;
}
.page .float-menu .container .menu .menu-item .dropdown .dropdown-wrap span:last-child {
  margin-bottom: 5px;
}
.page .float-menu .container .menu .menu-item .dropdown .dropdown-wrap span:hover {
  background-color: #EEF0F3;
  color: #0E4C92;
}

.page .container {
  width: 100%;
  height: 100vh;
  position: relative;

}
.page .container .dots {
  position: absolute;
  bottom: 30px;
  right: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 99;
}
.page .container .dots .dot {
  width: 10px;
  height: 10px;
  cursor: pointer;
  margin: 10px;
  border-radius: 10px;
  background-color: #ffffffb9;
}
.page .container .dots .dot.active {
  width: 30px;
  height: 30px;
  margin: 0;
  background-color: transparent;
  background-image: url("../static/active.png");
}

.page .container .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.page .container .swiper .swiper-slide img,
.page .container .swiper .swiper-slide video{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page .container .more {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 99;
  cursor:pointer;
}
.page .container .more span {
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
}
@keyframes fade {
  0% {
    transform: scale(1) translateY(0px);
  }
  50% {
    transform: scale(1.3) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(10px);
  }
}
.page .container .more img {
  animation-name: fade;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.page .container .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page .qa {
  width: 100%;
  background-image: url("../static/121.png");
  background-color: #F5F6F7;
  background-size: 100% 100%;
  
}
.page .qa .box {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  height: 688px;
  padding: 80px 0;
  box-sizing: border-box;
  gap: 48px;
}
.page .qa .box>div .bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;

}
.page .qa .box>div .bar .title {
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 700;
  font-size: 48px;
  color: #105DAA;
  
}
.page .qa .box>div .bar .more {
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #105DAA;
}
.page .qa .box>div .list {
  width: 100%;
  height: 0;
  flex-grow: 1;
  background-color: #fff;
  padding: 30px 40px;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page .qa .left, .page .qa .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 0;
  flex-grow: 1;
  height: 100%;
  border-bottom: 4px solid #105DAA;
  /* background-color: #0E4C92; */
}
.page .qa .left .list .item {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(2, max-content);
  grid-template-columns: max-content 1fr;
  gap: 8px 10px;
}
.page .qa .left .list .item .title {
  grid-column-start: 1;
  grid-column-end: 3;
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  /*line-height: 24px;*/
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.page .qa .left .list .item .time {
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 400;
  font-size: 16px;
  color: #4C85BE;
  line-height: 16px;
}
.page .qa .left .list .item .line {
  width: 100%;
  height: 2px;
  background-color: #E3E8EE;
  align-self: center;
}


.page .qa .right .list .item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 46px;
  border-bottom: 2px solid #E3E8EE;
  padding-bottom: 10px;
}
.page .qa .right .list .item .title {
  grid-column-start: 1;
  grid-column-end: 3;
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  /*line-height: 24px;*/
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.page .qa .right .list .item .rank {
  display: block;
  width: 29px;
  height: 24px;
  background-image: url("../static/qp.png");
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.page .top {
  width: 100%;
  height: 648px;
  background-image: url("../static/159.png");
  /* background-color: #F5F6F7; */
  background-size: 100% 100%;
  position: relative;
  
}
.page .top .tag {
  position: absolute;
  top: 40px;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #105DAA;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page .top .content {
  width: 1440px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  padding: 80px 0;
}
.page .top .content .card {
  width: 0;
  flex-grow: 1;
  aspect-ratio: 1 / 1;
  /* height: 488px; */
  position: relative;
}
.page .top .content .card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page .top .content .card .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1E6CBB;
  color: #fff;
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 24px;
}