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


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

html{
    font-size: 10px;
    --color: #009fe8;
    --color2: #0687EF;
    --color3: #FC6F23;
    --mwidth: 120.0rem;
    --maxwidth: 192.0rem;
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family:'微软雅黑';
    font-size: 1.6rem;
    color: #333;
}
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, select {
    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;
}


/*
 * 主题色
 */
.color {  color: var(--color); }
.color2 { color: var(--color2); }
.color3 { color: var(--color3); }


/*
 * 主体宽度
 */
.mwidth { width: var(--mwidth); }
.row{
    width: var(--mwidth);
    margin: 0 auto;
}


/*--------------------3、通用模块样式---------------------------*/

/**
 * 选项卡标题
 */
.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;
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
}
.bg-page a, .bg-page span {
    /*margin: 0 0.5rem;
    display: inline-block;
    width: 4rem;
    height: 4rem;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    border-radius: 1000px;
    border: 1px solid #ddd;
    color: #666;*/
    
    /* 常规 */
    margin: 0 0.5rem;
    padding: 1rem 2rem;
    color: #666;
    background: #f4f4f4;
    border-radius: 2px;
    
}
.bg-page a:hover, .bg-page span {
    /*background-image: linear-gradient(to bottom, #FCAD23, #FC6F23);
    color: #fff;
    border: 1px solid #FC6F23;*/
     /*常规*/
    background: var(--color);
    color: #fff;
    
}
.bg-page .first-page,
.bg-page .last-page {
    display: none;
}
.bg-page .prev-page,
.bg-page .next-page{
    background-position: center;
    background-size: 1.5rem;
    background-repeat: no-repeat;
}
/*.bg-page .prev-page{
    background-image: url(/webui/images/svg/dbleft-999.svg);
}
.bg-page .next-page {
    background-image: url(/webui/images/svg/dbright-999.svg);
}
.bg-page .prev-page:hover {
    background-image: url(/webui/images/svg/dbleft-f80.svg);
}
.bg-page .next-page:hover {
    background-image: url(/webui/images/svg/dbright-f80.svg);
}*/
.bg-page .number-page {
}

@media (max-width: 999px) {
    .bg-page {
        font-size: 1.8rem;
    }
    .bg-page a, .bg-page span {
        /*width: 5rem;*/
        /*height: 5rem;*/
        /*line-height: 5rem;*/
    }
    .bg-page .first-page,
    .bg-page .last-page {
        display: none;
    }
    .bg-page .number-page {
        display: none;
    }
}

/*
 * 详情页
 */
.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;
}

/* 占位 */
.bg-zhanwei {
    background-color: #eee;
}




[data-check],[data-radio] {
    margin-right: 0.8rem;
    width: 1.6rem;
    aspect-ratio: 1/1;
    background-color: #fff;
    border: 1px solid #ccc;
    position: relative;
}
[data-radio]{
    border-radius: 50%;
}
[data-check][data-sel="1"]::after,
[data-radio][data-sel="1"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    background-color: #666;
}
[data-radio][data-sel="1"]::after {
    border-radius: 50%;
}

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

/*右上角立即咨询*/
.btn-a {
    font-size: 1.6rem;
    width: 12rem;
    height: 3.6rem;
    text-align: center;
    line-height: 3.6rem;
    color: #fff;
    background: #009fe8;
    font-family: Source Han Sans CN;
    font-weight: 500;
}

/*场景更多*/
.btn-b{
    display: inline-block;
    width: 23rem;
    height: 6rem;
    font-size: 2.3rem;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFF;
    line-height: 6.1rem;
    background: linear-gradient(-38deg,#42AFFF,#0687EF);
    box-shadow: 0 0.2rem 0.7rem 0 rgba(12,90,147,.3);
    border-radius: 3rem;
    border: none;
    outline: 0;
    text-align: center;
}

/*banner图上的按钮*/
.btn-c {
    display: inline-block;
    width: 15.9rem;
    height: 5.2rem;
    line-height: 5.2rem;
    text-align: center;
    font-size: 2.2rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #fff;
    border: none;
    outline: 0;
    background-color: #0687EF;
}


/*产品块上的立即咨询*/
.btn-d {
    display: block;
    width: 9.2rem;
    height: 3.7rem;
    line-height: 3.7rem;
    font-size: 1.6rem;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFF;
    background: #009fe8;
    border-radius: 4px;
    border: none;
    outline: 0;
    cursor: pointer;
    text-align: center;
}
.btn-dd {
    display: none;
    width: 9.2rem;
    height: 3.7rem;
    line-height: 3.7rem;
    font-size: 1.6rem;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFF;
    background: #009fe8;
    border-radius: 4px;
    border: none;
    outline: 0;
    cursor: pointer;
    text-align: center;
}

/*首页留言提交按钮*/
.btn-e {
    border: none;
    outline: 0;
    width: 18.8rem;
    height: 4.2rem;
    line-height: 4.1rem;
    font-size: 1.8rem;
    font-family: Source Han Sans CN;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    background: linear-gradient(-38deg,#42AFFF,#0687EF);
    box-shadow: 0 2px 7px 0 rgba(12,90,147,.3);
    border-radius: 4px;
}