﻿/*
  * 清除内外边距 - clearance of inner and outer margins *
  * 设置默认字体 - setting the default font *
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-size: 100%;
    font: inherit;*/
    vertical-align: baseline;
}

body {
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    font: 12px/1.5 Microsoft YaHei,tahoma,arial,Hiragino Sans GB,\\5b8b\4f53,sans-serif;
    /*color: #666;*/
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

/* 重置列表元素 - reset the list element */
ol, ul {
    list-style: none;
}

li {
    list-style: none;
}

/* 重置文本格式元素 - reset the text format element */
/*包含以下四种的链接*/
a {
    text-decoration: none;
}
/*正常的未被访问过的链接*/
 a:link {
   text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
	color:black;
	 text-decoration: none;
}
a:hover{text-decoration:none;/*指鼠标在链接*/}
a:hover{text-decoration:none;/*指鼠标在链接*/}
a:active{text-decoration:none;/* 指正在点的链接*/ }
a{ 
	color:#000 !important;
}
em, i {
    font-style: normal;
}


/* 重置表单元素 - reset the form element */
button {
    cursor: pointer;
}

input, textarea {
    font-size: 18px;
    outline: none;
}
input:focus,
textarea:focus{
/* color: #ed1941;*/
 border: 1px solid #FF5500;
 /*background-color: #afdfe4;*/
}

textarea {
    resize: none;
}

button, input {
    font-family: Microsoft YaHei,tahoma,arial,Hiragino Sans GB,\\5b8b\4f53,sans-serif;
}



/* 重置表格元素 - reset the table element */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
  * 图片自适应 - image responsize 
  * 1. 清空浏览器对图片的设置
  * 2. <div>图片</div> 的情况下，图片会撑高 div，这么设置可以清除该影响
*/
img {
    border: 0;
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* 
  * 默认box-sizing是content-box，该属性导致padding会撑大div，使用border-box可以解决该问题
  * set border-box for box-sizing when you use div, it solve the problem when you add padding and don't want to make the div width bigger
*/
div, input {
    box-sizing: border-box;
}


    /* 设置input的placeholder - set input placeholder */
    input::-webkit-input-placeholder {
        color: #919191;
        font-size: .32rem
    }
    /* Webkit browsers */
    input::-moz-placeholder {
        color: #919191;
        font-size: .32rem
    }
    /* Mozilla Firefox */
    input::-ms-input-placeholder {
        color: #919191;
        font-size: .32rem
    }
/* Internet Explorer */

/* 设置嵌套引用（embedded quotation）的引号类型 */
blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }








/* common.css */

.hide, .none {
    display: none;
}



.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0;
}

.clearfix {
    /*zoom 1 就是ie6 清除浮动方式,兼容ie6  
	*  * ie7一下的版本所识别,其他浏览器自动略过
	**/
    *zoom: 1;
}


.center {
    display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box; /* Firefox 17- */
    display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex; /* Firefox 18+ */
    display: -ms-flexbox; /* IE 10 */
    display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
    justify-content: center;
    align-items: center;
}


.w {
    width: 1230px; /*常见为960px、980px、1000px、1200px*/
    margin: 0 auto;
}
.fl{
    float:left;
}
.fr{
    float:right;
}
.txtnowrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*分页的color让变成橙红色*/
.pagination > li > a{
    color:black !important;
}
ul, li {
    list-style: none;
}

/*#wrapper {
    width: 900px;
    height:30px;
    overflow:hidden;
    margin: 20px auto;
}

.data-container {
    margin-top: 5px;
}

    .data-container ul {
        padding: 0;
        margin: 0;
    }

.data-container li {
    margin-bottom: 5px;
    padding: 5px 10px;
    background: #eee;
    color: #666;
}
.paginationjs .paginationjs-pages li > a:hover {
    background: #ff6a00 !important;
}*/
.pagenave {
overflow:hidden;
margin-top:20px;
float:right;
}
.bgqianhui {
    background-color: #f6f6f6;
}

.huikuang {
    border: 1px solid #cbcbcb;
}
.huikuang:hover{
    color:#fff !important;
}
.padding0510 {
    padding: 5px 10px;
}
.radius10 {
    border-radius: 10px;
}

.home_footer {
	width:100%;
	padding:20px;
	background: #F4F4F4;
}
.foot-nav {
	width: 1230px;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
}
.foot-nav li{
	font-size: 16px;
	color: #646464;
	padding: 5px 10px;
	margin-right: 20px;
	cursor:pointer;
	border-bottom:2px solid #f4f4f4;
}
.foot-nav li:hover{
	color:#fe552e;/**/
	border-bottom:2px solid #fe552e;
}
.checked-bg {
	color: #fe552e !important;
	border-bottom: 2px solid #fe552e !important;
}
.foot-min{
	width: 1230px;
	margin: 20px auto;
	padding-left:15px;
}
.foot-min ul{
	overflow:hidden;
    display:none;
}
.foot_nav-cont li{
	float:left;
	margin: 5px 25px 0 0;
}
.nav_list{
	color:#646464 !important;
	font-size:14px;
}
.nav_list:hover{
	color:#fe552e !important;
}
.foot_nav-new{
	display: flex;
	flex-wrap: wrap;
}
.foot_nav-new li{
	width: 33%;
	padding: 10px 0;
	font-size:14px;
}
.foot_nav-new li a{
	width: 80%;
	display: block;
	padding-right: 30px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	padding:10px 0;
}

.advertisement_mask{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    position:fixed;
    left:0;
    top:0;
    z-index:99;
    display:none;
}
.advertisement_mask .advertisement_img{
    width: 300px;
    height: 300px;
    margin:200px auto;
}
.advertisement_mask .advertisement_img img{
    width:100%;
    height:100%;
}
.advertisement_mask .closes{
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 46px;
    border-radius: 50%;
    border: 2px solid #fff;
    text-align: center;
    line-height: 40px;
    margin: 20px auto;
     cursor:pointer;
}
.nonum_mask{
    width:100%;
    height:100%;
    position:fixed;
    left:0;
    top:0;
    background:rgba(0,0,0,0.2);
    z-index:99;
    display:none;
}
.nonum_box{
    width:450px;
    height:200px;
    background:#fff;
    margin:200px auto;
    position:relative;
    overflow:hidden;
}
.font_cuo {
    font-size: 24px;
    position: absolute;
    top: 0;
    right: 5px;
    cursor: pointer;
}
.nonum_icon {
    width: 40px;
    height: 40px;
    border: 3px solid #fe552e;
    color: #fe552e;
    font-size:24px;
    font-weight:bold;
    text-align:center;
    line-height:35px;
    border-radius:50%;
    margin:0 auto;
    margin-top:20px;
}
.nonum_text{
    text-align:center;
    margin:10px auto;
    font-size:14px;
}
.nonum_txt {
    text-align: center;
    font-size: 14px;
    color:#666;
}
.nonum_btn {
    width: 100px;
    height: 30px;
    background: #ef3030;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    margin: 10px auto;
    cursor: pointer;
}

.dialog_mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 19999;
    display: none;
}

.dialog {
    position: fixed;
    z-index: 20000;
    left: 50%;
    top: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transform: translate(-50%, -50%);
    display: none;
}

.dialog_cont {
    position: relative;
    padding: 10px;
    background: #fff;
}

.dialog_loading_cont {
    /*display: none;*/
    padding: 10px;
}

.dialog_loaging_img {
    width: 60px;
    height: 60px;
}
.title {
    width: 1230px;
    margin: 15px auto !important;
}


/*可发定位城市*/
.sort-row .delivery_city {
    height: 32px;
    line-height: 31px;
    border: 1px solid #F53323;
    border-radius: 16px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 16px;
    color: #F53323;
    padding: 0 14px;
}

.sort-row .delivery_city_selected {
    background: #F53323;
    color: #fff;
}

.sort-row:nth-child(2) {
    background: #fff !important;
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding-left: 20px;
}
.sc-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.yy-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.sc-btn:hover .sc_icon {
    display: inline-block;
}
.yy-btn:hover .yy_icon {
    display: inline-block;
}
.sc_icon {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    display: none;
}
.yy_icon {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    display: none;
}

/* 提示 */
.toast_content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    min-width: 320px;
    padding: 0 20px;
    height: 64px;
    line-height: 64px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    text-align: center;
}
