

/*首屏*/
.fc_header {
  height: 70vh;
  overflow: hidden;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .08);
  background: #111;
  background: linear-gradient(89.96deg, #050C13 .01%, #282C34 99.99%);

}

.fc_header .fc_content {
  max-width: 1140px;
  padding: 0 150px;
  height: 70vh;
  overflow: hidden;
  position: relative;
  margin: 0 auto;

}

.header_text {
  position: absolute;
  top: 30%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
}

.header_text .title {
  font-size: 54px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

.header_text .sub_title {
  font-size: 19px;
  font-weight: 400;
  color: hsla(0, 0%, 100%, .7);
  text-align: center;
}

.header_text .button-wrap {
  margin-bottom: 14px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header_text .button-wrap .button_fail,
.header_text .button-wrap .button_outline {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  padding: 2px 40px;
  border-radius: 100px;
  display: inline-block;
  line-height: 48px;
}

.header_text .button-wrap .button_fail img,
.header_text .button-wrap .button_outline img {
  opacity: .5;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
}

.header_text .button-wrap .button:first-child {
  margin-bottom: 18px;
}

.header_text .button-wrap .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.header_text .button-wrap .button_fail {
  color: #fff;
  background: linear-gradient(89.96deg, #219E92 .01%, #3AB08E 99.99%);
  box-shadow: 0 0 30px 0 rgba(32, 128, 253, .3);
  transition: all .3s;
  padding-right: 52px;
  transition: all .2s ease-out;
}

img {
  vertical-align: middle;
  border-style: none;
}

.header_show {
  position: absolute;
  bottom: -20vh;
  transform: translateX(-50%);
  left: 50%;
  width: 80vw;
  max-width: 1000px;

}

/*内容*/
.fc_resource .fc_content {
  display: grid;
  grid-template-columns: 2fr;
  grid-template-rows: auto;
  grid-gap: 30px;
  position: relative;
  max-width: 1460px;
  padding: 40px 0px 80px;
  margin: 0 auto;
}


.fc_resource .fc_content .list {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
}

.fc_resource .fc_content .card {
  cursor: pointer;
  transition: all .2s ease-out;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(119, 140, 162, 0.13);
  border: 1px solid #E9ECF5;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  padding: 30px
}

.fc_resource .fc_content .card .icon {
  cursor: pointer;
  transition: all .2s ease-out;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
  padding: 10px
}

.fc_resource .fc_content .card .desc_view {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(0, 0, 0, .5);
  padding: 12px 8px;
}

.fc_resource .fc_content .card .desc_view .desc_title {
  font-size: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, .8);
  padding-bottom: 0;
  margin-bottom: 6px;
  text-align: center;
}

.fc_resource .fc_content .item_list {
  cursor: pointer;
  transition: all .2s ease-out;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 40px;
  height: 100%;
}

.fc_resource .fc_content .item_list .item_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  justify-content: center;
  align-items: center;
  max-width: 1460px;
  padding: 40px;
}

.fc_resource .fc_content .item_img {
  height: 100%;
  text-align: center;
}







.element.style {
  vertical-align: inherit;
}

.ant-layout,
.ant-layout * {
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: border-box;
}

/*轮播*/
.x_slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1460px;
}

.x_slides {
  display: flex;
  transition: transform 0.5s ease;
}

.x_slide {
  min-width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 40px 0;

}

.x_img {
  width: 80%;
  height: auto;

  transition: all .2s ease-out;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(119, 140, 162, 0.13);
  border: 1px solid #E9ECF5;

}

.x_controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.x_arrow {
  cursor: pointer;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(119, 140, 162, 0.13);
  border: 1px solid #E9ECF5;

}

.x_arrow.x_prev {
  left: 10px;
}

.x_arrow.x_next {
  right: 10px;
}

.x_dots {
  text-align: center;
  margin-top: 20px;
}

.x_dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #aaa;
  cursor: pointer;
}

.x_dot.x_active {
  background-color: #333;
}

/*轮播*/

@media screen and (max-width:1460px) {
  .x .item_title h2 {
    font-size: 24px;
  }

  .x .item_title p {
    font-size: 16px;
  }
}