/*
手机站全局样式
作者：百舸
说明：本文件中定义当前项目的一些特殊样式，与bgui.css兼容使用。
版本：v24.4.29.1
*/


/*--------------------1、元素的默认样式---------------------------*/

html{
    font-size: 10px;
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    margin: 0; padding: 0; 
    font-family:'微软雅黑'; font-size: 1.4rem;
    color: #333;
}
ul,li,span,p,ol{
    margin: 0;
    padding: 0;
}
ul,li{
    list-style: none;
}
li {
    list-style-type: none;
    list-style: none;
}
a {
    text-decoration: none;
    outline: none;
    :hover { background-color: transparent; }
    :active { background-color: transparent; }
    :focus { background-color: transparent; }
}
img {
    border: 0px;
}
input, textarea {
    outline: none;
}
input {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}



/*--------------------2、项目全局样式---------------------------*/

/*
 * placeholder颜色
 */
::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
::placeholder {
  color: #aaa;
}


/*
 * 主题色
 */
.this-color { color: #333; }
.this-bg { background-color: #333; }


/*
 * 外边距
 */
.r, .bg-r{
    margin: 3vw 3vw 0;
}
.rh, .bg-rh{
    margin-left: 3vw; margin-right: 3vw;
}
.rt, .bg-rt{
    margin-top: 3vw;
}


/*
 * 选项卡标题
 */
.bg-swbar{
    padding: 1.0rem 3.0rem 0;
    height: 5.0rem;
    display: flex; align-items: center; justify-content: space-around;
    background-color: #fff;
    border-bottom: 2px solid #fff;
}
.bg-swbar-it{
    text-align: center; line-height: 4.0rem; cursor: pointer;
}
.bg-swbar-on{
    border-bottom: 2px solid #f00; font-weight: 700;
}


/*
 * 面包屑
 */
.bg-mbx {
    padding-left: 1.0rem;
    width: 100%; height: 5.0rem; line-height: 5.0rem;
    color: #fff; font-size: 1.6rem;
    overflow: hidden;
    white-space: nowrap; text-overflow: ellipsis;
}
.bg-mbx-a { color: #fff; }
.bg-mbx-span {  }


/*
 * 分页
 */
.bg-pagediv {
    width: 100%;
    height: 4.0rem; line-height: 4.0rem;
    text-align: center;
}
.bg-pagediv .number-page { display: none; }
.bg-pagediv a {
    margin: 0 0.5rem;
    padding: 0.6rem 1.2rem;
    color: #666;
    background: #f5f5f5;
    border-radius: 2px;
}
.bg-pagediv a:hover {
    margin: 0 0.5rem;
    background: #f80;
    color: #fff;
}
.bg-pagediv span { 
    margin: 0 0.5rem;
    padding: 0.6rem 1.2rem;
    /*background: #f80;*/
    /*color: #fff;*/
    color: #999;
    border-radius:2px;
}


/*
 * 详情页
 */
.bg-art {  }
.bg-art-title {
    margin-top: 2.0rem;
    line-height: 3.0rem;
    font-size: 2.2rem;
    color: #333;
}
.bg-art-meta-list {
    margin-top: 2vw;
}
.bg-art-meta {
    display: inline-block;
    margin: 0 1rem 0 0;
    vertical-align: middle;
    font-size: 1.5rem;
    color: rgba(0,0,0,0.3);
}
.bg-art-meta-a {
    color: #333;
    text-decoration: none;
}
.bg-art-content { 
    margin-top: 5vw;
    font-size: 1.6rem;
}
.bg-art-content img{
    max-width: 100% !important;
    height: auto !important;
}
.bg-art-content video{
    max-width: 100% !important;
    height: auto !important;
}
.bg-art-content p{
    margin-top: 1.5rem;
    color: #555;
    line-height: 2.2rem;
}


/*
 * 上一篇/下一篇
 */
.bg-prevn{
    margin-top: 3.0rem; padding-top: 2.0rem;
    border-top: 1px dashed #eee;
    font-size: 1.6rem;
}
.bg-prevn-it{
    line-height: 3.0rem;
    color: #999;
}
.bg-prevn-a{
    color: #333;
}


/*--------------------3、其它自定义样式---------------------------*/


