@charset "utf-8";


.new_list .more {
    display: flex;
    padding-top: 70px;
}
.new_list .more .a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 29px;
    border: 1px solid #D9D9D9;
    color: #666;
font-size: 16px;
font-weight: 400;
transition: all 0.3s;
}

.new_list .more span {
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
height: 24px;
background-color: var(--main-color);
border-radius: 50%;
}
.new_list a:hover .more .a {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
}
.new_list a:hover  .more span{
background-color: var(--white-color);
}
.new_list a:hover .more span svg path {
    stroke: var(--main-color);
}
.new_list {
    padding-top: 32px;
}
.new_list ul li {
    padding-top: 16px;
    padding-bottom:16px;
}
.new_list a {
    display: flex;
    position: relative;
    padding-bottom: 32px;
    overflow: hidden;
}
.new_list a::after {
    content:"";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}
.new_list a::before {
    content:"";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.5s ease-in;
}
.new_list a:hover::after {
    opacity: 0;
}
.new_list a:hover::before {
    width: 100%;
}
.new_list .thumb {
    width: 342px;
    border-radius: 8px;
    overflow: hidden;
}
.new_list .thumb i {
    position: relative;
    display: block;
    width: 100%;
    height: 220px;
}
.new_list .thumb i img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new_list .new_mid {
    position: relative;
  width: calc(100% - 562px);
padding-left: 24px;
padding-right: 24px;
height: 100%;
}
.new_mid .title {
color: var(--dark);
font-size: 20px;
font-weight: 700;
line-height: 32px; 
}
.new_mid .text {
margin-top: 17px;
font-size: 16px;
font-weight: 400;
line-height: 28px;
height: 56px;
}

.new_mid .time {
    padding-top: 16px;color: #999;
}
.new_list .new_time {
display: flex;
justify-content: center;
align-items: center;
width: 220px;
text-align: center;

}
.new_time em{
    color: #999;
    font-family: 'D-DIN-PRO-Regular';
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 28px; 
}
.new_time span {
    display: block;
    padding-bottom: 12px;
    margin-bottom: 12px;
    font-family: 'D-DIN-PRO';
font-weight: 500;
line-height: 1;
color: #666;
border-bottom:1px solid #D9D9D9;
}
.new_list a:hover .new_mid .title {
    color: var(--main-color);
}
@media (min-width:768px) {
    .new_list a .thumb img {
        transition: all 0.4s ease-in;
    }
    .new_list a:hover .thumb img {
    transform: scale(1.05);
    }
    .new_list .new_mid:after {
        content:"";
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background-color: #D9D9D9;
    }
}

@media (max-width:1366px) {

.new_list .new_mid {
  width: calc(100% - 542px);

}
.new_list .new_time {
    width: 180px;
}

}
@media (max-width:1280px) {
    .new_list .thumb {
        width: 300px;
   }
    .new_list .new_mid {
      width: calc(100% - 500px);
    
    }
   
    
}
@media (max-width:1200px) {
    .new_list .thumb {
        width: 300px;
   }
    .new_list .new_mid {
      width: calc(100% - 460px);
    
    }
    .new_list .new_time {
        width: 140px;
    }
    
}
@media (max-width:768px) {
    .new_list .thumb {
        width: 260px;
   }
    .new_list .new_mid {
      width: calc(100% - 380px);
    
    }
    .new_list .new_time {
        width: 100px;
    }
    
}   
@media (max-width:767px) {
  
.new_list a {
    flex-wrap: wrap;
}
.new_list .thumb {
    width: 100%;
}
.new_list .thumb i {
  
    height: auto;
}
.new_list .thumb i img {
    position: relative;
    width: 100%;
    height: 100%;
}
.new_list .new_mid {
    flex: inherit;
    margin-top: 25px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}
.new_list .more {
    padding-top: 20px;
}

}
<!--ºÄÊ±1758367490.7815Ãë-->