/*轮播图部分*/
.bannerContent{
    width: 100%;
    height:5.1rem;
}
/*轮播图部分*/
.banner {
    position: relative;
    width: 100%;
    height: 5.1rem;
    text-align: center;
    box-sizing: border-box;
}
.slider {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.slider ul {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slider li {
    position: absolute;
    height: 100%;
    width: 100%;
}
.slider li a,.slider li img{
    width: 100%;
    height: 100%;
    cursor: auto!important;
}
.slider li:first-child {
    display: block;
    z-index: 1;
}
.slider li a {
    display: block;
    width: 100%;
}
/*箭头圆点部分*/
/* 左右箭头部分 */
.arrow {
    display: none;
    position: absolute;
    width: 100%;
    height: 60px;
    top: 50%;
    z-index: 10;
}

.slider:hover .arrow {
    display: block;
}

.arrow-left,
.arrow-right {
    font-family: 'SimSun', '宋体';
    width: 0.3rem;
    height: 0.6rem;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    line-height: 0.6rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.3rem;
}
.arrow-left:hover,
.arrow-right:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.arrow-left {
    float: left;
    margin-left: 0.5rem;
}
.arrow-right {
    float: right;
    margin-right: 0.5rem;
}
/*小圆点部分*/
.control {
    position: absolute;
    bottom: 0.15rem;
    left: 50%;
    z-index: 6;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.control a {
    float: left;
    width: 0.18rem;
    height: 0.18rem;
    background-color: rgba(69,69,69,0.49);
    border-radius: 50%;
    /*border: 1px solid #ccc;*/
}
.control a + a {
    margin-left: 12px;
}
.control a.active {
    background-color: #ffffff;
}
/*新闻动态*/
.newsInformation {
    width: 100%;
    padding: 0 3.6rem;
    box-sizing: border-box;
    margin-top: 0.5rem;
}
.newsTitle {
    width: 100%;
    text-align: center;
    height: 40px;
    font-size: 40px;
    font-family: SourceHanSansCN, SourceHanSansCN;
    font-weight: 500;
    color: #333333;
    line-height: 60px;
}
.newsTitleBack {
    width: 100%;
    text-align: center;
    height: 40px;
    font-size: 40px;
    font-family: SourceHanSansCN, SourceHanSansCN;
    font-weight: 500;
    color: rgba(69, 174, 248, 0.2);
    line-height: 60px;
    margin-top: -0.3rem;
}
.newsTable {
    margin-top: 0.6rem;
}
.newsTr {
    display: flex;
    margin-top: 0.5rem;
    cursor: pointer;
}
.newImg {
    width: 2.8rem;
    height: 1.86rem;
    margin-right: 0.3rem;
}
.newImg img {
    width: 100%;
    height: 100%;
}
.newContent {
    flex: 1;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
}
.newContent .title{
    height: 36px;
    font-size: 24px;
    font-family: SourceHanSansCN, SourceHanSansCN;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* 这里是两行*/
}
.newContent .content {
    font-size: 20px;
    font-family: SourceHanSansCN, SourceHanSansCN;
    font-weight: 500;
    color: #A7A7A7;
    line-height: 35px;
}
.newContent .time {
    height: 30px;
    font-size: 20px;
    font-family: SourceHanSansCN, SourceHanSansCN;
    font-weight: 500;
    color: #999999;
    line-height: 30px;
}
.newContent .checkDetails {
    color: rgba(255, 88, 88, 1);
    cursor: pointer;
}
/* 多行文本溢出显示省略号(…) */
.ellipsisShowClamp-common {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 这里是两行*/
}

.newsPageBtn {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.newsPageBtn .btn ,.newsPageBtn .pageArrowLeft,.newsPageBtn .pageArrowRight{
    height: 60px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #B3B3B3;
    font-size: 24px;
    font-family: SourceHanSansCN, SourceHanSansCN;
    font-weight: 500;
    color: #999999;
    line-height: 60px;
    padding: 0 22px;
    margin-right: 15px;
}
.btnActive {
    background: #477DDF !important;
    color: #fffdef !important;
}