body {
    font-family: "微软雅黑", arial, verdana, sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
    padding: 0;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

#header {
    text-align: center;
    background-color: #8f000b;
    height: 130px;
}

#logo img {
    padding: 18px 0;
    display: inline;
    max-height: 94px;
}

#nav {

    display: flex;
    justify-content: space-around;


}

li {
    display: inline-block;
    font-size: 18px;

}

#nav {
    height: 50px;
    line-height: 50px;
}

#nav a {

    padding: 0;
    font-size: 16px;
    color: #333;
    display: block;
    text-align: center;
    text-decoration: none;
    display: block;
}

#nav a:hover {
    display: block;
    /* 悬停时变成块状 */
    background-color: #8f000b;
    color: white;
}
#picture {
    text-align: center;
    background-image: url(./banner1z.png);
    background-size: cover;
    background-position: center;
}

#picture img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 主要内容区域布局 */
#content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* 导航标签 */
.nav1 {
    height: 60px;
    line-height: 60px;
    border-bottom: 2px solid #8f000b;
    margin-bottom: 20px;
    display: flex;
}

.nav1 ul {
    display: flex;
    gap: 30px;
}

.nav1 li a {
    font-size: 20px;
    color: #8f000b;
    font-weight: bold;
    text-decoration: none;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.nav1 li a:hover {
    color: #660008;
    border-bottom: 3px solid #8f000b;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 主要内容区域 - 三栏布局 */
.main-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 左侧图片区域 */
.image-section {
    width: 300px;
    flex-shrink: 0;
}

.image-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 中间文字内容区域 */
.text-content {
    flex: 1;
    min-height: 200px;
}

.news-list {
    display: flex;
  
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
}

.news-list li {
    width: 50%;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    transition: all 0.3s ease;
}

.news-list li:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li a {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
}

.news-list li a:hover {
    color: #8f000b;
}

/* 右侧通知公告区域 */
.notice-section {
    width: 350px;
    flex-shrink: 0;
}

.tit_tz {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #8f000b;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.tit_tz h3 {
    font-size: 20px;
    color: #8f000b;
    font-weight: bold;
    margin: 0;
}

.tit_tz a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.tit_tz a:hover {
    color: #8f000b;
}

.con ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cl {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 3px solid #8f000b;
    transition: all 0.3s ease;
}

.cl:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cl .fl {
    flex-shrink: 0;
    text-align: center;
    background: #8f000b;
    color: white;
    padding: 8px 10px;
    border-radius: 3px;
    min-width: 65px;
}

.cl .fl h3 {
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

.cl .fl h4 {
    font-size: 11px;
    margin: 3px 0 0 0;
    font-weight: normal;
}

.cl .fr {
    flex: 1;
}

.cl .fr h3 {
    margin: 0 0 6px 0;
}

.cl .fr h3 a {
    font-size: 15px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    display: block;
}

.cl .fr h3 a:hover {
    color: #8f000b;
}

.cl .fr p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-indent: 0;
}

/* 页脚 */
#footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    color: #666;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .main-content {
        flex-wrap: wrap;
    }
    
    .image-section {
        width: 250px;
    }
    
    .notice-section {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .image-section,
    .text-content,
    .notice-section {
        width: 100%;
    }
    
    .image-section img {
        height: 180px;
    }
    
    #nav {
        flex-wrap: wrap;
        height: auto;
        line-height: 40px;
    }
    
    #nav li {
        width: 50%;
    }
}
.ss3 .con .ssk {
  width: 99%;
  height: 30px;
  border: 1px solid #ccc;
  color: #666;
  text-indent: 1em;
  line-height: 30px;
}
.w {
  width: 1000px;
  margin: 0 auto;
    margin-top: 0px;
}
.tit {
  padding: 0 0 20px 0;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.s6-pic {
  margin: 0 auto;
  position: relative;
  z-index: 9;
  max-width: 160px;
  padding-top: 25px;
  background: url(../images/s6-pic-bj.png) no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
  background-position: center top;
}
