#banner {
    width: 100%;
    height: 425px;
    padding: 0;
    overflow: hidden;
    background-image: url('https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/news/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

#banner .banner-box {
    padding: 0 45px;
    align-items: center;
}

#banner .banner-box h1 {
    font-size: 60px;
    font-weight: 700;
}

#banner .banner-box p {
    font-size: 25px;
}

#news-list {
    margin-bottom: 20px;
}

.news-list {
    padding: 20px;
}

.news-item {
    display: flex;
    padding: 25px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-item:hover {
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-img {
    width: 220px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-img img {
    width: 100%;
    height: auto;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.news-item:hover {
    cursor: pointer;
}

.news-item:hover .news-img img {
    transform: scale(1.05);
}

.news-item:hover .news-content,
.news-item:hover .news-title,
.news-item:hover .news-desc,
.news-item:hover .tag,
.news-item:hover .calendar,
.news-item:hover .news-link {
    color: #007bff;
}

.news-item:hover .icon-tag {
    background: url(https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/news/icon-hover.webp) no-repeat center / contain;
}

.news-item:hover .icon-calendar {
    background: url(https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/news/data-hover.webp) no-repeat center / contain;
}

.news-item:hover .icon-arrow-right {
    background: url(https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/news/right-hover.webp) no-repeat center / contain;
}


.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-desc {
    color: #555;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}

.news-footer {
    display: flex;
    justify-content: space-between;
}

.news-tag {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.icon-tag {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/news/icon.webp') no-repeat center/contain;
    vertical-align: middle;
    margin-right: 4px;
}

.icon-calendar {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/news/data.webp') no-repeat center/contain;
    vertical-align: middle;
    margin-right: 8px;
}

.icon-arrow-right {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/news/over-15-years-deep-cultivation-cold-chain.webp') no-repeat center/contain;
    vertical-align: middle;
    margin-left: 4px;
}

.news-date {
    margin-left: 16px;
    color: #888;
    font-size: 14px;
}

.news-link {
    color: #888;
    margin-left: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #007bff;
    transform: translateX(5px);
}

.news-link i {
    margin-left: 5px;
    font-size: 0.9rem;
}

.page-input {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.page-input input {
    width: 60px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    text-align: center;
    margin: 0 5px;
}

.page-input button {
    background: #0d43f1;
    color: white;
    border: none;
    padding: 0 15px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-input button:hover {
    background: #0d43f1;
}

.prev span::before {
    content: "\e744";
    font-family: iconfont;
    font-size: inherit;
    color: inherit;
    line-height: inherit;

}

.arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

.arrow-left::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-left: 2px solid #666;
    border-bottom: 2px solid #666;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%) rotate(45deg);
}

.arrow-right::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-60%, -50%) rotate(-45deg);
}

.page-item.disabled .arrow {
    opacity: 0.3;
    cursor: not-allowed;
}


/*--------------------------------------------------------------
# selectaozhiyun Section
--------------------------------------------------------------*/

#selectaozhiyun {
    background-image: url('https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/cold-storage/banner2.webp');
    background-size: 100% 100%;
}

#selectaozhiyun .storage-box {
    padding: 0 200px;
    display: flex;
    align-items: center;
    color: #fff;
}

#selectaozhiyun .storage-box-left {
    width: 54%;
    padding: 0px;
}

#selectaozhiyun .storage-box-left .storage-title {
    font-size: 40px;
    font-weight: 550;
}


#selectaozhiyun .storage-box-left .storage-list {
    margin-top: 30px;
    padding-left: 16px;
}

#selectaozhiyun .storage-list-nub {
    position: relative;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0;
    text-align: justify;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 20px;
}


#selectaozhiyun .storage-list-nub::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50px;
    background: #005BFF;
    position: absolute;
    top: 10px;
    left: -12px;
}

#selectaozhiyun .consult-btn {
    display: block;
    width: 156px;
    height: 48px;
    line-height: 48px;
    background: #fff;
    border-radius: 25px;
    font-size: 16px;
    color: #005BFF;
    letter-spacing: 0;
    text-align: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, background 0.3s;
    z-index: 1;
}

#selectaozhiyun .consult-btn i {
    font-style: normal;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

#selectaozhiyun .consult-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 100%;
    background: #edf3ff;
    transition: width 0.35s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
    transform: translateX(-50%);
}

#selectaozhiyun .consult-btn:hover::before {
    width: 100%;
}

#selectaozhiyun .consult-btn:hover,
#selectaozhiyun .consult-btn:hover i {
    color: #005BFF;
}

#selectaozhiyun .consult-btn:hover {
    background: #edf3ff;
}

#selectaozhiyun .selectaozhiyun-right {
    margin-left: 30px;
    margin-top: 50px;
    margin-bottom: 25px;
}

#selectaozhiyun .selectaozhiyun-right img {
    width: 100%;
}