* {
    font-family: "苹方", "droid sans fallback", pinghei, Arial, "Lucida Grande", "Microsoft Yahei", "Hiragino Sans GB", "Hiragino Sans GB W3", SimSun, STHeiti;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*transition: all 0.2s ease;-moz-transition: all 0.2s ease;-webkit-transition: all 0.2s ease;-o-transition: all 0.2s ease;-khtml-transition: all 0.2s ease;*/
}


/**谷歌浏览器最小字体12px解决办法 -webkit-text-size-adjust:none; */

html {
    -webkit-text-size-adjust: none;
}

body {
    font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    margin: 0 auto;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

a,
a:hover {
    text-decoration: none;
}

[v-cloak] {
    display: none;
}


/*全局透明样式*/

.div_transparent4 {
    filter: alpha(opacity=40);
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
    background: #000;
    width: 100%;
}

.div_transparent {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    background: #000;
    width: 100%;
}

.div_transparent3 {
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
    background: #000;
    width: 100%;
}

.div_transparent2 {
    filter: alpha(opacity=20);
    -moz-opacity: 0.2;
    -khtml-opacity: 0.2;
    opacity: 0.2;
    background: #000;
    width: 100%;
}

.div_transparent7 {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    background: #000;
    width: 100%;
}

.div_transparent9 {
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9;
    background: #000;
    width: 100%;
}


/*全局圆角样式*/

.div_circle {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -khtml-border-radius: 5px;
}


/*全局圆形样式*/

.div_round {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -khtml-border-radius: 50%;
}

.div_square {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0;
    -khtml-border-radius: 0;
}

.hr-20 {
    width: 100%;
    height: 20px;
    float: none;
    clear: both;
}

.hr-10 {
    width: 100%;
    height: 10px;
    float: none;
    clear: both;
}

.hr-0 {
    width: 100%;
    height: 0px;
    float: none;
    clear: both;
}

.div_black {
    display: none;
    width: 100%;
    position: fixed;
    z-index: 1;
    background: #000;
    top: 0px;
    left: 0px;
    height: 100%;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    background: #000;
    width: 100%;
}

.deliver .deliver-item {
    position: relative;
    cursor: pointer;
}

.deliver .deliverselok {
    color: green;
    cursor: pointer;
    background: #DFF0D7;
}

.deliver .deliver-btns {
    padding: 0px;
}

.money-h1 {
    font-size: 30px;
    color: #ff3000;
}

.money-h2 {
    font-size: 25px;
    color: #ff3000;
}

.money-h3 {
    font-size: 20px;
    color: #ff3000;
}

.money-h4 {
    font-size: 16px;
    color: #ff3000;
}

.money-h5 {
    font-size: 14px;
    color: #ff3000;
}

.money-h6 {
    font-size: 12px;
    color: #ff3000;
}

.money-h5-red {
    font-size: 14px;
    color: #ff3000;
}

.tip-h5 {
    font-size: 12px;
    color: #B2B2B2;
}

.text-warning {
    color: #F2AE43;
}


/*弹性布局*/

.box-between {
    /*两端对齐 项之间间距相等*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    -webkit-box-pack: justify;
}

.box-around {
    /*每项两侧的间隔相等，项与项间距比项与边框间距大一倍*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-around;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-box-pack: justify;
}

.box-left {
    /*弹性布局，左对齐*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-box-pack: justify;
}

.box-center {
    /*居中*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-box-pack: justify;
}

.box-right {
    /*右对齐*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-box-pack: justify;
}

.box-sizing {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.txt-color {
    color: #1A9EEA;
}


/**系统主色调字体颜色*/

.inc-mob-footer {
    width: 100%;
    position: fixed;
    background: white;
    left: 0px;
    bottom: 0px;
    z-index: 5;
    display: none;
    font-weight: 300;
}

.inc-mob-footer td {
    text-align: center;
    -webkit-transform: scale(0.8);
    line-height: 12px;
    position: relative;
}

.inc-mob-footer .currTab {
    color: #009DEF;
}

.inc-mob-footer td i {
    font-size: 26px;
    padding: 0px 0 14px;
}

.inc-mob-footer td p {
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.inc-mob-footer .icon-productApply {
    color: #009AEA;
    font-size: 32px;
    padding: 0px 0 14px 0px;
    margin-top: -3px;
}

.mob-detail-mycart {
    position: fixed;
    z-index: 5;
    right: 10px;
    bottom: 70px;
    background: #009BF2;
    padding: 4px 12px;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 25px;
    line-height: 50px;
}

.mob-nav-top {
    background: white;
    border-bottom: 1px solid #e2e2e2;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.mob-nav-top .nav-top-back {
    position: absolute;
    top: 17px;
    left: 10px;
}

.inc-mob-footer .icon-img {
    width: 25px;
    display: none;
}

.inc-mob-footer .icon-img-open {
    display: inline-block;
}

.inc-mob-footer .release-icon-continer {
    position: absolute;
    top: -78%;
    left: 0px;
    right: 0px;
    margin: auto;
    background: #fff;
    border-radius: 50%;
    background: #fff;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.inc-mob-footer .release-icon-btn {
    width: 100%;
    margin-bottom: 5.5px;
    font-size: 14px;
}

.neisha-btn:hover,
.neisha-btn:active {
    transform: scale(.9, .9);
    -moz-transform: scale(.9, .9);
    -webkit-transform: scale(.9, .9);
    -o-transform: scale(.9, .9);
}

._ppzu_pulblic_mask {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

._ppzu_pulblic_mask ._ppzu_public_mask_continer {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    border-radius: 5px;
    padding: 5px;
}

._public_wx_pay_mask {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 100%;
    text-align: center;
    display: none;
}

._public_wx_pay_mask .wx-pay-success {
    width: 80%;
    background: #009AEA;
    color: #fff;
    display: block;
    padding: 10px 0px;
    margin: auto;
    margin-top: 30%;
}

._public_wx_pay_mask .wx-pay-fail {
    width: 80%;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    padding: 10px 0px;
    margin: auto;
    margin-top: 20px;
}

._public_wx_pc_mask {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

._public_wx_pc_mask .wx-pc-pay-success {
    width: 45%;
    float: left;
    background: #009AEA;
    color: #fff;
    display: block;
    padding: 10px 0px;
    margin: auto;
    text-align: center;
}

._public_wx_pc_mask .wx-pc-pay-fail {
    width: 45%;
    float: right;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    padding: 10px 0px;
    margin: auto;
    text-align: center;
}

.devMode {
    width: 100%;
    padding: 10px;
    background: #FCF8E2;
    color: #8B6E37;
    text-align: center;
    font-weight: 600;
}

#index img {
    transition: all 0.3s ease;
}

#cnzz_stat_icon_1260761079 {
    display: none;
}


/*新版字体 /sty/us/js/jquery-1.9.1.min.js*/

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

@font-face {
    font-family: "iconfont";
    src: url('/sty/us/css/iconfont/iconfont.eot');
    /* IE9*/
    src: url('/sty/us/css/iconfont/iconfont.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('/sty/us/css/iconfont/iconfont.woff') format('woff'), /* chrome, firefox */
    url('/sty/us/css/iconfont/iconfont.ttf') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
    url('/sty/us/css/iconfont/iconfont.svg#iconfont') format('svg');
    /* iOS 4.1- */
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

#shequ img {
    width: 60%;
    margin-right: -10%;
    margin-bottom: 2px;
}

#blog img {
    width: 45%;
    margin-right: 1%;
    margin-bottom: 2px;
}

#msg img {
    width: 45%;
    margin-right: -5%;
    margin-bottom: 2px;
}

#my img {
    width: 40%;
    margin-right: -5px;
    margin-bottom: 2px;
}

#index img {
    width: 41%;
    margin-left: 4%;
}

.inc-mob-footer tr {
    border-top: 1px solid #f8f8f8;
}


/*活动样式*/

.icon-activeFont {
    font-size: 28px;
    color: #009AEA;
    position: absolute;
    left: 6px;
    top: 1px;
    z-index: 99;
}