.container {
    width: 80%;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* header特征在nav.css */


.right-align {
    margin-right: auto;
    font-weight: bold;
    font-size: 40px;
    color: #898980;
    /* text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); */
    -webkit-box-reflect: below 0 -webkit-linear-gradient(transparent, transparent 20%, rgba(255, 255, 255, .3));
}

.title {
    font-weight: bold;
    font-size: 20px;
}

.label-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 20px;
    width: 100%;
}
.label-container::before,
.label-container::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
    margin: 0 10px;
}


.introduction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    gap: 20px; /* 控制文字和图片之间的间距 */
    margin-top: 10px;
}
.text-container {
    flex: 3;
}

/* h2 {
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
} */
p {
    color: #000;
    font-size: 18px;
    /* text-indent: 2em; */
}
/* .feature-list {
    list-style-type: none;
    padding: 0;
}
.feature-list li {
    background: #e7f3fe;
    margin: 10px 0;
    padding: 10px;
    border-left: 5px solid #2196f3;
}
.contact {
    margin-top: 20px;
    text-align: center;
}
.contact a {
    color: #2196f3;
    text-decoration: none;
} */

.modelpng {
    /* flex: 1; 固定图片宽度为容器的40% */
    /* width: 100%; */
    /* max-width: 35%; */
    object-fit: cover;
    height: 200px;
    width: auto;


    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.link-container {
    display: flex;
    justify-content: space-evenly;
    width: 90%;
    margin-top: 20px;
    /* max-width: 800px; */
}

.link-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 25%;
}

.link-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.link-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.link-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.link {
    text-decoration: none;
    color: #555;
    font-size: 18px;
    font-weight: bold;
    display: block;
}

.link:hover {
    color: #000;
}