.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.box {
  width: 1200px;
}

.box_top {
  margin: 40px 0 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.box_top .border {
  display: inline-block;
  width: 109px;
  height: 3px;
  background-image: url("../../images/index/border.png");
  background-repeat: no-repeat;
  margin-top: 15px;
}


.box_top .box_title {
  font-size: 26px;
  cursor: default;
  color: #000;
}

.box_content {
  display: flex;
}
.box_content .box_left {
  position: relative;
  font-size: 16px;
  line-height: 36px;
  color: #4f4f4f;
  width: 640px;
}
.box_content .box_left .text {
  height: 252px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  text-indent: 2em;
}
.box_content .box_left .more_btn {
  cursor: pointer;
  color: #315ab2;
  position: absolute;
  bottom: 6px;
  right: 0;
  font-size: 16px;
}
.box_content .box_right {
  margin-left: 55px;
  padding-bottom: 15px;
  width: 505px;
  height: 325px;
}
.box_content .box_right .shadow{
  background-color: #9fa0a0;
  width: 505px;
  height: 310px;
  position: relative;
}
.box_content .box_right .shadow img {
  position: absolute;
  top: -15px;
  right: -25px;
  width: 505px;
  height: 310px;
}

.swiper_container {
  position: relative;
  width: 1330px;
}
.mySwiper   {
  width: 1200px;
  position: relative;
  height: 272px;
  display: flex;
}
.mySwiper .swiper-slide {
  position: relative;
  display: block;
}
.mySwiper .swiper-slide:last-child {
  margin-right: 0;
}
.mySwiper .swiper-slide p {
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: rgba(20, 97, 179, 0.6);
  color: #fff;
}

.mySwiper .swiper-slide img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.swiper-button-next, .swiper-button-prev {
  width: 45px !important;
  height: 45px !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-color: #fff;
}
.swiper-button-next {
  right: -15px !important;
  background-image: url("../../images/right.png") !important;
}
.swiper-button-prev {
  left: -15px !important;
  background-image: url("../../images/left.png") !important;
}

.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list .list_item {
  width: calc(50% - 96px);
  display: flex;
  margin-top: 15px;
}
.list .list_item:nth-child(1), .list .list_item:nth-child(2) {
  margin-top: 0;
}
.list .list_item .item_title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  margin-right: 5px;
}
.list .list_item .item_time{
  flex-shrink: 0;
  color: #bababa;
  font-size: 18px;
}
.list .list_item:nth-child(2n - 1) {
  margin-right: 192px;
}

.card{
  position: relative;
  width: 1246px;
  height: 500px;
  background-color: #fff;
  padding: 38px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card #prev2 {
  left: -55px !important;
}
.card #next2 {
  right: -55px !important;
}
.card .card_item {
  width: 292.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card .card_item img{
  width: 280px;
  height: 280px;
}
.card .card_item .card_text1{
    color: #424242;
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 ;
}
.card .card_item .card_text2 {
  color: #707070;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}