/* 公共样式 */
@font-face {
    font-family: MyFontTitle;
    src: url(/website/webfile/assets/fonts/FZZCYSJW.TTF)
}
a {
    /* 重置文本样式 */
    color: inherit;         /* 继承父元素的颜色，而不是使用链接的蓝色 */
    text-decoration: none;  /* 去掉下划线 */
    /* 其他可能的默认样式重置 */
    font-weight: inherit;   /* 继承字重 */
    font-size: inherit;     /* 继承字体大小 */
    font-family: inherit;   /* 继承字体 */
    height: fit-content;
    /* 等等... */
    /* 注意：如果a标签内部有多个元素，我们需要确保这些元素不会因为a标签而改变样式 */
}
img {
    vertical-align: top;
    border: 0;
}

a {
    text-decoration: none;
}

.edit-container {
    margin-right: auto;
    margin-left: auto;
    position: relative;
    width: 83.334vw;
}

/* banner */
.new-news-banner {
    position: relative;
}

.new-news-banner img {
    width: 100%;
    display: block;
}

.new-banner-arrow {
    width: 18px;
    height: 56px;
    background: url(/website/webfile/assets/images/banner-arrow.png) no-repeat;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -9px;
    z-index: 2;
    animation: bannerArrowAnimate 2s ease infinite;
}


.new-news-wrapper {
    overflow: hidden;
    background: url(/website/webfile/assets/images/new/home-brand-bg.jpg) -10px 0 repeat;
    /* padding-bottom: 80px; */
}

.new-news-wrapper .news-list-area{
    display: flex;
    margin: 0 auto ;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    width: 70vw;
}
.news-list-area .newList-newsItem{
margin-top: 0.5rem;
cursor:pointer;
background-color: #ffffff;
}
.news-list-area .newList-newsItem .img-area{

overflow: hidden;
}
.news-list-area .newList-newsItem .img-area img{
    width: 6.4rem;
    height: 3.2rem;
    transition: transform 0.5s ease; /* 平滑过渡 */
            transform: scale(1); /* 初始大小 */
}
.newList-newsItem:hover  .img-area img {
            transform: scale(1.1); /* 鼠标悬停时放大 */
        }
         .newList-newsItem:hover .content-area .left-area .arrow-area img {
            opacity: 1;
        }
.news-list-area .newList-newsItem .content-area{
    display: flex;
    justify-content: center;
    margin-top: 0.3rem;
    height: 1.6rem;
    border-bottom: 1px solid #efefef;
}
.newList-newsItem .content-area .left-area{
height: fit-content;
}
.newList-newsItem .content-area .left-area .date{
    font-size: 0.26rem;
    color:#999 ;
}
.newList-newsItem .content-area .left-area .arrow-area img{
    width: 0.68rem;
    height: 0.5rem;
    opacity: 0;
}
.newList-newsItem .content-area  .right-area{
margin-top: 0.08rem;
width: 4.6rem;
}
.newList-newsItem .content-area  .right-area .content{
 color:#999 ;
 font-size: 0.18rem;
 padding-top: 0.16rem;
}
.newList-newsItem .content-area  .right-area .title{

    font-size: 0.2rem;
    font-weight: 600;
    white-space: nowrap;      /* 禁止换行 */
   overflow: hidden;         /* 隐藏溢出内容 */
   text-overflow: ellipsis;  /* 用省略号表示被截断的文本 */
}
.newList-newsItem .content-area  .right-area .content
{
    overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis;
}
.current-area{
    display: flex;

    justify-content: center;
    margin: 1rem auto 0;
}
.current-area img{
    padding-top: 0.08rem;
    cursor: pointer;
}
.current-area .navToItem{
    text-align: center;
    width: 0.5rem;
    height: 0.3rem;
    line-height: 0.3rem;
    font-size: 0.22rem;
    color: #999;
    cursor: pointer;
}
.current-area .navToItem1{
    text-align: center;

    height: 0.3rem;
    line-height: 0.2rem;
    font-size: 0.22rem;

}
.current-area .navChoose{
    color: black;
    font-weight: 600;
}
.current-area .navToItem:hover{
    text-decoration: underline;
    color: black;
}
@keyframes bannerArrowAnimate {
    0% {
        background-position: 0 -100px;
    }

    50% {
        background-position: 0 -60px;
    }

    100% {
        background-position: 0 -100px;
    }
}

/* 内容 */


@media (min-width: 1280px) and (max-width: 1600px) {



}

@media (max-width: 767px) {


}
