/* 简介 开始 */
section {
    margin: 40px 0;
}

.introduction .title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.introduction .title h2 {
    flex: 0 0 74%;
    font-size: 32px;
}


.introduction .title .invest-phone {
    display: flex;
    align-items: center;
    flex: 0 0 24%;
}

.introduction .title .invest-phone img {
    width: 32px;
    aspect-ratio: 1;
}

.introduction .title .invest-phone p {
    color: #29abf1;
    font-size: 18px;
    margin-left: 15px;
}

.introduction .content {
    display: flex;
    justify-content: space-between;
}

/* 左侧内容区 */
.introduction .content {
    margin-top: 30px;
}

.introduction .left-section {
    width: 74%;
}

.introduction .left-section .source {
    text-align: right;
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.introduction .left-section .intro {
    font-size: 14px;
    color: #333333;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 120px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.introduction .left-section .info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.introduction .left-section .info-table td {
    width: 50%;
    line-height: 20px;
    padding-bottom: 10px;
}

.introduction .left-section .info-table td h6 {
    float: left;
    width: 16%;
    font-size: 14px;
    font-weight: normal;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.introduction .left-section .info-table td p {
    float: left;
    width: calc(84% - 17px);
    font-size: 14px;
    color: #333;
    margin-left: 17px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.introduction .left-section .more-btn {
    text-align: center;
    margin: 36px auto 0;
}

.introduction .left-section .more-btn a {
    display: inline-block;
    line-height: 34px;
    font-size: 14px;
    padding: 0 10px;
    background-color: #fff;
    color: #999;
    border: 1px solid #999;
}

.introduction .left-section .more-btn a:hover {
    color: #29abf1;
    border-color: #29abf1;
}

/* 右侧表单区 */
.introduction .right-section {
    width: 24%;
}

.introduction .right-section .invest-form {
    padding: 0 20px 20px 20px;
    border: 1px solid #EDEDED;
    border-top: 2px solid #29abf1;
}

.introduction .right-section .invest-form h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

.introduction .right-section form {
    margin-top: 12px;
}

.introduction .right-section .form-group {
    display: flex;
    align-items: center;
    background: #F6F6F6;
    margin-top: 8px;
    padding: 0 14px;
}

.introduction .right-section .form-group input {
    width: 100%;
    height: 34px;
    background: inherit;
    color: #333;
    font-size: 14px;
    border: 1px solid #F6F6F6;
}

.introduction .right-section .form-group input::placeholder {
    color: #999;
}

.introduction .right-section .form-group span {
    font-size: 14px;
    margin-left: 5px;
}

.introduction .right-section .submit-btn {
    width: 100%;
    height: 36px;
    line-height: 36px;
    background-color: #29abf1;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    border-radius: 3px;
}

/* 简介 结束 */

/* 园区列表 开始 */
.park-list ul {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 10px));
    gap: 32px 20px;
}

.park-list ul li a {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.park-list ul li .list-thumb {
    width: 171px;
    aspect-ratio: 171/128;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.park-list ul li .list-thumb-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.park-list ul li .list-thumb-icon {
    width: 24px;
    aspect-ratio: 1;
    position: absolute;
    bottom: 8px;
    left: 8px;
}

.park-list ul li .list-content {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    margin-left: 16px;
    overflow: hidden;
    position: relative;
}

.park-list ul li .list-title {
    font-family: PingFangSC-Medium;
    font-size: 18px;
    font-weight: 700;
    color: #161a23;
    line-height: 26px;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.park-list ul li a:hover .list-title {
    color: #29abf1;
}

.park-list ul li .list-tags {
    max-height: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: hidden;
}

.park-list ul li .list-tags p {
    max-width: 300px;
    background-color: #f5f6fa;
    color: rgba(22, 26, 35, .639);
    font-size: 12px;
    line-height: 1.5;
    padding: 1px 7px;
    border: 1px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
}

.park-list ul li .list-tags p:first-child {
    background-color: #e6f4ff;
    color: #0060f0;
    border-color: #e6f4ff;
}

.park-list ul li .list-types {
    color: rgba(22, 26, 35, .64);
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
}

.park-list ul li .list-types span:nth-child(n+2)::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #ebebef;
    margin: auto 8px;
}

.park-list ul li .list-bottom {
    display: flex;
    align-items: flex-end;
    margin-top: 12px;
    position: relative;
}

.park-list ul li .list-number {
    color: #ff9d1e;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 27px;
}

.park-list ul li .list-unit {
    color: #ff9d1e;
    font-size: 14px;
    margin-left: 4px;
}

.park-list ul li .list-position {
    display: flex;
    align-items: center;
    color: rgba(22, 26, 35, .64);
    font-size: 14px;
    line-height: 20px;
    margin-left: auto;
}

.park-list ul li .list-position img {
    width: 16px;
    aspect-ratio: 1;
    margin-right: 4px;
}

/* 园区列表 结束 */