* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
}

img {
    width: 100%;
    /* background-color: #7ac18b;
    background-image: linear-gradient(160deg, #7ac18b 0%, #009ecc 100%); */

}

/* 定义一个:root ，后边所有元素都可以用到 */
:root {
    /* #7AC18B */
    /* #009ECC */
    --primary-color: #036FD4;
    /*主色调*/
    --secondary-color: #e3e3e3;
    --text-color-lightest: #333333;
    --text-color-main: #333333;
    --text-color-darker: #2e2e2e;
    --text-color-dark: #494949;
    --text-color-gray: #8b8b8b;
    --text-color-dark-gray: #727272;
    --text-color-light-gray: #c6c6c6;
    --backdrop-color: rgba(42, 42, 42, 0.69);
    /*遮罩层颜色*/

}
.glide {
    width: 100%;
    height: 100vh;
    position: relative;
    top: -80px;
    z-index: 50;
    background-image: url('../images/index-main.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glide__track {
    overflow: hidden;
}

.glide__slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /*等比例的缩放*/
}

.slide-caption {
    position: absolute;
    z-index: 70;
    color: #ffffff;
    text-align: center;
}

.glide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-caption h1 {
    font-size: 54px;
    font-weight: 600;
    margin-top: 48px;
}

.slide-caption h3 {
    font-size: 24px;
    margin: 28px 0;
}

.slide-caption.left {
    max-width: 80vw;
    text-align: left;
}

.explore-btn {
    padding: 14px 32px;
    border: 0;
    border-radius: 4px;
    color: var(--text-color-main);
    background-color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    outline: none;
}

.explore-btn span {
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.explore-btn span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -30px;
    transition: 0.5s;
}

.explore-btn:hover span {
    padding-right: 20px;
}

.explore-btn:hover span:after {
    opacity: 1;
    right: 0;
}

/* 内容区域，通用样式 */
.content-wrapper {
    width: 99%;
    display: flex;
    align-items: center;
    /*垂直居中*/
    justify-content: center;
    /* 水平居中,只针对content */
    flex-direction: column;
}

section {
    display: grid;
    justify-items: center;
    max-width: 1200px;
    padding: 0 80px;
}

.section-bg {
    position: relative;
}

.section-bg::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #f9fbfb;
    width: 100vw;
    height: 100%;
    z-index: -1;
}

.title1 {
    font-size: 34px;
    color: var(--text-color-dark);
    padding-bottom: 48px;
}
.title1_en {
    font-size: 20px;
    color: var(--text-color-dark);
    padding-bottom: 12px;
}

.title1::after {
    content: "";
    display: block;
    width: 80%;
    height: 4px;
    background-image: linear-gradient(160deg, #7ac18b 0%, #009ecc 100%);
    border-radius: 2px;
    margin-top: 14px;
    transform: translate(10%);
}

.intro {
    margin: 28px 0 60px 0;
    font-size: 18px;
    color: var(--text-color-dark-gray);
}

/* 公司简介 */
.company-profile {
    padding-top: 48px;
    padding-bottom: 52px;
}
.company-profile .company_profile_info:first-child{
    margin-top: 60px;
}
.company-profile .company_profile_info {
    margin: 24px 0;
    font-size: 18px;
    text-indent:2em;
    color: var(--text-color-dark-gray);
}

.development-history{
    padding: 72px 0;
    position: relative;
}
.development-history::before {
    content: "";
    display: block;
    position: absolute;
    background-image: linear-gradient(88deg, #26a9a4 0%, #7DB36C 270%);
    width: 100vw;
    height: 100%;
    z-index: -1;
}

.history_box {
     display: flex;
     flex-wrap: nowrap;
     color: #ffffff;
     padding: 0 20px;
     margin-bottom: 16px;
     position: relative;
     box-sizing: border-box;
     border-bottom: 1px solid #ffffff;
}
.history_box .history {
    position: relative;
    padding: 28px 24px;
    font-weight: 400;
    color: #666666;
    line-height: 44px;
}

.history_box .history .history_content {
    border-left: 1px solid #ffffff;
    padding-left: 12px;
    position: relative;
}
 .history_content .history_content_icon {
    color: #ffffff;
    position: absolute;
    left: -5px;
    top: -12px;
}
.history_box .history .history_content .text {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
}
.history_box .history .history_time {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}
.history_box .history .icon_bottom {
    padding-bottom: 10px;
}

/* 企业文化 */
.company-culture {
    padding: 72px 0;
    position: relative;
    box-sizing: border-box;
}
.cultures {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 6vw;
    box-sizing: border-box;
}
.culture {
    box-sizing: border-box;
}
.culture-title {
    grid-area: title;
    font-size: 20px;
    color: #30346D;
    border: 6px solid #009ecc;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    line-height: 30px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.culture-content {
    grid-area: content;
    text-align: center;
    color: var(--text-color-gray);
    margin-top: 10px;
}

/* 公司架构 */
.org-structure {
    padding: 72px 0;
    position: relative;
    box-sizing: border-box;
}
.structures {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    column-gap: 38px;
    row-gap: 34px;
    margin-bottom: 38px;
}
.structures-second {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 38px;
    row-gap: 34px;
}
.structure-item {
    display: grid;
    grid-template-areas:
        "ser-icon ser-title"
        "ser-icon ser-abridge"
        "ser-icon ser-content"
        "ser-icon ser-button";
    grid-template-columns: 70px 1fr;
    /*第一列70px，剩下的填满整个剩余空间*/
    grid-template-rows: 1fr 1fr 1fr 1fr;
    padding: 24px;
    box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.06);
}
.structure-item:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);;
    transition: 0.5s;
}
.structure-item i.fas {
    grid-area: ser-icon;
    font-size: 42px;
    color: var(--primary-color);
    padding: 6px;
}
.structure-title {
    grid-area: ser-title;
    font-size: 24px;
    color: var(--text-color-darker);
}
.structure-item .structure-abridge {
    grid-area: ser-abridge;
    font-size: 20px;
    color: var(--text-color-darker);
    margin-top: 8px;
}
.structure-item .structure-content {
    grid-area: ser-content;
    color: var(--text-color-gray);
    line-height: 30px;
    font-size: 16px;
}
.structure-item .read-more-btn {
    grid-area: ser-button;
    border: 0;
    /* width: 30%; */
    height: 40px;
    border-radius: 4px;
    padding: 0 8px;
    color: #ffffff;
    background-color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    outline: none;
}
.structure-item .read-more-btn a {
    color: #ffffff;
}

.structure-item .read-more-btn span {
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.structure-item .read-more-btn span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -30px;
    transition: 0.5s;
}

.structure-item .read-more-btn:hover span {
    padding-right: 20px;
}

.structure-item .read-more-btn:hover span:after {
    opacity: 1;
    right: 0;
}

/* 23个全球业务服务网络 */
.service-site {
    width: 100%;
    padding: 72px 0;
    position: relative;
    box-sizing: border-box;
}
.service-site .site {
    width: 100%;
    display: flex;
    margin-top: 20px;
}
.site .site-map {
    background-image: url('./../images/map.png');
    background-repeat: no-repeat;
    background-size: 100%;
    flex: 1;
    height: 400px;
}
.site-citys {
    flex-shrink: 0;
    margin-left: 40px;
}
.site-citys-title {
    font-size: 24px;
    color: var(--primary-color);
}
.site-citys-item {
    font-size: 18px;
    color: #333333;
    margin-top: 16px;
}
.site-citys-item-h {
    font-size: 20px;
    font-weight: 600;
}

/* 核心团队成员 */
.core-members {
    padding: 72px 0;
    position: relative;
    box-sizing: border-box;
}
.members-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 5vw;
    margin-bottom: 40px;
    justify-items: center;
}
.members-main .member {
    display: flex;
}
.members-main .member_avater {
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}
.members-main .member_avater_img {
    border: 2px solid var(--primary-color);
    padding: 4px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}
.members-main .member_avater_img:hover {
    transform: scale(1.05);
    transition: all 0.4s;
}
.members-main .member_info_name_position {
    padding: 8px 20px 8px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    color: #ffffff;
    background-image: linear-gradient(90deg, #0fa4c2 0%, #bdbf8e 100%);
}
.members-main .member_info_name_position h3 {
    font-size: 18px;
}
.member_info_main:hover .item{
    border-bottom: 1px solid #7ac18b;
}
.member_info_other:hover {
    border: 1px dashed #7ac18b;
}
.members-main .member_info .item {
    font-size: 16px;
    line-height: 32px;
    border-bottom: 1px dashed #7ac18b;
    width:fit-content;
    font-weight: 600;
}
.members-main .member_info .item span{
    font-size: 16px;
    line-height: 32px;
    width:fit-content;
    font-weight: 600;
}
.members-other {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    column-gap: 32px;
}
.members-other .member {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.members-other .member_avater {
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
}
.members-other .member_avater_img {
    border: 2px solid var(--primary-color);
    padding: 4px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}
.members-other .member_avater_img:hover {
    transform: scale(1.1);
    transition: all 0.4s;
}
.members-other .member_info {
    border: 1px solid #7ac18b;
    border-radius: 24px;
    padding: 10px 20px;
    text-align: center;
}
.members-other .member_info_name_position h3{
    color: #036FD4;
    font-size: 16px;
}
.members-other .member_info_name_position h4 {
    color: #036FD4;
    font-size: 14px;
    margin-bottom: 10px;
}
.members-other .item {
    color: var(--text-color-lightest);
    font-size: 14px;
}
/* 业务覆盖全产业链 */
.complete-industrial {
    padding: 72px 0 100px;
    position: relative;
    box-sizing: border-box;
}
.chain_box {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr;
    column-gap: 38px;
    row-gap: 34px;
    /* justify-items: center; */
}
.chain_first {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.chain_first h3 {
    color: #036FD4;
    font-size: 22px;
    text-align: center;
}
.chain_first img {
    /* width: 80%; */
    /* margin: 8px auto; */
    object-fit: cover;
}
.chain_first p {
    color: var(--text-color-dark);
    font-size: 16px;
    text-align: center;
}
.chain_second {
    padding-left: 20px;
}
.chain_second_content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: fit-content;
}

.chain_second_content .img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #036FD4;
    padding: 10px;
}

.chain_second_content .item {
    display: flex;
    justify-content: center;
}

.chain_second .item1 {
    position: absolute;
    top: -15px;
    right: -350px;
}

.chain_second .item2 {
    position: absolute;
    top: 80px;
    right: -310px;
}

.chain_second .item3 {
    position: absolute;
    top: 200px;
    right: -360px;
}

.chain_second .item4 {
    position: absolute;
    top: 280px;
    right: -340px;
}

.item_icon {
    color: #036FD4;
    padding-top: 6px;
}

.item_info {
    margin-left: 12px;
}

.item1 .item_info {
    margin-left: 18px;
}

.item_info h3 {
    color: #036FD4;
    font-size: 20px;
}

.item_info p {
    color: #333333;
    font-size: 12px;
}
.color-fff {
    color: #ffffff !important;
}