
/* 轮播图 */
.swiper-slide img {
    width: 100%;
}

/* 关于我们 */
.about {
    display: flex;
    justify-content: space-between;
}
.about_r{
    width: 680px;
}
.about_l{
    width: 280px;
}

.ab_about {
    display: flex;
    justify-content: space-between;
}
.ab_about>img {
    height: 200px;
}
.ab_l {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ab_l>p {
    margin-left: 10px;
    font-size: 14px;
    line-height: 25px;
}
.ab_l>p>a{
    color: #9d0711;
}
.about_botton {
    display: flex;
    justify-content: space-evenly;
}
.about_botton a {
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: #9d0711;
}
.about_botton a>img {
    width: 20px;
    padding-right: 5px;
    vertical-align: bottom;
}
.ab_box_k {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ab_box_img {
    width: 135px;
    border-radius: 5px;
    margin-bottom: 10px;
}
/* 团队 */
.team{
    display: flex;
    justify-content: space-between;
}
.team_r{
    width: 650px;
}
.team_l{
    margin-left: 30px;
    width: 330px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.team_l img{
    width: 300px;
    height: 180px;
}
.team_info {
    display: flex;
    justify-content: space-between;
}
.team_info_img {
    width: 300px;
}
.team_info_l{
    margin-left: 20px;
}
.team_info_l h1{
    color: #9d0711;
    font-size: 35px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: #9d0711 1px dashed;
}

.team_content{
    font-size: 15px;
    line-height: 25px;
    padding-top: 10px;
}
.team_content b{
    margin-right: 10px;
    color: #9d0711;
    font-weight: 700;
    font-size: 22px;
}
.bth {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 16px;
    background: #9d0711;
    color: #ffffff;
    border-radius: 25px;
}
/* 特色项目 */
.project{
    display: flex;
    justify-content: space-between;
}
.project_r {
    width: 300px;
}
.project_r ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.project_r ul li{
    margin-bottom: 10px;
}
.project_r ul li>a{
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #ccc;
    text-align: center; 
    font-size: 16px;
}
.project_r ul li>a:hover {
  background-color: #9d0711;
  color: #ffffff;
}
.project_l {
    width: 650px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.project_l_item {
    margin-left: 15px;
    margin-bottom: 10px;
    padding: 5px;
    width: 200px;
    border: 1px solid #ccc;
}
.project_l_item img{
    width: 100%;
}
.project_l_item h3{
    text-align: center;
    color:#9d0711;
    font-size: 16px;
}
/* 文章 */
.article{
    display: flex;
    justify-content: space-between;
}
.article_r,.article_l{
    width: 480px;
}
.article_list {
    line-height: 30px;
}
.article_list li {
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-bottom: 1px dashed #ccc;
    position: relative;
}
.article_list a:hover {
    color: #9d0711;
}