body {
    background-color: rgb(245, 245, 245);
    --var-grey-text: rgb(140, 140, 140);
    scroll-behavior: smooth;
}

.price-container {
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    display: flex;
    justify-content: space-between;
}

.price-right-container {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-left-container {
    width: 65%;
    height: 100%;
    display: flex;
}

.price-main-title {
    font-size: 20px;
    font-weight: bold;
    color: #ea0f0f;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
}

.price-sub-title {
    font-size: 12px;
    font-weight: bold;
    color: #ea0f0f;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
}

.price-left-1-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #fff;
    justify-content: center;
}

.sale-count-container {
    width: 80px;
    background-color: rgb(216, 0, 62);
    border-radius: 10px;
    padding: 2px 5px;
    text-align: center;
}

.price-count-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 2px 7px;
    margin-top: 5px;
    color: #ea0f0f;
}

.ticket-container {
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.ticket-left {
    width: calc(100% - 60px);
    height: 100%;
    display: flex;
}

.ticket-right {
    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(254, 89, 50);
    font-size: 14px;
}

.ticket-item {
    height: 15px;
    padding: 5px;
    background-color: rgb(255, 233, 227);
    color: rgb(254, 89, 50);
    border-radius: 5px;
}

.ticket-item:not(:first-child) {
    margin-left: 5px;
}

.desc-container {
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgb(178, 178, 178);
    margin-top: 10px;
}

.desc-item {
    display: flex;
    align-items: center;
}

.icon-desc-item {
    font-weight: bolder;
    padding: 2px 5px;
    color: #fff;
    background-color: rgb(48, 193, 153);
    border-radius: 8px;
    margin-right: 5px;
}

.card-container {
    width: calc(100% - 40px);
    height: auto;
    padding: 10px;
    margin: 10px auto;
    background-color: #fff;
    border-radius: 10px;
}

.title-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: rgb(51, 51, 51);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.5;
    margin: 10px 0 0 0;
}

.form-line-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.form-line-container:not(:first-child) {
    margin-top: 10px;
}

.form-line-title {
    width: 80px;
    font-size: 14px;
    color: rgb(140, 140, 140);
    display: flex;
    align-items: center;
}

.form-line-content {
    width: calc(100% - 5% - 80px);
    font-size: 14px;
    color: #000;
    display: flex;
    flex-direction: column;
}

.review-title-container {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-title {
    width: 70%;
    font-size: 16px;
    font-weight: bold;
    color: rgb(51, 51, 51);
}

.review-more {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    color: rgb(254, 89, 50);
}

.review-tag-container {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.review-tag-item {
    height: 20px;
    padding: 2px 5px;
    background-color: rgb(255, 233, 227);
    color: rgb(254, 89, 50);
    border-radius: 5px;
}

.review-tag-item:not(:first-child) {
    margin-left: 5px;
}

.review-item-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.review-item-info {

}

.review-item-content {
    width: 100%;
    height: auto;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.5;
    margin: 10px 0 0 0;
}

.line-container {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    color: var(--var-grey-text);
}

.content {
    width: 100%;
    height: auto;
    margin-top: 10px;
    overflow: hidden;
}

.content img {
    width: 100% !important;
}

.form-input {
    width: 94%;
    border-radius: 3px;
    border: 1px solid #ebebeb;
    line-height: 34px;
    height: 34px;
    padding: 0 2%;
    font-size: 14px;
}

.form-title-end {
    justify-content: flex-end;
}

.mask-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 999999998;
    display: none;
    transition: all 0.5s;
}

.popup-container {
    width: calc(100% - 20px);
    padding: 0 10px;
    height: 70vh;
    position: fixed;
    top: 30vh;
    left: 0;
    z-index: 999999999;
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.coupon-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    background-color: rgb(254,245,238);
    margin-top: 20px;
}


.fahuo{ height:260px; overflow:hidden; width:100%; margin:0px auto;}
.fahuo ul{ overflow:hidden;}
.fahuo ul li{ padding:10px 5px; color:#666; overflow:hidden;}

.search{ width:98%; margin:10px 1%; overflow:hidden;}
.search dt{ float:left; width:78%;}
.search dt input{ width:96%; height:35px; line-height:35px; border-radius:3px; border:1px solid #ccc; padding:0px 2%;}
.search dd{ width:20%; float:right;border-radius:3px;  height:35px; line-height:35px; background:rgb(251,0,60); color:#fff; text-align:center; cursor:pointer;}
.foot-img img{ width:100%;}
footer{ background:#e5e5e5; overflow:hidden;}
.foot-nav{ text-align:center; height:23px; overflow:hidden;    margin-top: 10px;}
.foot-nav ul{ display:inline-table; margin-top:5px;}
.foot-nav ul li{ padding:0px 15px; float:left;}
.foot-nav ul li a{ color:#444; font-size:12px;}
.copyright{ text-align:center; color:#999; margin-top:7px; font-size:12px;}
.jubao{ height:30px; margin-top:5px;}
.jubao dt{ float:left; padding-left:10px;}
.jubao dd{ float:right; padding-right:10px; }
.jubao dd a{ color:#666;}
.h-50{ height:45px; overflow:hidden;}
.fixed-nav{ position:fixed; width:800px; height:45px; line-height:45px; background:#fff;  z-index:99999; bottom:0px; left:50%; margin-left:-400px;}
.fixed-nav li{ float:left;}
.fixed-nav li a{  display:block; text-align:center;color:#cf2a4f; box-sizing: border-box;
 }
.fixed-nav li:nth-child(2n+0) a{ background:rgb(251,0,60); color:#fff;}
.fixed-nav li i{ font-size:18px;}
.fixed-nav li:last-child a{ border:none;}


.ldts{ position:fixed; z-index:2; left:50%; margin-left:-390px; top:50px;}
.ldts p{ width:250px; border-radius:6px; line-height:30px; padding:0 6px; font-size:12px; font-family:"微软雅黑"; color:#fff;word-break:keep-all; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; background-color:rgba(255,0,0,0.5)!important; filter:Alpha(opacity=50); display:none; opacity:0;}
.ldts p img{ float:left; height:20px; margin:5px; border-radius:50%;}

#wx-html{ display:none;}
.wx-html{ margin:0px 10px;}
.wx-html p{ width:90%; margin:0px auto;}
.wx-html p img{ width:100%;}
.wx-html li{ font-size:14px;}
.wx-html li font{ color:#cf2a4f; font-weight:bold;font-size:16px;}
.wx-html a{ background:#2e8dec; color:#fff; width:80px; height:35px; line-height:35px; text-align:center;margin: 30px auto 10px auto;display: block;    border-radius: 3px; }

.postage dt,.prompt dt{font-weight: bold;}
.postage dd label{ width:94% !important;background: #d2d2d2;border-radius: 3px; padding:0px 2%;}
.postage dd label.hover{background:#cf2a4f; color:#fff;}
@media screen and (max-width:800px){
	.ldts{ left:10px;margin-left:0px;}
	.fixed-nav{ width:100%; left:0px; margin-left:0px;}
}

.main{ overflow:hidden; border-radius:5px;   background:#fff;}
.main .type-1{ clear:both; margin:10px 2%; overflow:hidden;}
.main .type-1 dt{ float:left; line-height:35px; width:100%; height:35px; text-align:left; font-weight:bold;}
.main .type-1 dd{min-height: 34px; }
.main .type-1 dd li{ float:left; border-radius:3px;  text-align:center; background:#f2f2f2; border:1px solid #f2f2f2; margin:0px 8px 5px 0px; padding:8px 15px; cursor:pointer; position:relative;}
.main .type-1 dd li i.gou{ position:absolute; bottom:0px; right:0px; background-size:15px 15px; width:15px; height:15px; display:block;}
.main .type-1 dd li.hover{border:1px solid #cf2a4f; color:#fff; background: rgb(251,0,60);}
.main .type-1 dd li img{ width:80px; height:80px;}

.main .type-11{ clear:both; margin:10px 2%; overflow:hidden;}
.main .type-11 dt{ float:left; line-height:35px; width:100%; height:35px; text-align:left; font-weight:bold;}
.main .type-11 dd{min-height: 34px; }
.main .type-11 dd li{ float:left; border-radius:3px; width:40%; text-align:center; background:#fff; border:2px solid #f2f2f2; margin:2%; padding:2%; cursor:pointer; position:relative;}
.main .type-11 dd li p{ line-height:25px; text-align:center; }
.main .type-11 dd li i{ width:18px; height:18px; display:inline-block; margin:0px 5px; vertical-align: middle; position:relative; bottom:2px; border-radius:10px; border:1px solid #ccc;}
.main .type-11 dd li i.gou{ position:absolute; bottom:0px; right:0px; background-size:15px 15px; width:15px; height:15px; display:block;}
.main .type-11 dd li.hover{border:2px solid #f2f2f2; }
.main .type-11 dd li.hover i span{ background:#cf2a4f; position:absolute; top:3px; left:3px; width:12px; border-radius:6px; height:12px; display:inline-block;}
.main .type-11 dd li img{ width:100%; height:100%;}

.main .type-3{ clear:both; margin:10px 0; overflow:hidden;}
.main .type-3 dt{ float:left; line-height:35px; width:60px; height:35px; text-align:right;}
.main .type-3 dd{min-height: 34px;  margin-left: 70px;}
.main .type-3 dd select{ width:100%; border-radius:3px; border:1px solid #ccc; height:35px; line-height:35px;}

.main .type-4{ clear:both; margin:10px 0 20px 0; overflow:hidden;}
.main .type-4 dt{ float:left; line-height:35px; width:60px; height:35px; text-align:right;}
.main .type-4 dd{min-height: 34px;  margin-left: 70px;}
.main .type-4 label{ display:block; margin-top:10px;}
.main .type-4 label input{ width:20px; margin-right:5px; height:20px; float:left;}

.gifts{ margin-top:10px;}
.gifts dt{ margin-bottom:10px;}
.gifts dd p{ border:2px solid #ccc; border-radius:5px; padding:5px 10px; position:relative; margin-bottom:10px; float:left; margin-right:10px;}
.gifts dd p.hover{border:2px solid #cf2a4f; color:#cf2a4f;}
.gifts dd p img{ width:50px; width:50px; margin-right:10px;}
.gifts dd p.hover i{ position:absolute; bottom:0px; right:0px; background:url(../images/gou-1.png) no-repeat center center; background-size:15px 15px; width:15px; height:15px; display:block;}

.main .price{ margin:13px 0;}
.main .price dt{ line-height:35px; height:35px; text-align:left; padding-left:2%; font-weight:bold;}
.main .price dd{min-height: 34px; margin-left: 2%;line-height:35px; }
.main .price dd div{ position:relative; top:3px;}
.main .price dd div i:nth-child(1){ background:url(../images/jjh.gif) no-repeat left center; border:1px solid #ccc; display:block; width:26px; height:26px;  cursor: pointer; float:left; border-radius:3px 0px 0px 3px;}
.main .price dd div span:nth-child(2){ border:1px solid #ccc; display:block; width:50px; line-height:26px; height:26px;  float:left; text-align:center; border-left:none;border-right:none;}
.main .price dd div i:nth-child(3){ background:url(../images/jjh.gif) no-repeat right center; border:1px solid #ccc; display:block; width:26px; height:26px;  cursor: pointer; float:left; border-radius:0px 3px 3px 0px;}
.main .price dd strong{ float:right; background:#f2f2f2; padding:0px 15px; color:#cf2a4f; font-size:16px;margin-right:2%;}
.main .price dd strong i{ font-size:16px;}

.main .form{ clear:both; width:96%; margin:0px 2%; overflow:hidden; }
.main .form dt{ font-weight:bold; line-height:35px;}
.main .form dd{ line-height:45px; }
.main .form dd input{ width:94%; border-radius:3px; border:1px solid #ebebeb; line-height:34px; height:34px; padding:0px 2%; font-size:14px;}
.main .form dd select{ float:left; width:32%; margin-right:1.2%; text-align:center; height:35px; line-height:35px; border:1px solid #ccc; border-radius:3px;}
.main .form dd select option{ text-align:center; width:100%;}
.main .form dd textarea{ width:94%; height:50px; line-height:20px; padding:0px 2%; font-size:14px; border-radius:3px; border:1px solid #ebebeb; }
.main .form dd li{ position:relative; float:left; margin-right:5px; margin-bottom:5px; cursor:pointer;}
.main .form label{ width:50px; margin-right:20px; line-height:35px; float:left;}
.main .form label input[type="radio"]{ width:20px; float:left; margin-right:5px;}
.main .form dd input[name="sms"]{ width:54% !important;}
.main .form dd object i{float: right; margin-right:2%; width: 38%; text-align: center; line-height: 34px; background: #F40;border-radius: 3px; color: #fff;cursor: pointer;}
.main .form dd object i.sms-bg{ background:#ccc;}
.main .form dd p{ border-radius:3px; border:2px solid #cf2a4f; display:table; padding:0px 10px;}
.main .form dd p img{ width:30px; margin:0px 5px;}
.main .form dd.form-dd{ margin-bottom:-10px;}

.main .form dd li.huodao{ border:2px solid #ccc; border-radius:3px; padding:0px 10px 0px 32px; display:inline-block; background:url(../images/pay1.png) no-repeat 5px center; background-size:23px 23px;}
.main .form dd li.wechat,.main .form dd li.wechatcode{ border:2px solid #ccc; border-radius:3px; padding:0px 10px 0px 32px; display:inline-block; background:url(../images/pay2.png) no-repeat 5px center; background-size:23px 23px;}
.main .form dd li.alipay,.main .form dd li.alipaycode{ border:2px solid #ccc; border-radius:3px; padding:0px 10px 0px 32px; display:inline-block; background:url(../images/pay3.png) no-repeat 5px center; background-size:23px 23px;}

.main .form dd li.hover{border:2px solid rgb(251,0,60) !important; color:rgb(251,0,60);}
.main .form dd li i.gou{ position:absolute; bottom:0px; right:0px; background:url(../images/gou-4.png) no-repeat center center; background-size:15px 15px; width:15px; height:15px; display:block;}
.pay-title{ border-radius:3px; border:1px solid rgb(251,0,60); margin:0px 2%; color:rgb(251,0,60); padding:1% 2%;}
.submit{ width:96%;  background:rgb(251,0,60); font-size:16px; overflow:hidden; border-radius:3px; text-align:center; color:#fff; margin:15px 2%; padding:3% 0px; cursor:pointer;}

.close-btn {
    width: 100%;
    height: 40px;
    border-radius: 15px;
    background-color: rgb(254, 89, 50);
    color: #fff;
    font-size: 14px;
    border: none;
}

.fixed-box {
    width: 40px;
    height: 50px;
    position: fixed;
    top: 20%;
    right: 5px;
    background-color: #fff;
    z-index: 999999999;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.fixed-image {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-color: rgb(254, 89, 50);
    border-radius: 5px;
}

.fixed-box div {
    width: 100%;
    height: 10px;
    font-size: 8px;
    color: rgb(254, 89, 50);
    text-align: center;
    margin-top: 3px;
}