/* Banner 开始 */
.top-banner {
    height: 430px;
    margin-top: 0 !important;
}

.top-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner 结束 */

/* 简介 开始 */
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;
    transition: all .225s ease-in-out;
    cursor: pointer;
}

.introduction .right-section .submit-btn:hover {
    background: #0084ff;
}

/* 简介 结束 */

/* 服务 开始 */
.service h2 {
    font-size: 32px;
}

.service .content {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

.service ul {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 11px));
    gap: 22px;
}

.service ul li {
    position: relative;
    float: left;
    height: 124px;
    padding: 24px 20px 0 32px;
    overflow: hidden;
}

.service ul li img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.service .info {
    position: relative;
    z-index: 1;
}

.service .info span {
    display: block;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 10px;
}

.service ul li:hover .info span {
    color: #fff;
}

.service .info p {
    width: 58%;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.service ul li:hover .info p {
    color: #fff;
}

.service .cover {
    width: 100%;
    height: 100%;
    opacity: 0.77;
    background-color: #29abf1;
    transition: all ease 0.3s;
    position: absolute;
    bottom: -124px;
    left: 0;
}

.service ul li:hover .cover {
    bottom: 0;
}

.service .ask {
    width: 108px;
    height: 38px;
    line-height: 38px;
    background-color: #fff;
    color: #29abf1;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 19px;
    transform: translateY(50%);
    transition: all ease 0.3s;
    position: absolute;
    right: 20px;
    bottom: -78px;
    z-index: 2;
}

.service ul li:hover .ask {
    bottom: 50%;
}

.service .special {
    width: calc(25% - 22px);
    padding: 45px 0 0 24px;
    position: relative;
    overflow: hidden;
}

.service .special img {
    width: 100%;
    height: 270px;
    position: absolute;
    top: 0;
    left: 0;
}

.service .special:hover .info span {
    color: #fff;
}

.service .special:hover .info p {
    color: #fff;
}

.service .special .cover {
    width: 100%;
    height: 100%;
    background-color: #29abf1;
    opacity: 0.77;
    transition: all ease 0.3s;
    position: absolute;
    bottom: -270px;
    left: 0;
}

.service .special:hover .cover {
    bottom: 0;
}

.service .special .ask {
    transform: translateX(50%);
    position: absolute;
    right: 50%;
    bottom: -270px;
}

.service .special:hover .ask {
    bottom: 40px;
}

/* 服务 结束 */

/* 机构 开始*/
.section-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.section-title h2 {
    font-size: 32px;
    line-height: 1;
}

.section-title .title-bar {
    flex: 1;
    height: 30px;
    border-bottom: 1px solid #ededed;
    margin-left: 10px;
    vertical-align: bottom;
    position: relative;
    overflow: hidden;
}

.section-title .title-bar img {
    position: absolute;
    top: 20px;
    left: 0;
    width: 16px;
    height: 10px;
    z-index: 9;
}

.section-title .more {
    float: right;
    color: #333;
    font-size: 14px;
}

.resource .resource-type {
    display: inline-block;
    color: #333;
    font-size: 22px;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 3px solid #29abf1;
    position: relative;
}

.government-list {
    display: grid;
    grid-template-columns: repeat(3, calc(33.3333% - 16px));
    gap: 24px;
    margin-top: 30px;
}

.government-list li {
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0px 0px 20px 0px rgba(204, 204, 204, 0.12);
}

.government-list li .government-details-info {
    padding: 18px 16px 20px 14px;
}

.government-list li .government-details-info .government-info-img {
    float: left;
}

.government-list li .government-details-info .government-info-img img {
    width: 112px;
    aspect-ratio: 4/3;
    border-radius: 4px;
    border: 1px solid #F2F3F5;
    box-sizing: border-box;
}

.government-list li .government-details-info .government-info-both {
    float: left;
    width: calc(100% - 112px - 16px);
    margin-left: 16px;
}

.government-list li .government-details-info .government-info-title {
    display: inline-block;
    max-width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 26px;
    margin-top: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.government-list li .government-details-info .government-info-title:hover {
    color: #29abf1;
}

.government-list li .government-details-info .government-info-address {
    font-size: 14px;
    color: #909090;
    line-height: 22px;
    margin-top: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.government-list li .government-user-info {
    min-height: 80px;
    background: linear-gradient(270deg, #FDFDFD 0%, #FAFAFA 100%);
    padding: 12px 14px 16px 14px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    position: relative;
}

.government-list li .government-user-info .user-logo-img {
    float: left;
    position: relative;
}

.government-list li .government-user-info .user-logo-img::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/icon-accreditation.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: -4px;
    bottom: -2px;
}

.government-list li .government-user-info .user-logo-img img {
    width: 48px;
    height: 48px;
    border-radius: 2px;
}

.government-list li .government-user-info .user-info-center {
    float: left;
    width: calc(100% - 48px - 10px - 100px - 12px);
    margin-left: 10px;
}

.government-list li .government-user-info .user-info-center .user-info-name a {
    float: left;
    max-width: calc(100% - 60px);
    font-size: 16px;
    color: #303030;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.government-list li .government-user-info .user-info-center .user-info-name a:hover {
    color: #29abf1;
}

.government-list li .government-user-info .user-info-center .user-info-status {
    float: left;
    font-size: 12px;
    color: #FF9900;
    line-height: 20px;
    margin-top: 2px;
    border-radius: 4px;
}

.government-list li .government-user-info .user-info-center .common-label-box {
    float: left;
    margin-top: 8px;
}

.government-list li .government-user-info .user-info-center .common-label-box .label-title {
    float: left;
    background: #FFDABE;
    border-radius: 4px 0px 0px 4px;
    font-weight: bold;
    font-size: 12px;
    color: #783B07;
    line-height: 20px;
    padding: 0 4px;
}

.government-list li .government-user-info .user-info-center .common-label-box .label-desc {
    float: left;
    background: #FFF2E4;
    border-radius: 0px 4px 4px 0px;
    font-size: 12px;
    color: #AC6338;
    line-height: 20px;
    padding: 0 4px;
}

.government-list li .government-user-info .user-info-right {
    width: 100px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 14px;
}

.government-list li .government-user-info .user-info-right .icon-phone {
    width: 16px;
    aspect-ratio: 1;
    margin-right: 4px;
}

.government-list li .government-user-info .user-info-right .user-right-content {
    background: #F0F8FF;
    color: #29abf1;
    font-size: 13px;
    line-height: 22px;
    padding: 1px 9px;
    border: 1px solid #97C6FB;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.government-list li .government-user-info .user-info-right .user-right-content:hover {
    color: #408EF5;
}

.government-list li .government-user-info .user-info-right .call-phone-img {
    padding-top: 8px;
    display: none;
    position: absolute;
    top: 26px;
    right: 0;
    z-index: 10;
}

.government-list li .government-user-info .user-info-right .user-right-content:hover .call-phone-img {
    display: block;
}

.government-list li .government-user-info .user-info-right .call-phone-img>.call-phone-img-box {
    padding: 8px;
    border-radius: 4px;
    background: #FFFFFF;
    box-shadow: 0px 5px 12px 0px rgba(29, 33, 38, 0.1);
    line-height: 1;
}

.government-list li .government-user-info .user-info-right .call-phone-img>.call-phone-img-box>.call-mini-image {
    width: 104px;
    height: 104px;
    margin-bottom: 8px;
}

.government-list li .government-user-info .user-info-right .call-phone-img>.call-phone-img-box>.call-phone-desc {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    line-height: 20px;
    text-align: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #F2F2F2;
}

.park-area-list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -4px 0;
}

.park-area-list .area-item {
    line-height: 28px;
    background: #ECECEC;
    color: #666;
    font-size: 14px;
    margin: 10px 4px 0;
    padding: 0 10px;
    border-radius: 4px;
    cursor: pointer;
}

.park-area-list .area-item.active {
    background: #29abf1;
    color: #fff;
}

.park-content {
    margin-top: 20px;
}

.park-content .park-swiper {
    width: 480px;
    aspect-ratio: 30/23;
    position: relative;
    float: left
}

.park-content .park-swiper .swiper-button-prev {
    background: url(../images/icon-arrows.png) no-repeat left top;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
}

.park-content .park-swiper .swiper-button-next {
    background: url(../images/icon-arrows.png) no-repeat left bottom;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
}

.park-content .park-swiper .swiper-container {
    width: 100%;
    height: 100%;
}

.park-content .park-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.park-content .park-swiper .swiper-slide {
    position: relative
}

.park-content .park-swiper .swiper-slide a h2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 40px;
    background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .7) 100%, rgba(0, 0, 0, .4) 100%, rgba(0, 0, 0, .4) 100%, rgba(0, 0, 0, .3) 100%, #000 100%);
    font-size: 15px;
    color: #fff;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 99;
    text-align: center
}

.park-content .park-swiper .content-slide {
    padding: 20px;
    color: #fff;
}

.park-content .park-swiper .title {
    font-size: 25px;
    margin-bottom: 10px;
}

.park-content .park-swiper .swiper-pagination {
    position: absolute;
    left: 0;
    text-align: center;
    bottom: 5px;
    width: 100%;
}

.park-content .park-swiper .swiper-pagination-switch {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #eee;
    box-shadow: 0px 1px 2px #555 inset;
    margin: 0 5px;
    cursor: pointer;
}

.park-content .park-swiper .swiper-active-switch {
    background: #29abf1;
}

.park-content .halfCon {
    margin-left: 30px;
    float: left;
    width: calc(100% - 480px - 30px);
}

.park-content .halfImgCon {
    display: grid;
    grid-template-columns: repeat(3, calc(33.3333% - 13.3333px));
    gap: 20px;
}

.park-content .halfCon .halfImgCon li a .pic img {
    width: 100%;
    aspect-ratio: 108/61;
}

.park-content .halfCon .halfImgCon li h2 {
    height: 52px;
    line-height: 22px;
    background: #f5f6fb;
    color: #4c4c4c;
    font-weight: normal;
    font-size: 14px;
    padding: 5px 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.park-content .halfCon .halfImgCon li a:hover h2 {
    color: #29abf1;
}

/* 机构 结束 */

/* 土地数据 开始 */
.section-title .rightaway {
    position: absolute;
    top: 0;
    right: 40px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

.section-title .more {
    float: right;
    color: #333;
    font-size: 14px;
}

.land-data .inner-model {
    margin-top: 20px;
}

.land-data .inner-model .left {
    float: left;
    width: 35%;
}

.land-data .inner-model .inner-model-title {
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding-left: 10px;
    position: relative;
}

.land-data .inner-model .inner-model-title:before {
    content: '';
    width: 4px;
    height: 20px;
    background-color: #29abf1;
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 4px;
}

.land-data .inner-model .inner-model-title .more {
    float: right;
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
    color: #7e7e7e;
}

.land-data .inner-model .left table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.land-data .inner-model .left table thead tr th {
    background-color: #f3f3f3;
    color: rgba(41, 171, 241, .7);
    padding: 12px 8px;
}

.land-data .inner-model .left table>thead>tr>th {
    border: 1px solid #ddd;
}

.land-data .inner-model .left table>thead:first-child>tr:first-child>th {
    border-top: 0;
}

.land-data .inner-model .left table tbody tr td {
    text-align: center;
    color: #4c4c4c;
    padding: 14px 8px;
    border: 1px solid #ddd;
}

.land-data .inner-model .right {
    float: left;
    width: calc(65% - 30px);
    margin-left: 30px;
}

.land-data .inner-model .inner-model-title .small {
    font-size: 85%;
    font-weight: 400;
    color: #29abf1;
    margin-left: 10px;
}

/* 土地数据 结束 */

/* 指南 开始 */
.guide .guide-menu {
    margin-top: 20px;
}

.guide .guide-menu .guide-tab {
    display: flex;
    height: 50px;
    border-top: 1px solid #29abf1;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    overflow: hidden;
}

.guide .guide-menu .guide-tab li {
    flex: 1;
    line-height: 49px;
    background-color: #f8f8f8;
    font-size: 16px;
    color: #333333;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.guide .guide-menu .guide-tab li.active {
    background-color: #29abf1;
    color: #fff;
}

.guide .guide-menu .guide-box {
    padding-bottom: 10px;
    border: 1px solid #ddd;
    border-top: none;
}

.guide .guide-menu .guide-box div {
    display: none;
}

.guide .guide-menu .guide-box div.active {
    display: block;
}

.guide .guide-menu .guide-box div img {
    width: 100%;
    aspect-ratio: 884/269;
}

.guide .guide-menu .more-invest {
    text-align: center;
    margin-top: 30px;
}

.guide .guide-menu .more-invest a {
    display: inline-block;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    color: #999;
    padding: 0 8px;
    border: 1px solid #999;
}

.guide .guide-menu .more-invest a:hover {
    color: #29abf1;
    border-color: #29abf1;
}

/* 指南 结束 */

/* 外企招商政策 开始 */
.foreign-policy .foreign-policy-list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -10px 0;
}

.foreign-policy .foreign-policy-item {
    display: flex;
    width: calc(50% - 20px);
    margin: 10px 10px 0;
}

.foreign-policy .foreign-policy-item a {
    display: block;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.foreign-policy .foreign-policy-item a:hover {
    color: #29abf1;
}

.foreign-policy .more-invest {
    text-align: center;
    margin-top: 30px;
}

.foreign-policy .more-invest a {
    display: inline-block;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    color: #999;
    padding: 0 8px;
    border: 1px solid #999;
}

.foreign-policy .more-invest a:hover {
    color: #29abf1;
    border-color: #29abf1;
}

.foreign-policy .investment-discount {
    display: flex;
    margin: 30px -10px 0;
    position: relative;
}

.foreign-policy .discount-content {
    flex: 1;
    margin: 0 10px;
    padding: 15px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.foreign-policy .discount-content-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.foreign-policy .discount-content-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.foreign-policy .discount-content-img p {
    font-size: 18px;
    color: #fff;
    overflow: hidden;
}

.foreign-policy .discount-content-bottom {
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
}

.foreign-policy .discount-content-text {
    width: 100%;
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.foreign-policy .discount-content a:hover .discount-content-text,
.foreign-policy .discount-content a:hover .discount-content-enquiries {
    color: #29abf1;
}

.foreign-policy .discount-content-enquiries {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* 外企招商政策 结束 */

/* 招商政策 开始 */
.investment-policy .policy-content {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.investment-policy .policy-content .policy-swiper {
    width: 54%;
    aspect-ratio: 733/431;
    position: relative;
}

.investment-policy .policy-content .policy-swiper .swiper-button-prev {
    background: url(../images/icon-arrows.png) no-repeat left top;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
}

.investment-policy .policy-content .policy-swiper .swiper-button-next {
    background: url(../images/icon-arrows.png) no-repeat left bottom;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
}

.investment-policy .policy-content .policy-swiper .swiper-container {
    width: 100%;
    height: 100%;
}

.investment-policy .policy-content .policy-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-policy .policy-content .policy-swiper .swiper-slide {
    position: relative
}

.investment-policy .policy-content .policy-swiper .swiper-slide a h2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 40px;
    background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .7) 100%, rgba(0, 0, 0, .4) 100%, rgba(0, 0, 0, .4) 100%, rgba(0, 0, 0, .3) 100%, #000 100%);
    font-size: 15px;
    color: #fff;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 99;
    text-align: center
}

.investment-policy .policy-content .policy-swiper .content-slide {
    padding: 20px;
    color: #fff;
}

.investment-policy .policy-content .policy-swiper .title {
    font-size: 25px;
    margin-bottom: 10px;
}

.investment-policy .policy-content .policy-swiper .swiper-pagination {
    position: absolute;
    left: 0;
    text-align: center;
    bottom: 5px;
    width: 100%;
}

.investment-policy .policy-content .policy-swiper .swiper-pagination-switch {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #eee;
    box-shadow: 0px 1px 2px #555 inset;
    margin: 0 5px;
    cursor: pointer;
}

.investment-policy .policy-content .policy-swiper .swiper-active-switch {
    background: #29abf1;
}

.investment-policy .policy-content .policy-list {
    flex: 1;
    margin-left: 30px;
}

.investment-policy .policy-content .policy-list a {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    padding-left: 15px;
    position: relative;
}

.investment-policy .policy-content .policy-list a:hover {
    color: #29abf1;
}

.investment-policy .policy-content .policy-list a:before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #cacaca;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 2px;
    top: 50%;
}

.investment-policy .policy-content .policy-list a:nth-child(n+2) {
    margin-top: 15px;
}

/* 招商政策 结束 */

/* 工业园区 开始 */
.industrial-park .industrial-swiper {
    margin-top: 30px;
    position: relative;
}

.industrial-park .industrial-swiper .swiper-container {
    height: 150px;
    margin: 0 60px;
}

.industrial-park .industrial-swiper .swiper-slide {
    display: grid;
    grid-template-columns: repeat(5, calc(100% / 5 - 80px / 5));
    gap: 20px;
}

.industrial-park .industrial-swiper .swiper-slide .park-text-blue-box,
.industrial-park .industrial-swiper .swiper-slide .park-text-green-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #6fa5dc;
    border: 1px solid #ededed;
    position: relative;
    line-height: 36px;
}

.industrial-park .industrial-swiper .swiper-slide .park-text-green-box {
    background-color: #8dd1d8;
}

.industrial-park .industrial-swiper .swiper-slide .park-text {
    width: 100%;
    font-size: 22px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.industrial-park .industrial-swiper .swiper-button-pre {
    width: 40px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

.industrial-park .industrial-swiper .swiper-button-next {
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

/* 工业园区 结束 */

/* 投资咨询 开始 */
.investment-consultation .feedback-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.investment-consultation .feedback-title .feedback-title-text {
    line-height: 1;
    font-size: 20px;
    color: #333;
    padding-left: 6px;
    border-left: 2px solid #29abf1;
}

.investment-consultation .feedback-title .feedback-hot-line {
    font-size: 20px;
    color: #29abf1;
}

.investment-consultation .investment-qa {
    margin-top: 30px;
}

.investment-consultation .investment-qa .qa-item {
    padding: 0 20px;
}

.investment-consultation .investment-qa .qa-item:nth-child(2n+1) {
    background-color: #f8f8f8;
}

.investment-consultation .investment-qa .qa-item .questions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 40px;
    cursor: pointer;
}

.investment-consultation .investment-qa .qa-item .questions .icon-open,
.investment-consultation .investment-qa .qa-item .questions .icon-close {
    width: 16px;
    height: 16px;
}

.investment-consultation .investment-qa .qa-item .questions .icon-open {
    display: none;
}

.investment-consultation .investment-qa .qa-item .questions .icon-close {
    display: block;
}

.investment-consultation .investment-qa .qa-item.active .questions .icon-open {
    display: block;
}

.investment-consultation .investment-qa .qa-item.active .questions .icon-close {
    display: none;
}

.investment-consultation .investment-qa .qa-item .answers {
    line-height: 30px;
    color: #666;
    overflow: hidden;
    transition: all 0.3s ease;
}

.investment-consultation .investment-qa .qa-item .answers.open {
    height: auto;
    padding-bottom: 15px;
}

.investment-consultation .investment-qa .qa-item .answers.close {
    height: 0;
}

.investment-consultation .investment-advisory {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    overflow: hidden;
}

.investment-consultation .investment-advisory .advisory-item {
    float: left;
    height: 37px;
    line-height: 37px;
}

.investment-consultation .investment-advisory .advisory-item:nth-child(n+2) {
    margin-left: 50px;
}

.investment-consultation .investment-advisory .advisory-item p {
    float: left;
    font-size: 14px;
    margin-right: 40px;
}

.investment-consultation .investment-advisory .advisory-item input {
    width: 300px;
    height: 37px;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #EDEDED;
}

.investment-consultation .investment-advisory .advisory-item input::-webkit-input-placeholder,
.investment-consultation #user-content textarea::-webkit-input-placeholder {
    color: #afafaf
}

.investment-consultation #user-content {
    width: 800px;
    margin-top: 20px;
}

.investment-consultation #user-content p {
    float: left;
    line-height: 37px;
    margin-right: 12px;
}

.investment-consultation #user-content textarea {
    width: 732px;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #EDEDED;
    resize: none;
}

.investment-consultation #user-content .submit-btn {
    width: 140px;
    height: 35px;
    background-color: #29abf1;
    color: #fff;
    font-size: 16px;
    margin: 20px 0 0 68px;
    transition: all .225s ease-in-out;
    cursor: pointer;
}

.investment-consultation #user-content .submit-btn:hover {
    background: #0084ff;
}

/* 投资咨询 结束 */