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


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

html{
    font-size: 10px;
    --color: #0A4380;
    --color2: #333;
    --color3: #FC6F23;
    --mwidth: 150.0rem;
    --maxwidth: 192.0rem;
}
*{
    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: #0A4380; }
.this-bg { background-color: #333; }
.color { color: var(--color); }
.color2 { color: var(--color2); }
.mwidth { width: var(--mwidth); }
.color3 { color: var(--color3); }


@media (max-width: 999px) {
    .mwidth{
        box-sizing: border-box;
        max-width: 100%;
        min-width: 350px;
        padding: 0 2rem;
    }
}

/*
 * 外边距
 */
/*.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-page {
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    font-size: 1.6rem;
}
.bg-page .first-page,
.bg-page .last-page {
    display: none;
}
.bg-page .number-page {
    /*display: none;*/
}
.bg-page a {
    margin: 0 0.5rem;
    display: inline-block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    color: #666;
    border-radius: 1000px;
    border: 1px solid #ddd;
}
.bg-page a:hover {
    margin: 0 0.5rem;
    background-image: linear-gradient(to bottom, #FCAD23, #FC6F23);
    color: #fff;
}
.bg-page span {
    margin: 0 0.5rem;
    display: inline-block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    color: #fff;
    border-radius: 1000px;
    border: 1px solid #ddd;
    background-image: linear-gradient(to bottom, #FCAD23, #FC6F23);
}

@media (max-width: 999px) {
    .bg-page {
        font-size: 1.8rem;
    }
    .bg-page a {
        width: 5rem;
        height: 5rem;
        line-height: 5rem;
    }
}

/*
 * 详情页
 */
.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、其它自定义样式---------------------------*/


