@charset "utf-8";
/* CSS Document */

html { height:100%; font-size: 62.5%;  margin: 0 auto;  }
body{ padding:0; font-family:"微软雅黑",Arial; font-size:1.4rem;  color:#000000;   position:relative;/* overflow-y:hidden; overflow-x:hidden*/ max-width:750px; margin:0 auto; background:#f9f1e4; line-height:1;   }

ul{ margin:0; padding:0; list-style:none;}
li { margin:0; padding:0; list-style:none}
a{ color:#000000; text-decoration:none; -webkit-tap-highlight-color:rgba(255,0,0,0);}
a:hover { color:#ff4d4d; transition: 0.2s; -moz-transition: 0.2s; -webkit-transition: 0.2s;-o-transition: 0.2s;}
img{ border:none; }
p{ margin:0; padding:0;  list-style: none;}
h1 { margin:0; padding:0;}

input , select, textarea {outline: none;}

.hide { display:none}
.show { display:inline-block;}

/*使用jquery mobile 后 loading隐藏 未使用侧无效*/
.ui-loader-default{ display:none}
.ui-mobile-viewport{ border:none;}
.ui-page {padding: 0; margin: 0; outline: 0}

/*填充行距高度*/
.jg5 { width:100%; height:5px; line-height:5px;}
.jg10 { width:100%; height:10px; line-height:10px;}
.jg15 { width:100%; height:15px; clear: both;}
.jg20 { width:100%; height:20px;}
.jg25 { width:100%; height:25px;}
.jg30 { width:100%; height:30px;}
.jg35 { width:100%; height:35px;}
.jg40 { width:100%; height:40px;}
.jg45 { width:100%; height:45px;}
.jg50 { width:100%; height:50px;}
.jg60 { width:100%; height:60px;}
.jg65 { width:100%; height:65px;}
.jg70 { width:100%; height:70px;}
.jg80 { width:100%; height:80px; clear: both;}
.jg100 { width:100%; height:100px;}
.jg150 { width:100%; height:150px;}
.jg200 { width:100%; height:200px;}

.clb { clear: both; display: inline-block; width: 100%; height: auto;}
.bgf { background: #FFFFFF;}

.row { width: 100%; max-width: 750px; margin: 0 auto; height: auto; background: #FFFFFF; }

.ab-img { display: flex;}
.ab-img img {width: 100%;}
.ab-tb { display: flex;}
.ab-tb img { width: 100%;}
.ab-yangban { text-align: center; padding: 30px 0;}
.ab-yangban img { width: auto; max-width: 80%;}
.ab-foot { display: flex; justify-content: center; flex-direction: row; max-width: 92%; margin: 0px auto; padding-top: 30px; padding-bottom: 30px;}
.ab-foot img { max-width: 100%;}

/*header部分开始*/

.head-img {position: relative;}
.head-img p {display: flex}
.head-img p img {width: 100%;}

h2 {
    vertical-align: center;
    text-align: center;
}

html, body {
    margin: 0 auto;
    height: 100%;
}

* {
    font-family: "Raleway";
    box-sizing: border-box;
}

.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /*background-color: #00BAF0;*/
    /*background: rgba(0,0,0,0.7);*/
    /*background: linear-gradient(to left, #f46b45, #eea849);*/
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #FFF;
    height: auto;
    position: fixed; top: 0;
    z-index: 9999999;
    /*padding: 1em;*/
    max-width: 750px;


}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
}

.menu > li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu > li a {
    color: #ffffff;
    cursor:pointer;
    text-decoration:none;
    font-size: 1.6rem;
}
.menu > li a:hover {
    color: #ddc9c9;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #dbc190;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

/*
   自适应设计 ，把 3700 改为 700 看看？
   移动端菜单折叠，网页端为水平导航菜单。
*/
@media (max-width: 3700px) {
    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;

    }


    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~ .menu {
        height: 100vh;
        background: rgba(0,0,0,0.8);
        justify-content: flex-start;
    }

    #menu-toggle:checked ~ .menu li {
        border: 1px solid #333;
        height: 5rem;
        /*padding: 1rem;*/
        line-height: 5rem;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        /*background-color: #222;*/
        background: rgba(0,0,0,1);
    }

    .menu > li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
    .menu > li a { display: inline-block; width: 100%; text-align: center;}
}

/*header部分结束*/


.video-box {width: 100%; height: auto;  position: relative; z-index: 0;}
.pro-list { margin-top: 30px;}

.content-text {width: 84%; margin: 0 auto; line-height: 2; font-size: 1.6rem; color: #000000;}
.content-text img { max-width: 100%;}

.store-box {width: 100%; display: flex; flex-direction: column; padding:10px 0 30px 0;}
.store-menu {width: 90%; margin: 0 auto;  display: flex; flex-direction: row; justify-content: space-between;}
.store-menu a {display:flex; width: 32%;}
.store-menu a img { max-width: 100%;}
.store-list-main {width: 90%; height: auto; margin: 0 auto; display: flex; flex-direction: column;}
.store-list-data {width: 90%; margin:0 auto; min-height: 50px; /*padding: 10px 3%;*/ /*border: 1px solid #792524; border-radius: 8px;*/ background: #FFFFFF; margin-top: 20px; display: flex; flex-direction: row; /*justify-content: space-between;*/ align-items: center; position: relative; }
.store-list-data .img { display: flex;  width: 100%; height: auto; border-radius: 5px; overflow: hidden;}
.store-list-data .img img  { width: 100%; height: 100%; }
.store-list-data .img2 { width: 100%; height: auto;}
.store-list-data .text { display: flex;  width: 55%;  flex-direction: column; margin-left: 10px; margin-right: 15px; line-height: 1.5; /*font-weight: bold;*/ font-size: 1.6rem; color: #792524;}
.store-list-data .text i { font-style: normal; font-weight: normal;}
.store-list-data  .btn { display: flex; width: 10%; flex-direction: row; color: #792524; justify-content: center; align-items: center;}
.store-list-data  .btn i { font-size: 36px; font-weight: normal;}
.store-list-data .has {display: flex; position: absolute; left: -1px; top: -1px; z-index: 1; background: #d00; color: #ffffff; font-size: 1.2rem; width: auto; height: 22px; padding: 0 10px; justify-content: center; align-items: center; border-top-left-radius: 8px; border-bottom-right-radius: 8px;}

.store-list-data2 {
    width: 100%; margin:0 auto; min-height: 50px; /*padding: 10px 3%;*/ /*border: 1px solid #792524; border-radius: 8px;*/ background: #FFFFFF; margin-top: 20px; display: flex; flex-direction: row; /*justify-content: space-between;*/ align-items: center; position: relative;
}

.store-view-tit {width: 88%; margin: 0 auto; margin-top: 30px; font-size: 1.8rem; font-weight: bold; line-height: 1.5; color: #792524;}
.store-view-video {width: 88%; margin: 0 auto; margin-top: 15px;}
.store-view-video-price {position: absolute; right: 0; top: 0; background: #792524; color: #FFFFFF; padding: 10px 15px; font-size: 1.6rem; font-family: 'Times New Roman', Georgia; border-top-right-radius: 10px; border-bottom-left-radius: 10px;}
.store-view-video-price b {font-size: 1.8rem; font-weight: normal;}
.store-view-content {width: 100%; margin: 0 auto; padding:20px 0 30px 0; }
.store-view-content-h { width:100%; margin: 0 auto; border-bottom: 1px solid #792524;}
.store-view-content-h .store-view-c-h-lab {display: inline-block; width: auto; height: auto; padding: 10px 15px; background: #792524; color: #FFFFFF; font-weight: bold; font-size: 1.5rem; border-top-left-radius: 5px; border-top-right-radius: 5px; }
.store-view-content-txt {width: 100%; height: auto; margin-top: 20px; padding-bottom: 50px; line-height: 1.8; font-size: 1.6rem;  color: #000;}
.store-view-content-txt img { max-width: 100%;}

.store-view-foot-box {position: fixed;  bottom: 0; background: #ffffff; border-top: 1px solid #efefef; width: 100%; height: 60px; z-index: 999; display: flex; flex-direction: row; justify-content: space-between; align-items: center; max-width: 750px; margin: 0 auto;}
.store-view-foot-lab {display: flex; flex-direction: row; justify-content: center; align-items: center; width: 15%; height: 100%;  cursor: pointer; font-size: 1.5rem;}
.store-view-foot-share {margin-left: 4%;}
.store-view-foot-buy {width: 50%; margin-right: 4%; }
.store-view-foot-buy .btn {width:100%; height:36px; border-radius:18px; background: #792524; color: #FFFFFF; display: flex; flex-direction: row; justify-content: center; align-items: center; cursor: pointer;}
.store-view-foot-buy .btn .pri {font-size: 1.4rem; font-weight: normal;}
.store-view-foot-my { margin-right: 4%; }
.store-view-foot-lab i { display: inline-block; margin-right: 2px;}
.store-foot-user {width: 48px; height: 48px; background: #792524; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #FFFFFF; position: fixed; left: 5px; bottom: 80px; font-size: 1.2rem; z-index: 9999; }
.store-foot-user i {font-size: 2rem;}
.store-foot-user:hover { color: #FFFFFF;}