/* 工作动态部分样式 */
.work-dynamics-section {
    margin: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;}

.work-dynamics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #940000, #c41e3a, #940000);
    background-size: 200% 100%;
    animation: wd-gradient-shift 3s ease-in-out infinite;}

@keyframes wd-gradient-shift {
    0%, 100% { background-position: 0% 50%;}
    50% { background-position: 100% 50%;}
}

/* 新闻标题样式 */
.work-dynamics-section .wd-news-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;}

.work-dynamics-section .wd-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #940000;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);}

.work-dynamics-section .wd-title-decoration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #940000, #c41e3a);
    border-radius: 2px;}

/* 新闻头部样式 - 居中对齐 */
.work-dynamics-section .wd-news-header {
    text-align: center;
    padding: 20px;
    display: flex;
    margin-bottom: 20px;}

.work-dynamics-section .wd-news-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #940000, #c41e3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(148, 0, 0, 0.3);}

.work-dynamics-section .wd-news-icon i {
    font-size: 24px;
    color: white;}

.work-dynamics-section .wd-news-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #940000;
    margin-left: 0px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);}

/* 新闻内容容器样式 */
.work-dynamics-section .wd-news-content-container {
    text-align: center;}

/* 左侧图片区域样式 */
.wd-news-image-container {
    min-height: 315px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f0f0f0;}

/* Silder组件样式 */
.wd-js-silder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 315px;}

.wd-silder-scroll {
    position: relative;
    width: 100%;
    height: 100%;}

.wd-silder-main {
    position: relative;
    width: 100%;
    height: 100%;}

.wd-silder-main-img {
    position: relative;
    width: 100%;
    height: 315px; /* 固定高度 */
    display: none;
    overflow: hidden;}

.wd-silder-main-img:first-child {
    display: block;}

.wd-silder-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;}

.wd-silder-main-img:hover img {
    transform: scale(1.05);}

/* Silder底部控制按钮样式 */
.wd-silder-ctrl {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;}

.wd-silder-ctrl span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;}

.wd-silder-ctrl span:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);}

.wd-silder-ctrl span.active {
    background: #940000;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(148, 0, 0, 0.5);}

/* 图片覆盖层样式 */
.wd-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;}

.wd-silder-main-img:hover .wd-image-overlay {
    transform: translateY(0);}

.wd-overlay-content {
    text-align: center;}

.wd-overlay-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;}

.wd-overlay-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;}

/* 新闻列表样式 */

.work-dynamics-section .wd-news-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    padding: 4px 0;
    border-bottom: 1px solid #e1dada;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-bottom: 4px;}

.work-dynamics-section .wd-news-item-row:hover {
    background: rgba(148, 0, 0, 0.05);
    transform: translateX(5px);
    border-left: 3px solid #940000;
    padding-left: 15px;}

.work-dynamics-section .wd-news-item-row:nth-child(1) { animation-delay: 0.1s;}
.work-dynamics-section .wd-news-item-row:nth-child(2) { animation-delay: 0.2s;}
.work-dynamics-section .wd-news-item-row:nth-child(3) { animation-delay: 0.3s;}
.work-dynamics-section .wd-news-item-row:nth-child(4) { animation-delay: 0.4s;}
.work-dynamics-section .wd-news-item-row:nth-child(5) { animation-delay: 0.5s;}

@keyframes wd-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);}
}

.work-dynamics-section .wd-news-title-wrapper {
    flex: 1;
    text-align: left;
}

.work-dynamics-section .wd-news-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;}

.work-dynamics-section .wd-news-link:hover {
    color: #940000;}

.work-dynamics-section .wd-news-tag {
    background: linear-gradient(135deg, #940000, #c41e3a);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 8px;
    display: inline-block;}

.work-dynamics-section .wd-news-date-wrapper {
    text-align: right;
    min-width: 100px;}

.work-dynamics-section .wd-news-date {
    background: #f8f9fa;
    color: #666;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #e9ecef;
    white-space: nowrap;
    display: inline-block;}

/* 新闻底部样式 */
.work-dynamics-section .wd-news-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;}

.work-dynamics-section .wd-more-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #940000, #c41e3a);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(148, 0, 0, 0.3);}

.work-dynamics-section .wd-more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(148, 0, 0, 0.4);
    color: white;
    text-decoration: none;}

.work-dynamics-section .wd-more-text {
    margin-right: 8px;}

.work-dynamics-section .wd-more-link i {
    transition: transform 0.3s ease;}

.work-dynamics-section .wd-more-link:hover i {
    transform: translateX(3px);}

/* 响应式设计 */
@media (max-width: 768px) {

    .wd-news-image-container {
       min-height: 200px;}

    .wd-js-silder {
      height: 200px;
      min-height: 200px;}

    .wd-silder-main-img {
      min-height: 200px;}

    .work-dynamics-section {
        padding: 20px;
    padding: 20px 10px;
        margin: 20px 0;}

    #gzdt {

    padding-left: 0;
    padding-right: 0;
}
    
    .work-dynamics-section .wd-title-main {
        font-size: 2rem;}
    
    .work-dynamics-section .wd-news-section-title {
        font-size: 1.8rem;}
    
    .work-dynamics-section .wd-news-link {
     }
    
    .work-dynamics-section .wd-news-item-row {
        padding: 12px 0;}
    
    .work-dynamics-section .wd-news-date-wrapper {
        }
    
    .wd-news-image-container,
    .wd-news-content-container {
        min-height: auto;
        margin-bottom: 20px;}
} 