﻿/* pc样式 */
@media screen and (min-width: 1024px){
    .content-box-list{
        margin-top: 0.3rem;
    }
    .content-box-list li {
        margin-bottom: 0.3rem;
    }
    .content-box-list li a{
        box-sizing: border-box;
        padding: 0 0.3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 0.9rem;
        border: solid 1px rgba(210, 10, 20,0.3);
        background-color: #fff;
    }
    .content-box-list li a h2 {
        flex: 1;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        padding-left: 0.3rem;
        background-image: url(../icon/list_lingxing.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 0.15rem auto;
        font-size: 0.2rem;
	    color: #000000;
        font-weight: 500;
        transition: transform 1s ease;
    }
    .content-box-list li:hover a h2 {
        color: var(--zt_color--);
        font-weight: 700;
        transition: transform 1s ease;
    }
    .content-box-list li a p{
        padding-left: 0.25rem;
        background-image: url(../icon/date.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 0.17rem auto;
        font-size: 0.16rem;
        line-height: 0.2rem;
        color: var(--zt_color--);
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-box-list{
        margin-top: 0.3rem;
    }
    .content-box-list li {
        margin-bottom: 0.3rem;
    }
    .content-box-list li a{
        box-sizing: border-box;
        padding: 0 0.3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 0.9rem;
        border: solid 1px rgba(210, 10, 20,0.3);
        background-color: #fff;
    }
    .content-box-list li a h2 {
        flex: 1;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        padding-left: 0.3rem;
        background-image: url(../icon/list_lingxing.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 0.15rem auto;
        font-size: 0.2rem;
	    color: #000000;
        font-weight: 500;
        transition: transform 1s ease;
    }
    .content-box-list li:hover a h2 {
        color: var(--zt_color--);
        font-weight: 700;
        transition: transform 1s ease;
    }
    .content-box-list li a p{
        padding-left: 0.25rem;
        background-image: url(../icon/date.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 0.17rem auto;
        font-size: 0.16rem;
        line-height: 0.2rem;
        color: var(--zt_color--);
    }
}

@media screen and (max-width: 800px) {
    .content-box-list li {
        margin-bottom: 0.2rem;
    }
    .content-box-list li a {
        padding: 0 0.2rem;
        height: 0.7rem;
    }
    .content-box-list li a h2 {
        padding-left: 0.2rem;
    }
}