* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

/* 最大容器 */
.concerning {
    width: 1200px;
    margin: auto;
}

/* 大图容器 */
.concerning>.concerning_img {
    width: 100%;
    height: 400px;
    /* background-color: blue; */
    position: relative;
    margin-bottom: 50px;
}
/* 大图图片 */
.concerning_img>img {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
/* 大图容器下的盒子 */
.concerning_img>div {
    position: absolute;
    font-weight: bold;
    text-shadow: 3px 3px 3px #ccc;
    width: 100%;
    height: 100px;
    top: 150px;
    text-align: center;
}
/* 大图容器下的盒子中第一个p标签 */
.concerning_img>div>p:nth-child(1) {
    font-size: 40px;
    color: #666;
}
/* 大图容器下的盒子中第二个p标签 */
.concerning_img>div>p:nth-child(2) {
    font-size: 20px;
    color: white;
}

/* 公司简介 */
.introduction {
    width: 1200px;
    height: 500px;
    display: flex;
    align-items: center;
    margin: 100px auto;
    margin-bottom: 100px;
    padding: 20px;
    box-shadow: 0px 0px 40px #ccc;
}
/* 公司简介文字 */
.introduction_right {
    width: 800px;
    height: 400px;
    /* border: 1px solid black; */
}
/* 标题 */
.introduction_right>h1 {
    font-weight: bold;
    margin: 0 40px;
}
/* 文字部分 */
.right_content {
    padding: 40px;
    text-indent: 2em;
}
/* 公司简介图片容器 */
.introduction_left {
    width: 400px;
    height: 400px;
    margin-right: 20px;
    /* border: 1px solid black; */
    overflow: hidden;
}
/* 简介图片 */
.introduction_left>img {
    width: 100%;
    /* height: 100%; */
}

/* 荣誉资质 */
.aptitude {
    width: 1200px;
    /* height: 500px; */
    margin: 100px auto;
    text-align: center;
}
/* 标题 */
.aptitude>h3 {
    font-size: 30px;
}
/* 各项资质盒子 */
.aptitude_flex {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}
/* 每一项资质 */
.aptitude_flex>div {
    width: 280px;
    height: 180px;
    margin: 10px;
    border: 1px solid black;
    border-top: 10px solid rgb(93, 192, 193);
}

/* 走马灯最外层盒子 */
.partners {
    padding-bottom: 50px;
    margin-left: 15px;
    margin-top: 100px;
    background-color: #F8F8F8;
    padding-top: 50px;
    overflow: hidden;
}
/* 合作伙伴标题中文 */
.partners h1 {
    width: 500px;
    height: 40px;
    margin: 0px auto;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
}
/* 合作伙伴标题英文 */
.partners h1 span {
    display: block;
    color: #666;
    font-size: 24px;
}
/* 走马灯第二层盒子 */
.partners>.partnersbox {
    position: relative;
    width: 1550px;
    height: 400px;
    margin: 0 auto;
}
/* 走马灯第三层盒子 */
.partnersbox>.huoban {
    margin-top: 200px;
    text-align: center;
    width: 1600px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    margin-top: 200px;
}
/* 鼠标悬浮存放图片盒子 */
.partnersbox>.huoban:hover .translatex {
    animation-play-state: paused;
}

.partnersbox>.huoban>.translatex {
    animation: rolling 20s linear infinite normal;
    position: absolute;
    display: flex;
}
/* 走马灯图片 */
.partnersbox>.huoban img {
    margin-right: 20px;
    width: 250px;
    height: 120px;
}
/* 走马灯动画 */
@keyframes rolling {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* 百度地图 */
.map {
    width: 1185px;
    margin-left: 15px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.map>h3 {
    text-align: center;
    font-size: 30px;
}

/* 联系我们 */
.address {
    width: 1200px;
    height: 300px;
    margin-left: 15px;
    margin-top: 100px;
    /* border: 1px solid black; */
    display: flex;
}

.address>div {
    width: 400px;
    height: 100%;
    /* outline: 1px solid red; */
    text-align: center;
}

.address>div>img {
    width: 200px;
    height: 200px;
}

/* 回到顶部 */
.jiantou {
    position: fixed;
    bottom: 100px;
    right: 220px;
    display: none;
    width: 50px;
    height: 50px;
}

.jiantou>img {
    width: 100%;
    height: 100%;
}