﻿@charset "UTF-8";

/*css reset*/

*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    font-size: 100px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    background-color: #F5F6F8;
    margin: 0 auto;
}

div,
form,
ul,
ol,
li,
span,
dl,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
    font-family: inherit;
}

ul,
ol,
li {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-color: transparent;
}

th,
td {
    padding: 0;
}

input,
select,
textarea,
button {
    outline: 0;
    border: 0;
    background: none;
    vertical-align: middle;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0;
    padding: 0;
}

textarea {
    resize: none;
}

img {
    vertical-align: middle;
    /*width: 100%; */
}

pre {
    white-space: normal;
}

i,
em {
    font-style: normal;
}


/*默认链接颜色*/

a {
    color: #505050;
    text-decoration: none;
    outline: 0;
    outline-width: 0;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    cursor: pointer;
}


/*工具类*/

.Wid100 {
    width: 100% !important;
}

.fbox {
    display: flex;
}

.db {
    display: block;
}

.di {
    display: inline-block;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.visible {
    visibility: visible;
}

.hidden {
    visibility: hidden;
}

.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

.por {
    position: relative;
}

.poa {
    position: absolute;
}

.pof {
    position: fixed;
    z-index: 9;
}

.ovh {
    overflow: hidden;
}

.fs-normal {
    font-weight: normal;
}

.fs-bold {
    font-weight: bold;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clear {
    clear: both;
}

:root {
    --main-color: #002D7A;
    --blue-color: #7b88ad;
    --ash-color: #F2F3F7;
    --white-color: #fff;
}


/*自定义滚动轴*/

.scrollBar::-webkit-scrollbar {
    position: relative;
    left: 0;
    width: 6px;
    /*滚动条整体样式*/
    height: 2px;
    /*高宽分别对应横竖滚动条的尺寸*/
}

.scrollBar::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: var(--main-color);
}

.scrollBar::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #EDEDED;
}

.adorn_blue.adorn:after {
    background-color: var(--blue-color);
}


/*移动端样式*/

html,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/*===========复用样式===========*/

.h600 {
    height: 600px !important;
}

.w25 {
    width: 25%;
}

.f12 {
    font-size: 12px !important;
}


/*分页*/

.paging {
    position: absolute;
    bottom: 80px;
    right: 110px;
}

.paging li {
    float: left;
    color: var(--white-color);
    height: 24px;
    line-height: 22px;
    cursor: pointer;
}

.paging li:not(:last-child) {
    width: 24px;
    border: 1px solid var(--white-color);
    text-align: center;
    border-radius: 6px;
    margin-right: 12px;
}

.paging li:not(:last-child).active {
    background-color: var(--white-color);
    color: var(--main-color);
}


/*===========按钮控件===========*/


/*.btn{-webkit-appearance: none;display: inline-block;text-align: center;width: 200px; height: 60px; line-height: 60px;font-size: 16px;font-family: inherit;color: #fff;background: #A7262B;}*/


/*.btn-block{display: block;width: 100%;}*/


/*.btn-round{border-radius: 5px;}*/


/*.btn-lg-round{border-radius: 20px;}*/

[v-cloak] {
    display: none
}


/*单行溢出省略*/

.omit {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*多行溢出省略*/

.omit1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-align: justify;
    overflow: hidden;
}

.omit2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: justify;
    overflow: hidden;
}

.omit3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-align: justify;
    overflow: hidden;
}


/*============图标=============*/

[class*="icon"] {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.h_box {
    height: 55.83vw;
    position: relative;
}

.h_boxCover {
    height: 18.88vw;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.h_search {
    width: 100%;
    height: 13.58vw;
    padding: 2.69vw 4.18vw;
    display: flex;
    align-items: center;
}

.h_logo {
    flex: none;
    width: 18.89vw;
    height: 4.63vw;
    margin-right: 2.87vw;
}

.h_inputBox {
    flex: 1;
    height: 100%;
    border-radius: 10vw;
    /*padding: 0 2.96vw;*/
    padding-left: 8.7vw;
    background: #fff url("../images/newIndex/h_search.png") no-repeat center left 2.96vw;
    background-size: 3.8vw 3.8vw;
}

.h_inputBox input {
    width: 92%;
    height: 100%;
}


/*10个菜单*/

.h_module {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 3.68vw;
    background-color: #fff;
}

.h_module a {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.h_module p {
    color: #333333;
    margin-top: 2.58vw;
    font-size: 2.78vw;
}

.h_module img {
    width: 100%;
    height: auto;
    /*width: 11.85vw;*/
    /*height: 11.85vw;*/
    margin-top: 3.33vw;
}


/*.h_subscript 手写折扣*/

.h_module a .h_subscript {
    position: absolute;
    width: 7.41vw;
    height: 3.33vw;
    text-align: center;
    line-height: 3.98vw;
    background: url("../images/newIndex/h_zhe.png") no-repeat;
    background-size: 100%;
    top: 3.33vw;
    right: .15vw;
    font-size: 2.18vw;
    color: #fff;
}


/*拼团*/

.h_pin {
    /*width: 94.44vw;*/
    margin: 1.4vw 2.89vw 0;
}

.h_pin img {
    width: 100%;
}

.h_pinList {
    position: absolute;
    top: 23vw;
    left: 0;
    right: 1.48vw;
    display: flex;
    justify-content: space-between;
    background-color: #ff3d00;
    padding: 2.5vw 1.48vw 2.6vw 1.48vw;
    width: 100%;
    border-radius: 0 0 2.31vw 2.31vw;
}

.h_pinBox {
    flex: none;
    width: 29.63vw;
    color: #fff;
}

.h_pinBox img {
    width: 29.63vw;
    height: 29.63vw;
    border-radius: 2.68vw;
}

.h_pinBtn {
    padding: 0 1.58vw;
    margin-top: 2.31vw;
}

.h_pinBtn01 {
    height: 5vw;
    overflow: hidden;
    font-size: 3.52vw;
}

.h_pinBtn02 {
    flex: none;
    margin-right: .88vw;
    font-size: 1.98vw;
    border-radius: 0.19vw;
    border: solid 0.19vw #ffffff;
    padding: 0.2vw 0.4vw;
}

.h_pinBtn03 {
    font-size: 2.41vw;
}

.h_pinBtn04 {
    height: 3.87vw;
    line-height: 3.87vw;
    font-size: 2.78vw;
    margin-top: 1.4vw;
}

.h_pinBtn04 .f_jiaqian {
    width: 12.8vw;
    overflow: hidden;
    display: inline-block;
}

.h_pinBtn05 {
    float: right;
    height: 3.33vw;
    line-height: 3.38vw;
    padding: 0 .4vw;
    color: #FF3D00;
    font-size: 1.98vw;
    background-color: #ffffff;
    border-radius: 2vw;
}


/*会员权益*/

.h_vipBox {
    width: 94.44vw;
    background-color: #ffffff;
    border-radius: 1.85vw;
    margin: 0 auto;
    margin-top: 48vw;
    margin-bottom: 1.39vw;
}

.h_vipTop {
    padding-top: 3.06vw;
    margin-left: 2.87vw;
}

.h_vipTop img {
    width: 39.46vw;
    height: 4.26vw;
}

.h_vipTitle {
    display: inline-block;
    font-size: 2.78vw;
    color: #ffffff;
    margin-top: 1.48vw;
    margin-left: 3.06vw;
    border-radius: 0.46vw;
    padding: .36vw 1.68vw;
    background-color: #F59AAB;
}

.h_vipList {
    padding: 2.96vw 2.03vw 2.67vw;
    display: flex;
    text-align: center;
    justify-content: space-around;
}

.h_vipList img {
    width: 13.89vw;
    height: 13.89vw;
    border-radius: 50%;
}

.h_vipList .h_vip01 {
    color: #62461f;
    font-size: 2.78vw;
    margin-top: 2.08vw;
    margin-bottom: .65vw;
}

.h_vipList .h_vip02 {
    font-size: 2.59vw;
    color: #999999;
}

.h_lure {
    display: flex;
    border-top: 1px solid #DDDDDD;
}

.h_lure a {
    flex: 1;
    text-align: center;
    padding-top: 1.85vw;
    padding-bottom: 5vw;
}

.h_lure a:not(:first-child) {
    border-left: 1px solid #DDDDDD;
}

.h_lure h6 {
    font-size: 3.33vw;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1.84vw;
}

.h_lure img {
    width: 14.91vw;
    height: 14.91vw;
}

.h_good {
    color: #ffffff;
    width: 94.44vw;
    height: 13.72vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 3.06vw 10px;
    background-image: linear-gradient(-90deg, #ff5402 0%, #ff1438 100%);
    border-top-left-radius: 1.85vw;
    border-top-right-radius: 1.85vw;
}

.h_good .h_huo {
    width: 4.91vw;
    height: 6.02vw;
    margin-right: 2.22vw;
}

.h_good span {
    font-size: 4.26vw;
    font-weight: bold;
    letter-spacing: 1px;
    margin-right: 1.85vw;
}

.h_good a {
    flex: 1;
    font-size: 2.78vw;
    text-align: right;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.h_good a .h_jian {
    width: 2.78vw;
    height: 2.59vw;
    margin-left: 1.6vw;
}


/*冯*/

.inx-main {
    width: 100%;
}


/*好品样式*/

.f_container {
    margin: 0 2.69vw;
}


/*导航*/

.recommend {
    overflow: hidden;
    /*display: flex;
    justify-content: space-around;*/
    margin-top: 2.69vw;
    white-space: nowrap;
    overflow-x: auto;
}

.recommend::-webkit-scrollbar {
    display: none;
}

.recommend_list {
    width: 18vw;
    text-align: center;
    height: 13vw;
    position: relative;
    display: inline-block;
}

.recommend_list:not(:first-child):before {
    position: absolute;
    left: 0;
    top: 9px;
    content: '';
    width: 0.19vw;
    height: 4.07vw;
    background: #c8c8c8;
}

.reco_title {
    font-size: 3.89vw;
    color: #333333;
    font-weight: bold;
}

.reco_guess {
    font-size: 3.33vw;
    color: #999999;
    opacity: 0.8;
}

.active .reco_title {
    color: #ff6c3e;
}

.active .reco_guess {
    color: #ff6c3e;
}

.active .reco_line {
    width: 6.85vw;
    height: 0.74vw;
    background-image: linear-gradient(-90deg, #ff6c3e 0%, #ffa64c 100%);
    border-radius: 0.37vw;
    display: block;
    position: absolute;
    bottom: 1vw;
    left: 50%;
    transform: translate(-50%, -50%);
}

.f_banner {
    margin-top: 1.6vw;
    margin-bottom: 1.85vw;
}

.banner_img {
    width: 94.54vw;
    height: 42.59vw;
    border-radius: 1.85vw;
}


/*优惠部分*/

.prefer_cont {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.prefer_list {
    width: 30.46vw;
    height: 43.8vw;
    background-color: #fff;
    position: relative;
    border-radius: 2vw;
    overflow: hidden;
}

.prefer_bj {
    background: url(../images/newIndex/f_youhui.png) no-repeat center;
    background-size: cover;
}

.Gei_youhui_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: 100%;
    z-index: -1;
}

.youhui_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shopkeeper {
    width: 25vw;
    height: 4.63vw;
    line-height: 4.63vw;
    text-align: center;
    background-image: linear-gradient(-90deg, #ff0f98 1%, #ff8c18 100%);
    border-radius: 1.85vw 0 1.85vw 0;
    font-size: 2.67vw;
    color: #fff;
    position: absolute;
    top: 1px;
    left: 0;
    overflow: hidden;
}

.group_cont {
    position: absolute;
    left: 0;
    bottom: 16%;
    width: 100%;
    text-align: center;
    padding: 0 1.68vw;
}

.group_cont .group {
    font-size: 3.18vw;
    color: #ff0602;
    display: block;
}

.prefer_list .discount {
    margin-top: -1.08vw;
    font-size: 2.22vw;
    color: #999999;
    opacity: 0.5;
}

.immediately {
    width: 21.94vw;
    height: 5vw;
    background-image: linear-gradient(-90deg, #fe6138 0%, #ff0602 100%);
    box-shadow: 0 0.37vw 1.48vw 0 rgba(255, 6, 2, 0.3);
    border-radius: 2.21vw;
    font-size: 2.55vw;
    color: #ffffff;
    text-align: center;
    position: absolute;
    bottom: -1.6vw;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*滑动产品部分*/

.trial_cont {
    margin-top: 2.13vw;
    display: flex;
    justify-content: space-between;
}

.trial_lf {
    width: 46.3vw;
    height: 64.81vw;
}

.trial_img {
    width: 100%;
    height: 100%;
    border-radius: 1.85vw;
}

.trial_lr_cont {
    width: 46.3vw;
    height: 64.81vw;
}

.trial_list {
    overflow: hidden;
}

.trial_lr {
    height: 31.11vw;
    background-color: #ffffff;
    border-radius: 1.85vw;
    padding: 3.7vw 3vw;
    display: flex;
    justify-content: space-between;
}

.trial_lr_text {
    width: 54%;
}

.trial_h2 {
    font-size: 4.63vw;
    color: #333333;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 1.8vw;
}

.trial_red {
    font-size: 3.89vw;
    color: #ff0d06;
}

.trial_button {
    width: 19.44vw;
    height: 6.48vw;
    line-height: 6.48vw;
    background-image: linear-gradient(-90deg, #ff1097 0%, #ff7c28 100%);
    border-radius: 3.24vw;
    font-size: 3.7vw;
    color: #ffffff;
    text-align: center;
    margin-top: 2.4vw;
}

.trial_choose {
    width: 18vw;
    height: 18vw;
    margin-top: 4vw;
}


/*公用标题*/

.f_z_title {
    font-size: 4.81vw;
    color: #333333;
    text-align: center;
    margin-top: 5vw;
    margin-bottom: 5vw;
}


/*主要产品部分*/

.f_min_product {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /*padding-bottom: 20vw;*/
}

.f_list_li {
    width: 49%;
    padding-bottom: 2.22vw;
    background-color: #ffffff;
    border-radius: 1.85vw;
    margin-bottom: 2.22vw;
}

.product_img {
    width: 100%;
    height: 46.39vw;
    border-radius: 1.85vw 1.85vw 0 0;
}

.f_list_title {
    margin-top: 2.8vw;
    padding: 0 1.85vw;
}

.title_h3 {
    font-size: 3.89vw;
    color: #333333;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 1.2vw;
}

.f_introduce {
    font-size: 3.33vw;
    color: #999999;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.f_price {
    margin-top: 1.68vw;
    color: #ff6d1a;
}

.f_pri_red {
    font-size: 4.26vw;
}

.f_pri_red em {
    font-size: 2.96vw;
}

.f_price .delete {
    font-size: 2.59vw;
    color: #999999;
    text-decoration: line-through;
}


/*拼购*/

.T-topMenu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    padding: 3vw;
    justify-content: space-between;
}

.T-fan {
    /*width: 8vw;*/
    height: 5.19vw;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
    /* Opera */
}

.T-fen {
    height: 5.19vw;
}


/*免费使用*/

.T-FreeUse01 {
    font-size: 3.15vw;
    color: #fff;
}

.T-FreeUse01 i {
    font-size: 2.78vw;
    text-decoration: line-through;
    margin-left: 2.36vw;
}

.T-FreeUse02 {
    display: inline-block;
    margin-top: 1.48vw;
    padding: .74vw .94vw;
    background-color: #fff;
}

.T-FreeUse02 p {
    font-size: 3.15vw;
    line-height: 1.4;
    padding: .8vw 2.41vw .36vw;
    color: #ff4242;
    border: 1px solid #FFB5B6;
    background-color: #FFE7E7;
}

.T-xinxi {
    color: #fff;
    padding: 2vw 3.24vw;
    background-image: linear-gradient(-90deg, #FF5100 0%, #FE4543 100%);
    z-index: 999;
}

.T-tuan {
    display: flex;
    align-items: center;
    height: 6.58vw;
}

.T-tuan > p {
    font-size: 3.89vw;
}

.T-tuan > p > span {
    font-size: 3.15vw;
    margin-right: 1.08vw;
}

.T-tuan > i {
    width: 10.74vw;
    height: 4.36vw;
    line-height: 4.38vw;
    font-size: 2.68vw;
    margin-left: 2.98vw;
    text-align: right;
    padding-right: 1.28vw;
}

.T-box {
    /*width: 94.44vw;*/
    margin: 2.04vw 2.89vw 0;
    padding: 1.68vw 3.43vw;
    background-color: #fff;
    border-radius: 2.78vw;
}

.T-h6 {
    font-size: 4.44vw;
    font-weight: bold;
    line-height: 7.78vw;
    text-align: justify;
}

.T-sell {
    font-size: 3.52vw;
    color: #999999;
    height: 8.38vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.T-lei {
    min-width: 10vw;
    font-size: 3.52vw;
    color: #999999;
}

.T-list {
    min-height: 9.28vw;
    display: flex;
    align-items: center;
}

.T-list:not(:first-child) {
    border-top: 1px solid #f3f3f3;
}

.T-xuan {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.T-xuan .T-gg {
    font-size: 3.33vw;
}

.T-xuan img {
    width: 1.48vw;
    height: 2.59vw;
    margin-left: 10px;
}


/*弹窗-规格*/

.spec-div {
    background: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 0 3vw;
    box-shadow: 0 0 10px 0 #333;
}

.weui-popup__overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: 10;
}

.colse {
    position: absolute;
    top: 2vw;
    right: 2vw;
    width: 5vw;
    height: 5vw;
    font-size: 5.5vw;
}

.sgoods-div {
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding-top: 3vw;
}

.sgoods-div img {
    width: 25vw;
    height: 25vw;
    margin-right: 3vw;
    border-radius: 5px;
}

.sgoods-info {
    font-size: 3.4vw;
    line-height: 170%;
    color: #555;
}

.sgoods-info .sprice {
    font-size: 3.8vw;
    color: #FF5100;
}

.sgoods-info .snum {
    color: #999;
}

#yxspec {
    color: #FF5100;
}

.spec-select {
    width: 100%;
    margin-top: 3vw;
    height: 75vw;
    overflow-y: auto;
}

.specone {
    padding: 3vw 0;
    display: table;
    width: 100%;
    line-height: 150%;
}

.spec-case {
    line-height: 8vw;
    font-size: 3.4vw;
    padding: 0 1vw;
}

.specone span {
    float: left;
    margin-right: 3vw;
    margin-bottom: 1vw;
    padding: .5vw 2vw;
    background: #f1f1f1;
    color: #333;
    font-size: 3.2vw;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    position: relative;
}

.adpl-div {
    width: 100%;
    padding: 3vw 0;
    display: flex;
    align-items: center;
    font-size: 3.4vw;
}

.num-div {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.stepper {
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    background: #FCFCFC;
}

.stepper span {
    width: 35px;
    height: 27px;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #999;
    background-color: #fff;
    border: 1px solid #dedede;
}

.stepper input {
    width: 35px;
    height: 27px;
    text-align: center;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.button-buy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    height: 11.89vw;
    line-height: 11.89vw;
    text-align: center;
    font-size: 16px;
    letter-spacing: 3px;
    background-color: #FF5100;
}

.T-Explain-title {
    color: #333;
    height: 9.26vw;
    font-size: 3.9vw;
    text-align: center;
    line-height: 9.26vw;
    position: relative;
}

.T-Explain-box {
    padding-bottom: 12vw;
}

.T-Explain-box > div {
    padding-top: 1vw;
    font-weight: bold;
    font-size: 3.33vw;
}

.T-Explain-box > p {
    padding-top: 1vw;
    padding-bottom: 3vw;
    font-size: 3.33vw;
}

.T-canJia {
    height: 9.85vw;
    display: flex;
    align-items: center;
}

.T-canJia h5 {
    flex: 1;
}

.in_group {
    padding: 2vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E9E9E9;
}

.inoup_pic {
    display: flex;
    align-items: center;
    color: #6a6a6a;
    font-size: 3.52vw;
}

.inoup_pic img {
    width: 12vw;
    height: 12vw;
    margin-right: 3.24vw;
    border-radius: 50%;
}

.inoup_right {
    display: flex;
    align-items: center;
}

.inoup_btn {
    width: 17.22vw;
    height: 6.68vw;
    color: #fff;
    font-size: 3.33vw;
    text-align: center;
    line-height: 6.98vw;
    background-color: #FF5100;
    border-radius: 3.33vw;
}

.short_of {
    font-size: 3.15vw;
    text-align: center;
    margin-right: 2.78vw;
}

.short_of p:first-child {
    margin-bottom: 1.08vw;
}

.short_of p span {
    color: #FF5100;
}

.diy-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    width: 80%;
    padding: 3.28vw;
    border-radius: 8px;
    overflow: hidden;
    transform: translate(-50%, -50%) !important;
    background-color: #fff;
    z-index: 99;
}

.diy-pin h3 {
    height: 52px;
    line-height: 52px;
    font-size: 16px;
    text-align: center;
}

.take_bill {
    text-align: center;
    color: #333333;
    font-size: 3.5vw;
    padding-bottom: 2vw;
}

.diy-pin-btn {
    height: 10.19vw;
    line-height: 10.19vw;
    text-align: center;
    background: #FF5100;
    color: #fff;
    border-radius: 1vw;
}

.take_end {
    padding: 3vw 2vw 5vw 2vw;
    display: flex;
    justify-content: center;
}

.take_end .end_moster {
    flex: none;
    width: 12.5vw;
    height: 12.5vw;
    border-radius: 50%;
    position: relative;
    margin-right: 2vw;
}

.end_moster .ground_moster + img {
    box-shadow: 0 0 2px 1px #FFC635;
}

.take_end img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.ground_moster {
    position: absolute;
    top: -6px;
    left: -12px;
    color: #AD7A06;
    border: 1px solid #fff;
    border-radius: 10vw;
    background: #FFC635;
    font-size: 2.5vw;
    padding: 0 1.5vw;
}

.T-conBox {
    padding-bottom: 18vw;
}

.T-foot {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14.81vw;
    background-color: #FCFCFC;
    display: flex;
    align-items: center;
}

.T-shou,
.T-kefu {
    flex: none;
    width: 16.88vw;
    display: flex;
    font-size: 3.33vw;
    color: #999999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.T-shou a, .T-kefu a {
    text-align: center;
}

.T-shou img,
.T-kefu img {
    width: 5.09vw;
    height: 5.09vw;
    margin-bottom: 1.09vw;
    background-color: #Fff;
}

.T-MsiBtn {
    flex: 1;
    height: 10.19vw;
    margin: 0 2.89vw;
    color: #fff;
    text-align: center;
    line-height: 10.19vw;
    border-radius: 6vw;
    background-color: #FD671A;
}

.T-xiangTou {
    height: 10.93vw;
    line-height: 10.93vw;
    text-align: center;
}

.T-xiangTou span {
    margin: 0 2.78vw;
    padding: 0 2.78vw;
    position: relative;
}

.T-xiangTou span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: -21.39vw;
    right: 100%;
    height: 1px;
    background-color: #999999;
}

.T-xiangTou span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    right: -21.39vw;
    height: 1px;
    background-color: #999999;
}

.T-xiang img {
    max-width: 100%;
}


/*分享拼团详情*/

.T-share-btn {
    display: block;
    width: 76%;
    color: #fff;
    font-size: 4vw;
    margin: 5.56vw auto 0;
    height: 10.89vw;
    line-height: 10.89vw;
    text-align: center;
    background-color: #FF5100;
    border-radius: 10vw;
}

.T-Fu {
    border-radius: 3.7vw;
    background-color: #fff;
    padding-top: 7.69vw;
    margin-top: -7.69vw;
    position: relative;
    z-index: 9
}

.T-shangpsBox {
    height: 23.89vw;
    display: flex;
    margin-bottom: 40%;
    padding: 0 5.56vw;
}

.T-shangps {
    flex: none;
    width: 23.89vw;
    height: 100%;
    margin-right: 3.33vw;
    border-radius: 0.93vw;
}

.shtitl {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shtitl p {
    font-size: 3.89vw;
    letter-spacing: 1px;
    font-weight: bold;
}

.shtitl span {
    color: #2a2a2a;
    font-size: 3.7vw;
    margin-top: 1.87vw;
    margin-bottom: 3.09vw;
}

.shtitl h4 {
    color: #fd671a;
    font-size: 3.15vw;
}

.T-haiBao {
    height: 48.15vw;
}

.T-bg01 {
    width: 100%;
}

.T-renYuan {
    position: absolute;
    top: 8.08vw;
    left: 0;
    right: 0;
}

.T-touXiang {
    display: flex;
    justify-content: center;
}

.T-touXiang img {
    width: 9.89vw;
    height: 9.89vw;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #f00;
}

.T-renYuan {
    color: #FFFFFF;
    text-align: center;
}

.T-renYuan h5 {
    font-size: 4.44vw;
    font-weight: bold;
    letter-spacing: 2px;
}

.T-renYuan p {
    margin-top: 2.15vw;
    margin-bottom: 2.68vw;
    font-size: 3.52vw;
    color: #ffffff;
    opacity: 0.6;
}

.T-touXiang img:not(:first-child) {
    margin-left: -2.18vw;
}

.T-ImgBox:after {
    content: '';
    position: absolute;
    width: 7.41vw;
    top: 50%;
    left: -10.18vw;
    height: 2px;
    background-color: #fff;
}

.T-ImgBox:before {
    content: '';
    position: absolute;
    width: 7.41vw;
    top: 50%;
    right: -10.18vw;
    height: 2px;
    background-color: #fff;
}


/*邀请好友助力*/

.InviteHelp-bg {
    height: 100vh;
    padding-top: 3.24vw;
    position: relative;
    overflow: hidden;
}

.InviteHelp-img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.InviteHelp-01 {
    width: 92.59vw;
    margin: 0 auto;
    padding: 4.28vw 4.06vw;
    background-color: #ffffff;
    border-radius: 2.78vw;
}

.InviteHelp-xin {
    display: flex;
}

.InviteHelp-tou {
    flex: none;
    width: 9.81vw;
    height: 9.81vw;
    margin-right: 2.69vw;
}

.InviteHelp-name {
    height: 9.81vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.InviteHelp-name p {
    line-height: 1.2;
}

.InviteHelp-name p:first-child {
    color: #904e00;
    font-size: 3.7vw;

}

.InviteHelp-name p:last-child {
    color: #552d09;
    font-size: 3.18vw;
}

.InviteHelp-02 {
    display: flex;
    padding: 1.85vw;
    margin: 3.89vw -1.39vw 4.28vw;
    background-color: #fff9e9;
    border-radius: 1.85vw;
}

.InviteHelp-goods {
    flex: none;
    width: 25vw;
    height: 25vw;
    margin-right: 2.96vw;
    background-color: #f00;
    border-radius: 1.85vw;
}

.InviteHelp-goods-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.InviteHelp-goods-name {
    font-size: 3.6vw;
    text-align: justify;
}

.InviteHelp-goods-money {
    line-height: 1;
    font-size: 3.15vw;
    margin-top: 1.68vw;
    margin-bottom: 2.08vw;
}

.InviteHelp-goods-money span {
    margin-right: 1.57vw;
    color: #fd671a;
}

.InviteHelp-goods-money i {
    font-size: 2.78vw;
    color: #c8c8c8;
    text-decoration: line-through;
}

.InviteHelp-goods-txt {
    font-size: 2.78vw;
    color: #999999;
}

.InviteHelp-goods-btn {
    display: block;
    width: 74.07vw;
    height: 11.11vw;
    text-align: center;
    line-height: 11.11vw;
    background-image: linear-gradient(#c97ca0, #7f66db);
    box-shadow: inset 0 1.48vw 3.61vw 0 rgba(210, 178, 227, 0.7);
    border-radius: 5.56vw;
    font-size: 4.63vw;
    color: #ffffff;
    margin: 0 auto;
}

.InviteHelp-03 {
    height: calc(100vh - 76vw);
    padding: 0 2.78vw;
    margin: 3.24vw 3.7vw;
    background-color: #fff;
    border-radius: 2.78vw;
}


/*成功免费使用*/

.Success-InviteHelp {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60.19vw;
    height: 10.19vw;
    margin: 0 auto;
    box-shadow: 0 0 12px 1px inset #FDCFA1;
    background-color: #fde7be;
    border-radius: 1.48vw 1.48vw 9.26vw 9.26vw;
}

.Success-InviteHelp img {
    flex: none;
    width: 5.09vw;
    height: 2.78vw;
}

.Success-InviteHelp span {
    font-size: 4.63vw;
    letter-spacing: 1px;
    margin: 0 3.52vw 1vw;
    color: #6e4d23;
}

.T-Good-list {
    height: 98%;
    padding-top: 14.07vw;
}

.T-Good {
    display: block;
    border-radius: 1.85vw;
    padding: 2.78vw 3.68vw;
    margin-bottom: 2.69vw;
    background-color: #FFF9E9;
}

.T-GoodRen {
    margin-bottom: 2.69vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.T-GoodRenTiao {
    display: flex;
    align-items: center;
}

.T-GoodRenTiao img {
    flex: none;
    width: 7.96vw;
    height: 7.96vw;
    margin-right: 2.69vw;
    border-radius: 50%;
}

.T-GoodRenTiao p {
    font-size: 3.7vw;
    font-weight: bold;
    letter-spacing: 2px;
    color: #904e00;
}

.T-GoodRen .T-GoodRenTiao + span {
    flex: none;
    width: 22vw;
    text-align: right;
    font-size: 2.78vw;
    color: #999999;
}

.T-GoodWu {
    display: flex;
}

.T-GoodWu-img {
    flex: none;
    width: 14.07vw;
    height: 14.07vw;
    margin-right: 2.96vw;
    background-color: #f00;
    border-radius: 1.85vw;
}

.T-GoodWu-txt p {
    margin: 0;
}

.T-GoodWu-txt p:first-child {
    font-size: 3.7vw;
    margin-bottom: 3.89vw;
}

.bg-ZhuLi {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    overflow: hidden;
    transform: translateY(-50%) !important;
    background-color: transparent;
    z-index: 99;
}

.T-ZhuLi {
    display: block;
}

.T-ZhuLi .T-ZhuLi-bg {
    width: 100%;
}

.T-ZhuLi > p {
    position: absolute;
    top: 3.61vw;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, .3);
    font-size: 3.52vw;
}

.ZhuLi-Guan {
    position: absolute;
    top: 0;
    right: 5.28vw;
    width: 8.43vw;
    height: 8.43vw;
    z-index: 99;
}

.T-ZhuLi-box {
    position: absolute;
    top: 35.93vw;
    left: 22.78vw;
    right: 22.78vw;
    padding: 3.06vw 2.41vw 0;
    border-radius: 2.78vw 2.78vw 0 0;
}

.T-ZhuLi-box .T-GoodWu {
    margin-bottom: 4.45vw;
}

.T-ZhuLi-box .T-GoodWu-img {
    width: 16.76vw;
    height: 16.76vw;
}

.T-ZhuLi-box .T-GoodWu-txt p:first-child {
    font-size: 3.33vw;
}

.T-ZhuLi-btn {
    position: absolute;
    bottom: 6.58vw;
    left: calc(50% - 23vw);
    width: 46.3vw;
    /*height: 10.09vw;*/
}

.T-ZhuLi-btn img {
    width: 100%;
}


/*拼购首页*/

.h_BuyTogetherTab {
    width: 87.04vw;
    height: 11.11vw;
    background-image: linear-gradient(-90deg, #ffce6a 0%, #ff814a 100%);
    border-radius: 5.56vw;
    position: absolute;
    top: 33.33vw;
    left: 6.48vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.02vw;
}

.h_BuyTogetherTab a {
    width: 41.67vw;
    height: 9.26vw;
    text-align: center;
    line-height: 9.26vw;
    font-weight: bold;
    font-size: 4.63vw;
    color: #b91616;
}

.h_BuyTogetherTab a.active {
    background-color: #ffffff;
    box-shadow: inset 0 0.56vw 5.56vw 0 rgba(254, 196, 104, 0.5);
    border-radius: 4.63vw;
}

.h_BuyTogetherList {
    /* position: relative; */
    /* z-index: 2; */
    padding-top: 56.98vw;
}

.h_BuyTogether_shell {
    padding: 2.96vw;
    border-radius: 3.7vw;
    margin-bottom: 2.59vw;
}

.h_BuyTogether_shell.h_TSshell {
    background-color: #FF7E5E;
    margin-top: -3vw;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.h_BuyTogether_box {
    background-color: #fff;
    border-radius: 3.7vw;
    padding: 0 3.61vw 3.61vw;
}

.h_BuyTogether_box h1 {
    height: 12.87vw;
    color: #fd671a;
    font-size: 4.63vw;
    font-weight: bold;
    text-align: center;
    line-height: 12.87vw;
}

.h_GoodShell {
    display: flex;
}

.h_GoodShell:not(:first-child) {
    margin-top: 6.39vw;
}

.h_GoodShell > img {
    flex: none;
    width: 23.24vw;
    height: 23.15vw;
    margin-right: 4.07vw;
    border-radius: 0.93vw;
}

.h_GoodShell_xin {
    flex: 1;
    font-size: 3.7vw;
    height: 23.15vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .6vw 0;
    position: relative;
}

.h_GoodShell_xin p:first-child {
    line-height: 1.2;
}

.h_GoodShell_Yuan {
    font-size: 3.15vw;
    color: #fd671a;
    display: flex;
    align-items: center;
}

.h_GoodShell_Yuan span {
    font-size: 2.41vw;
    padding: .18vw .68vw .22vw .88vw;
    background-image: linear-gradient(-90deg, #ff164a 0%, #fd4102 100%);
    border-radius: 0.46vw;
    color: #ffffff;
    margin-right: 1.3vw;
}

.h_GoodShell_Xian {
    color: #fd671a;
    font-size: 3.89vw;
}

.h_GoodShell_Xian span {
    display: inline-block;
    font-size: 3.15vw;
    padding: .78vw 1.08vw .28vw;
    line-height: 1;
    text-align: center;
    border-radius: 2.31vw;
    border: solid 0.19vw #fd671a;
    margin-left: 1.76vw;
}

.h_GoodShell_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16.67vw;
    height: 6.67vw;
    color: #Fff;
    text-align: center;
    line-height: 6.67vw;
    background-color: #fd671a;
    border-radius: 3.33vw;
}

.h_GoodShell_duo {
    display: block;
    font-size: 3.33vw;
    color: #c8c8c8;
    text-align: center;
    padding-top: 5.47vw;
    padding-bottom: 2.96vw;
}

.h_GoodShell_duo img {
    width: 1.11vw;
}


/*免费使用首页*/

.f_gradient {
    min-height: 100vh;
    background-image: linear-gradient(#fe9b49, #febc68);
    position: relative;
    padding-bottom: 4.24vw
}

.f_header_cont {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}


/*活动规则部分*/

.f_activity_cont {
    width: 94.44vw;
    padding: 44.5vw 4vw 0;
    margin: 0 auto;
}

.f_activity_title {
    font-size: 4vw;
    font-weight: bold;
    color: #fa4905;
    text-align: center;
    font-family: SourceHanSansCN-Regular;
    margin: 1.68vw 0;
}

.f_activity_introduce {
    font-size: 3.52vw;
    line-height: 6.11vw;
    color: #643b16;
    height: 21vw;
    overflow-y: auto;
    padding: 0 4vw;
}

.goods_concent {
    padding: 3vw;
    font-size: 3.33vw;
    color: #333333;
}


/*内容部分*/

.f_professional {
    width: 96vw;
    margin: 10.6vw auto 6vw;
    padding: .6vw 0 6vw;
    border: solid 0.56vw #fee7c7;
    border-radius: 3.7vw;
    background-color: #ffe5ba;
    box-shadow: 0 0 30px 2px #fe9746 inset;
}

.f_prof_hh {
    overflow: hidden;
    margin-bottom: 1vw;
}


/*标题*/

.f_novice_title {
    font-size: 4.63vw;
    color: #5d330d;
    text-align: center;
    font-weight: bold;
    margin: 3.89vw 0;
}

.f_folding_cont {
    margin-bottom: 3vw;
}

.f_folding_bj {
    width: 93vw;
    margin: 0 auto;
    overflow: hidden;
}

.f_uter_layer {
    float: left;
    width: 49%;
    height: 58vw;
    padding: 0 2.4%;
    overflow: hidden;
    background: url("../images/newIndex/f_mf3.png") no-repeat center bottom;
    background-size: 100% 8vw;
}

.f_uter_layer:nth-child(n+3) {
    margin-top: 3vw;
}

.f_uter_layer:nth-child(even) {
    margin-left: 2%;
}

.f_fold_lf {
    width: 100%;
    padding-bottom: 1vw;
    background-image: linear-gradient(0deg, #fff7ea 0%, #fff4e4 50%, #fff0dd 100%);
    border-radius: 2.78vw 2.78vw 0vw 0vw;
    padding-top: 1.68vw;
}

.Gei_por {
    width: 92%;
    margin: 0 auto;
    border-radius: 1.48vw;
    overflow: hidden;
}

.f_baishe_bor {
    position: relative;
    height: 5.56vw;
    font-size: 3.15vw;
    display: flex;
    align-items: center;
    background-color: #FD671A;
}

.f_baishe_img {
    display: block;
    width: 100%;
    height: 37.04vw;
    background-color: #fd671a;
    margin: 0 auto;
}

.f_immed_bottom {
    width: 18.52vw;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.f_delete {
    flex: none;
    width: 18.52vw;
    text-align: center;
    position: relative;
    /*text-decoration: line-through;*/
    z-index: 9;
}

.h_btnBox {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1vw;
    color: #fff;
}

.h_btn {
    font-size: 1.85vw;
    padding: .48vw .8vw .32vw;
    border-radius: 3vw;
    margin-left: .28vw;
    border: 1px solid #FFFFFF;
}

.f_fold_x_biaoti {
    height: 5.18vw;
    line-height: 5.18vw;
    font-size: 2.68vw;
    color: #fd671a;
    text-align: center;
    padding-top: 1vw;
}

.f_fold_title {
    font-size: 3.5vw;
    color: #5d330d;
    text-align: center;
    padding: 0 .6vw;
    margin-top: .6vw;
}

.specone span.cur {
    background-color: #fef4f3;
    color: #fe4543;
    border: solid 0.19vw #fe4543;
}

.goods_concent {
    padding: 3vw;
    font-size: 3.33vw;
    text-align: justify;
    color: #333333;
    background-color: #fff;
    overflow: hidden;
    word-wrap: break-word;
}

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

.sharepeo .share_f {
    width: 50vw;
    height: auto;
    border-radius: 1.4vw 1.4vw 0 0;
    margin: 0 auto;
    display: block;
}


/*成交记录文字滚动*/

.txtScroll-top {
    position: fixed;
    top: 18%;
    left: 3.15vw;
    color: #fff;
    font-size: 3.15vw;
    height: 8.33vw;
    z-index: 10;
}

.ts_infoList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ts_infoList p {
    display: inline-flex;
    align-items: center;
    height: 8.33vw;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4.17vw;
    padding-right: 2.2vw;
    color: #643b16;
    font-size: 3.52vw;
}

.ts_infoList li img {
    width: 6.67vw;
    height: 6.67vw;
    border-radius: 5vw;
    margin-left: 1.7vw;
    margin-right: 1.7vw;
}

.goods_nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 12vw;
    background: #FFFFFF;
    color: #333333;
    z-index: 9;
    display: none;
}

.goods_nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.goods_nav_li_1 {
    margin-left: 18.50vw;
    margin-right: 20.50vw;
}

.goods_nav_li_2 {
    margin-right: 20.50vw;
}

.goods_nav a {
    font-size: 4.07vw;
    color: #333333;
}

.goods_nav_back {
    position: fixed;
    left: 5.45vw;
    top: 0;
    height: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goods_nav_a {
    display: block;
    padding-bottom: 0.5vw;
    border-bottom: 0.74vw solid #FFFFFF;
}

.goods_nav_a_active {
    border-bottom: 0.74vw solid #fe4543;
}

.weui_kefu_block {
    width: 79.54vw;
    height: 11.11vw;
    line-height: 11.11vw;
    background: #f7f8fa;
    border-radius: 5vw;
    margin: 2vw auto;
    text-align: center;
}

.weui_kefu_block a {
    font-size: 4.07vw;
    color: #555555;
}

.weui_kefu_block span {
    font-size: 3.33vw;
    color: #888;
}

.tm {
    width: 10%;
    border: 1px solid #ff6a1d;
    padding: 0 0.5vw 0 0.5vw;
    text-align: center;
    font-size: 3vw;
    color: #ff6a1d;
    border-radius: 3px;
    margin-right: 1vw;
    font-weight: normal;
}

.return {
    font-size: 3vw;
    border: 1px solid #ff6a1d;
    background-color: #ff6a1d;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    display: inline-block;
    padding: 0 0.3vw;
}