/* 大图搜索 开始  */
.search {
	width: 100%;
    min-width: 1240px;
	height: 446px;
	background: url(../../front/default/public/image/888.png) no-repeat;
	background-size: 100%;
}

.search .tit {
	color: #fff;
	font-size: 35px;
	width: 100%;
	text-align: center;
	padding-top: 130px;
	letter-spacing: 10px
}

.search .sousuo {
	width: 70%;
	margin: 30px auto;
	background-color: rgba(255, 255, 255, 0.5);
	box-sizing: border-box;
	padding: 10px;
	border-radius: 6px;
	font-size: 0;
}

.search .sousuo input {
	box-sizing: border-box;
	width: 88%;
	height: 40px;
	border: 0;
	border-radius: 6px 0 0 6px;
	margin: 0 !important;
	padding: 0 10px !important;
	vertical-align: top;
	font-size: 14px;
}

.search .sousuo button {
	width: 11.6%;
	height: 40px;
	line-height: 40px;
	border: 0;
	margin: 0 !important;
	border-radius: 0px 6px 6px 0px;
	padding: 0 !important;
	font-size: 14px;
	vertical-align: top;
	background-color: #4470f5;
	color: #fff;
}

.search .sousuo button:hover {
	background-color: #113bb9;
}

.search .hot {
	color: #ccc;
	width: 70%;
	max-height: 116px;
	overflow: hidden;
	margin: 30px auto;
}

.search .hot h6 {
	padding: 0;
	font-size: 18px;
	height: 18px;
}

.search .hot a {
	height: 18px;
	margin-right: 18px;
	cursor: pointer;
	padding: 0 6px;
	margin-bottom: 10px;
	font-size: 14px;
}

.search .hot a:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
}

/* 大图搜索 结束  */

/* 通知栏 开始 */
.notice {
    margin: auto;
    box-sizing: border-box;
    padding: 0 !important;
  }
  
  .notice .left {
    box-sizing: border-box;
    padding: 20px 50px 20px 20px;
    background-color: rgba(68, 112, 245, 0.1);
    border-radius: 50px;
  }
  
  .notice-icon {
    color: #4470f5;
    margin-right: 10px;
  }
  
  .notice .left .tit {
    color: #4470f5;
    font-size: 16px;
  }
  
  .notice .left .shu {
    margin: 0 10px;
    font-size: 20px;
    color: #999;
  }
  
  .notice .left .world {
    color: #666;
    font-size: 14px;
    width: 360px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .notice .left .time {
    color: #666;
    font-size: 15px;
   
  }
  .notice .right{
    margin: auto;
  }
  .notice .right .item{
    font-size: 9px;
    color: #666;
    padding: 0px;
  }
  .notice .right .icons{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #FFF;
    background-color: #a9bcfa;
    margin: 0;
    margin-right: 5px;
  }
  
  /* 通知栏 结束 */
  /* 选项列表 */
  .card-choose {
    background-color: #fff;
    padding: 6px 0;
    margin: 30px auto;
    border-radius: 3px;
    box-sizing: border-box;
  }
  .card-choose .item{
    color: #555;
    font-size: 13px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 6px;
  }
  .card-choose .item:hover{
    background-color: #f6f6f6;
    color: #4470f5;
  }
  /* 选项列表/ */

/* 对图片做hover放大处理 */
.image {
    transition: all 1s linear;
}

.image:hover {
    cursor: pointer;
    transition: 0.2s;
    transition-duration: 1s;
    transform: scale(1.2);
    transition-timing-function: ease-in-out;
}

/* 对图片做hover放大处理/ */

/* 左右 */
/* ------------左---------------------*/
.zuoyou .left {
    width: 886px;
}
/* 知识图谱 */
.zhishi {
    /* margin-top: 20px; */
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 25px;
}

.zhishi .tit {
    padding: 15px 15px 15px;
}

.zhishi .tit h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.zhishi ul {
    padding: 0 8px;
}

.zhishi li {
    margin: 7px 7px 10px;
    width: 276px;
    border-radius: 6px;
    border-bottom: 1px solid #f8f8f8;
}
.zhishi .item{
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 2px 2px 10px #eee;
  }
  /* ---------------------------------------门店图片动画开始 */
.zhishi .animated {
    animation-duration: 1s; /*动画时间*/
    animation-fill-mode: both; /*播放后的状态*/
  }
  
.zhishi .animated {
    animation-iteration-count: infinite; /*动作循环的次数：infinite 无限循环*/
  }
  
.zhishi .animated {
    animation-duration: 2s; /*动画时间*/
  }
.zhishi .item:hover{
  animation-name:img; /*动画的名称*/
    transform-origin: center bottom; /*设置动画旋转元素的基点为：居中靠下*/
    cursor: pointer;
    box-shadow: 2px 2px 15px #ccc;
  }
  @keyframes img{
  0%,
  100%,
  20%,
  50%,
  80% {
  transition-timing-function: cubic-bezier(0.215,.61,.355,1); /*贝塞尔曲线 ： X1 Y1 X2 Y2*/
  transform: translate3d(0,0,0); /*设置只在Z轴上移动*/
  }
  40%,
  43%{
  transition-timing-function: cubic-bezier(0.755,0.50,0.855,0.060);
  transform: translate3d(0,-30px,0);
  }
  70%{
  transition-timing-function: cubic-bezier(0.755,0.050,0.855,0.060);
  transform: translate3d(0,-15px,0);
  }
  90%{
  transform: translate3d(0,-4px,0);
  }
  }
  .zhishi .item .jiao{
    position: absolute;
    border-radius: 6px 0 0 0;
  }
  .zhishi .item .product{
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
  }
  .zhishi .item .one{
    margin: 0px 16px 0px 0;
    font-size: 12px;
    color: #999;
  }
  .zhishi .item .one span{
    font-size: 18px;
    font-weight: bolder;
    margin-right: 5px;
  }
  .zhishi .orange{
    color: #fd721f;
  }
  .zhishi .green{
    color: #4caf50;
  }
  .zhishi .blue{
    color: #2c9bf4;
  }
  .zhishi .item .tit{
    font-size: 14px;
    color: #555;
    padding-top: 7px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f6f6f6;
  }
  .zhishi .text-truncate-2{
    height: 50px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .zhishi .item .bottom{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    color: #666;
  }
  .zhishi .item .bottom .money{
    background-color: #ffb800;
    color: #fff;
    padding: 2px 5px;
    border-radius: 2px;
  }
/* 知识图谱/ */
/* -------------------------------------四个卡片 */
.zuoyou .sicard {
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.zuoyou .sicard .tit {
    padding: 15px 15px 5px;
}

.zuoyou .sicard .tit h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.zuoyou .sicard li {
    width: 191.5px;
    margin: 15px 15px 5px;
    border-radius: 6px;
    cursor: pointer;
    background-color: #f9f9f9;
}

.zuoyou .sicard li:hover {
    box-shadow: 0px 2px 6px #d5ddf7;
}

.zuoyou .sicard li img {
    width: 191.5px;
    height: 107;
    border-radius: 6px 6px 0 0;
    margin-bottom: 5px;
}

.zuoyou .sicard li h3 {
    width: 180px;
    margin: auto;
    font-size: 15px;
    height: 35px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 7px;
}

.zuoyou .sicard li p {
    font-size: 13px;
    color: #999;
    width: 180px;
    margin: auto;
}

.zuoyou .sicard li a:hover {
    text-decoration: none;
    color: #fff
}

.zuoyou .sicard li .btnbm {
    width: 80px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    background-image: linear-gradient(-45deg, #f58f0a, #f83e06);
    color: #fff !important;
    border-radius: 25px;
    margin: 15px 10px;
}

/* -------------------------------------四个卡片/ */
/*------------------------------------名师辅导课 */

.zuoyou .msfd {
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.zuoyou .msfd .tit {
    padding: 15px 15px 5px;
}

.zuoyou .msfd .tit h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.zuoyou .msfd li {
    width: 413px;
    margin: 15px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #f8f8f8;
}

.zuoyou .msfd li:hover {
    box-shadow: 0px 2px 6px #d5ddf7;
}

.zuoyou .msfd li .biaoqian {
    position: absolute;
    z-index: 9;
    left: 15px;
    margin-top: 15px;
}

.zuoyou .msfd li span {
    color: #fff;
    padding: 2px 8px;
    border-radius: 25px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 5px;
}

.zuoyou .msfd li img {
    width: 413px;
    height: 232px;
    border-radius: 6px 6px 0 0;
    margin-bottom: 10px;
}

.zuoyou .msfd li h3 {
    font-size: 16px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;

}
.zuoyou .msfd li p{
    padding: 0 10px;
    font-size: 14px;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #888;
}
/* -----------------------------------名师辅导课/ */
/* ------------------------------个人自学课 */

.zixue {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 25px;
}

.zixue .tit {
    padding: 15px 15px 5px;
}

.zixue .tit h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.zixue ul {
    padding: 0 8px;
}

.zixue li {
    margin: 7px 7px 10px;
    width: 276px;
    border-radius: 6px;
    border-bottom: 1px solid #f8f8f8;
}

.zixue li .top span {
    position: absolute;
    margin-left: 241px;
    margin-top: 10px;
    width: 35px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #f4cda2;
    color: #a2703b;
    border-radius: 6px 0 0 6px;
    font-size: 12px;
}

.zixue li .top img {
    width: 276px;
    height: 153px;
    border-radius: 6px;
}

.zixue li .top p {
    color: #fff;
    font-size: 12px;
    margin-top: -30px;
    margin-left: 15px;
    margin-bottom: 25px;
}

.zixue li h6 {
    margin-bottom: 5px;
    width: 276px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zixue li .tits {
    width: 276px;
    color: #999;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis; 
}
.orange{
    color: #e86d43;
}
.linethrough{
    text-decoration: line-through;
}
.zixue li .money{
    margin: 10px 0;
    width: 276px;
}
.zixue li b{
    font-size: 18px;
    margin-right: 5px;
}
.zixue li p{
    color: #888;
    font-size: 13px;
}
/*------------------------------ 个人自学课/ */
/* ------------------------------------三个卡片 */
.zuoyou .hangthreecard {
    margin-bottom: 25px;
}

.zuoyou .hangthreecard li {
    width: 288px;
    height: 130px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 1px 1px 3px #f1f1f1;
    box-sizing: border-box;
    padding: 10px;
}

.zuoyou .hangthreecard li .tit {
    width: 268px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.zuoyou .hangthreecard li .tit i {
    color: #4470f5;
    margin-right: 10px;
    font-size: 18px;
}

.zuoyou .hangthreecard li .content {
    padding: 10px 0;
}

.zuoyou .hangthreecard li span {
    display: block;
    width: 57px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin: 5px;
    font-size: 10px;
    color: #4470f5;
    border-radius: 2px;
    background-color: #e5ebfd;
    cursor: pointer;
}

.zuoyou .active {
    background-color: #4470f5 !important;
    color: #fff !important;
}

/* --------------------------------三个卡片/ */
/* ----------------------------------选项卡 */
.layui-tab-brief>.layui-tab-title .layui-this {
    color: #4470f5 !important;
    font-size: 16px !important;
}

.layui-tab-brief>.layui-tab-more li.layui-this:after,
.layui-tab-brief>.layui-tab-title .layui-this:after {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #4470f5 !important;
}

.layui-tab-title {
    background-color: #fff !important;
}

.xuanxianginfo li {
    padding: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.xuanxianginfo .left {
    width: 237px;
    height: 145px;
    position: relative;
    overflow: hidden;
}

.xuanxianginfo .left img {
    width: 237px;
    height: 145px;
    cursor: pointer;
}

.xuanxianginfo .left span {
    position: absolute;
    left: 10px;
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 3px;
}

.bachei {
    background-color: #303942 !important;
}

.bachuang {
    background-color: #dda23c !important;
}

.baczi {
    background-color: #6e2fd8 !important;
}

.baclan {
    background-color: #2abbc0 !important;
}

.xuanxianginfo .right2 {
    width: 595px;
}

.xuanxianginfo .right2 h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.xuanxianginfo .right2 h5 i {
    margin-right: 5px;
    color: #fe0000;
}

.xuanxianginfo .right2 p {
    width: 595px;
    color: #666;
    margin-bottom: 35px;
    height: 41px;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.xuanxianginfo .right2 .dibu {
    width: 595px;
    height: 40px;
}

.xuanxianginfo .right2 .zuoce .touxiang {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 5px;
}

.xuanxianginfo .right2 .zuoce span {
    font-size: 12px;
    color: #333;
    margin-right: 5px;
}

.xuanxianginfo .right2 .zuoce .biaoqian {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.xuanxianginfo .right2 .youce span {
    font-size: 12px;
    color: #797c75;
    background-color: #f3f4f6;
    padding: 3px 5px;
    margin-right: 5px;
    border-radius: 3px;
    cursor: pointer;
}

.xuanxianginfo .right2 .youce span:hover {
    background-color: #4470f5;
    color: #fff;
}

.xuanxianginfo .gengduo {
    width: 846px !important;
    text-align: center;
    margin-top: 30px;
}

/* ---------------------------------选项卡/ */
/*--------------------------------- 推荐专题 */
.zhuanti {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 3px;
}

.zhuanti .tit {
    padding: 15px 15px 5px;
}

.zhuanti .tit h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.zhuanti ul {
    padding: 0 8px;
}

.zhuanti li {
    margin: 7px 7px 10px;
    width: 276px;
    border-radius: 6px;
}

.zhuanti li .top span {
    position: absolute;
    margin-left: 241px;
    margin-top: 10px;
    width: 35px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #f4cda2;
    color: #a2703b;
    border-radius: 6px 0 0 6px;
    font-size: 12px;
}

.zhuanti li .top img {
    width: 276px;
    height: 153px;
    border-radius: 6px;
}

.zhuanti li .top p {
    color: #fff;
    font-size: 12px;
    margin-top: -30px;
    margin-left: 15px;
    margin-bottom: 25px;
}

.zhuanti li h6 {
    margin-bottom: 5px;
    width: 276px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zhuanti li p {
    width: 276px;
    color: #999;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

/* ---------------------------------推荐专题/ */
/* ---------------------------------悬赏问答 */
.xuanshangwd {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 20px;
}

.xuanshangwd .tit {
    padding: 15px;
}

.xuanshangwd .tit h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.xuanshangwd ul {
    margin-top: 0px;
    padding: 0 15px 15px;
}

.xuanshangwd li {
    padding: 10px 0px;
    border-bottom: 1px solid #f2f2f2;
    margin: 0px 15px;
    width: 398px;
}

.xuanshangwd .read {
    width: 25px;
    height: auto;
}

.xuanshangwd .money {
    font-size: 18px;
    font-weight: bold;
    margin-right: 5px;
    color: #ff5500;
}

.xuanshangwd h6 {
    font-size: 16px;
    color: #333;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.xuanshangwd h6:hover {
    color: #4470f5 !important;
}

.xuanshangwd .tou img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.xuanshangwd .bottom p {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}

.xuanshangwd .btns {
    font-size: 13px !important;
    border: 1px solid #888;
    border-radius: 6px !important;
    padding: 3px 8px;
}

.xuanshangwd .btns:hover {
    border: 1px solid #4470f5;
}

/* ---------------------------------悬赏问答/ */
/* ------------左 /---------------------*/
/* ------------右 ---------------------*/
.zuoyou .right {
    width: 335px;

}

.zuoyou .right .fen {
    width: 335px;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
}

.zuoyou .right .fen h5 {
    font-size: 18px;
    border-bottom: 3px solid #4470f5;
    box-sizing: border-box;
    padding-bottom: 5px;
}

.zuoyou .right .fen .gengduo {
    flex: 1;
    border-bottom: 3px solid #eee;
    box-sizing: border-box;
    padding-bottom: 5px;
    text-align: right;
}

/*-----------------------------------作家推荐 */
.zuojia li {
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
}

.zuojia .left {
    width: 40px;
}

.zuojia .left img {
    width: 48px;
    height: 28px;
    /*border-radius: 50%;*/
}

.zuojia .right {
    width: 255px;
}

.zuojia .right .name {
    font-weight: bold;
    width: 250px;
}

.zuojia .right span {
    border: 1px solid #888;
    padding: 2px 10px;
    border-radius: 25px;
}

.zuojia .right span:hover {
    border: 1px solid #4470f5;
}

.zuojia .right h6 {
    margin: 10px 0 7px;
    color: #888;
}

.zuojia .right p {
    font-size: 12px;
    color: #888;
}

/* -----------------------------------作家推荐/ */
/* ---------------------------文章推荐 */
.first {
    margin-top: 10px;
    position: relative;
}

.first p {
    position: absolute;
    z-index: 9;
    background-color: #ff5c00;
    color: #fff;
    font-size: 11px;
    width: 20px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border-radius: 0px 0 6px 0;
}

.first img {
    width: 305px;
    height: 170px;
}

.first h6 {
    position: relative;
    z-index: 9;
    font-weight: bold;
    margin-top: -30px;
    height: 30px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    line-height: 30px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.first h6:hover {
    color: #4470f5;
}

.wenzhanglist li {
    margin: 10px 0;
}

.wenzhanglist .left {
    width: 100px;
    height: 60px;
    overflow: hidden;
}

.wenzhanglist .left p {
    position: absolute;
    z-index: 9;
    background-color: #ff5c00;
    color: #fff;
    font-size: 11px;
    width: 20px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border-radius: 0px 0 6px 0;
}

.wenzhanglist .left img {
    width: 100px;
    height: 60px;
    border-radius: 3px;
}

.wenzhanglist .right {
    width: 190px;
    height: 60px;
}

.wenzhanglist .right h6 {
    font-weight: bold;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

.wenzhanglist h6:hover {
    color: #4470f5;
}

.wenzhanglist .right p {
    font-size: 12px;
    color: #888;
}

/*-------------------------- 文章推荐/ */
/* ----------------------------------好书推荐 */
.lunbo {
    width: 305px;
    height: 170px;
}

.lunbo img {
    width: 108px;
    height: 145px;
}

.lunbo .content {
    width: 180px;
}

.lunbo .content h6 {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.lunbo .content h6:hover {
    color: #4470f5 !important;
}

.lunbo .content p {
    color: #888;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* ----------------------------------好书推荐/ */
/* 宣传图 */
.adimg {
    width: 335px;
    height: 180px;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.adimg img {
    width: 335px;
    height: 180px;
}

/* 宣传图/ */
/* ------------右 /---------------------*/

/* 左右 /*/



/* 背景图 标题 三个错落卡 开始 */
.slice-lg {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .bg-section-secondary {
    background-color: #FAFBFE !important;
  }
  
  .bg-absolute-cover {
    background-repeat: no-repeat;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
  }
  
  .bg-absolute-cover svg {
    height: 1000px;
    pointer-events: none;
  }
  
  .zindex-100 {
    z-index: 100 !important;
  }
  
  /* ------------------------------按钮颜色 开始 */
  .badge-soft-success {
    color: #36B37E;
    background-color: #d7f0e5;
    font-weight: bold;
  }
  
  .badge-soft-success[href]:hover,
  .badge-soft-success[href]:focus {
    color: #36B37E;
    text-decoration: none;
    background-color: #c4e9d9;
  }
  
  .badge-pill {
    padding: 10px 20px;
    border-radius: 50rem;
  }
  
  /*--------------------------------按钮颜色 结束 */
  .fluid-paragraph {
    width: 680px;
    margin: auto;
    padding: 0 1.5rem;
    position: relative;
  }
  
  @media (max-width: 767.98px) {
    .fluid-paragraph {
      width: 100%;
    }
  }
  
  .card15 {
    background-color: #FFF;
    border: 1px solid #EFF2F7;
    box-shadow: 0 0.5rem 1rem rgba(31, 45, 61, 0.025) !important;
  }
  
  /* ------------------------------------图标开始 */
  .bg-gradient-primary {
    background: linear-gradient(50deg, #0372d4 0, #00f2fe 100%) !important;
  }
  
  /*---------------------------------- 图标结束 */
  .shadow-primary {
    box-shadow: 0 0.5rem 1rem rgba(22, 88, 147, 0.4) !important;
  }
  
  .icon {
    min-width: 3rem;
    min-height: 3rem;
    line-height: 3rem;
    text-align: center;
    margin-right: 20px;
  }
  
  .icon i {
    font-size: 20px;
  }
  .number{
    font-size: 26px;
    font-weight: bold;
    color: red;
  }
  .bac11{background-color: #48484a;}
  .bac1{background-color: #9aa8b7;}
  .bac2{background-color: #fec236;}
  .bac3{background-color: #868bd0;}
  .buy{
    border: 0px;
    margin: 40px auto 0px;
    width: 180px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    display: block;
    border-radius: 6px;
    font-weight: bold;
  }
  .buy:hover{
    background-color: red;
  }
  /* 背景图 标题 三个错落卡 结束  */