.header {
    width: 100%;
    position:fixed;
    float: left;
    z-index: 10;
    height: 7rem;
    background-image: url(../images/headerbg.png);
}



.header .logo {
    float: left;
    padding:1rem 0.3rem 2rem 2rem;
    width: calc(25% - 0.6rem);
    position:absolute;
    top: 0;
    left: 0;
    z-index: 11;
}

.header .logo img {
    width: 100%;
    max-width: 300px;
    min-width: 200px;
    float: left;
    height: auto;
}

.header .nav {
    width:calc(75% - 40px);
    margin-right: 100px;
    float: right;
    clear: both;
    padding:1rem 0rem 0rem 0rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.header .nav a {
    float: left;
    padding: 0 0 0 2rem;
    font-size: var(--font-size-small);
    color:#fff;
}

.header .nav a:hover {
    color:#ff0; 
}

.header .nav .search {
    float: left;
    width:1.3rem;
    height: 1.3rem;
    padding: 0;
    margin:0.3rem;
    display: flex;
    flex-wrap: nowrap;
    overflow:hidden;
}

.header .nav .search:hover {
    width:12rem;
    border-bottom: 1px solid #fff;
    transition: width 0.5s;
}

.header .menu {
    float: right;
    width:calc(75% - 40px);
    margin-right: 80px;
    display: flex;
    flex-direction: row;
    justify-content:flex-end;
    z-index: 14;
}

.header .menu li {
    float: left;
    text-align: center; 
    position: relative;
    padding: 0 1.3rem;
}

@media (min-width:1400px) and (max-width:1550px) {
    .header .menu li{
    	padding: 0 0.9rem;
    }
}


@media (min-width:1200px) and (max-width:1399px) {

    .header .menu li {
        padding: 0 0.4rem;
    }

  }

@media (min-width:1000px) and (max-width:1199px) {
    .header .menu li {
        padding: 0 0.3rem;
    }
}

@media (max-width:1000px)  {
    .header .menu {
        display: none;
    }
    .header .nav .search {
        display: none;
    }
}

@media (max-width:576px) {
    .header .nav {
        display: none;
    }
}

.header .menu li .mark2 {
    width: 0%;
    border-bottom: solid 2px  rgba(255, 255, 255, 0.3);
    margin: -3px auto 0 auto;
    height: 0px;
    transition: width 0.5s;
    opacity: 0;
}

.header .menu li:hover .mark2 {
    width: 100%;
    border-bottom: solid 3px  rgba(255, 255, 255, 1);
    opacity: 1;
    transition: width 0.5s;
}

.header .menu li a {
    font-size: var(--font-size-menu);
    color:#fff;
    font-weight: 700;
    line-height: 3.2rem;
}

.header .menu li ul {
    display: none;
    padding: 0;
    margin: 0;
    width: 13rem;
    background-color:rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 3.2rem;
    left: 0;
    z-index: 1000;
}

.header .menu li:hover ul {
    display: block;
}

.header .menu li ul li {
    width: 100%;
    line-height: 3rem;

}

.header .menu li ul li:hover {
    background-color:rgba(0, 102, 204, 1);
}

.header .menu li ul li a {
    font-size: var(--font-size-menu2);
    color: var(--primary-color);
    font-weight: 700;
}

.header .menu li ul li:hover a {
    color:var(--background-color);
}

.header .button {
    width:4rem;
    height: 3rem;
    background-color: var(--primary-color);
    color:var(--background-color);
    font-size: var(--font-size-large2);
    text-align: center;
    line-height: 3rem;
    border-radius: 0.5rem 0rem 0rem 0.5rem;
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 0;
    z-index: 13;

}


.header .menu2{
    display: none;
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 100vh;
    float: right;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 102, 204, 0.7); 
    overflow-y: scroll;  
    z-index: 12;
}


.header .menu2  li{
    width: 33%;
    float: left;
    text-align: center;
    height: auto;
}

.header .menu2 li a {
    /* Fixed max-width and removed duplicate font-size */
    width: 90%;
    margin: 0 5%;
    border-bottom: solid 2px  rgba(255, 255, 255, 0.5);
    float: left;
    line-height: 3rem;
    text-decoration: none;
    color:  rgba(255, 255, 255, 1);
    font-size: var(--font-size-large2);
    font-weight: 700;
}

.header .menu2 li a:hover{
    color:  rgba(255, 255, 0, 1);
}

.header .menu2  li ul{
    width: 100%;
    height:18rem;
}

.header .menu2  li ul li{
    width: 100%;
    text-align: center;
    height: auto;
}

.header .menu2 li ul li a{
    font-weight: normal;
    font-size: var(--font-size-base);
    line-height: 2rem;

    border: 0;
}

.banner {
    position: relative;
    width: calc(100vw - 20px);
    height: 100vh; /* 根据实际情况调整高度 */
    z-index: 1; /* 确保在最底层 */
    overflow: hidden;
}

.banner-img {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-img li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-img li.active {
    opacity: 1;
}

.down {
    width: 310px;
    height: 115px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/downbg.png);
    color: #fff;
    z-index: 2;

}

.down img {
    display: block;
    width: 0.5rem;
    height: 0.5rem; 
    margin: 1.5rem auto 0rem auto;
}

.down span {
    font-size: 1rem;
    width:100%;
    float: left;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
}

.banner-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 3;
}

.banner-bar li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.banner-bar li.active {
    background-color: #fff;
}

.before, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.before {
    left: 20px;
}

.next {
    right: 20px;
}



.contain1 {
    width: 100%;
    float: left;
    height: auto;
    background-image: url(../images/containnewsbg.jpg);
    background-size: cover;
}

.wrap {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;	
}

.zw {
    width: 100%;
    float: left;
    height: auto;	
}

.title {
    width: 292px;
    height: 3.5rem;
    margin-left: 50%;
    margin: 4rem auto;
    background-image: url(../images/titlebg.png);
    background-repeat: no-repeat;
    background-position: bottom center;
}



.title h1 {
    font-size: 2rem;
    display: block;
    float: left;
    width:5em;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    color: var(--title-color);
}

.title h5 {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    float: right;
    width: 6rem;
    height: 1rem;
    line-height: 1rem;
    margin-top: 2rem;
    padding: 0rem 1rem 0rem 0rem;
    color:#999;
}

.events {
    width: 100%;
    float: left;
    display: flex;
    position: relative;
    justify-content: space-between;
}

.events-pic {
    width: 48%;
    list-style: none;
    padding: 0;
    margin: 0;

}

.events-pic img {
    width: 100%;
}

.events-pic li {
    display: none;
}

.events-pic li.active {
    display: block;
}

.events-list {
    width: 50%;
    list-style: none;
    padding: 0;
    margin: 0;
    display:flex;
    flex-direction: column;
    justify-content:space-between;
}



.events-list li {
    width: 100%;
    box-sizing: border-box;
    border: #999 solid 1px;
    padding: 0.5rem;
}

.events-list li a {
    width: 100%;
    float: left;
    font-size: var(--font-size-base);
    line-height: 2rem;
    font-weight: 700;
}

.events-list li p {
    width: 100%;
    float: left;
    font-size: var(--font-size-small);
    line-height: 2rem;
    text-indent:2rem;
}

.events-list li.active {
    background-color: #fff;
}

.events-list li.active .events-date {
    background-image: url(../images/datebg.png);
    background-repeat: repeat-x;
    background-position: bottom center;
}

.events-list .events-date {
    width: 8rem;
    float: left;
    margin-left: 1rem;
    background-color: #e7f1f8;
    margin-top: -1.5rem;
    padding-left: 0.5rem;
}

.events-list .events-date span {
    font-size: 1rem;
    color: var(--text-color);
    float:left;
}

.events-list .events-date img{
    width: 1rem;
    float: left;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.events-point {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 42%;
    transform: translateX(-50%);
    z-index: 10;
}

.events-point li {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
}

.events-point li.active {
    background-color: rgba(255, 255, 255, 1);
}

@media (max-width:768px)  {
    .events {
        display: block;
        width: 100%;
        float: left;
        position: relative;
    }
    .events-pic {
        width: 100%;
        float: left;
    }
    .events-list {
        width: 100%;
        float: left;
    }
    .events-list li {
        width: 100%;
        float: left;
        margin-top: 3rem;
    }
    .events-point {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;

    }
}

.events-list2 {
    display: flex;
    width: 100%;
    margin: 2rem auto;
    justify-content: space-between;
}

.events-list2 li {
    width: 32%;
    border: #CCC solid 1px;
    padding: 0.5rem;
    margin-top: 3rem;
    box-sizing: border-box;
}

.events-list2 li img {
    width: 30%;	
    float: left;
    margin-right: 0.5rem;
}
@media (max-width:768px)  {
    .events-list2 {
        display: block;
        width: 100%;
        float: left;
    }
    .events-list2 li {
        width: 100%;
        float: left;
        margin-top: 3rem;
    }
}

.events-list2 .events-date{
    width: 8rem;
    float: left;
}

.events-list2 .events-date span {
    font-size: 1rem;
    color: var(--text-color);
    float:left;
}

.events-list2 .events-date img{
    width: 1rem;
    float: left;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.events-list2 li a {
    width: 67%;
    float: right;
    font-size: var(--font-size-base);
    line-height: 2rem;
    font-weight: 700;
}

.events-list2 li:hover {
    background-color: #fff;
}

.more {
    width: 3.5rem;
    height: 3.5rem;
    margin: 2rem auto;
    background-image: url(../images/more.png);
    background-size: cover;
}

.more a {
    width: 3.5rem;
    height: 3.5rem;
    font-size: var(--font-size-base);
    text-align: center;
    line-height: 3.5rem;
    padding-left: 0.8rem;
    font-weight: bold;
}

.contain2 {
    width: 100%;
    float: left;
    height: auto;
    background-image: url(../images/containnoticebg.jpg);
    background-size: cover;
}

.notice {
    width: 100%;
    float: left;
}

.notice .notice-list {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.notice-list li {
    width: 32%;
    list-style: none;
    box-sizing: border-box;
    border: #CCC solid 1px;
    padding: 0.5rem;
}
@media (max-width:768px)  {
    .notice .notice-list {
        display: block;
        width: 100%;
        float: left;
        position: relative;
    }
    
    .notice-list li {
        width: 100%;
        height: auto;
        float: left;
        box-sizing: border-box;
        border: #CCC solid 1px;
        padding: 0.5rem;
        margin-top: 3rem;
    }
}
.notice-list .notice-date{
    width: 8rem;
    float: right;
}

.notice-list .notice-date span {
    font-size: 1rem;
    color: var(--text-color);
    float:left;
}

.notice-list .notice-date img{
    width: 1rem;
    float: left;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.notice-list li a {
    width: 100%;
    float: left;
    font-size: var(--font-size-base);
    line-height: 2rem;
    font-weight: 700;
}

.notice-list li p {
    width: 100%;
    float: left;
    font-size: var(--font-size-small);
    line-height: 2rem;
    text-indent:2rem;
}

.notice-list li:hover {
    background-image: linear-gradient(#cee1f5, #fff);
}

.notice .more {
    width: 3.5rem;
    height: 3.5rem;
    margin: 2rem auto;
    background-image: url(../images/more.png);
    background-size: cover;
}
.notice .more a {
    width: 3.5rem;
    height: 3.5rem;
    font-size: var(--font-size-base);
    text-align: center;
    line-height: 3.5rem;
    padding-left: 0.8rem;
    font-weight: bold;
}

/* activity 容器样式 */
.activity {
    position: relative;
    overflow: hidden;
    width: 100%; /* 确保容器宽度占满父元素 */
    padding-bottom: 4rem; /* 留出底部空间，用于显示活动底部控制栏 */;
}

/* 活动列表容器样式 */
.activity-container {
    width: 100%;
    overflow: hidden;
}

/* 活动列表样式 */
.activity-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
    will-change: transform; /* 优化动画性能 */
    gap: 20px; /* 设置列表项之间的间隔，可按需调整 */
}

/* ... 已有代码 ... */

/* 活动列表项样式 */
.activity-list li {
    flex: 0 0 calc(33.333% - 13.333px); /* 考虑间隔后，每个列表项的宽度 */
    box-sizing: border-box;
    padding: 10px; /* 可根据需要调整内边距 */
    transition: transform 0.3s ease;
    display: flex; /* 让子元素垂直居中 */
    align-items: center;
    justify-content: center;
    position: relative; /* 为 p 标签的绝对定位提供参考 */
}

/* 活动列表项图片样式 */
.activity-list li img {
    width: 100%;
    height: auto;
    max-height: 400px; /* 可根据需要调整最大高度 */
    object-fit: cover; /* 保持图片比例，覆盖容器 */
    display: block; /* 去除图片底部间隙 */
}

/* 非 main-active 状态下的列表项缩小样式 */
.activity-list li:not(.main-active) {
    transform: scale(0.9); /* 缩小比例，可按需调整 */
}

/* 非 main-active 状态下的 p 标签隐藏 */
.activity-list li:not(.main-active) p {
    display: none;
}

/* main-active 状态下的 p 标签样式 */
.activity-list li.main-active p {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0px; /* 距离底部 10px，可根据需要调整 */
    left: 0px;
    right: 0px;
    margin: 0;
    padding: 8px; /* 内边距，可根据需要调整 */
    background-color: rgba(0, 0, 0, 0.7); /* 黑色半透明背景 */
    color: white; /* 白色文字 */
    font-size: 1rem; /* 字体大小，可根据需要调整 */
    line-height: 1.4; /* 行高，可根据需要调整 */
    text-align: center; /* 文字居中 */
}

/* 第一个活动列表项放大样式 */
.activity-list li.main-active {
    flex: 0 0 calc(40% - 13.333px); /* 第一个放大项的宽度，可按需调整 */
    transform: scale(1.15); /* 放大比例，可按需调整 */
    z-index: 1; /* 确保放大的图片在最上层 */
}

/* 确保链接正常显示 */
.activity-list li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2; /* 确保链接在图片和文字之上 */
}

/* 活动底部控制栏样式 */
.activity-bottom {
    position: absolute;
    right: 30%; /* 距离右侧边 30% */
    bottom: 5%; /* 底部对齐 */
    display: flex;
    gap: 10px;
    padding: 10px; /* 可根据需要调整内边距 */
}

/* 更多按钮样式 */
.activity .more {
    width: 3.5rem;
    height: 3.5rem;
    position: absolute;
    right: 3%; /* 距离右侧边 3% */
    bottom: 2rem; /* 底部对齐 */
    background-image: url(../images/morew.png);
    background-size: cover;
    margin: 0; /* 可根据需要调整外边距 */;
}

.activity .more a {
    width: 3.5rem;
    height: 3.5rem;
    font-size: var(--font-size-base);
    text-align: center;
    line-height: 3.5rem;
    padding-left: 0.8rem;
    color:#FFF;
}
/* 左右控制按钮样式 */
.activity-left,
.activity-right {
    cursor: pointer;
    width: 30px; /* 可根据需要调整按钮宽度 */
    height: 30px; /* 可根据需要调整按钮高度 */
}

/* 左右控制按钮图片样式 */
.activity-left img,
.activity-right img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 保持图片比例，适应容器 */
}

.contain3 {
    width: 100%;
    float: left;
    height: auto;
    background-image: url(../images/containmajorbg.jpg);
    background-size: cover;
}

.major2 {
    width: 100%;
    float: left; 
}

.major2-list {
    width: 100%;
    float: left; 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.major2-list li {
    width: 30%;
    float: left;
    background-color: #FFF;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    margin-bottom: 2rem;
}

.major2-list li:hover {
    background-color: #dae9f5;

}

.major2-list li .major2-img {
    width: 100%;
    float: left;
}

.major2-list li .major2-img img{
    width: 100%;
    float: left;
}

.major2-list li a {
    width: 100%;
    float: left;
}

.major2-list li .major2-title {
    width: 100%;
    float: left;
    font-size: 1rem;
    font-weight: 700;
    line-height: 2.5rem;
    text-align: center;
    color: var(--primary-color);	
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.major2-list li .major2-text {
    width: 100%;
    float: left;
    font-size: 1rem;
    line-height: 1.5rem;
    text-indent: 2rem;
    color: var(--text-color);	
    padding: 0 0.7rem;
    text-align: justify;
}

.major2-list li .major2-more {
    width: 30%;
    float: right;
    font-size: 0.9rem;	
    margin: 1rem;
}

.major2-list li .major2-more img {
    width: 1rem;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    height: auto;
    float: left;

}




@media (max-width:1000px)  {
    .major2-list li {
        width: 49%;
        float: left;
    }
}

.contain4 {
    width: 100%;
    float: left;
    height: auto;
}

.research {
    width: 100%;
    float: left; 
    position: relative;
    background-image: url(../images/containresearchbg.jpg);
    background-repeat: no-repeat;
    background-position: bottom right;
}

.research-pic {
    width: 48%;
    float: left;
    height: auto;
    padding: 2rem 0;
}

.research-pic img {
    width: 100%;
    float: left;
    height: auto;	
}

.research-pic .active {
    display: block;	
}

.research-pic li:not(.active) {
    display: none;
}

.research-list {
    width: 48%;
    float: right;
    height: auto;
    margin: 3rem 0;	
    padding-bottom: 3rem;
}

@media (max-width:768px)  {
    .research{
        padding-bottom: 3rem;
    }
    .research-pic {
        width: 100%;
        float: left;
        height: auto;
        padding: 2rem 0;
    }
    .research-list {
        width: 100%;
        float: right;
        height: auto;
        margin: 3rem 0;	
    }
}


.research-list li {
    width: 100%;
    float: left;
    border-bottom: #FFF solid 1px;
}

.research-list li:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.research-list li a {
    width: 98%;
    float: left;
    font-size: 1rem;
    line-height: 4rem;
    padding-left: 2%;
    color:#fff;

}

.research .more {
    position: absolute;
    right: 2.5rem;
    bottom: 0;
    margin: 2rem 0;
    background-image: url(../images/morew.png);
    background-size: cover;
}

.research .more a {
    width: 3.5rem;
    height: 3.5rem;
    font-size: var(--font-size-base);
    text-align: center;
    line-height: 3.5rem;
    padding-left: 0.8rem;
    color:#FFF;
}

.contain5 {
    width: 100%;
    float: left;
    height: auto;
    background-image: url(../images/containtopicbg.jpg);
    background-size: cover;
}

.topic {
    width: 100%;
    float: left; 
    position: relative;
}

.topic-list {
    width: 55%;
    float: right;
    margin: 4rem 0;
    overflow: hidden;
}

.topic-list li:first-child {
    width: 45%;
    float: left;
}

.topic-list li:last-child {
    width: 45%;
    float: right;
}

.topic-list li img {
    width: 100%;
    height: auto;
}

.contain6 {
    width: 100%;
    float: left;
    padding:2rem 0rem;
    background-color:var(--primary-color);
}

.footer {
    width: 100%;
    margin: 0 auto;
    height: auto;
}


.footer .addr {
    width: 48%;
    padding: 1%;
    float: left;
    font-size: var(--font-size-base);
    color: #fff;
    line-height: 3rem;
}

@media (max-width:768px)  {
    .footer .addr {
        width: 96%;
        padding: 2%;
        text-align: center;
    }
}

.footer .ewm {
    width: 48%;
    float: right;
    font-size: var(--font-size-base);
    color: #fff;
    line-height: 3rem;
    overflow: hidden;
}

.footer .ewm li:first-child {
    width: 45%;
    float: left;
    text-align: center;
}

.footer .ewm li:last-child {
    width: 45%;
    float: right;
    text-align: center;
}

.footer .ewm li img {
    width: 8rem;
    height: auto;
    margin: 0 auto;
}

.footer .ewm li span {
    width: 100%;
    float: left;
    text-align: center;	
}

















.banner-ny {
	float: left;
	width: 100%;
	height: auto;
    position: relative;

}

.banner-ny img{
    width: 100%;
    float: left;
}

.banner-bg {
    width: 100%;
    height: 3rem;
    background-color:rgba(0, 0, 0, 0.5);
    float: left;
    position: absolute;
    bottom: 0;
    left: 0;	
}

.lanmu {
    width: 20%;
    float: left;
    font-size: 1.5rem;
    line-height: 3rem;
    color: #FFF;
    text-align: center;
}

.path {

    float: right;
    font-size: 1rem;
    line-height: 3rem;
    color: #FFF;
    text-align: right;	
}

.path img{
    width: 1rem;
    height: auto;
    margin: 1rem 0.5rem;
    float:left;
}

.path a {
    color: #FFF;
}

.path a:hover {
    color: #ff0;
}

.contain7 {
    width: 100%;
    height: auto;
    float: left;
    background-color:#FFF;
    box-shadow:  0 0.5rem 0.5rem #ccc;
}

.menuny {
    width: 100%;
    height: auto;
    float: left;
}

.menuny li {
    font-size:1.2rem;    
    float: left;
    margin: 0;
    padding: 1rem;
}

.menuny li:hover {
    background-color: var(--primary-color);
}

.menuny li.active {
    background-color: var(--primary-color);
}
.menuny li:hover a {
    color: #fff;
}

.menuny li.active a {
    color: #fff;
}

.contain8 {
    width: 100%;
    height: auto;
    float: left;
    background-color:#FFF;
    margin-top: 2rem;
}

.list {
    width: 100%;
    height: auto;
    float: left;
}

.list li {
    width: 100%;
    height: auto;
    float: left;
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #ccc;
}

.list li .list-img{
	width: 12%;
	height: auto;
	float: right;
	padding-right: 1rem;
    border-left:solid 1px #CCC;
}

.list li .list-img img{
    width: 100%;
    height: auto;
    float: left;
}

.list li .list-text{
    width: 74%;
    height: auto;
    float: left;
    padding:0 1rem;
    border-left:solid 1px #CCC;
}
@media (max-width:768px)  {
    .list li .list-img{
        display: none;
    }
    .list li .list-text{
        width: 86%;
        height: auto;
        float: left;
        padding:0 1rem;
    }
}

.list li .list-text a{
    width: 100%;
    height: auto;
    float: left;
    font-size: 1rem;
    line-height: 2rem;
    font-weight: bold;
}

.list li .list-text p{
    width: 100%;
    height: auto;
    float: left;
    font-size: 0.9rem;
    line-height: 1.8rem;
    text-indent: 2rem;
}


.list li .list-date{
    width: 13%;
    height: auto;
    float: left;
    padding-left: 1rem;
}

.list li .list-date .year {
    width: 100%;
    height: auto;
    float: left;
    font-size: 1.5rem;
    line-height: 3rem;
    text-align: center;
    color:var(--primary-color);
}

.list li .list-date .day {
    width: 100%;
    height: auto;
    float: left;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
    color:#999;
}