/* 公司简介板块 - k701样式 */
section.about {
    display: block;
    overflow: hidden;
    width: 100%;
    padding-bottom: 82px;
    background: #fff;
}

/* 标题区 */
.about .often {
    text-align: center;
    margin: 42px auto 30px auto;
    display: block;
    overflow: hidden;
}
.about .often a {
    display: block;
    text-decoration: none;
}
.about .often-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.about .often .title {
    font-size: 36px;
    color: #363636;
    display: inline-block;
}
.about .often .picture {
    display: inline-block;
}
.about .often .picture img {
    display: block;
    height: 12px;
}
.about .often .text {
    display: block;
    color: #999999;
    font-size: 15px;
    margin-top: 10px;
}

/* 内容区容器 */
.about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    height: 580px;
}

/* 左侧文字区 - 比图片低 */
.about .about_l {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 47%;
    height: 430px;
    z-index: 2;
}
.about .about_l .content {
    background-color: #f2f2f2;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #363636;
    line-height: 35px;
    text-indent: 32px;
    padding: 60px 80px 94px 60px;
    box-sizing: border-box;
    position: relative;
}
.about .about_l .content p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #363636;
    text-indent: 0;
    margin-bottom: 20px;
}
.about .about_l .more {
    position: absolute;
    right: -57px;
    bottom: 0;
    width: 115px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-indent: 0;
    padding: 0;
    background: #00add7;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.about .about_l .more:hover {
    background: #0099c0;
}

/* 右侧图片区 */
.about .about_r {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 60%;
    height: 503px;
    overflow: hidden;
    z-index: 1;
}
.about .about_r img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 响应式 */
@media only screen and (max-width: 1200px) {
    .about-wrap {
        padding: 0 20px;
        height: auto;
    }
    .about .about_l {
        width: 60%;
        height: 480px;
    }
    .about .about_l .content {
        padding: 40px 70px 94px 40px;
    }
    .about .about_r {
        width: 65%;
        height: 440px;
        bottom: 40px;
    }
}
@media only screen and (max-width: 768px) {
    .about .often .title {
        font-size: 28px;
    }
    .about-wrap {
        position: relative;
        height: auto;
    }
    .about .about_l,
    .about .about_r {
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        bottom: -40px;
    }
    .about .about_l {
        height: auto;
        margin-bottom: -50px;
    }
    .about .about_l .content {
        height: auto;
        padding: 30px;
        padding-bottom: 94px;
    }
    .about .about_l .more {
        right: 20px;
        bottom: 0;
    }
    .about .about_r {
        display: none;
		height: 300px;
        bottom: 0;
    }
}

/* 招商政策版块 */
.policy {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}
.policy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a url(/skin/images/3.jpg) center/cover no-repeat;
    z-index: 1;
}
.policy-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.policy-title {
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 600;
}
.policy-text {
    font-size: 16px;
    color: #fff;
    line-height: 2;
    margin-bottom: 40px;
    text-align: center;
}
.policy-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid #00add7;
    color: #00add7;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.policy-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00add7;
    transition: left 0.3s ease;
    z-index: -1;
}
.policy-more:hover {
    color: #fff;
}
.policy-more:hover::before {
    left: 0;
}
.policy-more .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.policy-more:hover .arrow {
    transform: rotate(45deg) translateX(4px);
}

/* 招商政策响应式 */
@media only screen and (max-width: 768px) {
    .policy {
        padding: 60px 0;
    }
    .policy-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .policy-text {
        font-size: 14px;
        line-height: 1.8;
    }
    .policy-more {
        padding: 10px 25px;
        font-size: 14px;
    }
}
