html,
body {
  position: relative;
  height: 100%;
}
body {
  background: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}
.main_body {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* banner样式在common.css中 */
/* 面包屑和小导航样式在common.css中 */





/* news */
.news {
    width: 100%;
    padding-top: 0.6rem;
    padding-bottom: 1.27rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* title */
.news .title {
    text-align: center;
}
.news .chinese {
    font-size: 0.28rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #222222;
}
.news .english {
    margin-top: 0.15rem;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #004282;
}
/* some news */
.news .some_news {
    width: 16rem;
    min-height: 8rem;
    margin-top: 0.8rem;
}
.news .new {
    width: 16rem;
    height: 2.7rem;
    margin-top: 0.2rem;
    padding: 0.43rem 2rem;
    background: #FFFFFF;
    border-radius: 0.05rem;
    border-bottom: 0.01rem solid #EEEEEE;
    display: flex;
}
.news .new:first-child {
    margin-top: 0;
}
.news .new:hover {
    box-shadow: 0 0.02rem 0.12rem 0 rgba(0, 0, 0, 0.1);
}
.news .new_img {
    width: 3.17rem;
    height: 1.84rem;
    margin-right: 0.3rem;
}
.news .new_img img {
    width: 100%;
    height: 100%;
}
.news .new_info {
    width: 8.5rem;
}
.news .new_head {
    font-size: 0.28rem;
    font-family: Microsoft YaHei;
    color: #222222;
    font-weight: 400;
}
.news .new_words {
    margin-top: 0.25rem;
    font-size: 0.16rem;
    font-family: Microsoft YaHei;
    color: #888888;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
}
.news .others {
    width: 100%;
    margin-top: 0.57rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news .others .date {
    font-size: 0.16rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #888888;
}
.news .others .detail1, .detail2 {
    width: 0.39rem;
    height: 0.11rem;
}
.news .others .detail1 {
    display: none;
}
.news .new:hover .others .detail1 {
    display: block;
}
.news .new:hover .others .detail2 {
    display: none;
}


/* pages */
.news .pages {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    text-align: center;
}
.news .pages .home_page {
    display: block;
    width: 0.4rem;
    height: 0.32rem;
    margin-right: 0.1rem;
    background: #FFFFFF;
    border: 0.01rem solid #EEEEEE;
    border-radius: 0.04rem;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    color: #222222;
    line-height: 0.3rem;
}
.news .pages .prev, .next {
    display: block;
    width: 0.69rem;
    height: 0.32rem;
    margin-right: 0.1rem;
    background: #FFFFFF;
    border: 0.01rem solid #EEEEEE;
    border-radius: 0.04rem;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    color: #222222;
    line-height: 0.3rem;
}
.news .pages .last_page {
    display: block;
    width: 0.4rem;
    height: 0.32rem;
    background: #FFFFFF;
    border: 0.01rem solid #EEEEEE;
    border-radius: 0.04rem;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    color: #222222;
    line-height: 0.3rem;
}
.news .pages .page {
    display: flex;
    align-items: center;
}
.news .pages .item {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 0.1rem;
    background: #FFFFFF;
    border: 0.01rem solid #EEEEEE;
    border-radius: 0.04rem;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    color: #222222;
    line-height: 0.3rem;
}
.news .pages .page_active {
    background: #004282;
    color: #fff;
}






@media only screen and (max-width: 1024px) {
    .news .chinese {
        font-size: 14px;
    }
    .news .english {
        margin-top: 0.1rem;
        font-size: 12px;
    }
    .news .some_news {
        width: 100%;
        margin-top: 0.45rem;
        padding: 0 15px;
    }
    .news .new {
        width: 100%;
        height: auto;
        height: auto;
        padding: 15px 0;
    }
    .news .new_img {
        width: 110px;
        height: 70px;
        margin-right: 10px;
    }
    .news .new_info {
        width: 225px;
    }
    .news .others {
        display: none;
    }
    .news .new_head {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .news .new_words {
        font-size: 12px;
    }
    
}




