<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* 整屏，通栏大图所使用的 css */

#divFull {
    /*中间大小
    min-width: 1480px;    */
    min-width: 1580px;
    width: auto;
    min-height: 1px;
    height: auto;
    position: relative;
    overflow: hidden;
}

#divFull .divOne {
    float: left;
    overflow: hidden;
    position: relative;
}

#divFull .picBT {
    position: absolute;
    bottom: 30px;
    left: 50px; 
    font-size: 32px;     
    color: white;
}


.dotAll {
    /* 圆点栏位置 */
    bottom: 30px;
    right: 50px;
    position: absolute;
    z-index: 20;
    
    /* 总宽度 = (个数 * 2 - 1) * 单个高宽 */
    /*width: 100px;*/
    /*单个高宽*/
    /*height: 20px;*/
    /*margin: auto;*/
    /*overflow: hidden;*/
}
.dotNoSele {
    /*单个高宽 = 高宽 + 边框*/
    height: 14px;
    width: 14px;
    /*圆角以单个高宽为基准计算*/
    border-radius: 10px;
    background: none;
    border: 3px solid white;
    cursor: pointer;
    float: left;
}
.dotSpace {
    height: 20px;
    width: 20px;
    float: left;
}
.dotSele {
    background: white;
}
</pre></body></html>