/*
Theme Name:     B2子主题
Theme URI:      http: //7b2.com/
Description:    Child theme for the B2 PRO
Author:         子主题模版
Author URI:     http: //7b2.com/
Template:       b2
Version:        0.1.5
*/

/*下面是您自己DIY的css样式代码*/

/*头部搜索栏目导航*/
 .fast-pass-part {
    margin-bottom: 20px;
    height: 180px;
    background: #fff;
    border-radius: 6px;
    position: relative;
  }
  .fast-pass-part .part-container {
    padding: 28px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    border-radius: 6px;
    height: 100%;
  }
  .fast-pass-part .one-shortcut {
    width: 25%;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding-left: 26px;
  }
  .fast-pass-part .one-shortcut>img ,.fast-pass-part .one-shortcut a img{
    width: 42px;
    height: 42px;
    margin-right: 10px;
  }
  img {
    border-style: none;
  }
  *,
  :after,
  :before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
  }
  .fast-pass-part .one-shortcut .name {
    font-weight: 600;
    font-size: 16px;
    color: #121622;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
    padding: 0;
  }
  .fast-pass-part .recommend-keys {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px;
  }
  .fast-pass-part .recommend-keys .recommend-key {
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    color: #778193;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .fast-pass-part .recommend-keys .recommend-key .new-icon2 {
    width: 18px;
    height: 14px;
    margin-left: 3px;
  }
  .fast-pass-part .recommend-keys .recommend-key:last-child {
    margin-right: 0;
  }
  
  /*底部VIP介绍*/
/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

/* 主容器 - 宽度自适应 */
.vip-section {
    width: 100%;
    /*padding: 40px 0px;*/

}

.section-title {
    text-align: center; /* 整体居中 */
    margin: 30px 0 30px; /* 上下间距 */
}

.section-title h2 {
    font-size: 28px; /* 标题字号，可根据需要调整 */
    color: #333;
    font-weight: normal;
    margin: 0 0 15px;
}

.section-title .line {
    display: inline-block;
    width: 80px; /* 下划线长度 */
    height: 5px;  /* 下划线高度 */
    background-color: #ff5f33; /* 和你VIP按钮同色的橙色 */
    border-radius: 4px; /* 圆角，和原图一致 */
}

/* 卡片列表 - 自适应布局 */
.vip-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px; /* 卡片之间的间距 */
    max-width: 1300px; /* 最大宽度限制 */
    margin: 0 auto;
}

/* 单个VIP卡片 - 自适应宽度 */
.vip-card {
    flex: 1 1 22%; /* 自适应宽度，最小22%，一行4个 */
    min-width: 220px; /* 小屏幕不会太窄 */
    max-width: 310px; /* 大屏幕不会太宽 */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* 卡片头部标题栏 */
.card-header {
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

/* 不同卡片的头部颜色 */
.card-orange .card-header { background-color: #ff5f33; }
.card-blue .card-header { background-color: #17c0eb; }
.card-purple .card-header { background-color: #8024dd; }
.card-yellow .card-header { background-color: #d4c65a; }

/* 价格区域 */
.card-price {
    text-align: center;
    padding: 30px 0 10px;
}
.price-num {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}
.price-unit {
    font-size: 20px;
    color: #666;
    margin-left: 5px;
}

/* 时长标签 */
.card-duration {
    text-align: center;
    color: #666;
    font-size: 16px;
    background-color: #f5f5f5;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    margin: 0 auto 30px;
}

/* 功能列表 */
.card-features {
    list-style: none;
    padding: 0 30px;
    margin-bottom: auto; /* 把按钮挤到底部 */
}
.card-features li {
    color: #333;
    font-size: 16px;
    line-height: 2.5;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.card-features li:last-child {
    border-bottom: none;
}

/* 按钮 */
.card-btn {
    display: block;
    margin: 30px;
    padding: 12px 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 30px;
    transition: opacity 0.3s;
}
.card-btn:hover {
    opacity: 0.9;
}

/* 不同卡片的按钮颜色 */
.card-orange .card-btn { background-color: #ff5f33; }
.card-blue .card-btn { background-color: #17c0eb; }
.card-purple .card-btn { background-color: #8024dd; }
.card-yellow .card-btn { background-color: #d4c65a; }

/* 响应式适配 */
@media (max-width: 1024px) {
    .vip-card {
        flex: 1 1 45%; /* 平板一行2个 */
    }
}
@media (max-width: 576px) {
    .vip-card {
        flex: 1 1 100%; /* 手机一行1个 */
    }
    .card-header {
        font-size: 20px;
    }
    .price-num {
        font-size: 36px;
    }
}
/*vip页面卡片数量*/
.vip-item {width:20%;padding: 0px;}
