这个网站的主要内容被封装在名为.bdcs-container .bdcs-main
的CSS类中。这个类设置了一系列的样式属性,包括box-sizing: content-box; margin:0; padding:0; float:none; clear:none; overflow:hidden; white-space:nowrap; word-wrap:normal; border:0; background:0 0; width:auto; height:auto; max-width:none; min-width:none; max-height:none; min-height:none; border-radius:0; box-shadow:none; transition:none; text-align:left
,这些属性使得元素在页面上具有特定的布局和外观。
.bdcs-container .bdcs-clearfix:after
选择器定义了一个伪元素,用来清除浮动。.bdcs-container .bdcs-clearfix
和.bdcs-container .bdcs-main
选择器则分别定义了一个清除浮动的类以及一个包含主要内容的类。
.bdcs-container .bdcs-clearfix{zoom:1}
这一声明是为了让IE浏览器能够正常渲染使用float
属性的元素。
这个网站使用了一套定制的CSS样式来控制其布局和外观,以达到特定的设计目标。