*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	outline: none
}

body{
	color: #333;
	/*line-height: 1;  */
	overflow-x:hidden;
	margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: Helvetica,"Helvetica Neue",Arial,sans-serif;
    letter-spacing: 0;
    word-wrap:break-word;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;}
	
/* 根元素 font-size */
@media screen and (min-width:300px) {   /*小手机屏幕手机，5.0以下，如：iPhone5*/
    html {
        font-size: 12px;
    }
}
@media screen and (min-width:350px) {   /*常规屏幕手机，5.0~5.5左右,如：iPhone6*/
    html {
        font-size: 14px;
    }
}
@media screen and (min-width:400px) {   /*大屏幕手机，6.0及以上,如：iPhone6Plus*/
    html {
        font-size: 16px;
    }
}
@media screen and (min-width:500px) {
    html {
        font-size: 16px;
    }
}
@media screen and (min-width:550px) {
    html {
        font-size: 18px;
    }
}
@media screen and (min-width:600px) {
    html {
        font-size: 20px;
    }
}
@media screen and (min-width:650px) {
    html {
        font-size: 22px;
    }
}
@media screen and (min-width:700px) {
    html {
        font-size: 24px;
    }
}
@media screen and (min-width:750px) {
    html {
        font-size: 26px;
    }
}
@media screen and (min-width:800px) {
    html {
        font-size: 28px;
    }
}
@media screen and (min-width:850px) {
    html {
        font-size: 30px;
    }
}
@media screen and (min-width:900px) {
    html {
        font-size: 32px;
    }
}
@media screen and (min-width:950px) {
    html {
        font-size: 34px;
    }
}
@media screen and (min-width:1000px) {
    html {
        font-size: 36px;
    }
}



*{
    outline:none;   /*取消所有元素的焦点样式*/
    box-sizing:border-box;    /*设定所有元素的大小行为,边框决定大小*/
}

/*全局样式*/
body{
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: Helvetica,"Helvetica Neue",Arial,sans-serif;
    letter-spacing: 0;
    word-wrap:break-word;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*表单元素默认字体大小及字体*/
input,select,textarea{
    font-size: 1rem;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/*超链接默认取消下划线，蓝色字体*/
a{
    color: #0099FF;
    text-decoration: none;
}


/*按下激活颜色*/
.active_f6:active{
    background-color: #F6F6F6;
}

/*字体颜色*/
.rgb_333,.rgb_333 a{
    color:#333333;
}
.rgb_666,.rgb_666 a{
    color:#666666;
}
.rgb_999,.rgb_999 a{
    color:#999999;
}
.rgb_ccc,.rgb_ccc a{
    color:#cccccc;
}
.rgb_ea0,.rgb_ea0 a{
    color: #EA0D04;
}
.rgb_fd4,.rgb_fd4 a{
    color: #FD463E;
}
.rgb_ff0,.rgb_ff0 a{
    color: #FFF000;
}
.rgb_fff,.rgb_fff a{
    color: #FFFFFF;
}
.rgb_09f,.rgb_09f a{
    color: #0099FF;
}
.rgb_d61,.rgb_d61 a{
    color: #d61718;
}

/*字体加粗*/
.font_bold{font-weight: bold;}

/*水平居中*/
.align_center{
    text-align: center;
}

/*清除浮动*/
.clearFloat:after{
    content: '';
    display: block;
    height: 0;
    border: none;
    padding: 0;
    margin: 0;
}

/*容器*/
.container{ /*容器*/
    margin: 0 auto;
}
/*默认为容器清除浮动*/
.container:after{
    content: '';
    display: block;
    clear: both;
}
/*分栏弹性盒子，水平排列左对齐，超出自动换行，盒子内元素水平居中对齐，垂直顶部对齐，交叉轴的起点对齐*/
.flexibleBox{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
    align-items:flex-start;
    align-content: flex-start;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content:center;
    -webkit-align-items:flex-start;
    -webkit-align-content: flex-start;

}

/*分栏，总共为12栏*/
.col1{width: 8.333333%;}
.col2{width: 16.66666%;}
.col3{width: 25%;}
.col4{width: 35%;}
.col5{width: 20%;}
.col6{width: 50%;}
.col7{width: 58.33333%;}
.col8{width: 65%;}
.col9{width: 75%;}
.col10{width:83.33333%;}
.col11{width:91.66666%;}
.col12{width:100%;}
/*特殊情况分为5栏*/
.col_5_2{width: 20%}

.col5 a{display:block;height:3.5rem;padding:0.3rem 0;text-decoration:none}

/*亲一下动画  开始*/
@-webkit-keyframes kiss{
    0%{-webkit-transform: scale(0);transform: scale(0);}
    50%{-webkit-transform: scale(0.8);transform: scale(0.8);}
    100%{-webkit-transform: scale(0);transform: scale(0);}
}

@keyframes kiss{
    0%{-webkit-transform: scale(0);transform: scale(0);}
    50%{-webkit-transform: scale(0.8);transform: scale(0.8);}
    100%{-webkit-transform: scale(0);transform: scale(0);}
}

@-webkit-keyframes kiss_svg{
    0%{-webkit-transform:scale(0);transform:scale(0);}
    50%{-webkit-transform:scale(0.9);transform:scale(0.9);border-width: 2.5rem;}
    75%{-webkit-transform:scale(1.1);transform:scale(1.1);border-width: 1rem;opacity: 1;}
    100%{-webkit-transform:scale(1);transform:scale(1);border-width:1rem;opacity: 0;}
}

@keyframes kiss_svg{
    0%{-webkit-transform:scale(0);transform:scale(0);}
    50%{-webkit-transform:scale(0.9);transform:scale(0.9);border-width: 2.5rem;}
    75%{-webkit-transform:scale(1.1);transform:scale(1.1);border-width: 1rem;opacity: 1;}
    100%{-webkit-transform:scale(1);transform:scale(1);border-width:1rem;opacity: 0;}
}
#is_kiss_box{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 22rem;
    height: 22rem;
    z-index: 101;
}
#is_kiss_box #is_kiss_svg{
    border: 2.5rem solid #ff0092;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    -webkit-animation: kiss_svg 1s  ease-in-out  0.5s;
    animation: kiss_svg 1s  ease-in-out  0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    -webkit-transform:scale(0);
    transform:scale(0);
    z-index: 102;

}
#is_kiss_box #is_kiss{
    width: 20rem;
    height: 20rem;
    margin:auto 0;
    -webkit-animation: kiss 1s ease-in-out forwards;
    animation: kiss 1s ease-in-out forwards;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 103;

}

.indextop{padding-top:0.5rem;background-color:#FBFCFE;line-height:2.76rem;border-bottom:#EEEEEE solid 1px}
.flexbox{display:flex;flex-direction: row;flex-wrap:wrap;justify-content:center;align-items:flex-start;align-content: flex-start;display: -webkit-flex;    -webkit-flex-direction: row;-webkit-flex-wrap: wrap;-webkit-justify-content:center;-webkit-align-items:flex-start;-webkit-align-content: flex-start;}
.col1{text-align:center;width:25%}
.col1 a{color:rgb(165, 165, 165);display:block;}
.col1 a:hover{background-color: #EEEEEE;}
.col3{text-align:right;width:50%;padding-right:1rem}
.lover_list1{margin:0 0.5rem;padding:0;position:relative}
.lover_list1>li{background-color: #ffffff;box-shadow: 0 0 5px #CCC;margin-bottom: 0.8rem;}
.lover_list1 .arcpic{height: 11rem;overflow: hidden;border-bottom: #e5e5e5 solid 1px;}
.lover_list1 .arcpic img{width:100%}
.lover_list1 .arcpic>a{display: block;height: 100%;background-repeat: no-repeat;background-position: center;background-size: cover;}
.lover_list1 .arctit{padding:1rem 0;font-size: 1.15rem;font-weight: normal;}
.lover_list1 .arcinfo{padding-bottom: 0.8rem;font-size: 1rem;}
.lover_list1 .arcbody{line-height: 1.4rem;font-size: 1rem;}
.lb{width:100%;margin:auto}
.hfooter{height:6rem}
/* item_list */
.item_list{position:relative;margin:0 0 0 2px;}
.item{
	width:49%;background:#fff;overflow:hidden;margin:15px 0 0 0;
	border-radius:4px 4px 4px 4px;
	box-shadow:0 1px 3px rgba(34, 25, 25, 0.2);	
}
.item_t{padding:10px 8px 0;}
.item_t .img{background-color:#FFFFFF;margin:0 auto;position:relative;}
.item_t .img a{display:block;}
.item_t .img a img{width:100%;border-radius:5px}
.item_t .img a .tj{width:60%;position:absolute;left:0;right:0;bottom:0;top:25px;margin:auto}
.item_t .price{position:absolute;bottom:10px;right:0px;background-color:rgba(0, 0, 0, 0.2);color:#FFF;
	filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#33000000, endcolorstr=#33000000);
}
.item .btns{display:none;}
.img_album_btn{top:0px;right:0px;position:absolute;background:#ff6fa6;color:#ffffff;height:20px;line-height:20px;width:26%;border-radius:3px;letter-spacing:2px}
.img_album_btn:hover{color:#fff;}
.item_t .title{padding:8px 0;line-height:1.4rem;}
.item_b{margin:.7rem;height:1rem}
.item_b .items_likes .like_btn{background:url("/templets/images/fav_icon_word_new_1220.png") no-repeat;display:block;float:left;height:23px;width:59px;margin-right:5px;}
.item_b .items_likes em{line-height:23px;display:block;float:left;padding:0px 6px;color:#FF6699;font-weight:800;border:1px solid #ff6fa6;border-radius:3px;}
.fr{float:right}
.fl{float:left}
.fl span{color:#7D7D7D}
.fr a{color:#F00}
.item_t .img a .tj{width:60%;position:absolute;left:0;right:0;bottom:0;top:25px;margin:auto}
.footer .footer-nav{background-color:#FFFFFF;display: block;width: 100%;position: fixed;left: 0;bottom: 0;z-index: 10;box-shadow:#dfdfdf 0 -1px 2px}
.footer .footer-nav .sy{background-image: url("/templets/images/sy.png");}
.footer .footer-nav .tc{background-image: url("/templets/images/chat.png");}
.footer .footer-nav .dl{width:3rem;height:3rem;margin:-1.7rem auto 0.5rem;background-image:url("/templets/images/dl.png")}
.footer .footer-nav .dl img{width:3rem;height:3rem}
.footer .footer-nav .vip{background-image: url("/templets/images/vip.png");}
.footer .footer-nav .dqxz{background-image: url("/templets/images/dqxz.png");}
.footer .footer-nav a i{display: block;width: 1.5rem;height: 1.5rem;margin: 0 auto 0 auto;background-size: contain;background-repeat: no-repeat;margin-bottom:.25rem}
.footer .footer-nav a span{display:block;text-align:center;color:#a5a5a5}


@media(min-width:721px) and (max-width:1300px){.express-area a{padding:.3rem}.express-area dl dt{font-size:.5rem;line-height:1rem}.express-area dl dd{padding-right:.6rem;margin-left:3rem;font-size:.4rem;line-height:.8rem}}.express-area-box{position:fixed;bottom:-200%;z-index:1500;width:100%;background-color:#fff;color:#4d525d}.express-area-box header{position:relative;border-top:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2}.express-area-box header h3{margin:0 1.675rem;text-align:center;font-size:1rem;line-height:2.5rem;letter-spacing:1rem}

.express-area-box header .back,.express-area-box header .close{position:absolute;top:0;width:1.675rem;height:2.25rem;border-bottom:none}.express-area-box header .back{display:none;left:0;background:url(/templets/images/back.png) no-repeat center;background-size:.45rem .75rem}.express-area-box header .close{right:0;background:url(/templets/images/close-area.png) no-repeat center;background-size:.675rem .675rem}
.express-area-box article{height:250px;overflow-y:scroll}

.express-area-box a{padding:.5rem;border-bottom:1px solid #e2e2e2;text-align:center;font-size:1rem;line-height:2rem;display:block;letter-spacing:.2rem;text-decoration:none}

.mask{display:none;position:fixed;top:0;left:0;z-index:1400;width:100%;height:100%;background-color:rgba(0,0,0,.5)}
.hot-title p{ color: #ff552e;height: 2.25rem;line-height: 2.25rem;font-size: 1.2rem;font-weight:700;border-bottom: 1px solid #f3f3f3;padding: 0 0.8rem;}
.hot-title p a{font-weight:normal;float:right;text-decoration:none}
.jiantou{height:2.25rem;width:1rem;position:relative;display:inline-block;float:right}
.jiantou i{border: 5px solid #000;border-color: #c8c8c8 transparent transparent transparent;position: absolute;top: 0.8rem;border-left-width: 4px;border-right-width: 4px;}


/*用户登录*/
.side-title{position: relative;height: 2.76rem;font-size: 1.2rem;color: #fff;line-height: 2.76rem;background-color: #333;text-align: center;}
.back-btn{position: absolute;left: 0.5rem;width: 2rem;height: 2.5rem;padding: 0;margin-top: 0.23rem;text-align: center;line-height:1.5rem;font-size: 1rem;background: #333;border: none}
.side-title .back-ico{width: 0.8rem;height: 1.3rem;background-image: url("/templets/images/zjt.png");
}
.hheader{height:2.76rem}
.img-ico{
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-top: -0.2rem;
	margin:-0.2rem 0.3rem 0 0
}
.side_title .text{
	display: inline-block;
	max-width: 15rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.header{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1001;
	width: 100%;
}
button{color:#fff}
.login-box{
	background-image: url("/templets/images/dlbj.jpg");
	background-size: 100% auto;
	background-repeat: no-repeat;
	height: 33rem;
}
.login-box .form{
	margin: -3rem 1rem 0 1rem;
	padding: 1rem;
	background-color: rgba(255, 255, 255, 0.58);
	box-shadow: 0 0 5px #CCC;
	min-height: 22rem;
}
.login-box .form .input{
	position: relative;
	margin-bottom: 1rem;
	border-bottom: #CCC solid 1px;
}
.login-box .form .input i{
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	background-size: contain;
}
.login-box .form .input .ico-name{
	background-image: url("/templets/images/name.png");
}
.login-box .form .input input{
	padding: 0 0.5rem 0 3rem;
	border: none;
	width: 100%;
	display: block;
	line-height: 2.5rem;
}
.login-box .form .input .ico-pass{
	background-image: url("/templets/images/pass.png");
}
.login-box .form .btn{
	width: 100%;
	border-radius: 4px;
	background-color: #28b43f;
	color: #ffffff;
	height: 2.6rem;
	border: none;
	font-size: 1.2rem;
}
.login-box .form .input .ico-email{
	background-image: url("/templets/images/yx.png");
}

/*  个人中心   */
.clear{clear:both}
.hd{background:#FFF;font-size:0.7rem;font-family:"Microsoft Yahei",arial,"Hiragino Sans GB","Hiragino Sans GB W3", "\5b8b\4f53",simsun;color:#333;padding:0.8rem 1.5rem}
.hd p{font-size:1.2rem;font-weight:normal; line-height:2.4rem; letter-spacing:0.08rem}
.hd p span{cursor:pointer; color:#f40;}
.fg{background:#f5f5f5; height:0.4rem;}
.enter{overflow: auto;background: #fff;padding: 1rem 0px;}
.enter a{display:block;float:left;text-align:center;width:33%}
.enter a span{background:#ffde5a; color:#f33e3a; display:inline-block; font-size:1rem; width:5rem; border-radius:1rem;line-height:2rem; padding-top:0.1rem;}
.enter a i{display: block;width: 1.9rem;height: 1.7rem;background-size: contain;background-repeat: no-repeat;margin: 0 auto .5rem auto;}
.enter a .sj{background-image: url(/templets/images/sj.png);}
.enter a .jl{background-image: url(/templets/images/jl.png);}
.enter a .qd{background-image: url(/templets/images/qd.png);}
.bd{background:#fff}
.bd a{line-height: 2.5rem;height: 2.5rem;clear: both;margin:0 0 -0.05rem 4rem;display: block;position:relative;letter-spacing:0.08rem;border-bottom:1px solid #ececec}
.bd .flico{display: block;width: 1.5rem;height: 1.5rem;background-size: contain;background-repeat: no-repeat;margin:0.4rem 1rem 1rem -2.75rem;float:left}
.bd .ft{background-image: url(/templets/images/ft.png);}
.bd .yfb{background-image: url(/templets/images/yfb.png);}
.bd .dl{background-image: url(/templets/images/daili.png);}
.bd .ws{background-image: url(/templets/images/woshou.png);} 
.tcbtn{text-align:center; padding-top:0.75rem; padding-bottom:0.5rem;}
.tcbtn a{display:block}
.tcbtn a span{display:inline-block;line-height: 3.25rem;height: 3.25rem;width:90%;background:#ff7474;color:#fff;border-radius:4px;font-size: 1.2rem;;}

/*  信息发布    */
.t-body{width:100%;margin-top:1rem}
.add{width:90%;margin:auto}
.add input{background:#fff; padding:0px 1%; width:100%; line-height:2.5rem;margin-bottom:0.5rem}
.area-list li{padding:.5rem;border-bottom:1px solid #e2e2e2;text-align:center;font-size:1rem;line-height:2rem;display:block;letter-spacing:.2rem}
.yzm{width:90%;margin:0.5rem auto}
.yzm input{vertical-align:middle;line-height:2.5rem;padding-left:1rem}
.but{width:90%;margin:auto}
.but input{width:100%;border-radius: 4px;background-color: #d01d33;color: #ffffff;height: 2.6rem;border: none;}
/*  信息列表  */
.arclb li{border-bottom:1px solid #f5f5f5;padding:1rem 1.5rem 1rem}
.arclb li a{font-size: 1.2rem;padding-top: 0.25rem;color:#5c5c5c;line-height:1.5rem}
.arclb li .ts{margin-top:0.6rem}
.arclb li .date{color:#999;font-size:1rem;float: left;line-height:1.38rem;}
.arclb li .date span{display:inline-block; margin-right:0.25rem;}
.arclb li .more{text-align:right; font-size:1rem; }
.arclb li .more .zt{display:inline-block; cursor:pointer; padding:0px 0.4rem; color:#999;}
.arclb li .more span{}
.arclb .xg{background-image: url(/templets/images/xg.png);}
.arclb i{display:inline-block;width:1.2rem;height: 1.2rem;background-size: contain;background-repeat: no-repeat;margin-left: 1rem;vertical-align:bottom}
.arclb .sc{background-image: url(/templets/images/sc.png);}
.arclb .sd{background-image: url(/templets/images/sd.png);}
.cpt-toast{position: fixed;left: 50%;top: 50%;text-align: center;animation-duration: 0.3s;max-width: 350px;line-height: 20px;display: inline-block;vertical-align: middle;*vertical-align: auto;*zoom: 1;*display: inline;-moz-transition: all 0.3s ease;-o-transition: all 0.3s ease;-webkit-transition: all 0.3s ease;transition: all 0.3s ease;transform: translate(-50%, -50%);transform: translate3d(-50%, -50%, 0);font-family: '微软雅黑','Microsoft Yahei';-moz-user-select: -moz-none;-ms-user-select: none;-webkit-user-select: none;user-select: none;word-wrap: break-word;}
@keyframes fadeIn {from {opacity: 0;} to {opacity: 1;}}.fadeIn { animation-name: fadeIn; }@keyframes fadeOut {from {opacity: 1;} to {opacity: 0;}}
.fadeOut { animation-name: fadeOut; }
/*    VIP充值    */
.zf{position:fixed;bottom:-200%;z-index:1500;width:100%;background-color:rgba(255, 255, 255, 0);color:#4d525d}
.list{padding:1.5rem; border-bottom:1px solid #ebebeb; cursor:pointer;}
.list i{background-image:url(/templets/images/fjd.png)}
.viplist p{font-size: 1.3rem;letter-spacing:0.1rem;font-family: "Microsoft Yahei",arial,"Hiragino Sans GB","Hiragino Sans GB W3",宋体,simsun;font-weight: normal;}
.viplist i{width:1.4rem;height:1.4rem;display:block;margin-right:1.5rem;float:left;background-size:cover; background-repeat:no-repeat}
.active i{ background-image:url(/templets/images/jd.png)}
.active p{color:#59bfff}
.all-but{text-align:center; padding:0.25rem 4%; padding-top:0.25rem; margin-top:0.5rem;}
.all-but span{text-align:center;display:inline-block;width:100%;border-radius:0.5rem;background:#d04747;line-height: 3rem;height: 3rem;color:#fff;font-size: 1.3rem;cursor:pointer;}
.all-but a{text-align:center;display:inline-block;width:100%;border-radius:1.5rem;background:#41d300;line-height: 3.25rem;height: 3.25rem;color:#fff;font-size: 1.6rem;cursor:pointer;}
.zflist{border-radius:1.5rem;background:url(/templets/images/w_bg.png);overflow:hidden;width:92%;margin:auto}
.zflist .zftitle{position:relative; text-align:left; padding-left:1rem; font-size:1.2rem}
.zflist li{text-align:center; border-bottom:1px solid #ebebeb; line-height:4rem; font-size:1.3rem; cursor:pointer;font-family: Microsoft Yahei;}
.zflist .pay{color:#037bf6;text-align:left;padding-left:4rem;position:relative;letter-spacing: 0.2rem;}
.zflist .pay i{display:inline-block;width:1.7rem;height:1.7rem;background-size:cover; vertical-align:middle;margin-right:1.5rem;}
.zflist .pay em{display:inline-block;position:absolute;right:2.8rem;top: 1.8rem;background:url(/templets/images/yjt.png) no-repeat;background-size:cover;height: 1.2rem;width: 1.2rem;}
.zfb{background:url(/templets/images/zfbico.png) no-repeat;}
.wx{background:url(/templets/images/wxico.png) no-repeat;}
.kf{background:url(/templets/images/kfico.png) no-repeat;}
.esc{background:#fff;border-radius:1.5rem;overflow:hidden;width:92%;margin: 1rem auto 0.8rem}
.esc .text{line-height: 3.5rem;text-align:center;font-size: 1.3rem;cursor:pointer;color:#037bf6;letter-spacing: 0.2rem;font-family: Microsoft Yahei}
.ew{width:95%;margin:35px auto 21px auto;border-bottom:1px dotted #e2e2e2}
.ew h1{font-size:3rem;font-weight:normal; font-family:"Microsoft Yahei";margin-bottom:1rem}
.ew img{width:80%}
.ew p{font-size: 1.1rem;text-align:center;margin: 1.5rem;font-family:"Microsoft Yahei";letter-spacing: 0.15rem;line-height: 1.7rem}
.tishi{width:93%;margin:0 auto 1rem}
.tishi .ltit{margin:0.8rem 0 0 0;color:#d61718;font-size:1.3rem}
.tishi .ltxt{margin-top:10px;color:#999999;font-size:1rem;line-height:1.3rem}
.tishi .ltxt p{margin-bottom:0.5rem}

/*分页样式*/
.pagelist{padding: 0px;margin: 2.5rem 0 1rem;text-align: center;position:relative}
.pagelist .pg-prev { position:absolute; left:10px;}
.pagelist .pg-next { position:absolute; right:10px;}
.pagelist a{margin:0 2px;border: 1px solid #eaeaea;padding: 5px 8px;font-size: 1rem;border-radius:5px;text-decoration:none}
.pagelist .current{background:#5CBDE7; color:#fff;padding: 5px 8px;font-size: 12px;line-height:12px;border-radius:2px;}
.pagelist .active{background:aliceblue}
.breadcrumbs-text{width:93%;margin:auto;font-size:1.1rem;padding: 1rem 0;border-bottom: 1px solid #C1C1C1;color: #6D6C6C}
.headertip{width: 93%;margin: 1rem auto;background: #ef8888;padding: 0.5rem;border-radius: 5px}
.headertip p{line-height: 1.5rem;color: #ffffff;}
.dcity{width:93%;margin:1rem auto 0;overflow:auto;line-height:1.8rem;display: flex;flex-wrap: wrap;}
.dcity .tcity{flex:0 0 25%}
.dcity .tcity a{color:#929292;text-decoration:none}

.tip{width: 96%;margin: 1rem auto 0;border: 1px solid #dedede;padding: 0.3rem;background: #f86161;border-radius: 3px;}
.tip p{color: #fffcfc;font-size: 1.07rem;line-height: 1.7rem;}
.arcbody{width:95%;margin:1.7rem auto 0}
.arcbody *{font-size: 1.15rem !important;line-height:2rem !important;color: #4c4c4c;}
.arcbody p{margin:0.8rem 0}
.arcbody img{width:100% !important;margin:0 0 13px !important;display:block;border-radius:5px}
.tel{width:95%;margin:auto}
.theard{display: flex;justify-content: space-between;align-items: center;border-bottom: 1px solid #CCCCCC;}
.tel *{font-size:1.1rem !important}
.tel h4{font-size:1.1rem;line-height:2.5rem;}
#copyqq{margin-left: 1.5rem;color: #bd1d1d;display:none}
#copywx{margin-left: 1.5rem;color: #bd1d1d;display:none}
#copyphone{margin-left: 1.5rem;color: #bd1d1d;display:none}
.lxfs{background-color:#33BBBA;border-radius:0.5rem;margin-top:1rem;font-size:.5rem}
.lxfs p{color:#f5f5f5;padding: 0 1rem;line-height: 2.7rem}
.ck{font-size:.5rem;margin:1rem auto 0;background-color:#33BBBA;border-radius:0.5rem}
.ck a{color: white;display: block;line-height: 2.8rem;text-align: center;letter-spacing:0.05rem}
.chat{background-color: #e04d4d;margin: 1rem auto 0;border-radius: 0.5rem;} 
.chat a{color: white;display: block;line-height: 2.8rem;text-align: center;letter-spacing:0.05rem}
.u-dot { display: inline-block; width: 8px; height: 8px; background-color: red; border-radius: 50%; margin-left: 5px; vertical-align: middle; display: none; }
.s-dot { width: 0.5rem; height: 0.5rem;position: absolute;top: 50%;left: 70%;border-radius: 50%;background-color: red;display: none !important;}
#server{position: relative;}