body{ min-width: 320px;font-family: Roboto,-apple-system,Helvetica Neue,Helvetica,Arial,sans-serif;}
:root {
    --primary: #e3d5cb;
    --swiper-theme-color: var(--primary)
}
.page-mm-loading{ width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    opacity: 1;
    background: #fff;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-mm-loading.close{ opacity: 0}
::-webkit-scrollbar {

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline:none;

    -webkit-tap-highlight-color: transparent;

}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {-webkit-appearance: none;}
input[type="number"]{-moz-appearance: textfield;}
input{outline:none;-webkit-appearance: none;}

ul {
    list-style: none
}

a {
    color: inherit;
    text-decoration: none
}

img {
    border: none
}
.submit.buttons{
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
}
.submit.button{
    display: block;
    flex: 1;
    height: 45px;
    border-radius: 4px;
    border: none;
    outline: 0;
    color: #fff;
    background-color: #26a69a;
    font-size: 15px;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -.15em;
    fill: currentColor;
    overflow: hidden
}

.lock {
    overflow: hidden
}

.inner {
    padding: 0 10px;
    word-break: break-all;

}

.banner {
    position: relative
}

.banner .swiper-slide img {
    display: block;
    width: 100%
}

.banner-next, .banner-prev {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary)
}

.banner-next.swiper-button-disabled, .banner-prev.swiper-button-disabled {
    opacity: .5
}

.banner-prev {
    left: 10px
}

.banner-next {
    right: 10px
}

.banner-pagination.swiper-pagination-bullets {
    position: absolute;
    z-index: 1;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: inline-flex;
    justify-content: center
}
.shopcartspesc{ font-size: 12px}
.banner-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--primary)
}

.richtext {
    word-break: break-word;
    color: #333
}

.richtext img {
    max-width: 100%
}

.richtext:after {
    content: "";
    display: block;
    clear: both
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, .6);

    transition: all .3s ease
}

.mask.active {
    opacity: 1;
    visibility: visible
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: show .3s ease;
    background-color: #fff;
    z-index: 3;
    border-radius: 4px;
    overflow: hidden;
    max-width: 95vw;
    min-width: 300px;
    max-height: 80vh;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    color: #333;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2)
}

.popup.hide {
    animation: hide .3s ease
}

.popup > .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    height: 40px;
    padding: 0 12px
}

.popup > .content {
    padding: 12px;
    flex: 1
}

.popup > .content .modal {
    width: 85vw;
    height: 45vh
}

.popup > .content .confirm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80px
}

.popup > .content .confirm .buttons {
    display: flex;
    margin-top: 10px;
    border-top: 1px solid #eee;
    margin-left: -12px;
    margin-bottom: -12px;
    margin-right: -12px
}

.popup > .content .confirm .buttons .button {
    background: #fff;
    flex: 1;
    width: 0;
    border: none;
    line-height: 40px;
    font-size: 15px;
    border-radius: 4px;
    outline: 0
}

.popup > .content .confirm .buttons .button + .button {
    border-left: 1px solid #eee
}

@keyframes show {
    from {
        transform: translate(-50%, -50%) scale(0)
    }
    to {
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes hide {
    from {
        transform: translate(-50%, -50%) scale(1)
    }
    to {
        transform: translate(-50%, -50%) scale(0)
    }
}

.loading {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 3;
    transform: translate(-50%, -50%)
}

.loading svg {
    width: 45px;
    transform-origin: center;
    animation: rotate 2s linear infinite
}

.loading svg circle {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px
    }
    100% {
        stroke-dashoffset: -125px
    }
}

.x-counter {
    display: flex;
    align-items: center
}

.x-counter i {
    background-color: #26a69a;
    color: #fff;
    display: block;
    line-height: 25px;
    padding: 0 5px;
    cursor: pointer
}




.x-counter input {
    border: 1px solid #eee;
    border-left: none;
    border-right: none;
    height: 25px;

    flex: 1;
    width: 0;
    width: 50px;
    padding: 0 10px;
    font-size: 15px;
    color: #333;
    text-align: center
}

.x-counter input::-webkit-inner-spin-button {
    display: none
}
.x-counter .hidden{display: none}
header {
    background: url(../images/rainbow.png) repeat left top;
    padding-top: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    position: sticky;
    z-index: 2;
    left: 0;
    top: -20px
}

header .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px
}

header .inner .menu {
    position: absolute;
    left: 15px;
}


header .inner .logo {
    width: 50%;
    max-width: 100px;
    display: inline-flex;
    justify-content: center
}

header .inner .logo a {
    display: inline-flex;
    justify-content: center;
    height: inherit
}

header .inner .logo a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

header .inner .dropdown{
    position: absolute;
    right: 15px;
    color: #444;
}

header .inner .dropdown .icon{
    font-size: 12px;
    transform: rotate(90deg);
    display: inline-flex;
    margin-left: 5px;
    transition: all 0.3s ease;
}

header .inner .dropdown>ul{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    white-space: nowrap;
    text-align: center;
    background-color: #fff;
    padding: 10px 0;
    right: 0;
    transform: translateX(10px);
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 90px;
}

header .inner .dropdown:hover .icon{
    transform: rotate(270deg);
}

header .inner .dropdown:hover>ul{
    visibility: visible;
    opacity: 1;
}

header .inner .dropdown>ul li {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

header .inner .dropdown>ul>li a {
    line-height: 32px;
}

header .inner .dropdown>ul ul{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    white-space: nowrap;
    text-align: center;
    background-color: #fff;
    padding: 10px 0;
    top:0;
    left:0;
    transform: translateX(-100%);
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 90px;
}

header .inner .dropdown>ul>li:hover ul{
    visibility: visible;
    opacity: 1;
}

header .inner .cart a {
    position: relative
}

header .inner .cart a span {
    position: absolute;
    top: -10px;
    right: -5px;
    background-color: #26a69a;
    padding: 0 6px;
    font-size: 13px;
    border-radius: 5px;
    color: #fff
}

header .inner .icon {
    font-size: 22px;
    color: #333
}

header ~ aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    background: #fff;
    padding: 20px;
    z-index: 4;
    transition: transform .2s ease;
    transform: translate3d(-105%,0,0);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    outline: 0
}

header ~ aside:focus {
    transform: translate3d(0,0,0)
}

header ~ aside ul li {
    color: #444;
    position: relative
}

header ~ aside ul li > a {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 45px
}

header ~ aside ul li > a i {
    font-size: 18px;
    margin-right: 5px
}

header ~ aside ul li > a span {
    flex: 1;
    width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

header ~ aside ul li ul {
    height: 0;
    overflow: hidden;
    transition: height .3s ease
}

header ~ main {
    min-height: calc(100vh - 140px);

}

footer {
    padding: 10px 0;
    height: 65px;
    overflow: hidden;
    background-color: var(--primary)
}

footer p {
    font-size: 14px;
    text-align: center;
    color: #444;
    line-height: 1.61
}

.dialog{
    position: fixed;
    left:0;
    right: 0;
    top:0;
    bottom:0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.12);
    padding:90px 10px 10px 10px;
}

.dialog-inner{
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.dialog-header{
    display: flex;
    justify-content: space-between;
    padding:10px 15px;
}

.dialog-header p{
    flex: 1 0 0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color: #333;
    margin-right: 10px;
}

.dialog-header .ibox{
    color: #333;
    font-size: 15px;
}

.dialog-body{
    flex:1;
    padding: 20px 15px;
    overflow-y: auto;
}

.dialog-footer{
    display: flex;
    justify-content: flex-end;
    padding: 10px 15px;
}

.dialog-footer .button{
    padding: 5px 10px;
    background: #fff;
    text-align: center;
    border: 1px solid #009966;
    border-radius: 4px;
    margin-right: 5px;
    color: #009966;
    line-height: 1.5;
    min-width: 60px;
}

.dialog-footer .button.primary{
    background: #009966;
    color: #fff;
}

.index{
    display: flex;
    flex-direction: column;
}

.index .banner .swiper-slide {
    position: relative;
    padding-top: 45%
}

.index .banner .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover
}

.delivery-list .list-ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery-list__item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    padding: 10vw 0;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.12);
    font-size: 1.5rem;
    font-weight: bold;
    color: #5f5f5f;
    transition: all 0.3s ease;
}

.delivery-list__item + .delivery-list__item{
    margin-left: 10px;
}

.delivery-list__item.active{
    /*background-color: var(--primary);*/
    background-color: #25a59a;
    color: #fff;
}

.branch{
    padding-top: 20px;
    padding-bottom: 20px;
}


.branch-item{
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding:10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
}

.branch-item + .branch-item{
    margin-top: 15px;
}

.branch-item__main{
    flex: 1 0 0;
    overflow: hidden;
    margin-right: 15px;
}

.branch-item__name{
    font-size: 16px;
    color: #333;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.branch-item__address{
    font-size: 14px;
    color: #777;
    line-height: 1.2;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.branch-item__button{
    line-height: 30px;
    padding:0 10px;
    font-size: 14px;
    background-color: #FFFFFF;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.branch-item.active .branch-item__button{
    background-color: #25a59a;
    color: #fff;
    border: 1px solid #25a59a;
}

.list_ul {
    display: flex;
    flex-wrap: wrap;
}
.list_ul>li{
    width: 50%;
    margin-bottom: 10px;
}


.list_content{ position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

}
.cateimg{ height: calc(100% - 40px);border-radius: 4px;}
.catetitle{ height: 20px; text-align: center;}
.catetitle h5{ font-weight: normal; line-height: 40px}
.list_text{
    height: 100%;
    overflow: hidden;
    text-overflow:ellipsis;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    word-break: break-all;
    padding: 10px;
}
.notice .content {
    padding: 25px 8px;
    font-size: 14px;
    line-height: 1.5
}

.detail {
    padding: 25px 0 0 0;
}

.detail .location h1 {
    text-align: center;
    font-weight: 400
}

.detail .content {
    min-height: calc(100vh - 196px);
}

.detail .content ul li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee
}

.detail .content ul li .image {
    padding-top:10px;
    width: 80px;
    height: 80px;
    margin-right: 15px
}

.detail .content ul li .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px
}

.detail .content ul li .text {
    flex: 1;
    width: 0
}

.detail .content ul li .text .title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.detail .content ul li .text .title h5 {
    font-weight: 400;
    font-size: 15px;
    color: #333;
    line-height: 1.25;
    padding-top: 7px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.detail .content ul li .text .title a {
    font-size: 22px;
    color: #666;
    margin-left: 10px
}

.detail .content ul li .text .operate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    height: 30px
}

.detail .content ul li .text .operate .price {
    font-size: 18px;
    font-weight: 700;
    color: #26a69a
}

.detail .content ul li .text .operate .price span {
    margin-left: 3px
}

.shopcar {
    padding: 25px 0
}

.shopcar .location h1 {
    text-align: center;
    font-weight: 400
}

.shopcar .list {
    margin-top: 25px
}

.shopcar .list .card {
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    padding: 10px;
    border-radius: 4px;
    overflow: hidden
}

.shopcar .list .card > ul li {
    display: flex;
    padding: 10px 0
}

.shopcar .list .card > ul li + li {
    border-top: 1px solid #eee
}

.shopcar .list .card > ul li .image {
    padding-top: 2px;
    width: 80px;
    height: 80px;
    margin-right: 15px
}

.shopcar .list .card > ul li .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px
}

.shopcar .list .card > ul li .content {
    flex: 1;
    width: 0
}

.shopcar .list .card > ul li .content h5 {
    font-size: 15px;
    color: #333;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.shopcar .list .card > ul li .content dl {
    margin-top: 8px
}

.shopcar .list .card > ul li .content dl dd {
    font-size: 14px;
    color: #555;
    position: relative
}

.shopcar .list .card > ul li .content dl dd:before {
    content: "-- "
}

.shopcar .list .card > ul li .content .operate {
    display: flex;
    align-items: center;
    justify-content:flex-end;
    margin-top: 10px;
    height: 30px
}

.shopcar .list .card > ul li .content .operate .price {
    font-size: 18px;
    font-weight: 700;
    color: #26a69a;
    min-width: 100px;
    text-align: right;
}

.shopcar .list .card > ul li .content .operate .price span {
    margin-left: 3px
}

.shopcar .list .card .summary {
    margin-top: 15px
}

.shopcar .list .card .summary ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0;
    color: #555;
    font-size: 15px
}

.shopcar .list .card .summary ul li + li {
    border-top: 1px solid #eee
}

.shopcar .list .card .summary ul li input[readonly] {
    border: none;
    outline: 0;
    background: 0 0;
    text-align: right;
    font-size: inherit;
    width: auto
}

.shopcar .list .card .summary ul li input[type=text]:not([readonly]) {
    width: 100%;
    height: 40px;
    border: 1px solid #eee;
    outline: 0;
    padding: 0 10px;
    margin-top: 5px;
    color: inherit;
    font-size: inherit
}

.shopcar .store {
    margin: 15px 0;
}

.shopcar .store .card {
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    padding: 10px;
    border-radius: 4px
}

.shopcar .store .card .title {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.shopcar .store .card .title h2 {
    font-size: 17px;
    color: #333;
    line-height: 30px;
    flex: 1 0 0;
}

.shopcar .store .card .title .button{
    padding: 0 10px;
    background: #fff;
    border: 1px solid #009966;
    border-radius: 4px;
    margin-right: 5px;
    color: #009966;
    line-height: 1.7;
}

.shopcar .store .card .content {
    margin-top: 10px
}

.shopcar .store .card .content select {
    width: 100%;
    height: 40px;
    border: 1px solid #eee;
    padding: 0 12px;
    color: #333;
    border-radius: 4px;
    outline: 0;
    background-color: transparent
}

.shopcar .store .card .content select:focus {
    border-color: #26a69a
}

.shopcar .store .card .content table {
    width: 100%;
    margin-top: 15px
}

.shopcar .store .card .content table tr {
    height: 35px
}

.shopcar .store .card .content table tr td {
    font-size: 14px;
    color: #444
}
.chartsubmit{ padding:0 10px;}
.chartsubmit .button {
    width: 100%;
    background: #26a69a;
    color: #fff;
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
    border: none;
    outline: #26a69a;
    font-size: 15px;
}

.shopcar .form .card {
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    padding: 10px;
    border-radius: 4px
}

.shopcar .form .card .title {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px
}

.shopcar .form .card .title h2 {
    font-size: 17px;
    color: #333;
    line-height: 30px
}

.shopcar .form .card .content {
    margin-top: 10px
}

.shopcar .form .card .content ul li {
    display: flex
}



.shopcar .form .card .content ul li label {
    flex: 1;
    padding-bottom: 25px;
    position: relative;
}

.shopcar .form .card .content ul li label + label {
    margin-left: 12px
}

.shopcar .form .card .content ul li label p {
    color: #333;
    margin-bottom: 5px;
    font-size: 15px
}

.shopcar .form .card .content ul li label p i {
    font-style: normal;
    color: red
}

.shopcar .form .card .content ul li label input {
    height: 40px;

    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 15px;
    color: #444;
    width: 100%;
    padding: 0 10px
}

.shopcar .form .card .content ul li label input:focus {
    border-color: #26a69a
}

.shopcar .form .card .content ul li .button {
    width: 100%;
    background: #26a69a;
    color: #fff;
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
    border: none;
    outline: #26a69a;
    font-size: 15px
}

.specification .location {
    padding: 15px 0;
    border-bottom: 1px solid #eee
}

.specification .location .content {
    display: flex;
    justify-content: center;
    position: relative
}

.specification .location .content a {
    position: absolute;
    left: 0
}

.specification .location .content span {
    font-size: 18px
}

.specification .specifications {
    padding: 20px 0;

}

.specification .specifications .title h2 {
    color: #444;
    font-weight: 400;
    font-size: 24px
}

.specification .specifications .counter {
    display: flex;
    margin-top: 15px
}

.specification .specifications .content {
    margin-top: 20px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.remarks-ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;

}

.remarks-ul li {
    flex:0 0 50%;
    overflow: hidden;
    margin-bottom: 5px;

}

.remarks-ul li:nth-child(even){
    padding-left: 5px;
}


.specbox.active>p{
    background-color: #26a69a;
    color: #fff;
}
.specbox{display: flex; }
.specbox>p{
    flex: 1 auto;
    display: flex;
    padding: 0 5px;
    border-radius: 5px;
    line-height: 25px;
    border: 1px solid #26a69a;
    transition: all .3s ease;
    font-size: 14px;
    color: #26a69a;
    justify-content: space-between;
}
.specbox>p .specname{flex:1 70%;overflow:hidden; height:25px}
.specbox>p .specprice{flex:0 auto;white-space:nowrap;}
.choose-remarks{

    border-radius: 5px;  border: 1px solid #26a69a;
    display: flex;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    padding: 0 5px;
    font-size: 12px;
    color: #26a69a;
}



.specification  .buttons {
    position: fixed;
    width: 100%;
    left:0;
    bottom: 0;

    display: flex;
}

.specification  .buttons .button {
    display: block;
    flex: 1;
    height: 45px;
    border-radius: 4px;
    border: none;
    outline: 0;
    color: #fff;
    background-color: #26a69a;
    font-size: 15px
}

.mm-tips-box{
    position: fixed;
    left: 0;
    top:50%;
    z-index: 1001;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.mm-tips{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #009688;
    min-height: 48px;
    padding: 0 16px;
    max-width: 95vw;
    flex-wrap: wrap;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;

    box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
}
.mm-tips-box.active{opacity: 1}
.back_home_box{ position: fixed;
    bottom: 30px;
    left: 50%;
    margin-left: -21px;
    display: flex;
    justify-content: center
}
.back_home{
    border-radius:50%;
    width: 42px;
    height: 42px;
    background: #26a69a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding-bottom: 3px
}
.mm-layer-box{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background: #0006;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.mm-layer-box.active{
    opacity: 1;
}
.mm-layer-box.active>.mm-layer{
    transform: scale3d(1,1,1);
}
.mm-layer{
    background: #fff;
    width: calc(100vw - 40px);
    border-radius: 4px;
    box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
    padding: 10px;
    transform: scale3d(0,0,0);
    transition: transform 0.2s;

}
mm-layer{ display: none}
.mm-layer-header{ display: flex;justify-content: space-between}
.mm-layer-title{ font-size: 16px}
.mm-layer-close{ font-size: 12px}
.mm-layer-body{min-height: 20px; margin: 10px 0}
.mm-layer-footer{ display: flex; justify-content: space-between}
.mm-layer-submit{background:#26a69a;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
}

.mm-success-box{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1002;
    background: #0006;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.mm-success-box.active{
    opacity: 1;
}
.mm-success-box.active>.mm-success{
    transform: scale(1);
}
.mm-success{
    background: #fff;
    width: calc(100vw - 40px);
    border-radius: 4px;
    box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
    padding: 10px;
    transform: scale(0);
    transition: transform 0.3s;
}
.mm-success-ico{ display: flex; justify-content: center; align-items: center; font-size: 60px; color: rgb(25, 190, 107)}
.mm-success-text{ margin: 10px 0 20px 0; display: flex; justify-content: center; align-items: center; font-size: 18px; color: rgb(25, 190, 107)}
.mm-success-footer{ display: flex; justify-content: center}
.mm-success-submit{background:#26a69a;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
}
.shopcar .form .card .content ul li label input.mm-error{border-color: #c10015}
@media all and (orientation: landscape) {
    .list_ul{ position: relative; left: 10px}
    .list_ul>li{ width: 25%;margin-bottom: 20px; padding-right: 20px;}

    .list_ul a{
        position: relative;
        display: block;
        padding-top: calc((100vw/4)*0.75 + 40px);
        box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
        border-radius: 4px;
    }
}
@media all and (orientation: portrait) {
    .list_ul{ position: relative; left: 5px}
    .list_ul>li{ width: 50%; margin-bottom: 20px; padding-right: 10px }
    .list_ul a{
        position: relative;
        display: block;
        padding-top: calc((100vw/2)*0.75 + 20px);
        box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
        border-radius: 4px;
    }
    .list_ul>li:nth-child(even){

    }

}
.mm-input-error{ position: absolute; left: 0; bottom: 5px; width: 100%; color: #c10015; font-size: 13px; padding: 0 10px}

.noticebox{padding:5px 0; margin:5px 13px;}
.noticecontent{ height:30px; background:#E1D3C9; border-radius:4px;  padding:0 10px; font-size:13px; overflow:hidden}
.notice{}
.notice>li{ display:flex; align-items:center; height:30px}
.noticeico{ font-size:18px; margin-right:10px; position:relative; top:1px}

.pagename{ text-align:center; margin-bottom:20px}
.infobox{
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    border:1px solid  #ddd;
    padding: 10px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;

}

.infobox>.title{text-align:center}
.infocontent{ display:flex}
.infoname{ width:80px}

.deliverybox{ display:flex;flex-wrap: wrap;}
.delivery{padding:5px 10px; background:#fff; border:1px solid #009966; border-radius:4px; margin-right:5px; color:#009966; line-height:1.5}
.delivery.active{ background:#009966;color:#fff}

.mm-select{height:40px; border:1px solid #eee; border-radius:4px; padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size:14px;

}
.mm-select.active{border:1px solid #26a69a;}
.mm-select>.mm-select-ico{position:absolute; right:0; top:0; width:20px;  height:100%; display:flex; justify-content:center; align-items:center}
.mm-select>.mm-select-text{font-size:14px; width:calc(100% - 20px); height:100%; position:absolute; left:0; top:0; border:none; background:transparent; padding:0 5px}
.mm-select>.mm-option{ position:absolute; z-index:999999; left:0; top:40px; width:100%; background:#fff;border:1px solid #eee;box-shadow: 0 1px 5px rgb(0 0 0 / 20%), 0 2px 2px rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%);  border-top:none; display:none}
.mm-select>.mm-option>li{ height:40px; line-height:40px; font-size:14px;padding:5px;}
.mm-select>.mm-option>li:hover{ background:#eee}

.payimg_account{
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    border:1px solid  #ddd;

    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}
.goods_msg {
    word-wrap: break-word;
    margin: 5px 0;
    font-size: 10px;
    color: #666;
}
.payimg_account>.ordernum{ padding:10px; display:flex; justify-content:space-between; align-items:center;  border-bottom:1px solid rgba(0,0,0,0.15)}
.payimg_account>.goods{ padding:10px; padding-bottom:0}
.payimg_account>.goods>li{ display:flex; justify-content:space-between}
.payimg_account>.goods>li>div{flex:0 auto;max-width:50px; height:24px; overflow:hidden}
.payimg_account>.goods>li>.goodsname{ flex:1 0 200px; max-width:200px}
.payimg_account .price_line:after{ display:block; content:''; clear:both}
.payimg_account .price_line>div{ float:right;display:flex}

.moneyname{ margin-right:10px}
.moneybox{ display:flex; width:80px; justify-content:flex-end;}
.moneybox .cash{ margin-right:2px;}
.payimg_account>.pricebox{border-bottom:1px solid rgba(0,0,0,0.15); padding:10px}
.statusbox{ display:flex; justify-content:space-between; padding:10px; align-items:center}
.payimg_account .button {

    width: 100%;
    background: #26a69a;
    color: #fff;
    border-radius: 4px;

    text-align: center;
    border: none;
    outline: #26a69a;
    font-size: 12px;
    padding: 10px;
}

input.choosetime{
    height: 40px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 15px;
    color: #444;
    width: 100%;
    padding: 0 10px;
}

