/* 列表页样式 */

/* 列表头部 */
.list-header {
    padding: 30px 50px;
    background: linear-gradient(135deg, #FAFBFC 0%, #F8F9FA 100%);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.list-title-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.list-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.list-count {
    font-size: 14px;
    color: var(--text-gray);
}

.list-count strong {
    color: var(--theme-primary);
    font-weight: 600;
}

.list-filter {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-select {
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.filter-select:hover {
    border-color: var(--theme-primary);
}

.filter-select:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(0, 81, 142, 0.08);
}

/* 列表内容 */
.list-content {
    padding: 30px 50px;
}

.article-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-list-item {
    margin-bottom: 20px;
}

.article-link {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.article-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 81, 142, 0.02) 0%, rgba(0, 81, 142, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.article-link:hover::before {
    opacity: 1;
}

.article-link:hover {
    border-color: var(--theme-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 81, 142, 0.1);
}

.article-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 81, 142, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    font-size: 20px;
    transition: all 0.3s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.article-link:hover .article-icon {
    background: var(--theme-primary);
    color: var(--white);
    transform: scale(1.1);
}

.article-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.article-title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s;
    flex: 1;
    min-width: 0;
}

.article-title-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    white-space: nowrap;
}

.article-tag {
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.tag-news {
    background: rgba(0, 81, 142, 0.08);
    color: var(--theme-primary);
    border: 1px solid rgba(0, 81, 142, 0.15);
}

.tag-notice {
    background: rgba(0, 81, 142, 0.06);
    color: var(--theme-primary-light);
    border: 1px solid rgba(0, 81, 142, 0.12);
}

.tag-activity {
    background: rgba(0, 81, 142, 0.08);
    color: var(--theme-primary);
    border: 1px solid rgba(0, 81, 142, 0.15);
}

.article-link:hover .article-title {
    color: var(--theme-primary);
}

.article-summary {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* article-meta 类不再需要，meta-item 直接用于 article-title-right 中 */

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
}

.meta-item i {
    color: var(--theme-primary);
    font-size: 11px;
}

/*新增 2025 教师页面*/
.tea-category{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
}
.tea-category-l{
    text-align: center;height: auto;overflow: hidden;
}
.tea-category-l a{
    display: block;
    height:50px;
    line-height:50px;
    font-size:18px;
    color:#fff;
    background: #5298cc;
    text-decoration:none
}
.tea-category-l a:link{color:#fff;}
.tea-category-l a:visited{color:#fff;}
.tea-category-l a:hover{color:#fff;background: #0061aa;}
.tea-category-l a:active{color:#fff;}
.tea-category-l a.active{color:#fff;background: #0061aa;}
.tea-category-zc{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:20px;
    margin-top:30px;
}
.tea-category-xs{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
    margin-top:30px;
}
.tea-category-l2{
    text-align: center;height: auto;overflow: hidden;
}
.tea-category-l2 a{
    display: block;
    height:48px;
    line-height:46px;
    font-size:16px;
    color:#546673;
    background: #f6f9fb;
    text-decoration:none;
    border-radius:5px;
    border:#e3eaef 2px solid;
}
.tea-category-l2 a:link{color:#546673;}
.tea-category-l2 a:visited{color:#546673;}
.tea-category-l2 a:hover{color:#fff;background: #005798; border:#005798 2px solid;}
.tea-category-l2 a:active{color:#546673;}
.tea-category-l2 a.active{color:#fff;background: #005798;border:#005798 2px solid;}

.tea-category-num{
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    gap:10px;
    margin-top:30px;
}
.tea-category-l3{
    text-align: center;height: auto;overflow: hidden;
}
.tea-category-l3 a{
    display: block;
    height:48px;
    line-height:46px;
    font-size:18px;
    color:#546673;
    background: #f6f9fb;
    text-decoration:none;
    border-radius:5px;
    border:#e3eaef 1px solid;
}
.tea-category-l3 a:link{color:#546673;}
.tea-category-l3 a:visited{color:#546673;}
.tea-category-l3 a:hover{color:#fff;background: #005798; border:#005798 1px solid;}
.tea-category-l3 a:active{color:#546673;}
.tea-category-l3 a.active{color:#fff;background: #005798;border:#005798 1px solid;}


.tea-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
    margin-top: 50px;
}
.leader{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap:40px;
    margin-top: 50px;
}
.tea-k{margin-top:0px;margin-bottom:30px;text-align: center;position: relative;height:220px;overflow: hidden;}
.tea-k img.teaphoto{width:150px;height:208px;position:absolute;bottom:10px;left:10px;z-index:3}
.tea-k .tea-k-r{width:calc(100% - 190px);position: absolute;right:0;text-align:left;z-index:3;margin-right:10px;}
.tea-k .tea-k-r h2{font-size:24px;color:#00518e;margin-top:5px;}
.tea-k .tea-k-r h3{font-size:22px;color:#7489a3;margin-top:15px;margin-bottom:10px}
.tea-k .tea-k-r p{font-size:14px;color:#50575e;margin-top:5px;}

.tea-k:before{content:"";width:100%;position:absolute;bottom:0;left:0;background:#f1f5f8;height:170px;z-index:1;display:inline-block;}
.tea-k:after{content:"";display:inline-block;position:absolute;background:url(../images/tea_bg_ico.png)right bottom no-repeat;width:227px;height:156px;bottom:0;right:0;background-size: contain;z-index:2}
.tea-k:hover:before{content:"";background:#3867a0;}
.tea-k:hover:after{content:"";background:url(../images/tea_bg_ico2.png)right bottom no-repeat;background-size: contain}
.tea-k:hover .tea-k-r h3{color:#fff;}
.tea-k:hover .tea-k-r p{color:#fff;}

.list-news-pic{
      display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    margin-top:15px;
}
.xs-pic{
      display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;
    margin-top:15px;
}
.news-p-k{
    width: 100%;
    height:400px;
    position: relative;
    overflow:hidden;
}

.news-p-k img{height:247px;width:100%;overflow:hidden;display: block;transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);object-fit:cover;}
.xs-pic .news-p-k{height:555px}
.xs-pic .news-p-k img.xs{height:382px;}

.news-p-z{
    background: #f8fafb;
    padding:15px 20px;
    height:140px;
    position: relative;transition:all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-p-z h2{font-size:16px;color:#1d2022;line-height:26px;height:52px;overflow:hidden;transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);}
.news-p-k a{text-decoration:none;display: block;width:100%;height:100%;}
.news-p-z span{transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);background: #f8fafb;z-index:2;width:70px;height:36px;line-height:32px;border-radius:5px;text-align: center;display: block;border:#d6e0e7 2px solid;color:#294960;font-size: 16px;position: absolute;bottom:15px;right:15px}
.news-p-z p{transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);z-index:2;position:absolute;left:20px;bottom:8px;color:#5a7d98;font-size:16px;}
.news-p-z:before{transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);opacity:1;z-index:1;content:"";width:calc(100% - 40px);height:1px;background: #d6e0e7;position:absolute;bottom:40px;left:0;right:0;margin: 0 auto;text-align:center;}
.news-p-z:after{transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);opacity:0;position:absolute;bottom:0;right:0;z-index:1;width:175px;height:120px;content:"";display:inline-block;background:url(../images/tea_bg_ico2.png)right bottom no-repeat;background-size: contain;}
.xs-pic .news-p-z {height:160px}
.xs-pic .news-p-z:before{content:"";bottom:45px;}
.xs-pic .news-p-z em{font-style: normal;transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);z-index:2;position:absolute;right:20px;bottom:10px;color:#5a7d98;font-size:16px;}
.xs-pic .news-p-z p{bottom:10px;}
.xs-pic .news-p-z p i.fa-map-marker-alt{margin-right:5px;}
.xs-pic .news-p-z em i.fa-clock{margin-right:5px;}
.xs-pic .news-p-z h3{    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 81, 142, 0.08);
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    width: fit-content;
    align-self: flex-start;}
.news-p-k:hover .news-p-z{background: #3867a0;}
.news-p-k:hover .news-p-z h2{color:#fff;}
.news-p-k:hover .news-p-z p{color:#739dcf;}
.news-p-k:hover .news-p-z span{color:#ffffff;border:#ffffff 1px solid;background: #3867a0;}
.news-p-k:hover .news-p-z:before{content:"";opacity:0}
.news-p-k:hover img{ transform: scale(1.03);}
.news-p-k:hover .news-p-z:after{content:"";opacity:1}
.news-p-k:hover .news-p-z em{color:#739dcf;}
.xs-pic .news-p-k:hover .news-p-z:after{content:"";opacity:0}
.xs-pic .news-p-k:hover .news-p-z h3{color:#fff;background:#1d59a2;}

.list-sys{
      display: grid;
    gap:30px;
    margin-top:15px;
}
.sys_k{position:relative;width:100%;height:auto;}
.sys_k img{width:100%}
.sys_k .sys_title:before{content:"";background:url(../images/sys_ico.png)left center no-repeat;width:68px;height:67px;display: inline-block;vertical-align:middle;margin:0 90px 5px 10px;}
.sys_k .sys_title{transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);background: #3d4a5a;border-radius:10px;width:90%;margin: 0 auto;text-align: center;height:85px;line-height:85px;color:#fff;font-size:22px;position:absolute;left:0;right:0;bottom:-30px}
.sys_k  a{display: block;text-decoration: none;width:100%;height:100%}
.sys_k:hover .sys_title{bottom:-20px;background: #3867a0;}
/* 分页栏样式 - 现代化设计 */
.pagebar {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    padding: 40px 50px;
   /*  background: #FAFBFC;
   border-top: 1px solid var(--border-light); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* 去掉a链接的下划线 */
.pagebar a {
    text-decoration: none;
}

/* 页码区域 */
.pagebar .p_pages {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 按钮和页码的外观 */
.pagebar .p_fun_d,
.pagebar .p_no_d,
.pagebar .p_fun a,
.pagebar .p_no a {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 500;
    background: var(--white);
}

/* 文字对齐样式 */
.pagebar .p_t {
    line-height: 1.5;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

/* 无链接的字体颜色和样式 */
.pagebar .p_fun_d,
.pagebar .p_no_d {
    color: var(--text-light);
    background: #F5F7FA;
    cursor: not-allowed;
    border-color: var(--border-light);
}

/* 链接字体颜色 */
.pagebar .p_fun a,
.pagebar .p_no a {
    color: var(--text-dark);
    background: var(--white);
}

/* 鼠标移上时有链接按钮的外观 */
.pagebar .p_no a:hover,
.pagebar .p_fun a:hover {
    background-color: var(--theme-primary);
    color: var(--white);
    border-color: var(--theme-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 81, 142, 0.2);
}

/* 页码省略号...的外观 */
.pagebar .p_dot {
    color: var(--text-gray);
    padding: 0 4px;
    font-weight: 500;
}

/* 当前页码的外观 */
.pagebar .p_no_d {
    border: 1px solid var(--theme-primary);
    color: var(--white);
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-light) 100%);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 81, 142, 0.2);
}

/* 按钮控制 */

/* 控制是否显示 "首页" "尾页" */
.pagebar .p_first,
.pagebar .p_first_d,
.pagebar .p_last,
.pagebar .p_last_d {
    display: inline-flex;
}

/* 控制是否显示 "上页" "下页" */
.pagebar .p_prev,
.pagebar .p_prev_d,
.pagebar .p_next,
.pagebar .p_next_d {
    display: inline-flex;
}

/* 控制是否显示无链接的 "首页" "上页" "下页" "尾页" */
.pagebar .p_first_d,
.pagebar .p_prev_d,
.pagebar .p_next_d,
.pagebar .p_last_d {
    display: inline-flex;
}

/* 控制是否显示页码 */
.pagebar .p_no,
.pagebar .p_no_d,
.pagebar .p_dot {
    display: inline-flex;
}

/* 跳转区域 */
.pagebar .p_goto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

/* 跳转到页码输入框的外观 */
.pagebar .p_goto input {
    font-family: inherit;
    font-size: 14px;
    border: 1px solid var(--border-light);
    height: 36px;
    width: 60px;
    line-height: 36px;
    box-sizing: border-box;
    vertical-align: middle;
    outline: none;
    margin: 0;
    padding: 0 12px;
    text-align: center;
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s;
}

/* 跳转到页码输入框  鼠标移上及输入时的外框颜色 */
.pagebar .p_goto input:hover,
.pagebar .p_goto input:focus {
    border: 1px solid var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(0, 81, 142, 0.1);
}

/* 跳转按钮的外观 */
.pagebar .p_goto a {
    border: 1px solid var(--border-light);
    padding: 0 16px;
    color: var(--text-dark);
    margin: 0;
    height: 36px;
    line-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    vertical-align: middle;
    border-radius: 6px;
    background: var(--white);
    font-weight: 500;
    transition: all 0.3s;
    min-width: 60px;
}

.pagebar .p_goto a:hover {
    background-color: var(--theme-primary);
    color: var(--white);
    border-color: var(--theme-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 81, 142, 0.2);
}

/* 响应式设计 */

@media (max-width: 1520px) {
.news-p-k{height:380px;}
.news-p-k img{height:227px;}
.xs-pic .news-p-k{height:525px}
.xs-pic .news-p-k img.xs{height:352px;}
.sys_k .sys_title:before{background-size:contain;width:60px;height:60px;}
}
@media (max-width: 1440px) {
.news-p-k{height:360px;}
.news-p-k img{height:207px;}
.xs-pic .news-p-k{height:495px}
.xs-pic .news-p-k img.xs{height:322px;}
.sys_k .sys_title:before{margin-right: 60px;margin-left: 0;}
}
@media (max-width: 1400px) {
.news-p-k{height:365px;}
.news-p-k img{height:212px;}
.xs-pic .news-p-k{height:502px}
.xs-pic .news-p-k img.xs{height:329px;}
}
@media (max-width: 1368px) {
.news-p-k{height:360px;}
.news-p-k img{height:203px;}
.xs-pic .news-p-k{height:490px}
.xs-pic .news-p-k img.xs{height:317px;}
}
@media (max-width: 1280px) {
.news-p-k{height:335px;}
.news-p-k img{height:182px;}
.xs-pic .news-p-k{height:457px}
.xs-pic .news-p-k img.xs{height:284px;}
.xs-pic .news-p-z p{font-size:14px;}
.xs-pic .news-p-z em{font-size:14px}
.sys_k .sys_title:before{margin-right:50px;}
}
@media (max-width: 1200px) {
    .list-header,
    .list-content,
    .pagebar {
        padding-left: 30px;
        padding-right: 30px;
    }
    .tea-list{grid-template-columns:repeat(1, 1fr);}
    .tea-category-num{grid-template-columns:repeat(13, 1fr);}
    .tea-k{margin-bottom:10px;}
}
@media (max-width:820px) {
.list-news-pic{grid-template-columns:repeat(2, 1fr);}
  .news-p-k{height:414px;}
.news-p-k img{height:258px;}
.xs-pic{ grid-template-columns: repeat(1, 1fr); }
.xs-pic .news-p-k{height:715px}
.xs-pic .news-p-k img.xs{height:539px;}
.xs-pic .news-p-z p{font-size:16px;}
.xs-pic .news-p-z em{font-size:16px}
}
@media (max-width: 768px) {
    .list-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .list-title {
        font-size: 22px;
    }
    
    .list-filter {
        width: 100%;
        justify-content: space-between;
    }
    
    .filter-select {
        flex: 1;
    }
    
    .list-content {
        padding: 20px;
    }

    .article-icon {
        display: none;
    }
    
    .article-link {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .article-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .article-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .article-title {
        font-size: 16px;
        width: 100%;
    }
    
    .article-title-right {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .article-summary {
        font-size: 13px;
    }
    
    .meta-item {
        font-size: 12px;
    }
    
    .pagebar {
        gap: 12px;
        padding: 30px 20px;
    }
    
    .pagebar .p_pages {
        gap: 4px;
    }
    
    .pagebar .p_fun_d,
    .pagebar .p_no_d,
    .pagebar .p_fun a,
    .pagebar .p_no a {
        min-width: 32px;
        height: 32px;
        padding: 0 10px;
        font-size: 13px;
    }
    
    .pagebar .p_goto {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .pagebar .p_goto input {
        width: 50px;
        height: 32px;
        font-size: 13px;
        padding: 0 8px;
    }
    
    .pagebar .p_goto a {
        padding: 0 12px;
        height: 32px;
        font-size: 13px;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .list-header {
        padding: 15px;
    }
    
    .list-title {
        font-size: 20px;
    }
    
    .list-filter {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .list-content {
        padding: 15px;
    }

    .article-icon {
        display: none;
    }

    .article-link {
        padding: 15px;
    }
    
    .article-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .article-title {
        font-size: 15px;
        width: 100%;
    }
    
    .article-title-right {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .meta-item {
        font-size: 11px;
    }
    
    .article-tag {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .pagebar {
        padding: 15px;
        gap: 10px;
    }
    
    .pagebar .p_pages {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3px;
        margin-left: 0;
    }
    
    .pagebar .p_fun_d,
    .pagebar .p_no_d,
    .pagebar .p_fun a,
    .pagebar .p_no a {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        font-size: 12px;
    }
    
    .pagebar .p_goto {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .pagebar .p_goto input {
        width: 45px;
        height: 30px;
        font-size: 12px;
        padding: 0 8px;
    }
    
    .pagebar .p_goto a {
        padding: 0 12px;
        height: 30px;
        font-size: 12px;
        min-width: 50px;
    }
    .tea-k{height:auto;background:#f1f5f8;padding:10px 0;margin-bottom: 0;}
    .tea-k img.teaphoto{position:static;}
    .tea-k .tea-k-r{width:90%;position: static;margin: 0 auto}
    .tea-k:before{content:"";display: none;position: static;}
    .tea-k:after{content:"";display: none;}
    .tea-k a{text-decoration:none;}
    .tea-k .tea-k-r h3{margin-top:5px;}
    .tea-k .tea-k-r p{font-size: 16px;line-height:30px;}
    .tea-category-num{grid-template-columns:repeat(6, 1fr);}
    .list-news-pic{grid-template-columns:repeat(1, 1fr);}
  .news-p-k{height:430px;}
.news-p-k img{height:276px;}
.xs-pic .news-p-k{height:430px}
.xs-pic .news-p-k img.xs{height:276px;}
.xs-pic .news-p-z p{font-size:14px;}
.xs-pic .news-p-z em{font-size:14px}
.list-sys{grid-template-columns:repeat(1, 1fr) !important;}
.sys_k{margin-bottom:50px;}
}