body {
  background-size: cover;
}
.con {
  position: relative;
}
.con #bread {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.con2 #bread {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.con2 .page1 {
  position: relative;
}
.con .page1 .btnBox{
    position: absolute;
    right: 0;
    bottom: 10%;
    display: flex;
}
.con .page1 .toPage{
   position: static; 
    z-index: 2;
    cursor: pointer;
}

.con .page1 .toPage.previous-button{
    margin-right: 20px;
    transform: rotate(180deg);
}
 
 .con .page1 .toPage .link:hover{
    transform: none;
}
.con .page1 {
  background: url(../img/newsbg.jpg) no-repeat;
  background-size: 100%;
  background-position: center top;
}
.con .page1 .c_c .swiper .swiper-slide .image {
  flex: 0 0 66.66%;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-content: center;
   height: 530px;
}
.con .page1 .c_c .swiper .swiper-slide .image img {
  max-width: 100%;
  height: 100%;
  transition: all 0.4s linear;
}
.con .page1 .c_c .swiper .swiper-slide .info {
  margin-left: 30px;
  flex: 1;
}
.con .page1 .c_c .swiper .swiper-slide .info .info_t .fl {
  color: #666;
}
.con .page1 .c_c .swiper .swiper-slide .info .info_t .time {
  color: #999;
}
.con .page1 .c_c .swiper .swiper-slide .info .tit {
  transition: all 0.2s linear;
}
.con .page1 .c_c .swiper:hover .image img {
  transform: scale(1.05);
}
.con .page1 .c_c .swiper:hover .info .tit {
  color: var(--textColor);
}
.con .page2 .c_t {
  position: relative;
  z-index: 2;
}
.con .page2 .c_t .c_l {
  color: #333;
}
.con .page2 .c_t .c_l p {
  transition: all 0.2s linear;
  position: relative;
  cursor: pointer;
  margin-right: 28px;
}
.con .page2 .c_t .c_l p:last-child {
  margin-right: 0;
}
.con .page2 .c_t .c_l p::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--textColor);
  transition: all 0.4s linear;
}
.con .page2 .c_t .c_l p:hover,
.con .page2 .c_t .c_l p.act {
  color: var(--textColor);
  font-weight: 600;
}
.con .page2 .c_t .c_l p:hover::after,
.con .page2 .c_t .c_l p.act::after {
  width: 100%;
}
.con .page2 .c_t .c_r .selBox {
  position: relative;
  z-index: 2;
}
.con .page2 .c_t .c_r .selBox .selInput {
  padding: 0 20px;
  height: 48px;
  width: 200px;
  border-radius: 8px;
  border: 1px solid #D0D0D0;
  cursor: pointer;
  transition: all 0.2s linear;
}
.con .page2 .c_t .c_r .selBox .info {
  position: absolute;
  left: 0;
  min-width: 100%;
  width: max-content;
  top: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  border-radius: 8px;
  display: none;
  z-index: 2;
}
.con .page2 .c_t .c_r .selBox .info .sel {
  padding: 4px 20px;
  cursor: pointer;
}
.con .page2 .c_t .c_r .selBox .info .sel.act {
  color: var(--textColor);
}
.con .page2 .c_t .c_r .selBox .info .sel:hover {
  background: var(--textColor);
  color: #fff;
}
.con .page2 .c_t .c_r .selBox svg {
  width: 12px;
  transform: rotate(90deg);
}
.con .page2 .c_t .c_r .sel2 {
  margin-left: 20px;
}
.con .page2 .c_t .c_r .sel2 .selInput {
  width: 290px;
}
.con .page2 .c_t .c_r .sel2 .selInput:focus {
  border-color: var(--textColor);
}
.con .page2 .c_t .c_r .sel2 img {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  z-index: 2;
  cursor: pointer;
  filter: brightness(0);
  transform: translateY(-50%);
}
.con .page2 .c_c .list {
  flex: 0 0 calc((100% - 20px)/3);
  width:0 0 calc((100% - 20px)/3);
  overflow: hidden;
  margin-right: 10px;
}
.con .page2 .c_c .list:nth-child(-n+3) {
  margin-top: 0;
}
.con .page2 .c_c .list:nth-child(3n) {
  margin-right: 0;
}
.con .page2 .c_c .list .image {
  height: 0;
  position: relative;
  padding-top: 56%;
  overflow: hidden;
}
.con .page2 .c_c .list .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.4s linear;
}
.con .page2 .c_c .list .info {
  padding-left: 10px;
  padding-right: 10px;
}
.con .page2 .c_c .list .info .tit {
  line-height: 1.5;
  height: 3em;
}
.con .page2 .c_c .list .info .info_t .fl {
  color: #666;
}
.con .page2 .c_c .list .info .info_t .time {
  color: #999;
}
.con .page2 .c_c .list .info .mes {
  color: #666;
}
.con .page2 .c_c .list:hover img {
  transform: scale(1.05);
}
.con .page2 .c_c .list:hover .info .tit {
  color: var(--textColor);
}
@media only screen and (max-width: 1600px) {
    .con .page1 .c_c .swiper .swiper-slide .image{
        height: 460px;
    }
    
}
@media only screen and (max-width: 1366px) {
     .con .page1 .c_c .swiper .swiper-slide .image{
        height: 380px;
    }
    
}
@media only screen and (max-width: 768px) {
.con .page1 .btnBox{
    position: static;
    justify-content: center;
    margin-top: 4vw;
}
      .con .page1 .c_c .swiper .swiper-slide .image{
        height: auto;
    }
  .con .page1 .c_c .swiper .swiper-slide .image {
    flex: 0 0 100%;
  }
  .con .page1 .c_c .swiper .swiper-slide .info {
    margin-left: 0;
    padding-top: 6vw;
  }
  .con .dis_al_cen {
    flex-wrap: wrap;
  }
  .con .page2 .c_t .c_l {
    flex: 0 0 100%;
    justify-content: center;
  }
  .con .page2 .c_t .c_r {
    margin-top: 6vw;
    width: 100%;
  }
  .con .page2 .c_t .c_r .selBox .selInput {
    width: 90px;
  }
  .con .page2 .c_t .c_r .sel2 {
    margin-left: 10px;
  }
  .con .page2 .c_t .c_r .selBox .selInput {
    height: 40px;
    padding: 0 10px;
  }
  .con .page2 .c_t .c_r .selBox.sel2 .selInput {
    width: 100%;
  }
  .con .page2 .c_c .list {
    flex: 0 0 100%;
    width: 100%;
    margin-right: 0px;
  }
  .con .page2 .c_c .list .info {
    padding: 6vw 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .con .page2 .c_t .c_r .sel2 {
    flex: 1;
  }
}
