*{
    padding: 0;
    margin: 0;
}
body{
    background-image: linear-gradient(to right, #6b8bdc , #435197 );
}
.bannerSty{
    width:100%;
    max-width: 1920px;
}
.box{
    width: 1192px;
    margin:0 auto;
    padding-bottom: 100px;

}
.boxTop{
    text-align: center;
    margin-top:50px;
    margin-bottom:30px;
}
.boxTop img{
    width:50%;
}
.boxList{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.list{
    background-color: #fff;
    width:226px;
    margin-right:0 auto;
    overflow: hidden;
    cursor: pointer;
}
.qitalist{
    background-color: #fff;
    width:275px;
    margin-right:0 auto;
    overflow: hidden;
    cursor: pointer;
    margin-top:20px;
    border-radius: 4px;
    padding:4px 2px;
    white-space: nowrap;
    /* 文字用省略号代替超出的部分 */
    text-overflow: ellipsis;
    /* 匀速溢出内容，隐藏 */
    overflow: hidden;   
}
.imgSty{
    width:200px;
    height:200px;
    margin:12px;
}
.imgSty img{
    width:200px;
    height:210px;
    border-radius: 5px;
}
.list .text{
    font-size:16px;
    color:#3c3c3c;
    padding: 12px;
    width:calc(100% - 24px);
    word-break: break-all;
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    height:34px;
    font-weight: bold;

}
.temaiBox{
    overflow: hidden;
    padding: 12px 12px 4px 12px;
    width:calc(100% - 24px);
    
}
.temaiBox img{
    float: left;
    height:20px;
    width:55px;
    margin-top:8px;
}
.temaiBox span{
    float: left;
    color:red;
    margin-top:7px;
}
.temaiBox span:last-child{
    font-size:24px;
    font-weight: bold;
    margin-top:0px;
}
.zekouBox{
    overflow: hidden;
    margin-left:12px;
    background:#eeeeee;
    border-radius: 4px;
    font-size:14px;
    color:#757575;
    float: left;
    padding:0 4px;
}
.zekouBox span:last-child{
    margin-left:12px;
}
.zekouBox span.delete{
    text-decoration: line-through red;
}
.goumaiBox{
    width:calc(100% - 24px);
    margin-left:12px;
    background:#C9151E;
    border-radius: 18px;
    height:36px;
    margin-top:20px;
    margin-bottom:12px;
    overflow: hidden;
}
.goumaiBox div{
    float: left;
    width:150px;
    background:#ff2c00;
    height:36px;
    line-height: 36px;
    color:#fff;
    text-align: center;
    font-size:18px;
    font-weight:bold;
    border-radius: 18px;
    margin-right:8px;
}
.goumaiBox img{
    width:28px;
    height:28px;
    margin:4px 0 0px 0;
}

.loader {
    text-align: center;    
    position: fixed;
    top: 30%;
    left: 50%;
    margin-left: -40px;
}
.loader span {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 50px auto;
    background: #fff;
    border-radius: 50px;
    -webkit-animation: loader 0.9s infinite alternate;
    -moz-animation: loader 0.9s infinite alternate;
}
.loader span:nth-of-type(2) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}
.loader span:nth-of-type(3) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}
@-webkit-keyframes loader {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    width: 48px;
    height: 48px;
    opacity: 0.4;
    -webkit-transform: translateY(-21px);
  }
}
@-moz-keyframes loader {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    width: 48px;
    height: 48px;
    opacity: 0.4;
    -moz-transform: translateY(-21px);
  }
}