/*焦点和今日推荐*/
.section1 {
    width: 1210px;
    margin: 0 auto;
    min-height: 430px;
    display: flex;
}

.section1 .focus {
    width: 790px;
    height: 430px;
    background: #f2f2f2;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide p,
.swiper-slide h3 {
    position: absolute;
}

.swiper-slide p {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
}

.swiper-slide h3 {
    bottom: 15px;
    left: 0;
    font-size: 16px;
    font-size: 0.16rem;
    color: #FFF;
    text-indent: 15px;
    font-weight: normal;
    width: 80%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide a {
    color: #FFF;
}

.focus .swiper-pagination {
    text-align: right;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}

.focus .swiper-pagination-bullet-active {
    background: #F00;
}

.section1 .today {
    height: 100%;
    width: 410px;
    margin-left: 10px;
}

.section1 .today h2 {
    font-size: 18px;
    font-size: .18rem;
    color: #3e3d3d;
    text-indent: 6px;
    letter-spacing: 2px;
}

.section1 .today h2::after {
    display: block;
    content: ' ';
    margin-top: 3px;
    width: 5em;
    height: 2px;
    background: #333;

}

.today-list li {
    display: flex;
    width: 100%;
    margin: 14px 0px;
    justify-content: space-between;
}

.today-list li:last-child {
    margin-bottom: 0;
}

.today-list li .img a {
    display: block;
    width: 120px;
    height: 120px;
}

.today-list li .info {
    height: 120px;
    overflow: hidden;
    padding-left: 10px;
    font-size: 14px;
    font-size: .14rem;
}

.today-list li .info a {
    display: block;
    height: 40px;
    font-size: 16px;
    overflow: hidden;
}

.today-list li .info p {
    color: rgb(123, 123, 123);
    margin-top: 5px;
}

.adv-box img {
    width: 100%;
}

/*首页栏目*/
.sort-row {
    display: flex;
    flex-wrap: nowrap;

}

.sort-box {
    width: 396px;
    margin-right: 10px;
}

.sort-box:last-child {
    margin-right: 0px;
}

.sort-box h2 {
    font-size: 18px;
    letter-spacing: 5px;
    color: #f00;
    text-indent: 10px;
}

.sort-box h2::after {
    display: block;
    content: ' ';
    width: 60px;
    height: 2px;
    background: #f00;
}

.sort-box ul {
    min-height: 252px;
}

.sort-box ul li {
    line-height: 42px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sort-box ul li a {
    margin-left: 10px;
}

.sort-box ul li img{
    vertical-align:baseline;
}
.sort-box ul li span {
    margin-left: 5px;
}

.sort-box .more {
    text-align: center;
    color: #333;
    padding: 10px;
    padding: 0.10rem;
    display: block;
    background: #ededed;
    font-size: 14px;
}

@media screen and (max-width: 768px) {

    .section1 {
        width: 100%;
        flex-direction: column;
    }

    .section1 .focus,
    .section1 .today {
        width: 100%;
    }

    .section1 .focus {
        margin-bottom: 8px;
        margin-bottom: 0.08rem;
        height: auto;
    }

    .section1 .today {
        margin-left: 0px;
    }

    .today-box {
        margin: 10px;
    }

    .today-list li {
        margin: 10px 0px;
    }

    .today-list li .img a {
        width: 90px;
        height: 90px;
    }

    .today-list li .info {
        height: 90px;
    }

    .today-list li .info a {
        height: auto;
    }

    .today-list li .info p {
        display: none;
    }

    .sort-row {
        flex-wrap: wrap;
    }

    .sort-box {
        margin-right: 0;
        margin-left: 0px;
        width: 100%;
    }

    .sort-box h2 {
        margin-left: 5px;
    }

    .sort-box ul li img{
        margin-left: 5px;
    }

    .sort-box ul li a {
        margin-left: 5px;
    }

    .sort-box .more {
        width: 80%;
        margin: 0 auto 15px auto;
    }






}