@import url(https://img1.iccidchaxun.com/assets/font/iconfont.css?v=23456);
:root{
    font-size:16px;
}
main{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    /* 不允许用户选中 */
    /* -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
    /* 不允许用户拖动图片 */
    -webkit-user-drag: none;
}


fieldset,img {
    border: 0;
}

address,caption,cite,code,dfn,em,strong,th,var {
    font-style: normal;
    font-weight: normal;
}

caption,th{text-align:left;}




/* 设置表格默认样式 */
table {
    border: 1px solid black;
    /*设置单元格之间的间距*/
    border-spacing: 0;
    /*设置单元格边框是否合并：separate分开; collapse合并*/
    border-collapse: collapse;
}

i,b,strong {
    font-weight: normal;
    font-style: normal;
}



/* 宽度 */
.w50{
    width: 50%;
}

.w60{
    width: 60%;
}

.w80{
    width: 80%;
}

.w100{
    width: 100%;
}

/* 背景颜色 */
.bg-white{
    background-color:#fff;
}

.bg-white-important{
    background-color:#fff!important;
}

.bg-black{
    background-color:#000;
}

/* 外边距 */
.mr5{
    margin-right:5px;
}

.mr10{
    margin-right:10px;
}

.mr15{
    margin-right:15px;
}

.mr20{
    margin-right:20px;
}

.mr30{
    margin-right:30px;
}

.mb5{
    margin-bottom:5px;
}

.mb10{
    margin-bottom:10px;
}

.mb15{
    margin-bottom:15px;
}

.mb20{
    margin-bottom:20px;
}

.mb25{
    margin-bottom:25px;
}

.mb30{
    margin-bottom:30px;
}

.mb40{
    margin-bottom:40px;
}

.mb50{
    margin-bottom:50px;
}

.mb60{
    margin-bottom:60px;
}

.mt10{
    margin-top:10px;
}

.mt50{
    margin-top:50px;
}

.mt60{
    margin-top:60px;
}

/* 内边距 */
.pb5{
    padding-bottom: 5px;
}

.pb10{
    padding-bottom: 10px;
}

.pb15{
    padding-bottom: 15px;
}

.pb20{
    padding-bottom: 20px;
}

.pb60{
    padding-bottom: 60px;
}

.pt60{
    padding-top: 60px;
}

/* 盒子类型 */
.flex{
    display: flex;
}

.inline-block{
    display:inline-block;
}

.block{
    display: block;
}

.none{
    display: none;
}

/* 定位 */
.tl{
    text-align: left;
}

.tc{
    text-align: center;
}

.tr{
    text-align: right;
}

.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

.fixed{
    position: fixed;
}

/* 文字加粗 */
.font-bold{
    font-weight: bold;
}

/* 定宽居中时,可对元素直接添加类名:container */
.container {
    margin: 0 auto;
}

/*单行文本溢出*/
.overflow-x {
    /*不换行*/
    white-space: nowrap;
    /*溢出内容不显示*/
    overflow: hidden;
    /*文本溢出显示...*/
    text-overflow: ellipsis;
}

/* 多行文本溢出 */
.overflow-y {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================= 以上为base.css ========================================== */

/* 头部 */
.x-top-info{
    background-color: #0AA770;
}

.x-top-info dl{
    height:30px;
    justify-content: flex-end;
    align-items: center;
    padding-right: calc((100% - 1200px) / 2);
    color: #fff;
    font-size: 0.75rem;
}

.x-top-info dl dd{
    border-radius: 4px;
    border: 1px solid #0AA770;
    padding:1rem;
    width:10rem;
    height:10rem;
    position:absolute;
    top: 30px;
    right: calc((100% - 1200px) / 2);
    justify-content:center;
    align-items: center;
    z-index: 3;
}

.x-top-info dl dd img{
    width:9rem;
    height:9rem;
}

.x-top-nav{
    width: 100%;
    height:60px;
    padding: 0 0 0 calc((100% - 1200px) / 2);
    align-items: center;
}

.x-top-nav > a > img{
    width:8.125rem;
    height:2.25rem;
}

.x-top-nav > p {
    width: 6rem;
    line-height:1rem;
    color: #666;
    font-size: 0.75rem;
    margin: 0 1rem;
}

.x-head-nav-first > li{
    margin:0 20px;
}

.x-head-nav-first > li > a{
    font-size: 1rem;
    line-height: 2rem;
    color: #333;
}

.x-head-nav-first > li.active > a,.x-head-nav-first > li:hover > a{
    color: #0AA770;
}

.x-head-nav-second{
    position:absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height:50px;
    padding: 0 calc((100% - 1200px) / 2);
    border-top: 1px solid #F7F8FA;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 8px rgb(0 0 0 / 5%);
    z-index: 2;
}

.x-head-nav-second li{
    margin:0 10px;
}

.x-head-nav-second li a{
    height: 50px;
    font-size: 0.875rem;
    align-items: center;
    color: #333;
}

.x-head-nav-second li.active a,.x-head-nav-second li:hover a{
    color: #0AA770;
    border-bottom: 2px solid #0AA770;
}

.x-head-nav-second li i{
    font-size: 1rem;
    margin-right: 5px;
}

/* 底部 */
footer{
    padding: 0.625rem 0;
}

/* 置顶 */
.x-totop{
    visibility: hidden;
    position:fixed;
    top: 65vh;
    right: 0;
    width:2.5rem;
    height:2.5rem;
    border-radius:50%;
    border: .5px solid #333;
    background-color:#fff;
    justify-content:center;
    align-items:center;
    display:none;
}

/* 友情链接 */
footer .x-yqlj{
    padding: 0 0 0.625rem;
    width: 1200px;
    margin: 0 auto;
    flex-wrap:wrap;
}

footer .x-yqlj li{
    margin: 0.125rem 0.3125rem;
    flex-direction: column;
}

footer .x-yqlj li span {
    color: #2f2f31;
    font-size: 0.875rem;
}

footer .x-yqlj li a {
    display: inline-block;
    color: #4f4e5d;
    font-size: 0.875rem;
}

/* 底部推荐 */
footer .x-bqxx {
    width: 1200px;
    margin: 20px auto 0;
}

footer .x-bqxx > a {
    width: 8.125rem;
    height: 2.25rem;
}

footer .x-bqxx .x-foot-recommend, footer .x-bqxx .x-foot-tel {
    margin-left: 2.5rem;
    flex-direction: column;
}

footer .x-bqxx .x-foot-recommend ul{
    flex: 0 0 1.25rem;
}

footer .x-bqxx .x-foot-recommend ul li a{
    color: #4f4e5d;
    font-size: 0.875rem;
}

footer .x-bqxx .x-foot-recommend .x-beian,footer .x-bqxx .x-foot-recommend .x-beian a{
    flex: 0 0 1.25rem;
    color: #aaa;
    font-size: 0.875rem;
}

footer .x-bqxx .x-foot-tel span{
    color: #4f4e5d;
    font-size: 0.875rem;
}

footer .x-bqxx .x-foot-tel span:nth-last-of-type(1){
    font-size: 1rem;
}

/* 面包屑 */
.x-nav a,.x-nav span{
    color: #666;
    margin: 0!important;
    font-size: 0.75rem !important;
}

/* 主体内容 */
body{
    background-color:#F7F8FA;
}

.x-wrap-padding{
    padding:1.875rem;
}

.x-wrap{
    width: 1200px;
    margin-left:auto;
    margin-right:auto;
}

.x-wrap-left{
    flex: 0 0 780px;
    width:780px;
}

.x-wrap-right{
    margin-left: 30px;
    flex: 0 0 330px;
    width:330px;
}

.x-wrap-main{
    width:790px;
}

.x-wrap-side{
    flex-direction: column;
    margin-left: 30px;
    width:380px;    
}

.x-wrap-box{
    border-radius: .5rem;
    padding: 1.875rem;
}

/* 段落分隔 */
.bottom-line{
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 20px;
}

/* 侧栏线条框 */
.x-side-linebox{
    padding:1.5rem;
    border: 1px solid #ccc;
    border-radius:.5rem;
}

/* h2标题带下划线 */
.x-title-h2-line{
    justify-content:space-between;
    align-items:center;
    margin-bottom: .9375rem;
}

.x-title-h2-line h2{
    color: #333;
    font-size:1.25rem;
}

.x-title-h2-line a{
    color: #666;
    font-size:0.875rem;
    cursor: pointer;
}

/* 带图片的标签列表 */
.x-taglist-img{
    flex-wrap: wrap;
}

.x-taglist-img li{
    flex-direction: column;
    margin-right: 0.75rem;
    flex: 0 0 calc((100% - 5.25rem) / 8);
    max-width: calc((100% - 5.25rem) / 8);
}

.x-taglist-img li:nth-last-of-type(1){
    margin-right: 0;
}

.x-taglist-img li a{
    width: 100%;
    font-size:1rem;
    color: #333;
}

.x-taglist-img li a:hover{
    color: #0AA770;
}

.x-taglist-img li a img{
    width: 100%;
    height: 6.1875rem;
    max-height: 6.1875rem;
    border-radius: 4px;
}

/* 不带图片不固定宽度的标签列表 */
.x-taglist-auto{
    flex-wrap: wrap;
}

.x-taglist-auto li{
    margin-right: .5rem;
    margin-bottom: .5rem;
}

.x-taglist-auto li a,.x-taglist-auto li span{
    padding:.375rem .75rem;
    font-size: .875rem;
    border-radius:.25rem;
}

/* 不带图片固定宽度的标签列表 */
.x-taglist{
    flex-wrap: wrap;
}

.x-taglist li{
    margin: 0 1% 0.625rem;
    flex: 0 0 calc(86% / 8);
    max-width: calc(86% / 8);
}

.x-taglist li:nth-of-type(8n){
    margin-right:0;
}

.x-taglist li:nth-of-type(8n+1){
    margin-left:0;
}

.x-taglist li:nth-last-of-type(-n+8){
    margin-bottom:0;
}

.x-taglist li a{
    font-size:0.875rem;
    color: #333;
}

.x-taglist li:hover a{
    color: #0AA770;
}

/* 维修列表 */
.x-repair-box .x-taglist li{
    flex: 0 0 calc(94% / 4);
    max-width: calc(94% / 4);
}

.x-repair-box .x-taglist li:nth-of-type(8n){
    margin-right:1%;
}

.x-repair-box .x-taglist li:nth-of-type(8n+1){
    margin-left:1%;
}

.x-repair-box .x-taglist li:nth-last-of-type(-n+8){
    margin-bottom:0.625rem;
}

.x-repair-box .x-taglist li:nth-of-type(4n){
    margin-right:0;
}

.x-repair-box .x-taglist li:nth-of-type(4n+1){
    margin-left:0;
}

.x-repair-box .x-taglist li:nth-last-of-type(-n+4){
    margin-bottom:0;
}

/* 有描述的文章列表 */
.x-articlelist-content{
    flex-direction: column;
}

.x-articlelist-content li{
    padding:1rem 0;
    border-bottom: 1px dashed #f5f5f5;
}

.x-articlelist-content li:nth-of-type(1){
    padding-top:0;
}

.x-articlelist-content li:nth-last-of-type(1){
    padding-bottom:0;
    border-bottom: none;
}

.x-articlelist-content li > a{
    flex: 0 0 7.5rem;
    max-width:7.5rem;
    margin-right: 1.5rem;
    height:9.375rem;
}

.x-articlelist-content li > a img{
    max-width: 100%;
    height: 100%;
}

.x-articlelist-content li div{
    flex: 0 0 calc(100% - 9rem);
    max-width:calc(100% - 9rem);
    flex-direction: column;
}

.x-articlelist-content li div a{
    font-size:1.125rem;
    color:#333;
    -webkit-line-clamp: 1;
}

.x-articlelist-content li:hover div a{
    color:#0AA770;
}

.x-articlelist-content li div span{
    font-size:0.875rem;
    color:#999;
}

.x-articlelist-content li div p{
    font-size:0.875rem;
    color:#666;
    -webkit-line-clamp: 3;
}

/* 有回答的问答列表 */
.x-questionlist-answer{
    flex-direction: column;
}

.x-questionlist-answer li{
    padding:0.625rem 0;
    border-bottom: 1px dashed #f5f5f5;
}

.x-questionlist-answer li:nth-of-type(1){
    padding-top:0;
}

.x-questionlist-answer li:nth-last-of-type(1){
    padding-bottom:0;
    border-bottom: none;
}

.x-questionlist-answer li .iconfont{
    font-size:1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

.x-questionlist-answer li .icon-question{
    color:#FF7600;
}

.x-questionlist-answer li .icon-answer{
    color:#0AA770;
}

.x-questionlist-answer li .x-questionitem-question{
    align-items:center;
}

.x-questionlist-answer li .x-questionitem-answer {
    align-items: flex-start;
}

.x-questionlist-answer li .x-questionitem-question a{
    font-size:1rem;
    line-height:2rem;
    color:#333;
}

.x-questionlist-answer li:hover .x-questionitem-question a{
    color:#0AA770;
}

.x-questionlist-answer li .x-questionitem-answer .x-answer {
    font-size:0.875rem;
    color:#666;
    line-height:1.5rem;
    -webkit-line-clamp: 5;
}

/* 城市列表 */
.x-citylist{
    flex-direction: column;
    margin-top: -0.7rem;
}

.x-citylist span{
    font-size:0.875rem;
    color: #0AA770;
    margin-top: 0.6rem;
}

.x-citylist > li{
    border-bottom: 1px solid #f5f5f5;
}

.x-citylist > li:nth-last-of-type(1){
    border-bottom:none;
}

.x-citylist > li > ul{
    flex-wrap: wrap;
    flex: 0 0 calc(100% - 4.75rem);
    max-width: calc(100% - 4.75rem);
    align-items: flex-start;
}

.x-citylist > li > ul > li{
    padding:0.5rem 0;
}

.x-citylist > li > ul > li a{
    color: #333;
    font-size:0.875rem;
    margin-right: 1rem;
}

.x-citylist > li > ul > li:hover a{
    color: #0AA770;
}

/* 免费咨询和电话报修按钮 */
.x-btn-zixun,.x-btn-baoxiu{
    width: 15rem;
    height: 2.5rem;
    border-radius: .5rem;
    justify-content: center;
    align-items: center;
}

.x-btn-zixun .iconfont,.x-btn-baoxiu .iconfont{
    font-size:1.25rem;
}

.x-btn-zixun span,.x-btn-baoxiu span{
    font-size: 1rem !important;
}

.x-btn-zixun{
    border: 1px solid #FF7600;
    color: #FF7600;
}

.x-btn-zixun span{
    color: #FF7600!important;
}

.x-btn-baoxiu{
    background-color: #FF7600;
    color: #fff;
}

.x-btn-baoxiu span{
    color: #fff!important;
}

.x-telbox{
    bottom: -2.1875rem;
    right: 0;
    width: 12.5rem;
    height: 1.875rem;
    line-height: 1.5625rem;
    background: #fbf7f4;
    color: #333;
    font-size: 1rem;
    text-align: center;
    border-radius: 4px;
    border: 2px solid #FF7600;
    z-index: 2;
}

.x-telbox::after{
    content: " ";
    border-width: 0.3125rem;
    border-style: solid;
    border-color: transparent transparent #FF7600;
    position: absolute;
    top: -0.75rem;
    right: 1.875rem;
}

/* 推荐维修点tab切换 */
.x-recommend-citys{
    flex-wrap: wrap;
}

.x-recommend-citys li{
    color: #666;
    font-size:0.875rem;
    margin: 0 1rem 0.875rem 0;
    cursor: pointer;
}

.x-recommend-citys li.active,.x-recommend-citys li:hover{
    color: #0AA770;
    font-weight: bold;
}

.x-recommend-citys li a{
    color: #0AA770;
    font-size:0.875rem;
}

.x-recommend-stores{
    display:none;
}

/* 店铺列表 */
.x-storelist{
    flex-direction: column;
}

.x-storelist li{
    padding:1rem 0;
    border-bottom:1px dashed #f5f5f5;
}

.x-storelist li:nth-of-type(1){
    padding-top: 0;
}

.x-storelist li:nth-last-of-type(1){
    padding-bottom:0;
    border-bottom: none;
}

.x-store-content{
    flex: 0 0 80%;
    max-width: 80%;
}

.x-store-content .x-store-img{
    flex: 0 0 12.5rem;
    max-width:12.5rem;
    height:8.5rem;
    margin-right: 1.5rem;
    justify-content: center;
    align-items: center;
}

.x-store-content .x-store-img img{
    width:100%;
    height:100%;
    border-radius:.25rem;
}

.x-store-content .x-store-img::after{
    content:attr(data-tag);
    position: absolute;
    top: .25rem;
    right: .25rem;
    font-size:0.75rem;
    color:#0081FF;
    border: 1px solid #B7DCFF;
    background-color: #F2F9FF;
    padding:.125rem .5rem;
    border-radius:.125rem
}

.x-store-content .x-store-info{
    flex: 0 0 calc(100% - 14rem);
    max-width:calc(100% - 14rem);
    flex-direction: column;
    align-items:flex-start;
}

.x-store-info h3{
    color: #333;
    font-size:1.125rem;
}

.x-store-info .x-store-des{
    color: #666;
    font-size:0.875rem;
    line-height:1.125rem;
}

.x-store-info .x-store-pj{
    align-items:center;
}

.x-store-info .x-store-pj span{
    color: #FF7600;
    font-size:1rem;
}

.x-store-info .x-store-pj .x-store-pj-star .iconfont{
    font-size:0.75rem;
}

.x-store-info .x-store-pj p{
    color: #333;
    font-size:0.875rem;
    line-height:1.375rem;
}

.x-store-info .x-store-taglist span{
    font-size: 0.75rem;
    color:#0AA770;
    border: 1px solid #0AA770;
    background-color: #F2FBF8;
    padding:.125rem .5rem;
    border-radius:.125rem
}

.x-store-info .x-store-taglist span.x-store-tag2{
    color:#FF7600;
    border: 1px solid #FF7600;
    background-color: #FFF1E5;
}

.x-store-info .x-store-address,.x-store-info .x-store-product{
    align-items:center;
    font-size:0.75rem;
    line-height:1.375rem;
    color: #666;
}

.x-store-info .x-store-address .iconfont,.x-store-info .x-store-product .iconfont{
    color: #ccc;
    font-size:0.875rem
}

.x-store-btn{
    flex: 0 0 20%;
    max-width: 20%;
    align-items: center;
}

.x-store-btn .x-btn-baoxiu{
    width:100%;
}

.x-store-more{
    padding:1rem 0;
    font-size:.875rem;
    border: 1px solid #0AA770;
    color: #0AA770;
    border-radius:.25rem;
}

/* 广告模块 */
.x-adv{
    border: 1px solid #0AA770;
    border-radius: .5rem;
}

.x-adv::after{
    content: "广告";
    position:absolute;
    top: .375rem;
    right: .375rem;
    font-size: .75rem;
    color: #999;
}

.x-adv > div{
    align-items: center;
    margin: 0.75rem 0 2.5rem 1.25rem;
}

.x-adv > div p{
    font-size:1.5rem;
    line-height:2rem;
}

.x-adv > div span{
    color: #0AA770;
    font-size:1rem;
}

.x-adv ul{
    justify-content: space-between;
    align-items: center;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
}

.x-adv ul li{
    margin-right: .5rem;
    align-items: center;
    color: #0AA770;
}

.x-adv ul li i{
    font-size:2.5rem;
    margin-right: 0.125rem;
}

.x-adv ul li p{
    line-height:1.25rem;
    font-size:1rem;
    font-weight: bold;
}

.x-adv ul li span{
    line-height:1rem;
    font-size:.75rem;
}

.x-adv .x-service {
    margin-left: 5%;
    margin-bottom: 15px;
}

.x-adv .x-service > div {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
}

.x-adv .x-service-time{
    align-items: center;
}

.x-adv .x-service > div span {
    flex: 0 0 5rem;
    max-width: 5rem;
    font-size: 1rem;
    color:#333;
}

.x-adv .x-service > div p {
    font-size: 1rem;
    line-height: 1.5em;
    color:#333;
}

.x-adv .x-telbtns{
    margin: 1.875rem;
    justify-content: space-between;
}

.x-adv .x-telbtns a{
    width:320px;
}

.x-adv-top{
    background-image:url(https://img1.iccidchaxun.com/res/watch/base/adv-top-jiadian.png);
    background-repeat:no-repeat;
    background-size: 100% 3.75rem;
}

/* 分页 */
.x-pager{
    text-align:left;
    color: #666;
    font-size: .875rem;
}

.x-pager input{
    display:none !important;
}

.x-pager span,.x-pager a{
    display: inline-block;
    padding:.5rem .75rem;
    border-radius: .25rem;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #fff !important;
    color: #666 !important;
}

.x-pager span,.x-pager a:hover{
    border-color: #928471 !important;
    background-color: #928471 !important;
    color: #fff !important;
}

/* 定位弹框 */
.x-dw-outerbox{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3;
    width: 100%;
    height: 100%;
    display: none;
}

.x-dw-innerbox{
    width: 18.75rem;
    background:#f6f6f6;
    font-size: 1.25rem;
    top: calc((98% - 12.5rem) / 2);
    left: calc((98% - 18.75rem) / 2);
    position: absolute;
    text-align: center;
    padding: 1%;
    border-radius: .25rem;
}

.x-dw-innerbox > .iconfont{
    font-size:1.5rem;
    padding: 5px 5px;
    top: .5rem;
    right: .5rem;
}

.x-dw-innerbox p{
    font-size:1.25rem;
    line-height: 2rem;
    margin-top: 3%;
    height:22%;
}

.x-dw-innerbox p:nth-of-type(2){
    margin-bottom: 7%;
}

.x-dw-innerbox div{
    justify-content:space-between;
}

.x-dw-innerbox div a{
    width:48%;
    height:2.5rem;
    line-height:2.5rem;
    font-size:0.875rem;
    border-radius: .5rem;
    border: 1px solid #0AA770;
    color: #0AA770;
}

.x-dw-innerbox div a:nth-of-type(2){
    background-color:#0AA770;
    color: #fff;
}

/* 店铺图片缩放 */
.x-scale-image-outer{
    width: 100%;
    height: 100%;
    left:0;
    top: 0;
    background-color:rgba(0, 0, 0, 0.7);
    z-index: 2;
    display:none;
}

.x-scale-image-outer .iconfont{
    font-size:1.5rem;
    padding: 5px 5px;
    top: .5rem;
    right: .5rem;
    color: #fff;
}

/* ==========================================侧栏====================================== */
/* 侧栏有日期没回答的问答列表 */
.x-side-questionlist-date{
    flex-direction: column;
}

.x-side-questionlist-date li{
    padding:0.625rem 0;
    border-bottom: 1px dashed #f5f5f5;
    justify-content: space-between;
    align-items: center;
    font-size:0.875rem;
}

.x-side-questionlist-date li:nth-of-type(1){
    padding-top:0;
}

.x-side-questionlist-date li:nth-last-of-type(1){
    padding-bottom:0;
    border-bottom: none;
}

.x-side-questionlist-date li a{
    width:calc(100% - 3rem);
    max-width:calc(100% - 3rem);
    color: #2F2F31;
    font-size: 0.875rem;
}

.x-side-questionlist-date li:hover a{
    color: #0AA770;
}

.x-side-questionlist-date li span{
    color:#CCCCCC;
    font-size: 0.875rem;
}

/* 侧栏有日期没回答有回答数的问答列表 */
.x-side-questionlist-answer{
    flex-direction: column;
}

.x-side-questionlist-answer li{
    padding:0.625rem 0;
    border-bottom: 1px dashed #f5f5f5;
    justify-content: space-between;
    align-items: center;
    font-size:0.875rem;
}

.x-side-questionlist-answer li:nth-of-type(1){
    padding-top:0;
}

.x-side-questionlist-answer li:nth-last-of-type(1){
    padding-bottom:0;
    border-bottom: none;
}

.x-side-questionlist-icon{
    flex: 0 0 2.5rem;
    max-width: 2.5rem;
    flex-direction: column;
    height:3rem;
    justify-content: center;
    align-items: center;
    border-radius: .25rem;
    background: rgba(10, 167, 112, 0.04);
    color:#0AA770;
    border: 1px solid #0AA770;
    margin-right: .625rem;
}

.x-side-questionlist-icon span:nth-of-type(1){
    font-size: 1.5rem;
    line-height:1.5rem;
}

.x-side-questionlist-icon span:nth-of-type(2){
    font-size: .75rem;
}

.x-side-questionlist-info{
    flex: 0 0 calc(100% - 3.125rem);
    max-width: calc(100% - 3.125rem);
}

.x-side-questionlist-info a{
    color: #333;
    font-size: 1rem;
}

.x-side-questionlist-info a:hover{
    color: #0AA770;
}

.x-side-questionlist-info span{
    color: #999;
    font-size: .875rem;
}

/* 侧栏相关推荐 */
.x-side-questionlist-date.xgtj li a{
    width:100%;
    max-width:100%;
}

/* 侧栏文章列表 */
.x-side-articlelist{
    flex-direction: column;
}

.x-side-articlelist li{
    flex: 1;
    max-width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.x-side-articlelist li:nth-of-type(1){
    padding-top: 0;
}

.x-side-articlelist li:nth-last-of-type(1){
    padding-bottom: 0;
    border-bottom: none;
}

.x-side-articlelist li > a{
    flex: 0 0 7.5rem;
    max-width:7.5rem;
    justify-content: center;
    align-items: center;
    height:5.125rem;
    margin-right: 1rem;
    border-radius: .25rem;
    overflow: hidden;
}

.x-side-articlelist li > a img{
    width: 100%;
}

.x-side-articlelist li div{
    flex: 0 0 calc(100% - 8.5rem);
    max-width:calc(100% - 8.5rem);
    flex-direction: column;
}

.x-side-articlelist li div a{
    color: #333;
    font-size: .875rem;
    line-height:1.5rem;
}

.x-side-articlelist li:hover div a{
    color: #0AA770;
}

.x-side-articlelist li div span{
    color: #999;
    font-size: .75rem;
    line-height:1.5rem;
}

.x-side-articlelist li div p{
    color: #999;
    font-size: .75rem;
    line-height: 1.0625rem;
    -webkit-line-clamp: 3;
}

/* 侧栏品牌列表 */
.x-side-articlelist.brand li > a{
    flex: 0 0 7.25rem;
    max-width:7.25rem;
    height:4.125rem;
    margin-right: 0.75rem;
    border: 1px solid #ccc;
    border-radius: .25rem;
    padding: .5rem;
    overflow:unset;
}

.x-side-articlelist.brand li > a img{
    height:100%;
    max-width: 100%;
}

.x-side-articlelist.brand li div{
    flex: 0 0 calc(100% - 8rem);
    max-width:calc(100% - 8rem);
}

.x-side-articlelist.brand li div a{
    font-size: 1rem;
    line-height:1.25rem;
}

.x-side-articlelist.brand li div span{
    color: #333;
    line-height:1.25rem;
}

/* 侧栏评论列表 */
.x-side-commentlist{
    flex-direction: column;
}

.x-side-commentlist li{
    flex: 1;
    max-width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.x-side-commentlist li:nth-of-type(1){
    padding-top: 0;
}

.x-side-commentlist li:nth-last-of-type(1){
    padding-bottom: 0;
    border-bottom: none;
}

.x-side-commentlist li .x-side-comment-img{
    flex: 0 0 2.5rem;
    max-width:2.5rem;
    height:2.5rem;
    margin-right: 1rem;
}

.x-side-commentlist li .x-side-comment-img img{
    width:100%;
    height:100%;
    border-radius: 50%;
}

.x-side-commentlist li .x-side-comment-info{
    flex: 0 0 calc(100% - 3.5rem);
    max-width:calc(100% - 3.5rem);
}

.x-side-commentlist li .x-side-comment-info p{
    font-size: .875rem;
    color:#333;
    line-height:1.5rem
}

.x-side-commentlist li .x-side-comment-info span{
    font-size: .875rem;
    color:#999;
    line-height:1.5rem
}

.x-side-comment-form{
    background-color:#F8F8F8;
    flex-direction: column;
    padding:.9375rem;
}

.x-side-comment-form #txtName,.x-side-comment-form #txtComment{
    border: 1px solid #ccc;
    padding: .6875rem .625rem;
    border-radius:.25rem;
    margin-bottom: .75rem;
}

.x-side-comment-form #btnComment{
    border: 1px solid #928471;
    color: #928471;
    font-size: .875rem;
    padding:.625rem 0;
    border-radius:.25rem;
    background-color: #fff;
    cursor: pointer;
}

.x-side-comment-form #info{
    margin-top: 5px;
    font-size: .75rem;
    color:#FE4C35;
}

@media only screen and (max-width:600px){
    /* 头部 */
    header{
        background-color:#fafafa;
        position:fixed;
        left:0;
        top: 0;
        z-index: 2;
    }

    .x-top-info > dl{
        display:none;
    }

    .x-top-nav{
        height:45px;
        padding: 0.625rem 0.75rem;
        background-color:#0AA770;
    }

    .x-top-nav > a{
        display:inline-block;
    }

    .x-top-nav > a > img{
        display:none;
        width:5.3125rem;
        height:1.5625rem;
    }

    .x-top-nav > a > img:nth-last-of-type(1){
        display:block;
    }

    .x-top-nav > p, .x-top-nav > .x-head-nav-first{
        display:none;
    }

    .x-top-nav > span{
        display:inline-block;
        font-size: 0.9375rem;
        color:#fff;
        margin: 0 0.5rem 0 auto;
    }

    .x-top-nav > .icon-caidan{
        display:inline-block;
        color:#fff;
        width:1.125rem;
        height:1.125rem;
    }

    .x-top-nav > p, .x-top-nav > .x-head-nav-first{
        position:absolute;
        top:40px;
        left: 0;
        background-color:#fff;
        width:100%;
        height:500px;
        overflow-y: scroll;
        flex-direction:column;
    }

    .x-head-nav-first a{
        display:inline-block;
        position: relative;
    }

    .x-head-nav-first a::after{
        font-family: 'iconfont';
        content: '\e70f';
        position: absolute;
        width: 1rem;
        height: 1.5rem;
        top: 0.05rem;
        right: -1.05rem;
    }

    .x-head-nav-first > li{
        margin:0;
        padding: 0.5625rem 1.25rem;
        border-bottom: 1px solid #f5f5f5;
    }

    .x-head-nav-first > li:nth-last-of-type(1){
        border-bottom: none;
    }

    .x-head-nav-second{
        position:unset;
        height:auto;
        box-shadow: none;
        border-top: none;
        flex-wrap: wrap;
        justify-content:flex-start;
    }

    .x-head-nav-second a::after{
        top: .15rem;
    }

    .x-head-nav-second i{
        display:none;
    }

    .x-head-nav-second li{
        margin:0 0 0.625rem;
        flex: 0 0 calc(100% / 3);
        max-width: calc(100% / 3);
    }

    .x-head-nav-second li a{
        height: unset;
        border-bottom: none!important;
    }

    /* 底部 */
    footer{
        margin:0;
        padding:0;
    }

    /* 置顶 */
    .x-totop{
        visibility:visible;
    }

    .x-totop i{
        font-size:1.5rem;
    }

    /* 友情链接 */
    footer .x-yqlj{
        padding: 1.25rem 1.25rem 0;
        box-sizing: border-box;
        width: 100%;
    }

    /* 底部推荐 */
    footer .x-bqxx{
        margin: 0;
        flex-direction: column;
        padding: 0 1.25rem 8.4375rem 1.25rem;
        width: 100%;
    }

    footer .x-bqxx > a{
        width: 100%;
        height:auto;
        padding: 1.25rem 0;
        text-align: center;
    }

    footer .x-bqxx > a img{
        width: 8.5rem;
        height: 2.25rem;
    }

    footer .x-bqxx .x-foot-recommend, footer .x-bqxx .x-foot-tel {
        margin-left: 0;
        flex-direction: column;
    }

    footer .x-bqxx .x-foot-recommend{
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    footer .x-bqxx .x-foot-recommend ul{
        flex-wrap: wrap;
        justify-content: center;
    }

    footer .x-bqxx .x-foot-recommend ul li a{
        line-height: 2em;
    }

    footer .x-bqxx .x-foot-recommend .x-beian{
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 6.25rem;
        width: 100%;
        left: 0;
        padding: 0.9375rem 0;
        border-top: 1px solid #f6f6f6;
    }

    footer .x-bqxx .x-foot-recommend .x-beian, footer .x-bqxx .x-foot-recommend .x-beian a{
        font-size:0.75rem;
    }

    footer .x-bqxx .x-foot-recommend .x-beian div:nth-of-type(1){
        margin-right: 0;
    }

    footer .x-bqxx .x-foot-recommend .x-beian .copyright{
        margin-top: 0.3125rem;
    }

    footer .x-bqxx .x-foot-tel{
        margin-top: 0.625rem;
        flex-direction: row;
        justify-content: center;
    }

    footer .x-bqxx .x-foot-tel span:nth-last-of-type(1) {
        font-size: 0.875rem;
        padding-left: 0.625rem;
    }

    /* 底部导航 */
    .x-totop+.x-bqxx > a,.x-totop+.x-bqxx .x-foot-recommend ul,.x-totop+.x-bqxx .x-foot-tel{
        display:none !important;
    }

    .x-totop+.x-bqxx{
        padding: 0 1.25rem 7.4375rem 1.25rem;
    }

    .x-totop+.x-bqxx .x-foot-recommend{
        padding: 0;
    }

    .x-totop+.x-bqxx .x-foot-recommend .x-beian{
        padding-bottom: 4rem!important;
        background-color: #fff;
        top: 0;
        border-top: none;
    }

    .x-foot-nav{
        width: 100%;
        height: 50px;
        background: #fff;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-evenly;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 2;
        border-top: 1px solid #f5f5f5;
    }

    .x-foot-nav li{
        flex: 1;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .x-foot-nav a{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .x-foot-nav a i{
        font-size:1.625rem;
        color: #666;
    }

    .x-foot-nav a span{
        font-size:0.625rem;
        color: #333;
    }

    .x-foot-nav li:nth-child(2) div {
        position: absolute;
        border-radius: 1.25rem;
        background-color: red;
        color: white;
        font-size: 0.625rem;
        left: 58%;
        top: 0;
        width: 1.875rem;
        text-align: center;
    }

    /* 面包屑 */
    .x-nav{
        display:none;
    }

    /* 手机端顶部的立即拨打 */
    .x-telinfo-m{
        display:flex;
        justify-content:space-between;
        align-items: center;
        padding:0 0.9375rem;
        height:3.125rem;
    }

    .x-telinfo-m img{
        width: 3.90625rem;
        height: 1.9375rem;
    }

    .x-telinfo-m span{
        font-size:1.875rem;
        color:#FF7600;
    }

    .x-telinfo-m a{
        font-size:0.75rem;
        background-color:#FF7600;
        color: #fff;
        padding:0.5rem 1rem;
        border-radius:.5rem;
    }

    /* 主体内容 */
    main{
        padding-top:45px;
    }
    
    .x-wrap{
        padding:0;
        width: 100%;
        margin-left: 0;
        background-color:#F7F8FA;
    }

    .x-wrap-padding{
        padding:0;
    }

    .x-wrap-left{
        width:100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .x-wrap-right{
        margin-left: 0;
        margin-bottom: 0;
        width:100%;
        flex: 0 0 100%;
    }

    .x-wrap-container{
        flex-direction: column;
    }

    .x-content-box{
        padding:0.9375rem;
    }

    .x-wrap-main{
        width:100%;
    }

    .x-wrap-main .x-wrap-box{
        width:100%;
        padding: 0;
        border-radius: unset;
        background-color: unset;
    }
    
    .x-wrap-side{
        display:none;
    }

    /* 段落分隔 */
    .bottom-line{
        border-bottom: none;
        padding-bottom: 0.9375rem;
    }

    .x-wrap-container.bottom-line{
        padding-bottom: 0;
    }

    /* 侧栏线条框 */
    .x-side-linebox{
        padding: 0;
        border:none;
    }

    /* h2标题带下划线 */
    .x-title-h2-line{
        align-items:flex-start;
        margin-bottom:0.9375rem;
        background-color: #fff;
        border-bottom:1px solid #ccc;
    }

    .x-title-h2-line h2{
        color: #333;
        font-size:1.125rem;
        padding-bottom:0.9375rem;
        border-bottom:2px solid #928471;
    }

    .x-title-h2-line a{
        color: #333;
    }

    /* h2标题 */
    .x-title-h2{
        display:flex;
        align-items:flex-start;
        margin-bottom: 0.75rem;
    }

    .x-title-h2 h2{
        color: #333;
        font-size:1.125rem;
    }

    /* 带图片的标签列表 */
    .x-taglist-img li{
        flex-direction: column;
        margin: 1%;
        flex: 0 0 calc(92% / 4);
        max-width: calc(92% / 4);
    }

    .x-taglist-img li:nth-last-of-type(1){
        margin-right: 0.75rem;
    }

    .x-taglist-img li a{
        width: 100%;
        font-size:0.875rem;
    }

    .x-taglist-img li a img{
        width: 100%;
        border-radius: 4px;
    }

    /* 不带图片不固定宽度的标签列表 */
    .x-taglist-auto li{
        margin-right: .375rem;
        margin-bottom: .375rem;
    }

    .x-taglist-auto li a,.x-taglist-auto li span{
        padding: .25rem .375rem;
        font-size: .875rem;
    }

    /* 不带图片的标签列表 */
    .x-taglist li{
        flex: 0 0 calc(92% / 5);
        max-width: calc(92% / 5);
    }

    .x-taglist li:nth-of-type(8n){
        margin-right:1%;
    }

    .x-taglist li:nth-of-type(8n+1){
        margin-left:1%;
    }

    .x-taglist li:nth-last-of-type(-n+8){
        margin-bottom:0.625rem;
    }

    .x-taglist li:nth-of-type(5n){
        margin-right:0;
    }

    .x-taglist li:nth-of-type(5n+1){
        margin-left:0;
    }

    .x-taglist li:nth-last-of-type(-n+5){
        margin-bottom:0;
    }

    .x-taglist li a{
        font-size:0.8125rem;
        color: #666;
        text-align: left;
    }

    /* 维修列表 */
    .x-repair-box {
        padding-bottom: 35px;
    }

    .x-repair-box .x-taglist li{
        flex: 0 0 calc(98% / 2);
        max-width: calc(98% / 2);
    }

    .x-repair-box .x-taglist li:nth-of-type(4n),.x-repair-box .x-taglist li:nth-of-type(5n){
        margin-right:1%;
    }
    
    .x-repair-box .x-taglist li:nth-of-type(4n+1),.x-repair-box .x-taglist li:nth-of-type(5n+1){
        margin-left:1%;
    }

    .x-repair-box .x-taglist li:nth-last-of-type(-n+4),.x-repair-box .x-taglist li:nth-last-of-type(-n+5){
        margin-bottom:0.625rem;
    }

    .x-repair-box .x-taglist li:nth-of-type(2n){
        margin-right:0;
    }
    
    .x-repair-box .x-taglist li:nth-of-type(2n+1){
        margin-left:0;
    }

    .x-repair-box .x-taglist li:nth-last-of-type(-n+2){
        margin-bottom:0;
    }

    .x-repair-box span{
        position: absolute;
        left: 0;
        bottom:10px;
        width: 100%;
        height:20px;
    }

    .x-repair-box span::after{
        content:attr(data-content);
        width: 80%;
        height:20px;
        text-align: center;
        position: absolute;
        left: 50%;
        transform:translateX(-50%);
        bottom:0;
        color: #0AA770;
        font-size:.875rem;
    }

    /* 有描述的文章列表 */
    .x-articlelist-content li > a {
        flex: 0 0 3.75rem;
        max-width: 3.75rem;
        margin-right: 0.725rem;
        height: 4.6875rem;
    }

    .x-articlelist-content li div{
        flex: 0 0 calc(100% - 4.475rem);
        max-width: calc(100% - 4.475rem);
    }

    .x-articlelist-content li div a{
        font-size:1rem;
        -webkit-line-clamp: 2;
        font-weight: normal;
        margin-bottom:10px;
    }

    .x-articlelist-content li div span{
        font-size:0.75rem;
        margin-bottom: 0;
    }

    .x-articlelist-content li div p{
        display: none;
    }

    /* 有回答的问答列表 */
    .x-questionlist-answer li .x-questionitem-answer .x-answer{
        background-color: #f8f8f8;
        -webkit-line-clamp: 3;
        padding: 0 0.75rem 0.125rem;
        line-height: 1.75rem;
        border-radius:4px;
    }

    /* 城市列表 */
    .x-citylist{
        margin-top: 0;
    }

    .x-citylist > li{
        flex-direction: column;
    }

    .x-citylist span{
        margin-right: 0;
        font-size:1rem;
        font-weight: bold;
    }

    .x-citylist li:nth-of-type(1) span{
        margin-top: 0;
    }

    .x-citylist > li > ul{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .x-citylist > li > ul > li{
        margin-right: 1%;
        flex: 0 0 calc(94% / 7);
        max-width: calc(94% / 7);
    }

    .x-citylist > li > ul > li:nth-of-type(7n){
        margin-right: 0;
    }

    .x-citylist > li > ul > li a{
        font-size:0.8125rem;
        margin-right: 0;
        display: inline-block;
        width: 100%;
    }

    /* 免费咨询和电话报修按钮 */
    .x-telbtns{
        width: 100%;
        justify-content: space-around;
    }

    .x-btn-zixun,.x-btn-baoxiu{
        width: 10.3125rem;
    }

    /* 推荐维修点tab切换 */
    .x-recommend-citys li{
        font-size:0.8125rem;
        margin: 0 1rem 0.875rem 0;
        flex:0 0 calc((100% - 4rem) / 5);
    }

    .x-recommend-citys li:nth-of-type(5n){
        margin-right: 0;
    }

    .x-recommend-citys li a{
        font-size:0.8125rem;
    }

    /* 店铺列表 */
    .x-storelist li{
        flex-direction: column;
    }

    .x-store-content{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .x-store-content .x-store-img{
        flex: 0 0 4.375rem;
        max-width:4.375rem;
        height:4.375rem;
        margin-right: 0.75rem;
    }

    .x-store-content .x-store-img::after{
        top: .125rem;
        right: .125rem;
        font-size:0.62rem;
        color:#0081FF;
        border: 1px solid #B7DCFF;
        background-color: #F2F9FF;
        padding:.0625rem .25rem;
        border-radius:.125rem
    }

    .x-store-content .x-store-info{
        flex: unset;
        width: calc(100% - 5.125rem);
        max-width:calc(100% - 5.125rem);
    }

    .x-store-info h3{
        font-size:1rem;
        line-height:1rem;
    }

    .x-store-info .x-store-des{
        line-height:1rem;
        color: #999;
        margin-bottom: 0.625rem;
    }

    .x-store-info .x-store-des,.x-store-info .x-store-pj span{
        font-size:.75rem;
    }
    
    .x-store-info .x-store-pj .x-store-pj-star{
        display:none;
    }

    .x-store-info .x-store-pj{
        margin-bottom: 0.375rem;
    }

    .x-store-info .x-store-pj p{
        color: #666;
        font-size:0.6875rem;
        line-height:1.125rem;
    }

    .x-store-info .x-store-taglist{
        margin-bottom: 0.75rem;
    }

    .x-store-info .x-store-taglist span{
        font-size: 0.625rem;
        color:#0AA770;
        padding:.0625rem .25rem;
        border-radius:.0625rem;
    }

    .x-store-info .x-store-address,.x-store-info .x-store-product{
        font-size:0.6875rem;
        color: #999;
        line-height:1.125rem;
    }

    .x-store-info .x-store-address span,.x-store-info .x-store-product span{
        display:none;
    }
    
    .x-store-info .x-store-address .iconfont,.x-store-info .x-store-product .iconfont{
        color: #ccc;
    }
    
    .x-store-btn{
        flex: unset;
        max-width: 4.6875rem;
        justify-content: flex-end;
        align-items: center;
        position: absolute;
        right: 0;
        top: 40%;
    }
    
    .x-store-btn .x-btn-baoxiu{
        width:4.6875rem;
        height:1.875rem;
        border-radius:.25rem;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .x-store-btn .x-btn-baoxiu span{
        color: white !important;
        font-size: .75rem !important;
    }

    .x-store-btn .x-btn-baoxiu .iconfont{
        margin-right: 0;
        display: none;
    }

    .x-store-more{
        padding:.625rem 0;
        font-size:.875rem;
    }

    /* 广告模块 */
    .x-adv{
        border: none;
        border-radius: unset;
        padding:1.25rem 0.9875rem;
    }

    .x-adv::after{
        top: .3125rem;
        right: .3125rem;
        font-size: .625rem;
        color: #ccc;
    }

    .x-adv > div {
        margin:0;
        flex-direction: column;
    }

    .x-adv > div p {
        font-size: 1.25rem;
        line-height: 2rem;
    }

    .x-adv > div span{
        font-size:.875rem;
    }

    .x-adv ul{
        margin: 0.9875rem 0;
        justify-content:space-between;
        background-color:#fff;
        padding:0.75rem 1.5rem;
        border-radius:.25rem;
    }

    .x-adv ul li{
        flex-direction: column;
        margin-right: 0;
    }

    .x-adv ul li i {
        font-size: 1.875rem;
        margin-right: 0;
        margin-bottom: .5rem;
    }

    .x-adv ul li i.icon-fwbz1{
        display:none;
    }

    .x-adv ul li i.icon-fwbz2{
        display:block;
    }

    .x-adv ul li p {
        line-height: 1rem;
        font-size: 0.75rem;
        font-weight: normal;
    }

    .x-adv ul li span{
        display: none;
    }

    .x-adv .x-service-time{
        flex-direction: column;
        align-items: flex-start;
    }

    .x-adv .x-telbtns{
        flex-direction: row;
        margin:0;
    }

    .x-adv .x-telbtns a{
        width: 10.3125rem;
    }

    .x-adv .x-telbtns a.x-btn-zixun{
        background-color: #fff;
    }
    
    /* 分页 */
    .x-pager{
        text-align:center;
        font-size: .75rem;
    }

    .x-pager span,.x-pager a{
        padding:.25rem .625rem;
        border: .5px solid #ccc;
    }

    /* 定位弹框 */
    .x-dw-innerbox {
        width:13.75rem;
        top: calc((98% - 13rem) / 2);
        left: calc((98% - 13.75rem) / 2);
    }

    .x-dw-innerbox > .iconfont{
        font-size:1.25rem;
    }

    .x-dw-innerbox p{
        line-height:1.5rem;
        font-size:1rem;
        margin-top: 4%;
    }

    .x-dw-innerbox p:nth-of-type(2){
        margin-bottom: 4%;
    }

    .x-dw-innerbox div{
        justify-content:space-around;
    }

    .x-dw-innerbox div a{
        width:45%;
        height:2.1875rem;
        line-height: 2.1875rem;
        font-size:.8125rem;
    }

    /* ==========================================侧栏====================================== */
    /* 侧栏有日期没回答的问答列表 */
    .x-side-questionlist-date li a{
        font-size: 1rem;
    }
    
    .x-side-questionlist-date li span{
        display: none;
    }

    /* 侧栏有日期没回答有回答数的问答列表 */
    .x-side-questionlist-icon{
        width:2.1875rem;
        height: 2.625rem;
    }

    .x-side-questionlist-icon span:nth-of-type(1){
        font-size: 1.125rem;
        line-height:1.125rem;
    }
    
    .x-side-questionlist-icon span:nth-of-type(2){
        font-size: .625rem;
    }

    .x-side-questionlist-info{
        flex: 0 0 calc(100% - 2.8125rem);
        max-width: calc(100% - 2.8125rem);
    }
    
    .x-side-questionlist-info span{
        font-size: .75rem;
    }
}

@media only screen and (max-width:390px){
    :root{
        font-size:15px;
    }

    .x-top-nav > p, .x-top-nav > .x-head-nav-first{
        height:450px;
    }
}

@media only screen and (max-width:360px){
    :root{
        font-size:14px;
    }

    .x-top-nav > p, .x-top-nav > .x-head-nav-first{
        height:475px;
    }
}

@media only screen and (max-width:330px){
    :root{
        font-size:13px;
    }

    .x-top-nav > p, .x-top-nav > .x-head-nav-first{
        height:400px;
    }
}


/* 头部 */
.x-theme-watch{
    background-image: url(https://img1.iccidchaxun.com/res/watch/base/watch-bgimg-pc.png);
    background-repeat: no-repeat;
    background-size: 100% 20rem;
}

/* 手表专区顶部信息 */
.x-watch-head-info{
    padding-top:3.125rem;
    margin-left: calc((100% - 1200px) / 2);
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.x-watch-head-info h1{
    font-size:1.5rem;
}

.x-watch-head-info .x-nav a,.x-watch-head-info .x-nav span{
    color: #fff;
}

.x-watch-head-info div:last-child{
    align-items: center;
}

.x-watch-head-info div:last-child > a{
    font-size:2.25rem;
    color: #fff;
    margin: 0 0.5rem;
}

.x-watch-head-info p{
    font-size:1rem;
}

.x-watch-head-info span{
    font-size:0.625rem;
}

.x-watch-head-info img{
    width:4.375rem;
    height: 4.375rem;
}

.x-topimg{
    width: 1200px;
    margin: 0 auto;
}

.x-topimg span{
    color: white;
    font-size:2.5rem;
    line-height:3.125rem;
    top: 3.625rem;
    left: 2.5rem;
}

/* 手表专区品牌信息 */
.x-brand-story .x-brand-story-img{
    flex: 0 0 15rem;
    width: 15rem;
    height: 12.5rem;
    justify-content:center;
    align-items: center;
    margin-right: 1.875rem;
}

.x-brand-story .x-brand-story-img img{
    max-width: 100%;
    height:100%;
    border-radius: 0.25rem;
}

.x-brand-story .x-brand-story-info{
    flex: 0 0 calc(100% - 16.875rem);
    max-width: calc(100% - 16.875rem);
    flex-direction: column;
    align-items:flex-start;
}

.x-brand-story .x-brand-story-info p{
    font-size:0.875rem;
    color: #666;
    line-height:1.5rem;
    -webkit-line-clamp: 4;
}

/* 专题信息 */
.x-theme-info .x-theme-image{
    flex: 0 0 15rem;
    max-width: 15rem;
    height: 12rem;
    border-radius:.5rem;
    margin-right: 1.875rem;
    justify-content: center;
    align-items: center;
}

.x-theme-info .x-theme-image img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 0.25rem;
}

.x-theme-info div:nth-of-type(2){
    flex: 0 0 calc(100% - 16.875rem);
    max-width: calc(100% - 16.875rem);
    flex-direction: column;
}

.x-theme-info > div:nth-of-type(2) h1{
    color: #333;
    font-size: 1.75rem;
    line-height:2rem;
    margin-bottom: 1rem;
}

.x-theme-info > div:nth-of-type(2) p:nth-of-type(1){
    font-size: .875rem;
    color:#666;
    line-height: 2rem;
}

.x-theme > div:nth-of-type(2) p:nth-of-type(1) strong{
    color:#000;
}

.x-theme-info > div:nth-of-type(2) .x-brand-describe-short{
    font-size: .875rem;
    line-height: 1.5rem;
    color:#999;
    margin-bottom: 1.125rem;
}

/* 顶部客服广告 */
.x-top-adv{
    top: -1.875rem;
    right: -1.875rem;
    background: linear-gradient(269deg, #F2FBF8 0%, rgba(242, 251, 248, 0) 100%);
}

/* 文章列表 */
.x-articlelist-content{
    flex-direction: row;
    flex-wrap: wrap;
}

.x-articlelist-content li{
    flex: 0 0 49%;
    max-width: 49%;
    padding-right: 10px;
}

.x-articlelist-content li:nth-of-type(2){
    padding-top: 0;
}

.x-articlelist-content li:nth-last-of-type(2){
    padding-bottom: 0;
    border-bottom: none;
}

.x-articlelist-content li:nth-of-type(2n){
    border-left: 1px dashed #f5f5f5;
    padding-left:10px;
    padding-right: 0;
}

/* 问答列表 */
.x-questionlist-answer{
    flex-direction: row;
    flex-wrap: wrap;
}

.x-questionlist-answer li{
    flex: 0 0 48.2%;
    max-width: 50%;
    padding-right: 10px;
}

.x-questionlist-answer li:nth-of-type(2){
    padding-top: 0;
}

.x-questionlist-answer li:nth-last-of-type(2){
    padding-bottom: 0;
    border-bottom: none;
}

.x-questionlist-answer li:nth-of-type(2n){
    border-left: 1px dashed #f5f5f5;
    padding-left:10px;
    padding-right: 0;
}

.x-questionlist-answer li .x-questionitem-answer .x-answer{
    -webkit-line-clamp: 3;
}

/* 店铺列表 */
.x-storelist{
    flex-direction: row;
    flex-wrap: wrap;
}

.x-storelist li{
    flex: 0 0 49%;
    max-width: 49%;
    padding-right: 10px;
}

.x-store-content .x-store-img{
    flex: 0 0 8.75rem;
    max-width:8.75rem;
    height:6.875rem;
    margin-right: .875rem;
}

.x-store-content .x-store-info{
    flex: 0 0 calc(100% - 9.625rem);
    max-width: calc(100% - 9.625rem);
}

.x-store-more{
    padding: 0;
    border: none;
    color: #333;
    border-radius: 0;
    font-size:1rem;
}

.x-storelist li:nth-of-type(2){
    padding-top: 0;
}

.x-storelist li:nth-last-of-type(2){
    padding-bottom: 0;
    border-bottom: none;
}

.x-storelist li:nth-of-type(2n){
    border-left: 1px dashed #f5f5f5;
    padding-left:10px;
    padding-right: 0;
}

@media only screen and (max-width:600px){
    /* 头部 */
    .x-theme-watch{
        background-image: none;
    }

    /* 手表专区顶部信息 */
    .x-watch-head-info{
        display:none;
    }

    .x-topimg{
        width: 100%;
    }

    .x-topimg img{
        display:block !important;
        width:100%;
    }

    /* 品牌页顶部品牌图 */
    .x-topimg .x-brandimg-watch div{
        border-radius:4px;
        margin-bottom: 0.625rem;
        width: auto;
        height: 4.6875rem;
        justify-content: center;
        align-items: center;
    }

    .x-topimg .x-brandimg-watch div img{
        max-width: 100%;
        width:auto;
        height:100%;
        border-radius: 0.25rem;
    }

    .x-topimg .x-brandimg-watch span{
        font-size:1.25rem;
        line-height: 1.5625rem;
        color:white;
    }

    .x-topimg .x-brandimg-watch{
        display:flex;
        flex-direction:column;
        align-items:center;
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: 11.625rem;
        border-radius: 4px;
        transform: translateX(-50%) translateY(-50%);
    }

    /* 手表专区品牌信息 */
    .x-brand-story .x-brand-story-img{
        position: absolute;
        width: 6.25rem;
        flex: 0;
        height: 5rem;
        border-radius: 0.25rem;
        margin-right: 0;
    }

    .x-brand-story .x-brand-story-info{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .x-brand-story .x-brand-story-info > span,.x-brand-story .x-brand-story-info p:nth-of-type(1){
        margin-left:7rem;
    }

    .x-brand-story .x-brand-story-info p:nth-of-type(1){
        margin-bottom: 15px;
    }

    .x-brand-story .x-brand-story-info p{
        font-size:0.75rem;
        line-height:1.125rem;
        display: flex;
        max-height:4.6875rem;
        overflow:hidden;
    }

    .x-brand-story-info-more{
        margin-bottom: 1.25rem;
    }

    .x-brand-story .x-brand-story-info p:nth-of-type(1){
        flex-direction: column;
    }

    .x-brand-story .x-brand-story-info p:nth-of-type(1) span:nth-of-type(2) {
        display: none;
    }

    .x-brand-story .x-brand-story-info p:nth-of-type(2){
        color: #999;
        overflow: unset;
        max-height: unset;
    }
    
    /* 专题信息 */
    .x-theme-info{
        flex-direction: column;
    }

    .x-theme-info .x-theme-image{
        flex: unset;
        width: 6.25rem;
        height: 5rem;
        border-radius:.25rem;
        margin-right: .75rem;
        justify-content: center;
        align-items: center;
    }

    .x-theme-info div:nth-of-type(2){
        flex: unset;
        max-width:100%;
        width: 100%;
    }

    .x-theme-info > div:nth-of-type(2) h1{
        position: absolute;
        font-size:1.125rem;
        top:.9375rem;
        left: 7.9375rem;
    }

    .x-theme-info > div:nth-of-type(2) p:nth-of-type(1){
        position: absolute;
        font-size: .75rem;
        color:#666;
        line-height: 1.25rem;
        flex-direction: column;
        top:2.9375rem;
        left: 7.9375rem;
    }

    .x-theme-info > div:nth-of-type(2) p:nth-of-type(1) span:nth-of-type(2){
        display: none;
    }
    
    .x-theme-info > div:nth-of-type(2) p:nth-of-type(1) strong{
        color:#666;
    }

    .x-theme-info > div:nth-of-type(2) .x-brand-describe-short{
        font-size: .75rem;
        line-height: 1.125rem;
        margin-bottom: .9375rem;
        margin-top: .3125rem;
    }

    /* 文章列表 */
    .x-articlelist-content li{
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .x-articlelist-content li:nth-of-type(2){
        padding-top: 1rem;
    }

    .x-articlelist-content li:nth-last-of-type(2){
        padding-bottom: 1rem;
        border-bottom: 1px dashed #f5f5f5;
    }

    .x-articlelist-content li:nth-of-type(2n){
        border-left: none;
        padding-left:0;
    }

    /* 问答列表 */
    .x-questionlist-answer li{
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .x-questionlist-answer li:nth-of-type(2){
        padding-top: 1rem;
    }

    .x-questionlist-answer li:nth-last-of-type(2){
        padding-bottom: 1rem;
        border-bottom: 1px dashed #f5f5f5;
    }

    .x-questionlist-answer li:nth-of-type(2n){
        border-left: none;
        padding-left:0;
    }

    /* 店铺列表 */
    .x-storelist li{
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .x-store-content .x-store-img {
        flex: 0 0 4.375rem;
        max-width: 4.375rem;
        height: 4.375rem;
        margin-right: 0.75rem;
    }

    .x-store-content .x-store-info {
        flex: unset;
        max-width: calc(100% - 5.125rem);
    }

    .x-store-more {
        padding: 0.625rem 0;
        font-size: .875rem;
        border: 1px solid #0AA770;
        color: #0AA770;
        border-radius: 0.25rem;
    }

    .x-theme-watch .x-store-more {
        border: 1px solid #928471;
        color: #928471;
    }

    .x-storelist li:nth-of-type(2){
        padding-top: 1rem;
    }

    .x-storelist li:nth-last-of-type(2){
        padding-bottom: 1rem;
        border-bottom: 1px dashed #f5f5f5;
    }

    .x-storelist li:nth-of-type(2n){
        border-left: none;
        padding-left:0;
    }
}



/* 家电专区顶部信息 */
.x-jiadian-head-info{
    margin-left: calc((100% - 1200px) / 2);
    max-width: 1200px;
}

/* 顶部客服广告 */
.x-top-adv{
    align-items: center;
}

.x-top-adv p{
    font-size:1rem;
    color: #0AA770;
}

.x-top-adv span{
    font-size:.625rem;
    color: #0AA770;
}

.x-top-adv > a{
    font-size: 2.25rem;
    color: #FF7600;
    margin: 0 0.5rem;
}

.x-top-adv img{
    width: 4.375rem;
    height: 4.375rem;
}

/* 分类页面顶部导航 */
.x-jiadian-head-nav{
    border-radius: .5rem;
    height:3.75rem;
}

.x-jiadian-head-nav li{
    border-right: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.x-jiadian-head-nav li a{
    padding: 1.25rem 2.25rem;
    height:3.75rem;
    font-size: 1rem;
    color: #333;
}

.x-jiadian-head-nav li.active,.x-jiadian-head-nav li:hover{
    border-top: 2px solid #0AA770;
    border-bottom: none;
}

.x-jiadian-head-nav li.active a,.x-jiadian-head-nav li:hover a{
    color: #0AA770;
    font-weight: bold;
}

/* 品牌故障的标签列表 */
.x-tag-box{
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10, 167, 112, 0.04);
    padding: 0.625rem 0.9375rem 0;
}

.x-tag-box dl{
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: .625rem;
}

.x-tag-box dl:nth-last-of-type(1){
    border-bottom: none;
    margin-bottom: 0;
}

.x-tag-box dl dt{
    flex: 0 0 3rem;
    max-width: 3rem;
    font-size: .875rem;
    padding-top: 0.0625rem;
}

.x-tag-box .x-taglist-auto li a{
    padding: 0 .25rem .125rem;
}

.x-tag-box .x-taglist-auto li:hover a,.x-tag-box .x-taglist-auto li.active a{
    color: #0AA770;
}

/* 最新文章 */
.x-new-article .x-new-article-img{
    flex:0 0 22.5rem;
    max-width: 22.5rem;
    margin-right: 1.25rem;
    height:15.375rem;
}

.x-new-article .x-new-article-img img{
    max-width:100%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: .25rem .25rem 0px 0px;
}

.x-new-article .x-new-article-img span{
    width:100%;
    height:2.5rem;
    padding: .625rem;
    background: #020202;
    opacity: 0.8;
    border-radius: 0px 0px .25rem .25rem;
    left: 0;
    bottom:0;
    font-size:.875rem;
    color: #fff;
}

.x-new-article .x-recommend-articles{
    flex:0 0 calc(100% - 23.75rem);
    max-width: calc(100% - 23.75rem);
}

.x-new-article .x-recommend-articles li{
    flex-direction: column;
    align-items: center;
}

.x-new-article .x-recommend-articles li:nth-of-type(1){
    margin-bottom: 30px;
}

.x-new-article .x-recommend-articles li > a{
    font-size: 1.25rem;
    line-height: 2rem;
    color: #0AA770;
    cursor: pointer;
}

.x-new-article .x-recommend-articles li p{
    color:#666;
    font-size:.875rem;
    line-height: 1.5rem;
}

.x-new-article .x-recommend-articles li p a{
    color: #0AA770;
    cursor: pointer;
}

/* 文章列表 */
.x-articlelist-content.jiadian li > a{
    flex: 0 0 12.5rem;
    max-width: 12.5rem;
    margin-right: 1.5rem;
    height: 8.5rem;
}

.x-articlelist-content.jiadian li div{
    flex: 0 0 calc(100% - 14rem);
    max-width: calc(100% - 14rem);
}

.x-articlelist-content.jiadian li > a img{
    width: 100%;
    border-radius:.25rem;
}

/* ==========================================侧栏====================================== */
/* 侧栏文章列表 */
.x-side-articlelist li > a img{
    max-height: 100%;
    height: auto !important;;
}

/* 侧栏评论列表 */
.x-side-comment-form #btnComment{
    border: 1px solid #0AA770;
    color: #0AA770;
}

@media only screen and (max-width:600px){
    /* h2标题 */
    .x-title-h2.w100{
        justify-content:center;
    }

    /* h2标题带下划线 */
    .x-title-h2-line h2{
        border-bottom: 2px solid #0AA770;
    }

    /* 家电专区顶部信息 */
    .x-jiadian-head-info{
        display: none;
    }

    /* 广告模块 */
    .x-adv{
        margin-bottom: 0;
    }

    .x-adv-top{
        background-image:none;
        background: linear-gradient(48deg, rgba(10, 167, 112, 0.08) 0%, rgba(10, 167, 112, 0.13) 100%);
    }

    .x-adv::after{
        color: #999;
    }

    /* 顶部客服广告 */
    .x-top-adv{
        display:none;
    }

    /* 分类页面顶部导航 */
    .x-jiadian-head-nav{
        height:2.15625rem;
    }

    .x-jiadian-head-nav li{
        border-right: none;
        border-bottom: none;
        flex: 0 0 20%;
        max-width: 20%;
        height: 2.15625rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .x-jiadian-head-nav li:nth-last-of-type(-n+2){
        display: none;
    }

    .x-jiadian-head-nav li.active, .x-jiadian-head-nav li:hover{
        border-top: none;
    }

    .x-jiadian-head-nav li a{
        padding:0;
        height:100%;
        line-height: 2.15625rem;
        color: #666;
        font-size: .8125rem;
    }

    .x-jiadian-head-nav li.active a, .x-jiadian-head-nav li:hover a{
        border-bottom: 2px solid #0AA770;
    }

    /* 品牌故障的标签列表 */
    .x-tag-box{
        background-color: #fff;
        padding: 0;
    }

    .x-tag-box dl.jiadianBrands{
        padding-bottom: 1.25rem;
    }

    .x-tag-box dl dt{
        flex: 0 0 4.5rem;
        max-width: 4.5rem;
    }

    .x-tag-box .x-taglist-auto{
        max-height:5.625rem;
        overflow: hidden;
    }

    .x-tag-box span{
        height: 1.25rem;
        width: 4.8125rem;
        position: absolute;
        bottom: .3125rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .x-tag-box span::after{
        content: attr(data-content);
        position: absolute;
        font-size: .875rem;
        color: #0AA770;
    }

    /* 最新文章 */
    .x-new-article{
        flex-direction: column;
    }

    .x-new-article .x-new-article-img{
        flex: unset;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .x-new-article > p{
        display: block;
        margin-top: .9375rem;
        font-size:.875rem;
        line-height:1.5rem;
        color: #666;
        padding-bottom:.9375rem;
        border-bottom: 1px solid #f5f5f5;
        margin-bottom: .9375rem;
    }

    .x-new-article > p a{
        color: #0AA770;
    }

    .x-new-article .x-side-questionlist-date{
        display: flex;
    }

    .x-new-article .x-side-questionlist-date li{
        align-items: center;
    }

    .x-new-article .x-side-questionlist-date li span{
        display:inline-block;
        font-size:.75rem;
    }

    .x-new-article .x-recommend-articles{
        display:none;
    }

    /* 文章列表 */
    .x-articlelist-content.jiadian li > a{
        flex: 0 0 5.65rem;
        max-width: 5.65rem;
        margin-right: .75rem;
        height: 4.6875rem;
    }

    .x-articlelist-content.jiadian li div{
        flex: 0 0 calc(100% - 6.4rem);
        max-width: calc(100% - 6.4rem);
    }
}


.x-telbtns{justify-content: left; }

.x-btn-zixun:hover{color: #FF7600;}
.x-btn-baoxiu:hover{color: #fff;}

.x-store-content .x-store-img a{ display:block; width:100%; height:100%;}