.trends-container {
    width: 100%;
    padding: 80px 0 40px;

    & .trends-list {
        width: 1200px;
        margin: 0 auto;

        & .lst-item {
            width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: row;
            margin-bottom: 40px;

            & .item-img {
                width: 361px;
                height: 272px;
                overflow: hidden;
                flex: 0 0 auto;
            }

            & .item-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            & .item-content {
                width: 814px;
                margin: 0 0 0 25px;

                & .item-title {
                    width: 100%;
                    font-size: 30px;
                    font-weight: 500;
                    color: #4D4D4D;
                    padding: 19px 0;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                & .item-title a {
                    color: #4D4D4D;
                }

                & .item-title a:hover {
                    color: #0A42C3;
                }

                & .item-cont {
                    width: 100%;
                    height: 112px;
                    font-size: 26px;
                    color: #A5A5A5;
                    line-height: 1.4;
                    margin: 22px 0 35px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;

                }

                & .item-info {
                    width: 100%;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    flex-direction: row;

                    & i {
                        margin-top: -2px;
                    }

                    & i, & i svg {
                        width: 20px;
                        height: 20px;
                    }

                    & span {
                        font-size: 20px;
                        color: #ACACAC;
                        margin-left: 8px;
                    }
                }
            }
        }
    }
}

.trends-detail-container {
    width: 100%;
    background-color: #F9FAFF;

    & .tre-detail-box {
        width: 1200px;
        margin: 0 auto;

        & .tre-nav {
            width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-direction: row;
            padding: 26px 0 6px;

            & span {
                font-size: 16px;
                color: #6C757D;
            }

            & span.cur {
                color: #000;
            }

            & i {
                width: 20px;
                height: 20px;
                margin-right: 6px;
                display: flex;
            }

            & i svg {
                width: 20px;
                height: 20px;
                margin: auto;
            }

            & i.arrow svg {
                width: 13px;
                height: 13px;
            }

            & i.h-icon {
                width: 15px;
                height: 15px;
                background: url("../images/icon-5.png") center top / cover no-repeat;
            }

            & span {
                margin-right: 6px;
            }
        }

        .tre-content {
            width: 960px;
            margin: 0 auto;
            padding-bottom: 90px;

            .tre-title {
                width: 100%;
                font-size: 44px;
                color: #0073C2;
                line-height: 1.5;
                margin: 30px 0 10px;
            }

            .tre-date {
                width: 100%;
                font-size: 20px;
                color: #333;
                margin: 0 0 15px 0;
            }

            .tre-text {
                width: 100%;
                font-size: 20px;
                margin: 0 0 35px 0;
            }

            .tre-img {
                width: 100%;
                margin: 0 0 35px 0;

                & img {
                    width: 100%;
                    object-fit: cover;
                }
            }
        }
    }
}

@media only screen and (min-width: 750px) and (max-width: 1190px) {
    .trends-container {
        padding: 40px 0;

        & .trends-list {
            width: 750px;

            & .lst-item .item-img {
                width: 288px;
                height: 217px;
            }

            & .lst-item .item-content {
                width: 432px;
            }

            & .lst-item .item-content .item-title {
                font-size: 24px;
                padding: 8px;
            }

            & .lst-item .item-content .item-cont {
                height: 82px;
                font-size: 20px;
                margin: 26px 0 30px;
            }

            & .lst-item .item-content .item-info span {
                font-size: 18px;
            }

            & .lst-item .item-content .item-info i {
                margin-top: -4px;
            }
        }
    }

    .trends-detail-container {
        width: 100%;

        & .tre-detail-box {
            width: 750px;
        }

        & .tre-detail-box .tre-content {
            width: 90%;
        }
    }
}

@media only screen and (max-width: 700px) {
    .trends-container {
        padding: 1.2rem 0;

        & .trends-list {
            width: 100%;
        }

        & .trends-list .lst-item {
            margin-bottom: 1rem;

            & .item-img {
                width: 9.05rem;
                height: 6.8rem;
            }

            & .item-content {
                width: calc(100% - 9.05rem);
                margin: 0 0 0 0.5rem;

                & .item-title {
                    font-size: 1rem;
                    padding: 0.2rem 0;
                }

                & .item-cont {
                    width: 96%;
                    height: 3.2rem;
                    font-size: 0.8rem;
                    margin: 0.2rem 0 0.3rem;
                }

                & .item-info i {
                    width: 1rem;
                    height: 1rem;
                    margin-right: 0.2rem;
                }

                & .item-info i svg {
                    width: 1rem;
                    height: 1rem;
                }

                & .item-info span {
                    font-size: 0.8rem;
                    margin-left: 0;
                }
            }
        }
    }

    .trends-detail-container {
        width: 100%;

        & .tre-detail-box {
            width: 100%;

            & .tre-nav {
                padding: 1.3rem 0 0.3rem 0.5rem;
            }
        }

        & .tre-detail-box .tre-content {
            width: 90%;
            padding-bottom: 4.5rem;

            & .tre-title {
                font-size: 1.2rem;
                margin: 0.2rem 0;

            }

            & .tre-date {
                font-size: 1rem;
                margin-bottom: 0.75rem;
            }

            & .tre-text {
                font-size: 1rem;
            }
        }
    }
}