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

/* ========================================
   CSS变量定义
   ======================================== */
:root {
  /* 颜色定义 */
  --primary-color: #cf2a4f;
  --primary-color-light: #ff284a;
  --secondary-color: #f2f2f2;
  --text-color: #333;
  --text-color-light: #666;
  --border-color: #ccc;
  --bg-color: #f5f5f5;
  --danger-color: #e40031;
  --success-color: #28a745;
  
  /* 间距定义 */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  
  /* 圆角定义 */
  --border-radius-sm: 3px;
  --border-radius-md: 5px;
  --border-radius-lg: 10px;
  --border-radius-xl: 15px;
  
  /* 字体大小 */
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
}

/* ========================================
   重置样式和基础样式
   ======================================== */
* {
  box-sizing: border-box;
}

body, ol, ul, h1, h2, h3, h4, h5, h6, p, th, td, dl, dd, form, fieldset, legend, input, textarea, select, html {
  margin: 0;
  padding: 0;
}

html {
  background: #f1f1f1;
}

body {
  font-size: var(--font-size-base);
  font-family: "微软雅黑", Arial, sans-serif;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  max-width: 800px;
  overflow-x: hidden;
  margin: 0 auto;
  line-height: 1.5;
}

a {
  text-decoration: none;
  font-family: "微软雅黑", sans-serif;
}

a:hover {
  text-decoration: none;
}

em, i {
  font-style: normal;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select, textarea {
  font-family: "微软雅黑", sans-serif;
}

p {
  word-wrap: break-word;
}

/* ========================================
   工具类
   ======================================== */
.c {
  clear: both;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.h-8 {
  background: var(--bg-color);
  height: 8px;
}

/* ========================================
   头部样式
   ======================================== */
header {
  line-height: 45px;
  height: 45px;
  font-size: var(--font-size-lg);
  background: #000;
  width: 100%;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* ========================================
   轮播图样式
   ======================================== */
.swiper-slide img {
  width: 100%;
}

/* ========================================
   价格区域样式
   ======================================== */
.price-bg {
  background: #fff;
  color: var(--danger-color);
  overflow: hidden;
  padding: 2%;
}

.price-bg dt {
  float: left;
  font-weight: bold;
  font-size: var(--font-size-md);
  line-height: 30px;
}

.price-bg dt p {
  font-size: var(--font-size-sm);
  float: left;
}

.price-bg dt p span {
  font-size: 26px;
  padding: 0 3px;
}

.price-bg dt li {
  color: #C77989;
  float: left;
  font-size: var(--font-size-base);
  margin-top: 3px;
  margin-left: 10px;
  text-decoration: line-through;
}

.price-bg dd {
  float: right;
  font-weight: bold;
  font-size: var(--font-size-md);
  line-height: 30px;
}

.description {
  font-weight: bold;
  font-size: var(--font-size-lg);
  text-align: center;
  padding: 3% 0;
  color: var(--text-color);
}

.goumai {
  background: rgb(252, 237, 235);
  color: rgb(244, 75, 75);
  text-align: center;
  font-size: var(--font-size-lg);
  padding: 7% 0;
  font-weight: bold;
}

.goumai img {
  margin-right: 5px;
}

.xuanze {
  font-size: var(--font-size-md);
  color: var(--text-color-light);
  margin: 10px 2%;
}

.thumb-show {
  width: 90%;
  overflow: hidden;
  position: relative;
}

.thumb-show dt {
  float: left;
  width: 60%;
}

.thumb-show dt img {
  width: 100%;
}

.thumb-show dd {
  position: absolute;
  bottom: 0;
  left: 62%;
}

.thumb-show dd b {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
}

.thumb-show dd b span {
  font-size: var(--font-size-sm);
}

.thumb-show dd p {
  line-height: 20px;
  color: #555;
  text-decoration: line-through;
}

.form-title {
  background: var(--bg-color);
  height: 50px;
  line-height: 50px;
  padding-left: 2%;
}

.getarea {
  border: 1px solid #ebebeb !important;
  border-bottom: 1px solid var(--border-color);
  height: 35px !important;
  line-height: 35px !important;
}

/* ========================================
   标题样式
   ======================================== */
.title {
  font-weight: bold;
  line-height: 23px;
  font-size: var(--font-size-base);
  margin-bottom: 15px;
  padding: 0px 2%;
}

.title span {
  background: var(--primary-color);
  color: #fff;
  margin: 0 5px;
  width: 38px;
  border-radius: 12px;
  font-size: var(--font-size-sm);
  text-align: center;
  height: 23px;
  display: inline-block;
  font-weight: normal;
}

/* ========================================
   列表样式
   ======================================== */
.top-li {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
}

.top-li li {
  float: left;
  width: 33.33%;
  text-align: center;
  color: #555;
}

.top-li li span {
  width: 20px;
  margin: 0 3px;
  top: -1px;
  position: relative;
  display: inline-block;
}

.top-li li span img {
  width: 100%;
}

/* ========================================
   时间样式
   ======================================== */
.time {
  color: #000;
  font-size: var(--font-size-md);
  text-align: center;
  line-height: 25px;
  width: 250px;
  margin: 15px auto 0px auto;
  clear: both;
  overflow: hidden;
}

.time dt, .time dd {
  float: left;
}

.time dd {
  color: var(--primary-color);
  font-weight: bold;
}

.time dd span {
  background: var(--primary-color);
  font-weight: bold;
  color: #fff;
  padding: 0px 7px;
  border-radius: 2px;
  margin: 0px 3px;
  display: inline-block;
}

/* ========================================
   购买按钮样式
   ======================================== */
.top-buy {
  width: 96%;
  margin: 15px 2%;
}

.top-buy a {
  display: block;
  width: 100%;
  font-size: var(--font-size-md);
  height: 45px;
  border-radius: var(--border-radius-md);
  line-height: 45px;
  text-align: center;
  background: var(--primary-color);
  color: #fff;
}

/* ========================================
   内容区域样式
   ======================================== */
.content {
  width: 100%;
  overflow: hidden;
}

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

.bw-title {
  height: 45px;
  line-height: 45px;
  color: #333333;
  font-size: var(--font-size-md);
  background: var(--bg-color);
  padding-left: 15px;
}

/* ========================================
   评论区域样式
   ======================================== */
.review {
  height: 300px;
  width: 98%;
  overflow: hidden;
  margin: 10px auto;
  color: var(--text-color-light);
}

.review dl {
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  padding: 5px 10px;
}

.review dl dt {
  line-height: 20px;
  font-size: var(--font-size-base);
  color: var(--text-color);
}

.review dl dd {
  margin-top: 5px;
}

/* ========================================
   主要内容样式
   ======================================== */
.main {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  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: var(--border-radius-sm);
  text-align: center;
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  margin: 0px 8px 5px 0px;
  padding: 8px 15px;
  cursor: pointer;
  position: relative;
}

.main .type-1 dd li i.gou {
  position: absolute;
  bottom: 0;
  right: 0;
  background-size: 15px 15px;
  width: 15px;
  height: 15px;
  display: block;
}

.main .type-1 dd li.hover {
  border: 1px solid var(--primary-color);
  color: #fff;
  background: var(--primary-color);
}

.main .type-1 dd li img {
  width: 80px;
  height: 80px;
}

/* 类型11样式 */
.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: var(--border-radius-sm);
  width: 40%;
  text-align: center;
  background: #fff;
  border: 2px solid var(--secondary-color);
  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 var(--border-color);
}

.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 var(--secondary-color);
}

.main .type-11 dd li.hover i span {
  background: var(--primary-color);
  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%;
}

/* 类型3样式 */
.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: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  height: 35px;
  line-height: 35px;
}

/* 类型4样式 */
.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;
}

.normstitle {
  border-bottom: 2px solid var(--border-color);
  line-height: 30px;
  font-weight: bold;
}

/* 礼品样式 */
.gifts {
  margin-top: 10px;
}

.gifts dt {
  margin-bottom: 10px;
}

.gifts dd p {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 5px 10px;
  position: relative;
  margin-bottom: 10px;
  float: left;
  margin-right: 10px;
}

.gifts dd p.hover {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.gifts dd p img {
  width: 50px;
  margin-right: 10px;
}

.gifts dd p.hover i {
  position: absolute;
  bottom: 0;
  right: 0;
  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 var(--border-color);
  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 var(--border-color);
  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 var(--border-color);
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
  float: left;
  border-radius: 0px 3px 3px 0px;
}

.main .price dd strong {
  float: right;
  background: var(--secondary-color);
  padding: 0 15px;
  color: var(--primary-color);
  font-size: var(--font-size-md);
  margin-right: 2%;
}

.main .price dd strong i {
  font-size: var(--font-size-md);
}

/* 表单样式 */
.main .form {
  clear: both;
  width: 96%;
  margin: 2px 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: var(--border-radius-sm);
  border: 1px solid #ebebeb;
  line-height: 34px;
  height: 34px;
  padding: 0px 2%;
  font-size: var(--font-size-base);
}

.main .form dd select {
  float: left;
  width: 32%;
  margin-right: 1.2%;
  text-align: center;
  height: 35px;
  line-height: 35px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
}

.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: var(--font-size-base);
  border-radius: var(--border-radius-sm);
  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: var(--border-radius-sm);
  color: #fff;
  cursor: pointer;
}

.main .form dd object i.sms-bg {
  background: #ccc;
}

.main .form dd p {
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--primary-color);
  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 var(--border-color);
  border-radius: var(--border-radius-sm);
  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 var(--border-color);
  border-radius: var(--border-radius-sm);
  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 var(--border-color);
  border-radius: var(--border-radius-sm);
  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.is_wechat, .main .form dd li.xor_wechat, .main .form dd li.ks_wechat {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 0 10px 0 32px;
  display: inline-block;
  background-size: 23px 23px;
}

.main .form dd li.hover {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color);
}

.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: var(--border-radius-sm);
  border: 1px solid var(--primary-color);
  margin: 0px 2%;
  color: var(--primary-color);
  padding: 1% 2%;
  font-size: 15px;
  font-weight: 550;
}

.submit {
  width: 96%;
  background: var(--primary-color);
  font-size: var(--font-size-md);
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  text-align: center;
  color: #fff;
  margin: 15px 2%;
  cursor: pointer;
}

/* 发货信息样式 */
.fahuo {
  height: 260px;
  overflow: hidden;
  width: 100%;
  margin: 0px auto;
}

.fahuo ul {
  overflow: hidden;
}

.fahuo ul li {
  padding: 10px 5px;
  color: var(--text-color-light);
  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: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  padding: 0px 2%;
}

.search dd {
  width: 20%;
  float: right;
  border-radius: var(--border-radius-sm);
  height: 35px;
  line-height: 35px;
  background: var(--primary-color);
  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: var(--font-size-sm);
}

.copyright {
  text-align: center;
  color: #999;
  margin-top: 7px;
  font-size: var(--font-size-sm);
}

.jubao {
  height: 30px;
  margin-top: 5px;
}

.jubao dt {
  float: left;
  padding-left: 10px;
}

.jubao dd {
  float: right;
  padding-right: 10px;
}

.jubao dd a {
  color: var(--text-color-light);
}

.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: var(--primary-color);
  box-sizing: border-box;
}

.fixed-nav li:nth-child(2n+0) a {
  background: var(--primary-color);
  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: var(--font-size-sm);
  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: var(--font-size-base);
}

.wx-html li font {
  color: var(--primary-color);
  font-weight: bold;
  font-size: var(--font-size-md);
}

.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: var(--border-radius-sm);
}

.postage dt, .prompt dt {
  font-weight: bold;
}

.postage dd label {
  width: 94% !important;
  background: #d2d2d2;
  border-radius: var(--border-radius-sm);
  padding: 0px 2%;
}

.postage dd label.hover {
  background: var(--primary-color);
  color: #fff;
}

/* ========================================
   响应式设计
   ======================================== */
@media screen and (max-width: 800px) {
  .ldts {
    left: 10px;
    margin-left: 0px;
  }
  
  .fixed-nav {
    width: 100%;
    left: 0px;
    margin-left: 0px;
  }
}

@media screen and (max-width: 700px) {
  .time-top dt {
    font-size: 40px;
  }
  
  .time-top dt i {
    font-size: 20px;
  }
  
  .time-top dd {
    line-height: 25px;
  }
  
  .main .price dd strong {
    font-size: 24px;
  }
  
  .main .price dd strong i {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .time-top dt {
    font-size: 34px;
  }
  
  .time-top dt i {
    font-size: 18px;
  }
  
  .time-top dd {
    line-height: 25px;
  }
}

@media screen and (max-width: 500px) {
  header {
    height: 40px;
    line-height: 40px;
    font-size: var(--font-size-md);
  }
  
  .time-top dt {
    font-size: 26px;
  }
  
  .time-top dt i {
    font-size: 16px;
  }
  
  .time-top dd {
    line-height: 22px;
    font-size: var(--font-size-base);
  }
  
  .time-time dt {
    font-size: 18px;
    width: 40%;
  }
  
  .time-time dd {
    width: 55%;
  }
  
  .time-time dd span {
    font-size: 22px;
  }
  
  .main .price dd strong {
    font-size: 20px;
  }
  
  .main .price dd strong i {
    font-size: 12px;
  }
}

/* ========================================
   新增样式
   ======================================== */
.price-bg-14 {
  background: linear-gradient(to right, rgb(235 9 29), rgb(232 138 122));
  height: 50px;
  padding: 8px 3%;
}

.price-bg-14-l dt {
  float: left;
}

.price-bg-14-l dt b {
  color: #fff;
  margin: 0 0 0 0;
  font-size: var(--font-size-md);
}

.price-bg-14-l dt p {
  color: #fff;
}

.price-bg-14-l dd {
  float: right;
  color: #fff;
  font-weight: bold;
  text-decoration: line-through;
  font-size: 13px;
}

.price-bg-14-r {
  color: #fff;
}

.price-bg-14-r dt {
  text-align: right;
}

.price-bg-14-r dd {
  margin: 7px 0 0 0;
}

.price-bg-14-r dd span {
  background: #fd7c9a;
  padding: 3px 4px;
  border-radius: 2px;
  margin: 0 3px 0 3px;
}

.bg-17 {
  background: #f1f1f1;
  overflow: hidden;
    width: 100%;
}

.title {
  font-size: var(--font-size-md);
  padding: 7px 3%;
  margin: 10px 3%;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.title ul {
  margin: 5px 0 0 0;
}

.title ul li {
  background: var(--primary-color-light);
  color: #fff;
  font-size: var(--font-size-sm);
  float: left;
  border-radius: var(--border-radius-sm);
  margin: 0 4px 0 0;
  padding: 0 5px;
  font-weight: 500;
}

.tequan {
  padding: 7px 3%;
  margin: 10px 3%;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  font-weight: bold;
  font-size: 13px;
}

.tequan b {
  color: var(--primary-color-light);
  font-size: 20px;
}

.tequan i {
  background: var(--primary-color-light);
  color: #fff;
  font-size: 16px;
  padding: 3px 5px;
  border-radius: 5px;
  margin: 0 3px;
}

.baozhang {
  padding: 7px 3%;
  margin: 10px 3%;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.baozhang dl dt {
  color: rgb(171, 137, 111);
  font-size: var(--font-size-md);
  font-weight: bolder;
}

.baozhang dl dd li {
  float: left;
  font-size: var(--font-size-sm);
  color: rgb(171, 137, 111);
  width: 25%;
  line-height: 22px;
  margin: 5px 0 0 0;
}

.baozhang dl dd li span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgb(171, 137, 111);
  color: rgb(171, 137, 111);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-sm);
  float: left;
  margin: 0 3px 0 0;
}

.liyou {
  padding: 7px 3%;
  margin: 10px 3%;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.liyou dl dt {
  color: red;
  font-size: 14px;
}

.butie {
  padding: 7px 3%;
  margin: 10px 3%;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.butie dl dt {
  font-weight: bolder;
  font-size: 14px;
  line-height: 35px;
}

.butie dl dt b {
  float: right;
  color: #e84256;
}

.butie li {
  overflow: hidden;
  margin: 0 0 10px 0;
}

.butie li div.butie-li-1 {
  float: left;
  margin: 0 10px 0 0;
}

.butie li div.butie-li-2 {
  float: left;
  width: 60%;
}

.butie li div.butie-li-3 {
  float: right;
  margin: 5px 0 0 0;
  background: red;
  color: #fff;
  width: 80px;
  text-align: center;
  line-height: 30px;
  border-radius: 15px;
}

.butie li div.butie-li-3 a {
  display: block;
  color: #fff;
}

.butie li div.butie-li-1 img {
  width: 40px;
}

.butie li div.butie-li-2 span {
  font-size: var(--font-size-sm);
  color: #999;
  line-height: 22px;
  height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

#butie {
  background: #fff;
  height: 100px;
}

.bw-title {
  background: #fff;
  font-weight: bold;
}

.bw-title i {
  float: right;
  color: #e84256;
  font-size: 13px;
  margin: 0 10px 0 0;
}

.fixed-nav li a, .main .price dd strong {
  color: var(--primary-color-light) !important;
}

.top-buy a, .fixed-nav li:nth-child(2n+0) a, .search dd, .submit {
  background: red !important;
  color: #fff !important;
}

.main .form dd li.hover {
  border: 2px solid var(--primary-color-light) !important;
  color: var(--primary-color-light);
}

.main .type-1 dd li.hover {
  border: 1px solid var(--primary-color-light);
  color: #fff;
  background: var(--primary-color-light);
}

.show-img {
  width: 100%;
  display: none;
}

.first-show {
  background-color: rgba(0, 0, 0, 0);
}

.haopin {
  text-align: center !important;
  background: #f1f1f1;
  line-height: 40px;
}

.div-select-product dl {
  height: 100px;
}

.div-select-product dl dt {
  float: left;
  width: 100px;
}

.div-select-product dl dt img {
  width: 100px;
  height: 100px;
}

.div-select-product dl dd {
  margin: 0 0 0 110px;
  position: relative;
  height: 100px;
}

.div-select-product dl dd h2 {
  font-size: var(--font-size-md);
}

.div-select-product dl dd h3 {
  font-size: var(--font-size-xl);
  color: #ff5600;
  position: absolute;
  bottom: 0;
  font-weight: 550;
}

.div-select-product dl dd h3 i {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.div-pay {
  display: block;
  clear: both;
  overflow: hidden;
  border-bottom: 1px dashed var(--border-color);
}

.div-pay .div-pay-img {
  float: left;
  width: 40px;
}

.div-pay .div-pay-img img {
  width: 30px;
}

.div-pay .div-pay-text h2 {
  font-size: 15px;
  line-height: 20px;
  color: #000;
}

.div-pay .div-pay-text h3 {
  font-size: 12px;
  line-height: 20px;
  color: #999;
}

.div-pay .div-pay-text i {
  color: red;
}

.div-pay .div-pay-select {
  float: right;
  margin: 5px 0 0 0;
}

.div-pay .div-pay-select i {
  font-size: 18px;
  color: #999;
}

.div-pay .pay-select i {
  font-size: 18px;
  color: red;
}

.price-dl {
  margin: 15px;
}

.price-dl dl {
  border-bottom: 1px solid #f1f1f1;
  width: 100%;
  overflow: hidden;
  line-height: 35px;
}

.price-dl dl dt {
  float: left;
}

.price-dl dl dd {
  float: right;
  font-weight: 550;
  font-size: 20px;
}

.price-dl dl dd.dd {
  float: right;
  font-weight: 500;
  font-size: 14px;
}

.price-dl dl dd.reds {
  color: red;
}

.clause-dl {
  margin: 10px 20px;
  font-size: var(--font-size-sm);
}

.clause-dl dl dt {
  float: left;
  margin: 0 5px 0 0;
}

.clause-dl dl dt input {
  width: 13px;
  height: 18px;
}

.clause-dl dl dd i {
  color: #218ffd;
}

.clause-content p span {
  white-space: normal !important;
}

.bottom-nav {
  width: 100%;
  overflow: hidden;
  position: fixed;
  z-index: 999999;
  left: 0;
  bottom: 0;
  background: #fff;
  height: 60px;
  font-size: 13px;
}

.bottom-nav dl dt {
  float: left;
  text-align: center;
  width: 12%;
  margin: 10px 0 0 0;
}

.bottom-nav dl dt i {
  overflow: hidden;
  display: block;
  font-size: 20px;
  color: #333;
}

.bottom-nav dl dd {
  float: left;
  width: 30%;
  text-align: center;
  margin: 12px 0 0 0;
}

.bottom-nav dl li {
  float: left;
  background: red;
  color: #fff;
  text-align: center;
  width: 46%;
  height: 60px;
  padding: 10px 0 0 0;
}

.bottom-nav dl li a {
  color: #fff;
}

.ldts p {
  display: none;
  opacity: 0;
}

/* ========================================
   动画效果
   ======================================== */
@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(2deg) translate3d(0, 0, 0)
  }
  
  50% {
    -webkit-transform: rotate(-2deg) translate3d(0, 0, 0)
  }
  
  100% {
    -webkit-transform: rotate(2deg) translate3d(0, 0, 0)
  }
}

@-moz-keyframes shake {
  0% {
    transform: rotate(2deg) translate3d(0, 0, 0)
  }
  
  50% {
    transform: rotate(-2deg) translate3d(0, 0, 0)
  }
  
  100% {
    transform: rotate(2deg) translate3d(0, 0, 0)
  }
}

@-ms-keyframes shake {
  0% {
    transform: rotate(2deg) translate3d(0, 0, 0)
  }
  
  50% {
    transform: rotate(-2deg) translate3d(0, 0, 0)
  }
  
  100% {
    transform: rotate(2deg) translate3d(0, 0, 0)
  }
}

.red {
  width: 300px;
  height: 400px;
  border-radius: var(--border-radius-xl);
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  margin-left: -150px;
  margin-top: -172px;
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  z-index: 9999;
}

.red img {
  width: 100%;
  height: auto;
}

.red.shake {
  animation: shake .2s infinite linear;
  -webkit-animation: shake .2s infinite linear;
}

.windows {
  width: 300px;
  height: 400px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -150px;
  margin-top: -172px;
  border-radius: var(--border-radius-xl);
  display: none;
  z-index: 99999;
}

.text {
  text-align: center;
  font-size: var(--font-size-lg);
  font-family: "微软雅黑", sans-serif;
  vertical-align: middle;
  padding-top: 60px;
}

.text a {
  color: #fff;
}

#money_value {
  font-size: 25px;
  color: #ffe715;
}

.form input {
  width: 75%;
  border-radius: var(--border-radius-sm);
  border: 1px solid #ebebeb;
  line-height: 34px;
  height: 34px;
  padding: 0px 2%;
  font-size: var(--font-size-base);
  float: right;
}

.close img {
  padding-top: 5px;
  width: 30px;
  height: 30px;
  position: absolute;
  right: -10px;
  top: -10px;
  background: #c7c7c7;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
}

.main .type-1 dt {
  line-height: 20px;
}

.main .type-1 dd li img {
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
}

.opacity {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.5;
  filter: alpha(opacity=50);
  z-index: 10;
  width: 100%;
  height: 100%;
  display: none;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-xl);
  padding: 25px;
  width: 250px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fdbb2d;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  max-width: 90%;
  width: 700px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.4s ease;
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.close-btns {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4757;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s ease;
}

.close-btns:hover {
  transform: rotate(90deg);
  background: #ff2e43;
}

.modal-image {
  width: 100%;
  height: auto;
  display: block;
}

.timer-container {
  padding: 20px;
  background: #FFF8DC;
  color: #2c3e50;
  text-align: center;
}

.timer-container h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

#timer {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fdbb2d;
  background: rgba(0, 0, 0, 0.3);
  letter-spacing: 3px;
  font-family: 'Courier New', monospace;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
}

.instructions {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.instructions h2 {
  margin-bottom: 15px;
  color: #fdbb2d;
}

.instructions ul {
  text-align: left;
  margin-left: 20px;
  line-height: 1.8;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  padding: 0 20px 25px;
}

.btn-primary {
  background: linear-gradient(to right, #ff8a00, #da1b60);
  color: white;
  box-shadow: 0 8px 20px rgba(218, 27, 96, 0.4);
  font-size: 1.5rem;
  border-radius: var(--border-radius-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(218, 27, 96, 0.5);
}

.btn {
  width: 100%;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2.2rem;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-card {
    width: 100%;
    max-width: 350px;
  }
  
  #timer {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.8rem;
  }
  
  .header p {
    font-size: 1rem;
  }
  
  #timer {
    font-size: 1.5rem;
  }
}