/* å…¨å±€æ ·å¼é‡ç½® */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
    font-size: 16px; /* æ­£æ–‡ç»Ÿä¸€16pxå­—ä½“ */
    color: #333;
    line-height: 1.6;
}

/* å…¨å±€åŠ ç²—æ ·å¼ */
.bold {
    font-weight: bold !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Font Awesomeå›¾æ ‡åŸºç¡€æ ·å¼ */
.fas {
    font-size: inherit;
    color: inherit;
}
.nav_about {
    background: rgba(0, 54, 124, .45);
}

/* ç®€ä»‹åŒºåŸŸæ ·å¼ */
.intro {
    padding: 20px 0 50px;
}

.intro-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 16px;
    line-height: 2;
}

.info-tags {
    display: flex;
    gap: 20px;
    margin: 16px 0;
}

.tag {
    background-color: #d8e0fd;
    color: #030404;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 16px;
}

.tag i {
    color: #10a1eb;
}

.tag .fas {
    margin-right: 8px;
}

.subjects {
    color: #030404;
    margin: 20px 0;
    font-size: 16px;
}

.highlight {
    color: #2E7D32;
    font-weight: bold;
    margin-top: 25px;
    font-size: 16px;
}

.intro-img {
    flex: 0 0 455px;
}

.intro-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* é€šç”¨æ ‡é¢˜æ ·å¼ */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.title-line {
    width: 70px;
    height: 4px;
    background-color: #0052D9;
    margin: 0 auto;
}

/* æ·±åº¦å‚ä¸ŽåŒºåŸŸæ ·å¼ */
.participation {
    background-color: #F5F9FF;
    padding: 60px 0;
}

.participation-container {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.participation-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.participation-card:nth-child(1),
.participation-card:nth-child(2),
.participation-card:nth-child(3) {
    grid-column: span 1;
}
.participation-card:nth-child(4),
.participation-card:nth-child(5) {
    grid-column: span 1.5;
}

.card-icon {
    margin-bottom: 20px;
    font-size: 32px;
    color: #0052D9;
}

.participation-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.participation-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* æˆé•¿è·¯å¾„åŒºåŸŸæ ·å¼ - æ ¸å¿ƒä¿®æ­£ */
.growth {
    padding: 60px 0;
}

.growth-container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 470px;
    overflow: hidden;
}

/* é‡‘å­—å¡”å›¾ç‰‡ - å±‚çº§ç½®é¡¶ (z-indexæ›´é«˜) */
.growth-pyramid {
    position: absolute;
    left: 87px;
    top: 10px;
    width: 420px;
    height: 461px;
    z-index: 10; /* å±‚çº§é«˜äºŽæ–‡å­—èƒŒæ™¯ */
}

.growth-pyramid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* è“è‰²èƒŒæ™¯æ­¥éª¤ - æ–œå‘æŽ’åˆ— + æ¸å˜é€æ˜Ž */
.growth-steps {
    position: absolute;
    left: 244px;
    top: 47px;
    width: 750px;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    z-index: 5; /* å±‚çº§ä½ŽäºŽé‡‘å­—å¡”å›¾ç‰‡ */
}

/* æ¯ä¸ªæ­¥éª¤çš„æ–œå‘æŽ’åˆ— + è“åˆ°é€æ˜Žæ¸å˜ */
.growth-step {
    /* è“åˆ°é€æ˜Žæ¸å˜èƒŒæ™¯ */
    background: linear-gradient(90deg, rgba(225,245,254,1) 0%, rgba(225,245,254,0) 100%);
    padding: 12px 57px;
    width: 800px;
    /* æ–œå‘æŽ’åˆ— - æ¯ä¸ªæ­¥éª¤å·¦ç¼©è¿›é€’å¢ž */
}

/* æ­¥éª¤4 - æœ€é¡¶éƒ¨ï¼Œå·¦ç¼©è¿›æœ€å° */
.step-4 {
    margin-top: 48px;
    margin-left: 65px;
}

/* æ­¥éª¤3 - å·¦ç¼©è¿›å¢žåŠ  */
.step-3 {
    margin-top: 20px;
    margin-left: 110px;
}

/* æ­¥éª¤2 - å·¦ç¼©è¿›ç»§ç»­å¢žåŠ  */
.step-2 {
    margin-top: 18px;
    margin-left: 148px;
}

/* æ­¥éª¤1 - æœ€åº•éƒ¨ï¼Œå·¦ç¼©è¿›æœ€å¤§ (æ–œå‘æ•ˆæžœ) */
.step-1 {
    margin-top: 20px;
    margin-left: 180px;
}

.growth-step h4 {
    font-size: 17px;
    color: #2566eb;
    font-weight: bold;
    margin-bottom: 4px;
}

.growth-step p {
    font-size: 15px;
    color: #030404;
    line-height: 1.8;
}

/* åŠ å…¥æˆ‘ä»¬åŒºåŸŸæ ·å¼ */
.join-us {
    background-color: #F5F9FF;
    padding: 60px 0;
}

.join-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 25px;
}

.join-card {
    flex: 1;
    background: linear-gradient(135deg, #12297a, #0070C0);
    color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    position: relative;
    height: 330px;
}

.join-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.join-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
}

.card-bottom-icon {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 28px;
    opacity: 0.8;
}

.card-bottom-icon i{
   color: #00f5ef;
}

/* å“åº”å¼å…¼å®¹ */
@media (max-width: 1200px) {
    .nav-container,
    .banner-container,
    .intro-container,
    .participation-container,
    .growth-container,
    .join-container,
    .footer-container {
        width: 95%;
        margin: 0 auto;
    }
    .growth-container {
        height: auto;
        flex-direction: column;
        position: relative;
    }
    .growth-pyramid, .growth-steps {
        position: static;
        width: 100%;
        height: auto;
    }
    .growth-steps {
        margin-top: 20px;
    }
    .growth-step {
        width: 100%;
        margin-left: 0 !important;
    }
}