body {
    background-color: rgb(229, 229, 229);
}

.section1 .title {
    font-size: 32px;
    font-weight: bold;
}

.section1 .box1 {
    width: 62px;
    height: 12px;
    color: rgba(80, 80, 80, 1);
    background-color: rgba(255, 87, 51, 1);
}

.section1 .text {
    font-size: 18px;
    color: rgba(56, 56, 56, 1);
}

.section1 .text span {
    color: rgba(255, 141, 26, 1);
}

.section2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section2 .item {
    display: flex;
    width: 49%;
    color: rgba(80, 80, 80, 1);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 15px;
    font-size: 14px;
    padding: 44px 18px;
    margin-bottom: 30px;
}

.section2 .item>div>img {
    width: 256px;
    height: 256px;
    object-fit: cover;
    margin-right: 26px;
}

.section2 .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 75px;
	height: 75px;
	color: rgba(80, 80, 80, 1);
	background-color: rgba(0, 0, 0, 0.46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section2 .play img {
    width: 56px;
}

.section2 .item .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section2 .item .box .tip {
    color: rgba(80, 80, 80, 1);
    font-size: 22px;
    font-weight: bold;
}

.section2 .item .box .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-top: 1px solid rgba(153, 153, 153, 1);
}

.section2 .item .box .bottom span {
    color: rgba(255, 141, 26, 1);
    font-weight: bold;
}

.section2 .item .box .bottom img {
    width: 26px;
}

@media (max-width:1280px) {
    .section1 .title {
        font-size: 24px;
    }

    .section1 .text {
        font-size: 16px;
        color: rgba(56, 56, 56, 1);
    }

    .section2 .item {
        flex-direction: column;
    }

    .section2 .item>div>img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .section2 .item .box .tip {
        font-size: 18px;
        margin-bottom: 16px;
    }


}

@media (max-width:768px) {
    .section1 .title {
        font-size: 20px;
    }

    .section1 .text {
        font-size: 12px;
    }

    .section2 {
        margin-top: 24px !important;
        justify-content: center;
    }

    .section2 .item .box .tip {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .section2 .item {
        padding: 24px 16px;
        border-radius: 6px;
        width: 90%;
        padding-bottom: 0px;
    }

    .section2 .item .box .bottom {

        font-size: 12px;
    }

    .paginations {
        margin-top: 16px !important;
    }
}