@charset "UTF-8";
.bt-left { 
    float: left;
 }
/* 图片新闻box，相对定位，标题和自动生成的切换栏都是以这个box定位的（绝对定位） */
.img_box {
    width: 600px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
/* 图片 */
.wap_dyzt_box img {
    width: 100%;
    height: auto;
    max-height: 350px;
    display: block;
}
.img li span {
    position: absolute;
    display: block;
    width: 100%;
    line-height: 35px;
    bottom: 0;  
    color: #ffffff;
    background: rgba(0, 0, 0, .5);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7f000000, endcolorstr=#7f000000);
    padding-left: 20px;
    font-size: 15px;
}
/* js自动生成的ol列表 */
.dots {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 140px;
}
/* 会自动根据图片数量生成数字，不需要数字设置为rgba透明度为0 */
.dots li {
    float:left;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
    /* color: rgba(0, 0, 0, .0); */
}
/* 给切换按钮添加active控制图片轮播 */
.dots li.active {
    background: #1492ff;
}
.mobile_type .img_box { width: 95vw; }
.mobile_type .dots { display: none; }