
/* banner*/
.banner-social {
    height: 600px;
    min-width: 1200px;
    background-image: url("../images/image_sm/banner.png");
    background-repeat: no-repeat;
    background-size: 100% 600px;
}

/* 内容区*/
.content {
    width: 1200px;
    margin: 0 auto;
}

/* 标题*/
.content .content-title {
    height: 116px;
    font: 32px/116px 微软雅黑;
    text-align: center;
}

/* 特色商城*/
.content01 {
    display: flex;
    align-items: center;
}
.content01 a {
    display: inline-block;
    margin-bottom: 12px;
}
.content01-list:not(:first-of-type) {
    margin-left: -57px;
}
.content01-list > a:hover > img {
    animation: myhover 0.5s linear;
}
@keyframes myhover {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}



/* 折扣专区*/
.content02 {
    display: flex;
    justify-content: space-between;
}
.content02 .item-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 限时秒杀*/
.content03 {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: white;
    height: 415px;
}
.content03 .item-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-right: 42px;
}
.countdown {
    position: absolute;
    top: 112px;
    left: 67px;
    display: flex;
    justify-content: space-between;
    width: 149px;
    height: 44px;
    font: 18px/44px 微软雅黑;
    color: black;
}
.countdown > span {
    display: inline-block;
    text-align: center;
    width: 26px;
}
.countdown > .countdown-colon {
    color: white;
}
/* 合作伙伴*/
.content04 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 251px;
    padding: 0 18px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: white;
}
.partner-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
