/* 引入 Zen Kaku Gothic New 字体 */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');

a{
    text-decoration: none;
}
ul,ol{
    list-style:none;
}
h1,h2,h3,h4,h5,h6{
    margin:0;
    
}
img{
    border:0;
}
.header{
    background-color:#fff;
    display:flex;
    justify-content:space-between;
    height:70px;
}
.header-left{
    display:flex;
    position: relative;
    z-index: 1;
}
.logo{
    margin:0 70px;
    position: relative;
    top:0;
    z-index:3;
}
.logo>img{
    border-radius:1rem;
}
.nav{
    display:flex;
    height:70px;
    align-items:center;
}
.nav>ul{
    list-style:none;
    display:flex;
    

}
.nav>ul>li{
    margin:0 2rem;
}
.nav>ul>li>a{
    padding:0 2rem;
    text-decoration: none;
    color:#222;
    text-align: center;
}
.nav>ul>li>a>b{
    font-size:16px;
    display:block;
}
.nav>ul>li>a>span{
    font-size:12px;
    color:#999;
    display: block;
}

.header-right{
    display: flex;
    align-items:center;

}
.lang{
    display:flex;
    flex-direction: column;
    padding:0 2rem;
}
.lang>a{
    border:1px solid #ccc;
    border-radius:3px;
    height:24px;
    line-height:24px;
    display:block;
    padding:0 30px;
    text-align: center;
    margin:2px 0;
}

.zp{
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left:2rem;
    padding-right:2rem;
    background-color:#0c4b9b;
    color: #fff;
    
}

.cx{
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left:2rem;
    padding-right:2rem;
    background-color:#604b96;
    color: #fff;
}

.banner{
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 600px; /* 根据需要调整 */
    clip-path: polygon(
        0 0,        /* 左上角 */
        100% 0,     /* 右上角 */
        100% 90%,   /* 右下角（控制斜边高度） */
        0 100%      /* 左下角 */
    );
    display:flex;
    align-items: center;
    
}
.banner-text{
    padding:1rem 7.5rem;
    color:#fff;
    font-size:48px;
    font-weight: bold;
    position: relative;
}
.banner-text::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        to right, 
        rgba(96, 75, 154, 0.8),
        rgba(96, 75, 154, 0)
    );
}
.banner-btn{
    display:inline-block;
    margin-left:7.5rem;
    margin-top:2rem;
    padding: 1rem 3rem;
    border-radius:30px;
    background-color:#372e5d;
    color:#fff;
    font-size:14px;
    
}

.wave-top{
    height:60px;
    background: url("data:image/svg+xml,%3Csvg width='1920' height='60' viewBox='0 0 508 15.875' version='1.1' id='svg1' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs1' /%3E%3Cg id='layer1' style='display:inline'%3E%3Cpath style='fill:%23f8f7fd;stroke-width:0.364308' d='M -0.21245219,16.355526 H 509.27341 l 0.36612,-6.4019427 c 0,0 -81.75825,-8.406738 -125.41646,-8.5055249 C 340.56487,1.3492723 298.15762,11.309998 254.04933,11.278974 209.94102,11.247949 169.27213,1.3244428 125.7272,1.3888768 82.182267,1.4533067 -0.76167476,9.9535833 -0.76167476,9.9535833 Z' id='path1' /%3E%3C/g%3E%3C/svg%3E");
    background-position:center top;
    background-size:cover;
}

.wave-bottom{
    width: 100%;
    min-height: 50px;
    background-color: #f8f7fd;
    padding: 20px;
    box-sizing: border-box;
    
    /* 关键代码：直接裁剪出斜边 */
    clip-path: polygon(
    0% 0%,     /* 左上角 */
    100% 0%,   /* 右上角 */
    100% 40%, /* 右下角 */
    0% 100%    /* 左下角（保持原始高度） */
    );
}

.strengths{
    padding:6rem 20rem;
    position: relative;
}
.bg-txt{
    font-size:15rem;
    font-weight: bold;
    position: absolute;
    top:-5rem;
    right:20rem;
    z-index:-1;
}
.bg-txt-1{
    font-size:15rem;
    font-weight: bold;
    position: absolute;
    top:2rem;
    right:0;
    text-align: center;
    z-index:-1;
    width:100%;
}
.t-left{
    color:#d7d5e2;
}
.t-right{
    color:#eaeaea;
}
.headline-title{
    font-size:60px;
    font-weight:300;
    font-style: italic;
}
.headline-title-2{
    font-size:24px;
    font-weight:bold;
}

.bg{
    background-color:#999;
}
.mb-1{
    margin-bottom:1rem;
}
.mb-2{
    margin-bottom:2rem;
}
.mb-3{
    margin-bottom:3rem;
}
.mb-4{
    margin-bottom:4rem;
}
.mb-5{
    margin-bottom:5rem;
}


.strengths>ul{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:5rem;
}

.strengths>ul>li{

}
.strengths>ul>li>a{
    color:#222;
    text-decoration:none;
}
.strengths>ul>li>a:hover{}

.strengths>ul>li>a>.img{
    background-position: center;
    background-size: cover;
    height:240px;
    border:1px solid #e0e0e0;
    border-radius:20px;
    position: relative;
    margin-bottom:2rem;
}
.strengths>ul>li>a>.img>.title{
    position:absolute;
    text-align: right;
    width:80%;
    padding:0.5rem 3rem 0.5rem 0;
    background-color:#604b96;
    color: #fff;
    bottom:3rem;
    right:0;
}
.strengths>ul>li>a>p{
    line-height:1.7;
}
.message{
    background-color:#f8f7fd;
    padding:6rem 20rem;
    display:grid;
    grid-template-columns:45% 1fr;
    gap:10rem;
    align-items: center;
}
.message>.img{
    background-position: center;
    background-size: cover;
    height:300px;
}
.message>.msg{}
.message>.msg>span{
    display:block;
    font-size:12px;
}
.line{
    border-bottom:1px solid #999;
}
.message>.msg>.title{
    font-size:16px;
    font-weight:500;
    padding:1rem 0 1.5rem 0;
}
.message>.msg>.content{
    font-size:12px;
    line-height:2;
    font-weight:500;
}
.message>.msg>.content>p{
    margin-bottom:2rem;
}
.text-right{
    text-align:right;
}
.text-center{
    text-align: center;
}
.more-btn{
    display:inline-block;
    padding:0.5rem 5rem;
    border:1px solid #ccc;
    border-radius:3px;
    color:#222;
    background-color:#fff;
}

.news{
    background-color:#f8f7fd;
    padding:6rem 20rem;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:4rem;
    align-items: center;
}
.news-list{}
.news-list>span{
    display:block;
    font-size:12px;
}
.news-list>ul{}
.news-list>ul>li{
    display:grid;
    grid-template-columns:120px 80px 1fr;
    border-bottom:1px solid #ccc;
    padding:1.5rem 0;
    gap:2rem;
}
.news-list>ul>li>.time{
    display:block;
}
.news-list>ul>li>.cate{
    display: block;
    background-color:#604b96;
    color:#fff;
    height:24px;
    border-radius:12px;
    text-align: center;
}
.news-list>ul>li>a{
    color:#222;
    display: block;
}
.news-right{
}
.news-right>.img{
    height:300px;
    background-position: center;
    background-size: cover;
}

.story{
    position:relative;
}
.story-p{
    padding:0 20rem;
    margin-top:3rem;
}
.story-list>ul{
    display:grid;
    
    padding-top:10rem;
}
.story-list>ul>li{}
.story-list>ul>li>a{
    display:block;
    position: relative;
    color:#222;
}
.story-list>ul>li>a>.img{
    margin-right:5rem;
    position: relative;
    height:300px;
    background-position: center;
    background-size: cover;
}
.story-list>ul>li>a>.img>.txt-card{
    position: absolute;
    bottom:-2rem;
    right:-5rem;
    width:70%;
    height:35%;
    background-color:#fff;
    border:1px solid #222;
    padding:1.5rem;
}
.story-list>ul>li>a>.img>.txt-card>.s-name{
    font-size:13px;
    font-weight:500;
    margin-bottom:1rem;
}
.story-list>ul>li>a>.img>.txt-card>.s-address{
    font-size:10px;
    margin-bottom:1rem;
    color:#999
}
.story-list>ul>li>a>.img>.txt-card>.s-info{
    font-size:10px;
    color:#222;
    margin-top:auto;
}
.story-list>ul>li>a>.img>.txt-card>.s-info>span{
    font-size:24px;
    color:#604b96;
}
.story-list>ul>li>a>.desc{
    margin-top:4rem;
    position: relative;
}
.story-list>ul>li>a>.desc>span{
    position: absolute;
    bottom:0;
    right:0;
}

.contact{
    min-height:300px;
    border-radius:150px;
    background: linear-gradient(
        100deg, 
        #cfa3f2 0%,#cfa3f2 40%,
        #6ebcec 60%, #6ebcec 100%
    );
    margin:9rem 20rem;
    padding:0 10rem;
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:3rem;
    align-items:center;
}
.contact-left{
    text-align: center;
}
.contact-left>.title{
    font-size:60px;
    font-weight:100;
    color:#fff;
    margin-block-start:-3rem;
}
.contact-left>.bdcx{
    border-radius:40px;
    padding:2.5rem;
    background-color:#604b96;
    color:#fff;
    display: inline-block;
}
.contact-center{}
.contact-center>.title{
    font-size:12px;
    font-weight:600;
}
.contact-center>.tel{
    font-size:40px;
    font-weight:500;
}
.contact-center>.time{
    font-size:12px;
}
.contact-right{
    text-align: center;
}
.contact-right>.title{
    font-size:16px;
    font-weight:600px;
}
.contact-right>.tab-panel{
    padding:0 10rem;
}
.contact-right>.tab-panel>.tab{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items: center;
    text-align: center;
}
.contact-right>.tab-panel>.tab>div{
    background-color: #48b42a;
    color:#fff;
}
.contact-right>.tab-panel>.tab>div>i{
    font-size:16px;
}
.contact-right>.tab-panel>.tab>.active{
    background-color: #00ac3f;
}
.contact-right>.tab-panel>.tab-content{

}
.contact-right>.tab-panel>.tab-content>div{
    border:1px solid #222;
    
}
.contact-right>.tab-panel>.tab-content>div>img{
    width:100%;
    display:block;
}

footer{
    padding:3rem 15rem;
    background-color:#604b96;
    color: #fff;
    display:grid;
    grid-template-columns: 1fr 2fr;

}
.bottom-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}
.bottom-logo{
    padding:5rem 0;
}
.bottom-logo>img{
    width:120px;
}
.copyright{
    font-size:12px;
}
.bottom-right{
    border-left:1px solid #aa96df;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bottom-links{
    display:flex;
    justify-content: space-around;
}
.bottom-links b{
    font-weight:bold;
    display:block;
    margin-bottom:2.2rem;
}
.bottom-links ul{
    display:flex;
    flex-direction: column;
    list-style:none;
}
.bottom-links ul>li{
    line-height:2;
}
.bottom-links ul>li>a{
    color:#fff;
}
.bottom-links>div{
    margin-left:10rem;
    margin-bottom:5rem;
}
.bottom-txt{
    display:flex;
    justify-content: right;
    font-size:12px;
    color:#fff;
    
}
.bottom-txt>a{
    display:block;
    margin-left:4rem;
    color:#fff;
}
.bottom-txt>span{
    display:block;
    margin-left:4rem;
}

@media (max-width: 1024px) {
  .body::after {
        content:"1024";
    }
}


@media (max-width: 768px) {
  
    .body::after {
        content:"768";
    }

}

/* 设置全站字体为 Zen Kaku Gothic New */
body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* 确保所有标题也使用 Zen Kaku Gothic New */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* 设置段落文本 */
p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* 设置链接文本 */
a {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}


