/* 导航栏默认高亮元素 */

.nav>li:nth-child(3)>a {
    font-weight: 700;
    color: #5196FE;
    border-bottom: 3px solid #5196FE;
}

.contract {
    width: 100%;
    background-color: #ffffff;
}


/* 内容标题 */

.content-title {
    margin: 50px 0 20px 0;
}

.title-line {
    display: inline-block;
    width: 4px;
    height: 28px;
    background: #5196fe;
    border-radius: 2px;
}

.content-title>p {
    display: inline-block;
    padding: 0 0 0 24px;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    vertical-align: 4px;
}


/* 公司介绍 */

.introduce {
    padding: 30px 20px 30px 30px;
    background: #f7f7f7;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(35, 35, 47, 0.20);
}

.introduce::after {
    content: '';
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
}

.in-left {
    font-size: 16px;
    color: #333;
    text-indent: 2em;
    line-height: 1.6;
    shape-outside: margin-box;
}

.in-right {
    width: 37.2%;
    min-width: 200px;
    font-size: 0;
    float: right;
    margin: 0 0 5px 20px;
}

.in-right>img {
    width: 100%;
    border-radius: 10px;
}

.projectLink {
    color: #5196fe;
}


/* 加入我们 */

.join>ul {
    display: flex;
    justify-content: space-around;
}

.join-list {
    width: 30%;
    padding: 16px 0 16px 36px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(35, 35, 47, 0.20);
}

.join-list>div {
    margin-bottom: 15px;
}

.join-list>div::after {
    content: '';
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
}

.join-list>div>div {
    float: left;
}

.join-list>div span {
    margin: 0 20px 0 0;
    font-size: 46px;
    color: #5196FE;
}

.join-list>div>div>p:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #5196fe;
}

.join-list>div>div>p:last-child {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 300;
    color: #989898;
}

.join-list>p {
    font-size: 14px;
    color: #989898;
    line-height: 1.8;
}

.join-list>p span {
    color: #646464;
    font-weight: 700;
}

.join-list:hover {
    /* transform: translateX(-2px) translateY(-2px); */
    transition: all 0.1s linear;
    transform: scale(1.05, 1.05);
}


/* 地图 */

.map {
    width: 100%;
    height: 290px;
    font-size: 0;
}

.map>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-fit: contain; */
    /* object-fit: ; */
}

@media screen and (max-width:960px) {
    .content-title {
        margin: 40px 0 20px 0;
    }

    .content-title>p {
        padding: 0 0 0 22px;
        font-size: 26px;
    }

    .join-list {
        width: 35%;
        padding: 16px 16px 16px 36px;
    }
}

@media screen and (max-width:780px) {
    .content-title {
        margin: 35px 0 20px 0;
    }

    .title-line {
        height: 26px;
    }

    .content-title>p {
        padding: 0 0 0 16px;
        font-size: 22px;
    }

    .introduce {
        padding: 20px 25px;
    }

    .join-list {
        width: 38%;
        padding: 14px 14px 14px 25px;
    }

    .join-list>div {
        margin-bottom: 12px;
    }

    .join-list>div span {
        margin-right: 15px;
        font-size: 40px;
    }

    .join-list>div>div>p:first-child {
        font-size: 18px;
    }

    .join-list>p {
        line-height: 1.6;
    }
}

@media screen and (max-width:648px) {
    .content-title {
        margin: 30px 0 18px 0;
    }

    .title-line {
        height: 24px;
        margin-left: 10px;
    }

    .content-title>p {
        padding: 0 0 0 10px;
        font-size: 20px;
    }

    .introduce {
        padding: 20px 25px;
    }

    .join>ul {
        justify-content: space-between;
    }

    .join-list {
        width: 42%;
        padding: 10px 10px 10px 16px;
    }

    .join-list>div {
        margin-bottom: 8px;
    }

    .join-list>div span {
        margin-right: 10px;
        font-size: 36px;
    }

    .join-list>div>div>p:first-child {
        font-size: 16px;
    }

    .join-list>p {
        line-height: 1.6;
    }
}

@media screen and (max-width:560px) {
    .content-title {
        margin: 20px 0 14px 0;
    }

    .title-line {
        height: 24px;
        margin-left: 10px;
    }

    .content-title>p {
        font-size: 18px;
    }

    .introduce {
        padding: 15px 20px;
    }

    .in-left {
        font-size: 15px;
        line-height: 1.4;
    }

    .join>ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .join-list {
        width: 70%;
        padding: 10px 6px 10px 15px;
    }

    .join-list:first-child {
        margin-bottom: 15px;
    }

    .map {
        height: 240px;
    }
}

@media screen and (max-width:481px) {
    .content-title {
        margin: 20px 0 12px 0;
    }

    .content-title>p {
        font-size: 16px;
    }

    .in-left {
        font-size: 14px;
        line-height: 1.3;
    }
}