* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #777;
}

/* 顶部导航栏 */
.navbar {
    background-color: #fff;
    padding: 10px 0;
    position: relative;
    display: flex;
    justify-content: space-around;
}

.navbar-header {
    float: left;
}


.navbar-nav {
    float: right;
}

.navbar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    display: inline-block;
    line-height: 60px;
}

.navbar-nav li a {
    color: #333;
    font-size: 16px;
    padding: 0px 15px;
    text-decoration: none;
    display: block;
}

.navbar-nav li a:hover {
    color: #1a73e8;
}

/* Banner轮播图 */
.banner {
    position: relative;
    height: 700px;
    overflow: hidden;
    width: 100%;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 通用部分样式 */
.section {
    padding: 60px 0;
}

.section-title {
    padding-left: 20px;
    margin-bottom: 40px;
}

.section-title img {
    height: 40px;
    margin-bottom: 10px;
}


.container{
    width:63vw;
    margin: 0 auto;
}


/* 关于颐倍康 */
.about {
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-left {
    padding: 20px;
    width: 57%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    border-radius: 10px;
    justify-content: space-between;
}
.about-img{
    width: 30%;
    height: 100%;
    background: #0c4070;
}
.about-text{
    width: 67%;
}
.about-text h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    text-indent: 30px;
}

.about-right {
    width: 40%;
    text-align: center;
}

.about-right img {
    width: 100%;
    height: auto;
}

/* 企业文化部分 */
.culture {
    background-image: url('/static/img/P3-bg.jpg');
    background-size: cover;
    background-position: center;
}

.culture-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.culture-item {
    width: calc(50% - 30px);
    text-align: center;
    display: flex;
}
.culture-text{
    text-align: left;
}

.culture-item img {
    /* width: 60px; */
    height: 40px;
    margin-bottom: 20px;
    margin-right: 20px;

}

.culture-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    
}

.culture-item p {
    font-size: 14px;
    color: #666;
    line-height: 20px;
}

/* 团队建设部分 */
.team {
    background-image: url('/static/img/P4-bg.jpg');
    color: #555;
}

.team .section-title .line {
    background-color: #fff;
}

.team-items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.team-item {
    width: 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 50px 0 50px 0;
    text-align: center;
    display: flex;
    justify-content: space-around;
}
.team-item-left{
    width: 20%;
    text-align: center;
    font-weight: bold;
}
.team-item-left h3{
    margin: 0 auto;
    margin-bottom: 0 !important;
    margin-top: 5px;
}
.team-text{
    width: 70%;
}

.team-item img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 10px;
    /* margin-top: 20px; */
}

.team-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
    width:80px;
    text-align: center;
    border-radius: 5px;
    line-height: 26px;
    background: #12436c;
}

.team-item p {
    text-align: left;
}

/* 产品与服务部分 */
.products {
    background-color: #f9f9f9;
    position: relative;
}

.product-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.product-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-slide {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    justify-content: space-between;
}

.product-item {
    width: calc(33% - 20px);
    text-align: center;
    position: relative;
}

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 14px;
    color: #163f6c;
    font-weight: bold;
    font-size: 19px;
    position: absolute;
    bottom: 10%;
    left: 0;
    right:0
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.carousel-control img {
    width: 40px;
    height: 40px;
}

.carousel-control.left {
    left: 10vw;
}

.carousel-control.right {
    right: 10vw;
}

/* 发展布局部分 */
.development {
    padding: 60px 0;
    background-color: #fff;
}

.development-content {
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.development-content img:nth-child(1) {
    width: 180px;
    height: 300px;
}

.development-content img:nth-child(2) {
    width: 100%;
    height: auto;
    max-width: 1000px;
}

/* 底部信息部分 */
.footer {
    padding: 60px 0 60px 0;
    background-color: #f9f9f9;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-info {
    flex: 1;
    border-left: 1px solid #163f6c;
    padding-left: 30px;
}
.footer-info-title {
    font-size: 14px;
    background: #163f6c;
    color: #fff;
    padding: 5px 0px;
    border-radius: 5px;
    width: 80px;
    text-align: center;
}
.footer-info-content {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 5px;
    line-height: 20px;
    color: #163f6c;
}



.footer-qr {
    display: flex;
    gap: 40px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.qr-item p {
    font-size: 14px;
    color: #163f6c;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-header {
        float: none;
        text-align: center;
    }
    
    .navbar-nav {
        float: none;
        text-align: center;
    }
    
    .navbar-nav li {
        display: inline-block;
    }
    
    .navbar-nav li a {
        padding: 10px 10px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .culture-item {
        width: 100%;
    }

    .team-item {
        width: 100%;
    }

    .product-item {
        width: calc(50% - 20px);
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar-nav li {
        display: block;
        text-align: center;
    }
    
    .navbar-nav li a {
        padding: 5px 10px;
    }

    .culture-item,
    .team-item {
        width: 100%;
    }

    .product-item {
        width: 100%;
    }
    
    .footer-qr {
        flex-direction: column;
        gap: 20px;
    }
}
