
.newsTrendsWrapper {
    min-width: 1200px;
    overflow: auto;
}
.extensiveApplicationHeader {
    background-image: none;
    background-image: initial;
    background-color: white;
}
.downloadWrapper {
    background-color: #f4f8ff;
    display: flex;
    padding: 30px 0;
}
.downloadConent {
    display: flex;
    margin: auto;
    width: 1100px;
    font-size: 12px;
    cursor: pointer;
}
.leftContent {
    width: 200px;
    margin-right: 10px;
}
.productItem {
    background-color: white;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear;
    width: 200px;
    font-size: 14px;
}
.productItem:hover {
    background-color: #0571ff;
    color: white;
}
.productItemSelected {
    background-color: #0571ff;
    color: white;
}
.rightContent {
    width: calc(100% - 200px);
}
.itemContent {
    padding: 15px 20px;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 30px;
    margin-bottom: 10px;
    background-color: white;
    transition: all 0.6s linear;
}
.itemContent:hover {
    border: 1px solid #0571ff;
    box-shadow: 0 0 5px #0571ff;
}
.itemContent:hover .time {
    color: #0571ff;
}
.itemContent:hover .newsTitle {
    color: #0571ff;
}
.day {
    font-size: 30px;
    text-align: center;
}
.borderBox {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 20px;
}
.newsTitle {
    font-size: 18px;
}
.newsContent {
    color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news {
    width: 90%;
    font-size: 14px;
}

