.leftnav{
    display: block;
    width: 100%;
    padding-top: 0;
    padding-bottom: 10px;
}
.leftnav ul{
    display: block;
}
.leftnav li{
    display: block;
}
.leftnav li a{
  display: flex;
  align-items: center;          /* 垂直居中（单行时好看） */
  
  font-size: 20px;
  color: #999;

  /* 关键修复：不要固定高度/行高 */
  height: auto;
  min-height: 50px;             /* 保留原来 50px 的“触达高度” */
  line-height: 1.35;            /* 多行更自然 */

  /* 关键修复：给上下内边距，确保多行不挤 */
  padding: 10px 12px 10px 25px;

  border-left: 4px solid #E0E0E0;

  /* 关键修复：允许换行，避免长词撑破/叠字 */
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.leftnav li.cur a,.leftnav li a:hover{
    color: #333333;
    border-left: 4px solid #0062AD;
}
.news-list{
    display: block;
    padding-bottom: 30px;
}
.news-list ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: -15px -15px;
}
.news-list li{
    flex: 0 0 33.33%;
    width: 33.33%;
    height: 532px;
    padding: 15px 15px;
}
.news-list li a{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 32px 32px;
    background-color: #FFF;
    box-shadow: 0px 4px 20px 0px #00000026;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
}
.news-list li a:hover{
    box-shadow: 0px 4px 20px 0px #0E50C836;
}
.news-list li .text{
    position: relative;
    width: 100%;
    z-index: 2;
}
.news-list li .text .date{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 62px;
    line-height: 1;
    color: #FFF;
    background-color: #0E50C8;
    border-radius: 4px;
    flex-direction: column;
    font-family: Arial;
    margin-bottom: 28px;
}
.news-list li .text .date .day{
    font-size: 26px;
    font-weight: bold;
}
.news-list li .text .date .year{
    font-size: 14px;
    padding-top: 5px;
}
.news-list li .text .country{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: 'Poppins-Medium';
    line-height: 1.2;
    padding-bottom: 10px;
}
.news-list li .text .country img{
    display: block;
    width: auto;
    height: 20px;
    margin-right: 6px;
    margin-bottom: 2px;
}
.news-list li .text .title{
    font-size: 15px;
    color: #666;
}
.news-list li .text .tag {
    display: flex;
    align-items: center;
    margin-top: 16px;
    flex-direction: row;
    flex-wrap: wrap;
}
.news-list li .text .tag span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    height: 24px;
    border-radius: 12px;
    margin-right: 10px;
    color: #0E50C8;
    font-size: 14px;
    font-family: 'arial';
    background-color: #0E50C833;
}
.news-list li .pic{
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    display: block;
    margin: 0 auto;
    width: calc(100% - 64px);
    height: auto;
    aspect-ratio: 1/0.665;
    overflow: hidden;
}
.news-list li .pic img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s;
}
.news-list li:hover .pic img{
    transform: scale(1.05);
}
.case-list{
    display: block;
    width: 100%;
    padding: 0 0;
}
.case-list ul{
    display: block;
}
.case-list li{
    display: block;
    width: 100%;
    height: 305px;
    margin-bottom: 30px;
}
.case-list li a{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #0052AD1A;
}
.case-list li a:hover{
    background-color: #0E50C8;
}
.case-list li .pic{
    flex: 0 0 45%;
    width: 45%;
    height: 100%;
    overflow: hidden;
}
.case-list li .pic img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.case-list li:hover .pic img{
    transform: scale(1.03);
}
.case-list li .text{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    padding: 35px 60px;
}
.case-list li .text .date{
    font-size: 16px;
    color: #666666;
}
.case-list li .text .title{
    font-size: 24px;
    color: #333;
    margin-top: 10px;
    font-family: 'Poppins-SemiBold';
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.case-list li .text .desc{
    font-size: 15px;
    line-height: 1.5;
    min-height: 68px;
    color: #666666;
    margin-top: 10px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.case-list li:hover .text .date,.case-list li:hover .text .title,.case-list li:hover .text .desc{
    color: #FFF;
}
.case-list li .btn{
    display: flex;
    align-items: center;
    width: 170px;
    height: 48px;
    color: #FFF;
    font-size: 14px;
    border-radius: 24px;
    padding-left: 63px;
    background-color: #0052AD;
    position: relative;
    margin-top: 25px;
}
.case-list li:hover .btn{
    background-color: #0E50C8;
}
.case-list li .btn::after{
    content: '';
    position: absolute;
    left: 1px;
    top: 1px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FFF url(../img/icon-arrow.svg) no-repeat center;
}
.download-search{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.download-search .input-box{
    display: block;
    width: 225px;
    height: 50px;
    margin-right: 30px;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 4px 4px 20px 0px #A9A9A940;
}
.download-search .input-box.w286{
    width: 286px;
}
.download-search .form-select{
    width: 100%;
    height: 100%;
    background-color: #FFF;
    border: none;
    font-size: 16px;
    color: #999;
}
.download-search .form-input {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 40px;
    font-size: 16px;
    background: #FFF url(../img/icon-download-search.svg) no-repeat left center;
    background-size: 20px 20px;
    border: none;
}
.download-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
    color: #FFF;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
    background-color: #0E50C8;
    border: none;
    cursor: pointer;
}
.download-search button:hover{
    color: #FFF;
    background: #0743b1;
}
.download-list{
    display: block;
    padding-top: 20px;
}
.download-list ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.download-list li{
    display: block;
    padding: 0 12px;
    width: calc(50% - 17.5px);
    border-radius: 10px;
    margin-bottom: 35px;
    border:1px solid #E1E4E6;
}
.download-list li .box{
    display: flex;
    align-items: center;
    padding: 26px 12px 22px;
    position: relative;
    justify-content: space-between;
}
.download-list li .box .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: #498AFF29;
    border-radius: 6px;
}
.download-list li .box .icon img{
    display: block;
    width: 32px;
    height: 32px;
}
.download-list li .box .title{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    color: #333;
    font-family: 'Poppins-medium';
    padding-left: 25px;
    font-size: 16px;
}
.download-list li .box .type{
    position: absolute;
    top: 30px;
    right: 12px;
    display: inline-block;
    width: auto;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    color: #999;
    background-color: #F5F7FA;
    border-radius: 4px;
}
.download-list li .downbtn{
    display: block;
    padding: 22px 12px;
    border-top: 1px solid #E1E4E6;
}
.download-list li .downbtn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 27px;
    font-size: 12px;
    color: #0E50C8;
    border: 1px solid #0E50C8;
    border-radius: 24px;
}
.download-list li .downbtn a:hover{
    color: #FFF;
    background-color: #0E50C8;
}
.download-list li .downbtn a i{
    display: block;
    width: 12px;
    height: 100%;
    margin-right: 8px;
    background: url(../img/icon-download.svg) no-repeat center;
    background-size: 12px auto;
}
.download-list li .downbtn a:hover i{
    background: url(../img/icon-download-v.svg) no-repeat center;
    background-size: 12px auto;
}


.newsbanner{
    display: block;
    width: 86%;
    height: auto;
    padding: 20px 0 20px;
    margin: 0 auto -20px;
    position: relative;
    border-bottom: 1px solid #E2E2E2;
}
.newsbanner .zs-wp{
    position: relative;
    padding: 0 0;
    z-index: 10;
}
.newsbanner .title{
    font-size: 60px;
    line-height: 1.25;
    padding-top: 50px;
    font-weight: 500;
    color: #333;
    font-family: 'Poppins-SemiBold';
    padding-bottom: 20px;
    text-align: center;
}
.newsbanner .desc{
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 0;
    color: #4b4b4b;
    text-align: center;
}
.newsbanner .box{
    display: flex;
    font-size: 16px;
    align-items: center;
    padding-top: 70px;
    justify-content: space-between;
}
.news-body{
    display: block;
    width: 100%;
    padding: 0 0 80px;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
}
.news-body img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 48px 0;
}
.news-body h2{
    font-weight: bold;
    padding-left: 18px;
    margin: 15px 0;
    line-height: 1.2;
    border-left: 3px solid #19403f;
}
.news-body h3{
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.2;
    margin: 15px 0;
    border-left: 3px solid #19403f;
}
.share-wrap{
    display: flex;
    justify-content: flex-end;
    padding-top: 60px;
    padding-bottom: 50px;
}
.share-list{
    padding-left: 20px;
}

.share-list{
	display: flex;
	padding-top: 0;
	justify-content: flex-start;
}
.share-list li{
	display: block;
	width: 28px;
	height: 28px;
	margin: 0 24px 0 0;
	padding-top: 0;
	transition: all .3s;
}
.share-list li:hover{
	transform: scale(1.2);
}
.share-list li a{
	display: block;
	width: 100%;
	height: 100%;
}
.det-tagbox{
    display: flex;
    padding-top: 10px;
    padding-bottom: 30px;
}
.det-tagbox .tag-title{
    display: block;
    width: auto;
    line-height: 28px;
    margin-right: 10px;
    font-size: 16px;
}
.det-tag{
    display: flex;
    width: auto;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
}
.det-tag a{
    color: #666;
    line-height: 28px;
    border-radius: 5px;
    padding: 0 16px;
    height: 28px;
    margin-right: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    background-color: #f6f6f6;
}
.det-tag a:hover{
    color: #FFF;
    background-color: #030DAD;
}
.ard-next{
    height: 43px;
    line-height: 60px;
    font-size: 16px;
    border-top: dashed 1px #e7e7e7;
    display: flex;
    justify-content: space-between;
}
.ard-next .col{
    color: #999;
    width: 50%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ard-next .col:last-child{
    text-align: right;
}
.view-title{
    text-align: center;
    font-size: 64px;
    color: #000;
    font-family: 'Times New Roman';
}
/*PC v1*/
@media only screen and (min-width:1024px) and (max-width:1900px){


}

/*Mobile v1*/
@media only screen and (max-width:767px){
.leftnav li a {
    font-size: 18px;
}
.case-list li {
    height: auto;
    margin-bottom: 20px;
}
.case-list li a {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    flex-direction: column;
}
.case-list li .pic {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
}
.case-list li .text {
    padding: 20px 20px;
}
.case-list li .text .date {
    font-size: 14px;
}
.case-list li .text .title {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.3;
    overflow: unset;
    white-space: normal;
    text-overflow: ellipsis;
}
.case-list li .btn {
    margin-top: 15px;
}
.news-list li {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    padding: 15px 15px;
}
.news-list li a {
    width: 100%;
    height: auto;
    padding: 25px 25px;
}
.news-list li .pic {
    position: relative;
    left: 0;
    right: 0;
    bottom: unset;
    width: 100%;
    height: auto;
    margin-top: 15px;
}
.news-list li .text .tag span{
    margin-bottom: 8px;
}
.download-search {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
    flex-direction: column;
}
.download-search .input-box {
    width: 100%;
    height: 50px;
    margin-right: 0;
    padding: 10px 20px;
    margin-bottom: 20px;
}
.download-search .input-box.w286 {
    width: 100%;
}
.download-list li {
    padding: 0 12px;
    width: 100%;
    margin-bottom: 25px;
}
.download-list li .box {
    padding: 20px 5px 20px;
}
.download-list li .downbtn {
    padding: 20px 5px;
}
.download-list li .box .type {
    top: 5px;
    right: -5px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 12px;
    border-radius: 6px;
}
.download-list li .box .title {
    padding-left: 15px;
    font-size: 16px;
}
.newsbanner .title {
    font-size: 28px;
}
.newsbanner .desc {
    font-size: 14px;
}
.newsbanner .box {
    font-size: 14px;
    padding-top: 30px;
}
.news-body {
    padding: 0 0 50px;
    font-size: 15px;
}
.ard-next {
    height: auto;
    line-height: 1.8;
    font-size: 15px;
    padding: 15px 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.ard-next .col {
    width: 100%;
    padding: 8px 0;
}

}