/*轮播图最大容器*/

.carousel_box {
    width: 100%;
    height: 472px;
    position: relative;
    overflow: hidden;
    /*cursor: pointer;*/
}

/*最底层*/

.carousel_box .first-floor {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #15476a;
}

/*轮播图背景*/

.carousel_box .bg {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(10px);
    /* Chrome, Opera */
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    opacity: 0.9;
}

/*最上层*/

.carousel_box .third-floor {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
}

/*轮播图中央大框*/

.carousel_box .content-box {
    position: absolute;
    z-index: 4;
    width: 999px;
    height: 100%;
    overflow: hidden;
    left: 50%;
    margin-left: -499.5px;
}

/*轮播图中央大框-放置轮播图框*/

.carousel_box .content-box .carousel_img_box {
    width: 1009px;
    height: 100%;
    margin-left: -5px;
}

/*轮播图底部进度条*/

.carousel_box .content-box .strip_box {
    position: absolute;
    width: 1008px;
    bottom: 0;
    left: 0;
    z-index: 3;
}

/*进度条可选区域*/

.carousel_box .content-box .strip_box li {
    height: 20px;
    float: left;
    margin-right: 14px;
    position: relative;
    cursor: pointer;
}

.carousel_box .content-box .strip_box li:last-child {
    margin-right: 0;
}

.carousel_box .content-box .strip_box ul {
    font-size: 0;
}

/*进度条底色*/

.carousel_box .content-box .strip_box li div {
    width: 100%;
    height: 4px;
    background-color: rgba(20, 71, 107, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
}

.carousel_box .content-box .strip_box span {
    width: 0%;
    height: 4px;
    background-color: #65ACCA;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
}

/*轮播图对应的新闻信息*/

.choice .info_box {
    width: 685px;
    height: 85px;
    position: absolute;
    left: 50%;
    margin-left: -342.5px;
    bottom: 48px;
    z-index: 4;
}

/*大图回看直播icon*/

.choice .info_box .type-box {
    width: 53px;
    height: 20px;
    position: absolute;
    /*background-color: #7ec3b0;*/
    top: -26px;
    left: 0;
}

.choice .info_box .type-box .type_icon {
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 3px;
    width: 15px;
    height: 16px;
}

.choice .info_box .type-box .type_text {
    position: absolute;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    left: 20px;
    color: #ffffff;
}

/*当前观看人数框*/

.choice .info_box .num {
    height: 20px;
    position: absolute;
    background-color: rgba(20, 71, 107, 0.7);
    top: -26px;
    left: 53px;
    line-height: 20px;
    padding-left: 13px;
    padding-right: 13px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.choice .info_box .num img {
    width: 18px;
    height: 18px;
}

.choice .info_box .num .person-num {
    margin-left: 5px;
    color: #f6f4f5;
    font-size: 15px;
}

/*白框:logo+标题*/

.choice .info_box .info_smallbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding-right: 26px;
    background-color: rgba(255, 255, 255, 0.8);
}

.choice .info_box .info_smallbox img {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translate(0, -50%);
}

.choice .info_box .info_smallbox .info_text {
    position: absolute;
    left: 102px;
    width: 580px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 28px;
    line-height: 35px;
    color: #15476a;
    -moz-user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*轮播前进后退按钮*/

.carousel_box .content-box .go-left {
    position: absolute;
    z-index: 4;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    left: 30px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    background-color:  #65ACCA ! important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: none;
}

.carousel_box .content-box .go-right {
    position: absolute;
    z-index: 4;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    right: 30px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    background-color: #65ACCA ! important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: none;
}

.carousel_box .content-box .go-right .go-right-img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -3px;
}

.carousel_box .content-box .go-left .go-left-img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -7px;
}

.choice .deptImg {
    width: 58px;
    height: 58px;
    border-radius: 100%;
}

.choice .carousel_img_box li,
.choice .info_smallbox {
    cursor: pointer;
}

.banner-icon-1 {
    background: url(./../../img/banner-icon-1.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.banner-icon-2 {
    background: url(./../../img/banner-icon-2.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.banner-icon-3 {
    background: url(./../../img/banner-icon-3.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/*时政*/
.banner-icon-4 {
    background: url(./../../img/banner-icon-4.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/*快讯*/
.banner-icon-5 {
    background: url(./../../img/banner-icon-5.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/*时政*/
.banner-icon-polity {
    background: url(./../../img/banner-icon-polity.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/*快讯*/
.banner-icon-new {
    background: url(./../../img/banner-icon-new.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/*专题*/
.banner-icon-list {
    background: url(./../../img/banner-icon-list.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/*图文*/
.banner-icon-picText {
    background: url(./../../img/picText.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/*V视频*/
.banner-icon-video {
    background: url(./../../img/video_type_3.png) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.list-box {
    width: 999px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 9px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 0;
}

.list-box > div {
    width: 243px;
    height: 240px;
    margin-bottom: 13px;
    border-bottom: 1px solid #c7c7c7;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    margin-right: 9px;
}

.list-box > div:nth-child(4n) {
    margin-right: 0;
}

.choice .copy-right {
    font-size: 12px;
    line-height: 16px;
    color: #b9b9b9;
    text-align: center;
    padding-bottom: 14px;
    padding-top: 1px;
}
.choice .copy-right a{
    color: #b9b9b9;
    text-decoration: none;
}
.choice .copy-right img{
    display: inherit;
    margin-top: -1px;
    vertical-align: middle;
    border: 0;
}
.choice .copy-right a:hover{
    color: #b9b9b9;
    text-decoration: underline;
}


.choice .raidus {
    border-radius: 50%;
}
