body{
    width: 100%;
    height: 100%;
    position: relative;
}

/* 请求遮罩层，防误触 */
.request-mask {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 15rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.4);
    z-index: 9990;
}

/* 加载loading */
.spinner {
    margin: 5rem auto 0;
    width: 7.5rem;
    text-align: center;
}

.spinner>div {
    width: 1rem;
    height: 1rem;
    background-color: #dce2e6;
    margin: 0 2px;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0.0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {

    0%,
    80%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}



header {
    box-sizing: border-box;
    background: url('../images/news_center/banner-xw.png') no-repeat;
    background-size: 100% 100%;
    height: 20rem;
    width: 100%;
    overflow: hidden;
    position: relative;
}
a:hover{
    cursor: pointer!important;
}
.absolute-box {
    width: 59rem;
    height: 2.8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 19%;
}

.a-title {
    width: 11.5rem;
    background: rgba(255, 255, 255, 0.6);
    color: #333333;
    line-height: 2.8rem;
    text-align: center;
    font-size: 0.8rem;
    margin-right: 0.2rem;
}

/* section(锚点连接部分) */
.section-content {
    background: #ffffff;
    width: 62%;
    margin: 0 auto;
}

.common {
    margin-top: 5.5rem;
}

.p-leader {
    font-size: 1.1rem;
    color: #333333;
    text-align: center;
}

.p-line {
    height: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #dddddd;
    font-size: 0.7rem;
    margin-top: 0.7rem;
    margin-bottom: 3rem;
}

.line {
    width: 23.5rem;
    height: 1px;
    background: #dddddd;
}

/* 公司新闻 */
.news-box {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    width: 100%;
    margin-bottom: 1.5rem;
}

.item-img {
    width: 15rem;
    height: 10rem;
}

.item-img img {
    width: 100%;
}

.item-content {
    width: 40rem;
    padding: 1rem 1rem 1rem 2rem;
    box-sizing: border-box;
    color: #333333;
}

.item-content p{
    font-size: 0.8rem;
    line-height: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.item-content span{
    font-size: 0.8rem!important;
    line-height: 1.5rem!important;
    
}

.item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.item-title a {
    font-size: 1.1rem;
    color: #333333;
}
.item-title a:hover {
    cursor: pointer;

}

.item-title p {
    width: 6rem;
    height: 2.3rem;
    background: #efefef;
    font-size: 0.6rem;
    color: #9c9c9c;
    line-height: 2.3rem;
    text-align: center;
}
.after-news{
    width: 20rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
/* 新闻标题设置省略号 */
.a-router{
    width: 22.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;   
}

.a-router:hover {
    cursor: pointer;
}


.p-introduce {
    font-size: 0.8rem;
    line-height: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.load-more,
.load-more-notice {
    width: 6rem;
    font-size: 0.7rem;
    color: #4A90E2;
    margin: 2rem auto 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.load-more,
.load-more-notice:hover{
    cursor: pointer;
}


.load-more p,
.load-more-notice p {
    text-align: center;
}

.arrow,
.arrow1 {
    margin: 0 auto;
}

/* 公司公告 */
.notice-box {
    display: flex;
    flex-direction: column;
}

.notice-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 2.8rem;
}

.notice-time {
    width: 7rem;
    height: 2.5rem;
    background: #efefef;
    color: #999999;
    font-size: 0.7rem;
    line-height: 2.5rem;
    text-align: center;
}

/* 公告内容设置省略号 */
.notice-text {
    margin-left:1rem; 
    padding: 0 1rem;
    box-sizing: border-box;
    font-size: 0.8rem;
    line-height: 1.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.notice-text:hover{
    color: #1B2F75;
    cursor: pointer;
}

/* 新闻详情页 */
.section-content-faker {
    background: #ffffff;
    width: 62%;
    margin: 4.5rem auto 0;
    display: none
}

.back-list {
    height: 3.5rem;
    width: 100%;
    line-height: 3.5rem;
    color: #6e6e6e;
    font-size: 0.8rem;
    padding-left: 1.5rem;
    box-sizing: border-box; 
}
.back-list a{
    display: inline;
}

.news-content {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding:3.5rem 1.5rem;
    text-align: center;
}

.news-title {
    font-size: 1.3rem;
    color: #333333;
}

.news-time {
    color: #999999;
    font-size: 0.7rem;
    margin: 1.7rem 0 2rem;
}

.news-introduce {
    color: #333333;
    font-size: 0.9rem!important;
    font-weight: normal!important;
    line-height: 1.5rem;
    text-align: left;
}
.news-introduce p{
    color: #333333;
    font-size: 0.9rem!important;
    font-weight: normal!important;
    line-height: 1.5rem;
    text-align: left;
    border: none!important;
}
.news-introduce img{
    display: inline;
}

.img-dispaly img{
    margin: 3rem auto;
    width: 4rem;
}

/* 相关新闻 */
.new-relative{
    padding: 3rem 1.5rem 5rem;
}
.relative{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 2rem;
    margin-bottom: 0.8rem;
}
.relative p{
    color: #9a9a9a;
    font-size: 0.7rem;
}
.relative-item{
    display: flex;
    align-items: center;
}
.relative-item:hover{
    cursor: pointer;
}
.relative-item img{
   width: 1.8rem;
}
.relative-item p{
    color: #333333;
    font-size: 0.8rem;
    margin-left: 2.5rem;
 }


 /* 暂无数据 */
 .nothing-notice,.nothing-news{
     width: 100%;
     font-size: 1rem;
     text-align: center;
     margin-bottom: 4rem;
     display: none;
 }