* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow: auto;
}

.container {
    width: 12rem;
    margin: 0 auto;
    /* padding: 0 20px; */
}
/* 学校简介区域 */
.about-section {
    padding: 0.8rem 0;
    background: #fff;
}

.about-header {
    margin-bottom: 0.6rem;
}

.about-header .section-top-title {
    font-size: 0.4rem;
    font-weight: bold;
    /* margin-bottom: 0.2rem; */
}

.about-content {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.32rem;
}

.about-text {
    flex: 0 0 70%;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    font-size: 0.16rem;
    margin-bottom: 0;
}
.about-text p b {
    color: #333;
    margin-bottom: 0.16rem;
    display: inline-block;
}

.about-image {
    flex: 0 0 30%;
}

.about-image img {
    /* width: 100%; */
    height: auto;
    border-radius: 0.08rem;
    box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.1);
}
/* 公告通知区域 */
.announcement-section {
    padding:0rem 0  1.3rem 0;
    /* background: url('../img/inbj.jpg') no-repeat center bottom; */
    background-size:100% auto;
    background-position: bottom;
    transform: translateY(0.5rem);
    transition: all 0.8s ease-out;
}

.announcement-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.announcement-container {position: relative;clear: both;display: block;width: 100%;}

.announcement-left {    background: linear-gradient(to right, #06295d, #053a7c, #0450a1);
    padding: 0.56rem 0.72rem;
    border-radius: 0.12rem;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    margin-right: -8%;
    float: left;
    display: block;width:54%;}

.announcement-right {    background: #fff;
    padding: 0.4rem 0.5rem 0.4rem 0rem;
    border-radius: 0.12rem;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    float: left;
    width: 54%;
    padding-left: 12%;
    margin-top: 0.74rem;}

.announcement-header {
    margin-bottom: 0.3rem;
}

.announcement-title {
    color: #fff;
    font-size: 0.4rem;
    font-weight: bold;
    margin-bottom: 0.15rem;
}

.announcement-right .announcement-title {
    color: #003366;
}

.title-line {
    width:0.61rem;
    height: 0.05rem;
    background: #fff;
    border-radius:0.05rem;
}

.announcement-right .title-line {
    background: #003366;
}

.announcement-list {
    margin-bottom: 0.3rem;
}

.announcement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0.15rem 0 0.15rem 0;
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.announcement-right .announcement-item {
    border-bottom: 0.01rem solid #e9ecef;
}

.announcement-content {
    flex:0 0 85%;
    display: flex;
    align-items: center;
}

.announcement-text {color: #fff;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: all 0.3s ease;
}

.announcement-text a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.announcement-right .announcement-text {
    color: #1d1d1d;
}

.announcement-date {    text-align: center;
    background: transparent;
    border-radius: 0;}

.announcement-right .announcement-date {
    background: transparent;
}

.announcement-item {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.announcement-list .announcement-item:hover{transform:translateX(0.15rem) !important;}

.announcement-text a {
    transition: all 0.3s ease;
    display: block;
}

.date-day {    display: block;
    font-size:0.32rem;
    font-weight: normal;
    color: #fff;
    line-height: 1;}

.announcement-right .date-day {
    color: #1d1d1d;
}

.date-month-year {
    display: block;
    font-size: 0.14rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top:0.1rem;
}

.announcement-right .date-month-year {
    color: #1d1d1d;
}

.announcement-footer {
    text-align: center;
}

.announcement-footer .view-more-btn {    display: inline-block;
    padding: 0.08rem 0.2rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    border: 0.01rem solid transparent;
    float: right;}

.announcement-footer .view-more-btn:hover {
    background: #f8f9fa;
    color: #003366;
    border-color: #003366;
    transform: translateY(-0.02rem);
}

.announcement-right .announcement-footer .view-more-btn {
    background: #003366;
    color: #fff;
}

.announcement-right .announcement-footer .view-more-btn:hover {
    background: #002244;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .announcement-container {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .announcement-left,
    .announcement-right {
        flex: 1;
        margin-right: 0;    width: 100%;    padding: 0.2rem;
    }
    .announcement-content {
    flex: 0 0 78%;
}
    .announcement-title {
       /*font-size: 0.15rem;*/
    }
    
    .announcement-text {
       /* font-size: 0.09rem;*/
    }
}
.jwyw-section {
    display: flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;
    margin-top: 0.8rem;
}
.jwyw-section .news-topBox {
    width: 100%;
    height: 1.52rem;
    background: linear-gradient(to right, #06295d, #053a7c, #0450a1);
    /*margin-bottom: 0.5rem;*/
    max-width: 12rem;
    border-radius: 0.12rem 0.12rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.64rem;
}
.jwyw-section .news-topBox .view-more-btn {
    background: transparent;
    color:#fff;
}
.jwyw-section .jwyw_list {
	width: 12rem;
}
.jwyw-section .announcement-text a {
	color: #333;
}
.jwyw-section .announcement-item {
	border-bottom: #879099 solid 0.01rem;
	justify-content: inherit;
}
.jwyw-section .announcement-item .announcement-date {
	margin: 0 0.4rem;
}
.jwyw-section .announcement-item .date-day {
	color: #05285C;
}
.jwyw-section .announcement-item .date-month-year {
	color: #05285C;
}
.view-detail-btn {
    display: inline-block;
    padding: 0.12rem 0.4rem;
    border: 0.02rem solid #ddd;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    background: #fff;
}
.view-detail-btn {
    display: inline-block;
    padding: 0.12rem 0.4rem;
    border: 0.02rem solid #ddd;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    background: #fff;
}

.view-detail-btn:hover {
    border-color: #003366;
    color: #003366;
    background: #f8f9fa;
    transform: translateY(-0.02rem);
}
.rscLinkBox {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cygnBox {
    position: relative;
    margin-bottom: 1.72rem;
}

.ldjjList {
    position: absolute;
    bottom: -0.44rem;
    width: 100%;
    /* max-width: 12rem; */
    display: flex;
    justify-content: center;
    align-self: center;
}
.ldjjList  li {
    width: 5.8rem;
    height: 1.64rem;
    background: #F2F3F9;
    margin: 0 0.2rem;
    padding: 0.24rem 0.64rem;
    border-radius: 0.12rem;
    position: relative;
}
.ldjjList li a {
    background: linear-gradient(270deg, #0450A2 0%, #05285C 100%);
    padding: 0.3rem 0.3rem 0.3rem 0.56rem;
    position: absolute;
    bottom: -0.48rem;
    left: 0.58rem;
    right: 0.58rem;
    border-radius: 0.12rem;
    color:#fff;
    display: flex;
    justify-content: space-between;
 }
.szdwBoxCont {
    width: 12rem;
    background: #fff;
    border-radius: 0.12rem 0.12rem 0 0;
    padding: 0.72rem;
}
.download-btn a {
    border-bottom: #05285C solid 0.04rem;
    color: #05285C;
    padding-bottom: 0.32rem;
    font-size: 0.32rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.download-btn a  img {
    width: 0.36rem;
    height: 0.18rem;
}