该网站是一个响应式网页设计,使用Bootstrap框架构建。其主要布局包括一个.bdcs-container
类的容器和一个.bdcs-main
类的主内容区。在主内容区的CSS样式中,所有的元素都被设置为content-box
,并且取消了默认的一些样式,如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-clearfix
类来解决浮动问题,通过设置::after
伪元素的clear
属性为both
,使得.bdcs-clearfix
元素能够清除浮动效果。同时,.bdcs-container .bdcs-clearfix
的zoom
属性被设置为1,以支持老版本的浏览器。
这个网站采用了Bootstrap框架进行响应式设计,通过合理的类名和内联样式设置,实现了良好的页面布局和样式控制。