﻿
/*
    样式初始化
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
-------------------------------------------------------------------------------*/

/* Let's default this puppy out
-------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
    /*去除ios系统中元素被触摸时产生的半透明灰色遮罩*/
    /*http://www.cnblogs.com/PeunZhang/p/3407453.html#question_6*/
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
    width: 100%;
    height: 100%;
    background: #eee;
}

/*--ios 禁止微信客户端更改字体大小--*/
/*body {
    -webkit-text-size-adjust: 100% !important;
}*/

i {
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
small,
big,
input,
textarea,
button,
select {
    font-size: inherit;
}

article, aside, figure, footer, header, nav, section, details, summary {
    display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
body {
	box-sizing: border-box;
    font-family: "PingFang SC", "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */

/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
    max-width: 100%;
    max-height: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:
#map img {
		max-width: none;
}
*/

/* force a vertical scrollbar to prevent a jumpy page */
html {
    overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
    q:after {
        content: '';
        content: none;
    }

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: #333333;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
    border-collapse: separate;
    border-spacing: 0;
}

th {
    font-weight: bold;
    vertical-align: bottom;
}

td {
    font-weight: normal;
    vertical-align: top;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
    border: none;
}
/*input ios下圆角bug*/
    input:focus {
        outline:none;
    }

pre {
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

input[type="radio"] {
    vertical-align: text-bottom;
}

input[type="checkbox"] {
    vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
    vertical-align: baseline;
}

.ie6 input {
    vertical-align: text-bottom;
}



table {
    font-size: inherit;
    font: 100%;
}

small {
    font-size: 85%;
}

strong {
    font-weight: bold;
}

td, td img {
    vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* standardize any monospaced elements */


/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
    cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
    margin: 0;
}

/* make buttons play nice in IE */
button,
    input[type=button] {
        width: auto;
        overflow: visible;
    }

/* scale images in IE7 more attractively */
.ie7 img {
    -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/

/* let's clear some floats */
.clearfix:after {
    content: " ";
    display: block;
    clear: both;
}

div, span {
    /*pointer-events: none;*/
    /*禁止页面上的文字选中功能*/
    -webkit-user-select: none;
}



input {
    border-radius: 0;
}

/*弹性盒布局样式兼容*/

.flex1 {  
    -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1; /* OLD - Firefox 19- */
    -webkit-flex: 1; /* Chrome */
    -ms-flex: 1; /* IE 10 */
    flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}  
/* 父元素-横向排列（主轴） */  
.flex-h {  
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */  
    -webkit-box-orient: horizontal;  
    /* 12版 */  
    -webkit-flex-direction: row;  
    -moz-flex-direction: row;  
    -ms-flex-direction: row;  
    -o-flex-direction: row;  
    flex-direction: row;  
}  
/* 父元素-横向换行 */  
.flex-hw {  
    /* 09版 */  
    /*-webkit-box-lines: multiple;*/  
    /* 12版 */  
    -webkit-flex-wrap: wrap;  
    -moz-flex-wrap: wrap;  
    -ms-flex-wrap: wrap;  
    -o-flex-wrap: wrap;  
    flex-wrap: wrap;  
}  
/* 父元素-水平居中（主轴是横向才生效） */  
.flex-hc {  
    /* 09版 */  
    -webkit-box-pack: center;  
    /* 12版 */  
    -webkit-justify-content: center;  
    -moz-justify-content: center;  
    -ms-justify-content: center;  
    -o-justify-content: center;  
    justify-content: center;  
    /* 其它取值如下： 
        align-items     主轴原点方向对齐 
        flex-end        主轴延伸方向对齐 
        space-between   等间距排列，首尾不留白 
        space-around    等间距排列，首尾留白 
     */  
}  
/* 父元素-纵向排列（主轴） */  
.flex-v {  
    display: box !important; /* OLD - Android 4.4- */
    display: -webkit-box !important; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box !important; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox !important; /* TWEENER - IE 10 */
    display: -webkit-flex !important; /* NEW - Chrome */
    display: flex !important; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */  
    -webkit-box-orient: vertical;  
    /* 12版 */  
    -webkit-flex-direction: column;  
    -moz-flex-direction: column;  
    -ms-flex-direction: column;  
    -o-flex-direction: column;  
    flex-direction: column;  
}  
/* 父元素-纵向换行 */  
.flex-vw {  
    /* 09版 */  
    /*-webkit-box-lines: multiple;*/  
    /* 12版 */  
    -webkit-flex-wrap: wrap;  
    -moz-flex-wrap: wrap;  
    -ms-flex-wrap: wrap;  
    -o-flex-wrap: wrap;  
    flex-wrap: wrap;  
}  
/* 父元素-竖直居中（主轴是横向才生效） */  
.flex-vc {  
    /* 09版 */  
    -webkit-box-align: center;  
    /* 12版 */  
    -webkit-align-items: center;  
    -moz-align-items: center;  
    -ms-align-items: center;  
    -o-align-items: center;  
    align-items: center;  
}  
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */  
.flex-1 {  
    -webkit-box-ordinal-group: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 1; /* OLD - Firefox 19- */
    -ms-flex-order: 1; /* TWEENER - IE 10 */
    -webkit-order: 1; /* NEW - Chrome */
    order: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}  
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */  
.flex-2 {  
    -webkit-box-ordinal-group: 2; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 2; /* OLD - Firefox 19- */
    -ms-flex-order: 2; /* TWEENER - IE 10 */
    -webkit-order: 2; /* NEW - Chrome */
    order: 2; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex-s0 {
    flex-shrink: 0;
}

.left {
    float: left;
}

.right {
    float: right;
}

.b2top {
    width: 46px !important;
    height: 46px !important;
}

html {
    font-size: 50px;
}


/*一像素 上下边框*/

.before {
    position: relative;
}

.before:before {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    content: '';
    height: 1px;
    transform: scaleY(0.5);
    -moz-transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    background-color: #e3e3e3;
}

.after {
    position: relative;
}

.after:after {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: '';
    height: 1px;
    transform: scaleY(0.5);
    -moz-transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    background-color: #e3e3e3;
}

input {
    -webkit-appearance: none;
}


/*avalon 隐藏渲染前的插值表达式*/
.ms-controller {
    display: none;
}

[v-cloak] {
    display: none !important;
}

.load_tips {
    display: block;
    text-align: center;
    padding-top: 10px;
    height: 40px;
}
.layui-m-layer0 .showTips.layui-m-layerchild {
    width:70%;
}
.showTips.layui-m-layerchild h3 {
    padding: 0 10px;
    height: 30px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px 5px 0 0;
    text-align: center;
}

.showTips .layui-m-layercont {
    padding: 10px 10px;
    line-height: 22px;
    text-align: center;
}

.showTips .layui-m-layerbtn {
    height: 36px;
    line-height: 36px;
    background: none;
}

    .showTips .layui-m-layerbtn span {
        font-size: 16px;
    }



.layer_alert .layui-m-layercont {
    padding: 0 30px 20px;
}

.layer_alert .layui-m-layerbtn span[yes] {
    color: #61cf4a;
}

.layui-m-layerbtn span {
    font-size: 16px;
}

.PriceUnitCommon, .PriceUnitCommonMix {
    font-family: "iconfont" !important;
    font-style: normal;
    font-size: 12px;
    color: #ff6162;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}


@font-face {
    font-family: "iconfont";
    src: url('iconfont.eot?t=1515408976153'); /* IE9*/
    src: url('iconfont.eot?t=1515408976153#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('data:application/x-font-woff;charset=utf-8;base64,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') format('woff'), url('iconfont.ttf?t=1515408976153') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
    url('iconfont.svg?t=1515408976153#iconfont') format('svg'); /* iOS 4.1- */
}
/*avalon 隐藏渲染前的插值表达式*/
.ms-controller{
    display:none;
}
[v-cloak] {
  display: none !important;
}
.load_tips {
    display:block;
    text-align:center;
    padding-top:10px;
    height:40px;
}
.layui-m-layer0 .showTips.layui-m-layerchild {
    width:70%;
}
.showTips.layui-m-layerchild h3 {
    padding: 0 10px;
    height: 30px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px 5px 0 0;
    text-align: center;
}
.showTips .layui-m-layercont {
    padding: 10px 10px;
    line-height: 22px;
    text-align: center;
}
.showTips .layui-m-layerbtn {
   height:36px;
   line-height:36px;
   background:none;
  
}
    .showTips .layui-m-layerbtn span {
        font-size:16px;
    }


    
        .layer_alert .layui-m-layercont {
            padding:0 30px 20px ;
        }

        .layer_alert .layui-m-layerbtn span[yes] {
            color: #ff6162;
        }
        .layer_alert .layui-m-layerbtn span {
           
            font-size: 16px;
            
        }
.PriceUnitCommon ,.PriceUnitCommonMix {
            font-family:"iconfont" !important;
            font-style:normal;
            font-size:12px;
            color:#ff6162;
            -webkit-font-smoothing: antialiased;
            -webkit-text-stroke-width: 0.2px;
            -moz-osx-font-smoothing: grayscale;
        }
       
      
@font-face {font-family: "iconfont";
  src: url('iconfont.eot?t=1515408976153'); /* IE9*/
  src: url('iconfont.eot?t=1515408976153#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('data:application/x-font-woff;charset=utf-8;base64,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') format('woff'),
  url('iconfont.ttf?t=1515408976153') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
  url('iconfont.svg?t=1515408976153#iconfont') format('svg'); /* iOS 4.1- */
}