/**
 * 首页底部
 */
.plugins-salerecords-home-bottom .am-list > li img {
    width: 3rem;
    height: 3rem;
}
@media only screen and (min-width: 641px) {
    .plugins-salerecords-home-bottom .am-list > li {
        display: -webkit-inline-box;
        width: calc(50% - 1rem);
    }
    .plugins-salerecords-home-bottom .am-list > li:nth-child(even) {
        margin-left: 0.6rem;
    }
    .plugins-salerecords-home-bottom .am-list > li:nth-child(odd) {
        margin-right: 0.6rem;
    }
}
@media only screen and (max-width:640px){
    .plugins-salerecords-home-bottom .am-list:before{
        display: none;
    }
}
.plugins-salerecords-home-bottom .am-list{
    position: relative;
}
.am-container .am-list-news-bd { 
    overflow:hidden; 
    max-height:25.5rem;
    position:relative; 
}
.scroll-list {
  /* 滚动动画 */
    height: 100%;
    animation: scroll 15s linear infinite;
}
.am-container .am-list-news-bd:hover .scroll-list{
  animation-play-state: paused;
}
@keyframes scroll {
    0% {}
    100% {
        transform: translateY(-50%);
    }
}
.plugins-salerecords-home-bottom .am-list:before {
    content: '';
    width: 0.1rem;
    height: calc(100% - 5rem);
    border-right: 0.1rem solid #EEEEEE;
    position: absolute;
    top: 2.5rem;
    right: 50%;
}
.plugins-salerecords-home-bottom .am-list > li {
    background-color: transparent;
    border: 0;
}
/**
 * 商品详情
 */
.plugins-salerecords-goods-detail-base-bottom-tips,
.plugins-salerecords-goods-detail-base-bottom-tips-top-left,
.plugins-salerecords-goods-detail-base-bottom-tips-top-right,
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-left,
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-right,
.plugins-salerecords-goods-detail-base-bottom-tips-top-center,
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-center {
    position: fixed;
    left: calc(50% - 8.5rem);
    top: 50%;
    background: rgb(0 0 0 / 60%);
    border-radius: 3rem;
    padding: 0.4rem 1rem;
    color: #fff;
    z-index: 110;
    -webkit-box-shadow: 0 0.8rem 1rem rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0.8rem 1rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.8rem 1rem rgb(0 0 0 / 20%);
}
.plugins-salerecords-goods-detail-base-bottom-tips img ,
.plugins-salerecords-goods-detail-base-bottom-tips-top-left img ,
.plugins-salerecords-goods-detail-base-bottom-tips-top-right img ,
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-left img ,
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-right img,
.plugins-salerecords-goods-detail-base-bottom-tips-top-center img,
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-center img {
    width: 2.5rem;
    height: 2.5rem;
}
.plugins-salerecords-goods-detail-base-bottom-tips-top-left {
    left: 5%;
    top: 5%;
}
.plugins-salerecords-goods-detail-base-bottom-tips-top-right {
    right: 5%;
    top: 5%;
    left: auto;
}
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-left {
    left: 5%;
    bottom: 10%;
    top: auto;
}
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-right {
    right: 5%;
    bottom: 10%;
    left: auto;
    top: auto;
}
.plugins-salerecords-goods-detail-base-bottom-tips-top-center {
    top: 5%;
}
.plugins-salerecords-goods-detail-base-bottom-tips-bottom-center {
    bottom: 10%;
    top: auto;
}