/* 导航栏样式 */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1C1D22;
    backdrop-filter: blur(0.293rem);
    position: fixed;
    width: 100%;
    height: 2.4rem;
    top: 0;
    z-index: 1000;
    opacity: 1;
}

.navbar-content {
    width: 100%;
    padding: 0 2.667rem 0 2.32rem;
}

.logo {
    width: 4.773rem;
    min-width: 4.773rem;
    height: 1.44rem;
    min-height: 1.44rem;
    /* margin-left: 2.32rem; */
    float: left;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.067rem;
    /* margin: 0 0.8rem; */
    flex: 1;
    /* justify-content: center; */
    margin-left: 4.56rem;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-item h2 {
    margin: 0;
}

.nav-item a {
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 0.48rem;
    color: #FFFFFF;
    line-height: 1.12rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-item a:hover {
    color: #FFFFFF;
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 0.48rem;
    height: 0;
    border: 0.04rem solid #FFFFFF;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.133rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-item a:hover::after {
    opacity: 0.5;
}

.nav-item a.active::after {
    opacity: 1;
}

.nav-item a.active {
    color: #FFFFFF;
    font-weight: 500;
}

/* 下拉箭头样式 */
.dropdown-arrow {
    margin-left: 0.2rem;
    font-size: 0.3rem;
    transition: transform 0.3s ease;
}

/* 下拉菜单样式 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(0.293rem);
    border-radius: 0.2rem;
    padding: 0.4rem 0;
    min-width: 4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.4rem);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.3);
}

.dropdown-menu a {
    display: block;
    padding: 0.3rem 0.8rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.4rem;
    line-height: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

/* 恢复悬停时显示下拉菜单的样式 */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 点击时显示下拉菜单 */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.133rem;
    padding: 0.133rem 0.267rem;
    width: 2.133rem;
    min-width: 2.133rem;
    flex-shrink: 0;
    height: 1.067rem;
    border-radius: 13.333rem;
    border: 0.027rem solid #FFFFFF;
    box-sizing: border-box;
}

.language-switch a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.373rem;
    padding: 0 0.08rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: block;
}

.language-switch img {
    width: 0.613rem;
    height: 0.613rem;
    display: block;
    object-fit: contain;
}

.language-switch .active {
    width: auto;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.48rem;
    color: #FFFFFF;
    display: block;
}

.language-switch .divider {
    color: #666;
    font-size: 0.373rem;
    margin: 0 0.053rem;
}

/* 英文字体样式 */
.language-switch a:last-child {
    font-family: Arial, sans-serif;
}

/* 轮播图样式 */
.hero {
    position: relative;
    width: 100%;
    height: auto;
}

.carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    filter: brightness(1.2);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    width: 32rem;
    margin: 0 auto;
    padding: 0 0.533rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.big-title {
    width: 29.707rem;
    height: auto;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 1.12rem;
    color: #FFFFFF;
    line-height: 1.12rem;
    margin-bottom: 0.533rem;
    text-shadow: 0 0.053rem 0.107rem rgba(0, 0, 0, 0.5);
}

.subtitle {
    width: fit-content;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.507rem;
    color: #FFFFFF;
    margin-bottom: 2.667rem;
    text-align: center;
    text-shadow: 0 0.053rem 0.107rem rgba(0, 0, 0, 0.5);
}


.carousel-indicators {
    position: absolute;
    bottom: 0.533rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.267rem;
    z-index: 10;
}

.hero .carousel-indicators .indicator {
    width: 1.2rem;
    height: 0.293rem;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero .carousel-indicators .indicator.active {
    background: #fff;
}




.news-carousel .carousel-indicators .indicator {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-carousel .carousel-indicators .indicator.active {
    background: #fff;
}


.news {
    background: #fff;
    padding-top: 1.333rem;
    position: relative;
}

.container {
    margin: auto 5.6rem;
}

.section-header {
    text-align: left;
    margin-bottom: 0.533rem;
    position: relative;
}

.section-header h2 {

    height: 1.573rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 800;
    font-size: 1.12rem;
    color: #333333;
    line-height: 1.12rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.section-subtitle {

    height: 1.12rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 0.8rem;
    color: #999999;
    line-height: 1.12rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.news-grid {
    display: flex;
    padding: 0.267rem;

    background: #FAFAFC;
    border-radius: 0.267rem 0.267rem 0.267rem 0.267rem;
}

.news-more {
    position: absolute;
    top: 3rem;
    right: 5rem;
    transform: translateY(-50%);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    min-width: 120px;
}

.more-link {
    position: absolute;
    top: 1rem;
    right: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.48rem;
    color: #000;
    transition: color 0.3s ease;
    padding: 0.2rem 0.4rem;
}

.more-link:hover {
    color: #000;
    text-decoration: none;
}

.news-image {
    position: relative;
    width: 16.827rem;
    height: 11.867rem;
    border-radius: 0;
    overflow: hidden;

}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.news-item {
    height: 2.133rem;
    background: #FAFAFC;
    /* background: pink; */
    border-radius: 0.133rem 0.133rem 0.133rem 0.133rem;
    display: flex;
    padding: 0.453rem 0;
}


.dot {
    width: 0.16rem;
    height: 0.16rem;
    margin-right: 0.267rem;
    margin-top: 0.2rem;
    margin-left: 0.613rem;
    vertical-align: middle;
    background-image: url('../images/dot.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.dot img {
    display: none; /* 隐藏原有的img标签 */
}

.news-title {
    display: flex;
    flex-direction: column;
    gap: 0.213rem;
    padding-right: 1.44rem;
    flex: 1;
}

.news-title .title_1 {
    width: 100%;
    height: 0.587rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.45rem;
    color: #022726;
    text-align: left;
}

.news-title .title_2 {
    width: 17.253rem;
    height: 0.453rem;
    font-family: PingFang SC, sans-serif;
    font-weight: 500;
    font-size: 0.4rem;
    color: #022726;
    line-height: 0.453rem;
    text-align: left;
    white-space: nowrap;
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 1; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-meta {
    text-align: right;
    padding-right: 0.507rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


.news-date {
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 0.32rem;
    color: #022726;
}


.news-day {
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 0.32rem;
    color: #022726;
}


.news-carousel {
    position: relative;
    width: 16.827rem;
    height: 11.867rem;
    overflow: hidden;
}

.news-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.news-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.news-carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.news-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 1.68rem;
    left: 1.547rem;
    right: 0;
    color: #fff;
}

.image-overlay h3 {

    width: 4.16rem;
    height: 0.987rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 0.693rem;
    color: #FFFFFF;
    line-height: 0.96rem;
    letter-spacing: 0.08rem;
    text-shadow: 0rem 0.08rem 0.16rem rgba(0, 0, 0, 0.58);

    font-style: normal;
    text-transform: none;
}


.image-overlay .en-title {
    width: 11.093rem;
    height: 0.987rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 0.693rem;
    color: #FFFFFF;
    line-height: 0.96rem;
    letter-spacing: 0.08rem;
    text-shadow: 0rem 0.08rem 0.16rem rgba(0, 0, 0, 0.58);

    font-style: normal;
    text-transform: none;
    margin-bottom: 0.587rem;
}

.image-overlay .en-text {
    width: 13.147rem;
    height: 1.227rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 0.507rem;
    color: #FFFFFF;
    line-height: 0.533rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.carousel-indicators {
    position: absolute;
    bottom: 0.8rem;
    left: 1.067rem;
    display: flex;
    gap: 0.213rem;
    z-index: 10;
}

.indicator {
    width: 1.2rem;
    height: 0.293rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.16rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFFFFF;
}

/* 新闻列表样式 */
.news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.293rem;
    padding-left: 0;
    padding-right: 0.133rem;
    background-color: #fff;
    padding-top: 0.027rem;
    margin: 0;
    padding-left: 0.347rem;
}


.hero .carousel {
    position: relative;
    width: 100%;
    height: 20.53rem;
    overflow: hidden;
    background: #000;
}

.hero .carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    will-change: opacity, visibility;
}

.hero .carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero .carousel-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%; /* 调整比例以完整显示图片 */
    background-image: url('../images/banner.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
}

.hero .carousel-image img {
    display: none; /* 隐藏img标签，使用背景图代替 */
}

.hero .carousel-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.hero .carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero .hero-content {
    width: 32rem;
    padding: 0 0.533rem;
}


.hero .subtitle {
    font-size: 0.64rem;
    opacity: 0.9;
    text-shadow: 0 0.027rem 0.053rem rgba(0, 0, 0, 0.3);
}

/* 轮播指示器样式 */
.carousel-indicators {
    position: absolute;
    bottom: 1.067rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.32rem;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: #fff;
}

/* Hero 指示器样式 */
.hero-indicators {
    position: absolute;
    bottom: 1.067rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 100;
}

.hero-indicator {
    display: block;
    width: 1.2rem;
    height: 0.293rem;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 13.333rem 13.333rem 13.333rem 13.333rem;
}

.hero-indicator.active {
    background: #fff;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* News 指示器样式 */
.news-indicators {
    position: absolute;
    bottom: 0.853rem;
    right: 0;
    transform: translateX(-32%);
    display: flex;
    gap: 0.32rem;
    z-index: 100;
    align-items: center;
}

.news-indicator {
    display: block;
    width: 0.187rem;
    height: 0.187rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-indicator.active {
    width: 0.373rem;
    height: 0.133rem;
    background: #FFFFFF;
    border-radius: 1.333rem 1.333rem 1.333rem 1.333rem;
}

/* 学术成果部分样式 */
.academic {
    padding-top: 1.6rem;
    background: #fff;
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(4, 9.467rem);
    gap: 0.72rem;
    justify-content: center;

}

.academic-item {
    width: 9.467rem; /* 355px / 37.5 = 9.467rem */
    height: 10.133rem; /* 380px / 37.5 = 10.133rem */
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.533rem 0.027rem rgba(0, 0, 0, 0.07);
    border-radius: 0.133rem 0.133rem 0.133rem 0.133rem;
}

.academic-item:hover {
    box-shadow: 0 0.107rem 0.32rem rgba(0, 0, 0, 0.1);
    transform: translateY(-0.053rem);
}

.academic-image {
    width: 9.467rem; /* 355px / 37.5 = 9.467rem */
    height: 6.933rem; /* 260px / 37.5 = 6.933rem */
    overflow: hidden;
    /* 移除padding-bottom */
}
.academic-image .title_1 {
    width: 100%;
    height: 0.587rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.45rem;
    color: #022726;
    text-align: left;
}

.academic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片填满容器 */
}

.academic-content {
    padding: 0 0.187rem 0.427rem 0.4rem;
    height: 2.4rem;
    background: #fff;
}

.academic-content .title_1 {
    width: 100%;
    height: 0.587rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.45rem;
    color: #022726;
    text-align: left;
}

.academic-content h3 {
    font-family: PingFang SC, PingFang SC;
    font-weight: 800;
    font-size: 0.533rem;
    color: #000000;
    padding-bottom: 0.267rem;
	overflow: hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

.academic-content p {
    width: 8.693rem;
    height: 1.227rem;
    font-family: PingFang SC, PingFang SC;
    font-size: 0.4rem;
    color: #000000;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 研究方向部分样式 */
.research {
    background: #fff;
    padding-top: 1.2rem;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem 0.533rem;
    justify-content: center;
}

.research-item {
    width: 12.987rem;
    height: 10.933rem;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.533rem 0.027rem rgba(0, 0, 0, 0.07);
    border-radius: 0.213rem 0.213rem 0.213rem 0.213rem;
}

.research-image {
    width: 12.987rem;
    height: 8.533rem;
    overflow: hidden;
    border-radius: 0.267rem 0.267rem 0.267rem 0.267rem;
}

.research-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.research-content {
    padding-top: 0.533rem;
    padding-left: 0.533rem;
    padding-bottom: 0.373rem;
}

.research-content .title_1 {
    width: 100%;
    height: 0.587rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.45rem;
    color: #022726;
    text-align: left;
}


.research-content h3 {
    height: 0.747rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.4rem;
    color: #333333;
    padding-bottom: 0.16rem;
}

.research-content p {
    width: 11.013rem;
    height: 0.587rem;
    font-family: PingFang SC, PingFang SC;
    font-size: 0.427rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 团队成员部分样式 */
.team {
    background: #FAFAFC;
    padding-top: 1.2rem;
    padding-bottom: 1.493rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.72rem;
    justify-content: center;
}

.team-card {
    background: #fff;
    box-shadow: 0rem 0rem 0.533rem 0.027rem rgba(0, 0, 0, 0.07);
    border-radius: 0.133rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-0.133rem);
    box-shadow: 0 0.213rem 0.667rem rgba(0, 0, 0, 0.15);
}

.team-card .card-image {
    height: 10rem;
    overflow: hidden;
    position: relative;
}

.team-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .card-image img {
    transform: scale(1.05);
}

.team-card .card-content {
    position: absolute;
    bottom: 0.533rem;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
}

.team-card .card-title {
    height: 0.747rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.533rem;
    color: #FFFFFF;
    margin-bottom: 0.133rem;
}

/* 文化理念部分样式 */
.culture {
    background: #fff;
    padding: 0;
    display: flex;
    gap: 0.533rem;
    padding-top: 0.88rem;
}

.culture-image {
    width: 10.427rem;
    height: 6.88rem;
    border-radius: 0.133rem 0.133rem 0.133rem 0.133rem;
    overflow: hidden;
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.693rem;
}

.culture-content h2 {
    height: 0.747rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.533rem;
    color: #333333;
    gap: 0.693rem 0;
    margin-bottom: 0.533rem;
}

.culture-content p {
    gap: 0.693rem 0;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.culture-content .highlight {
    width: 10.667rem;
    color: #022726;
    font-weight: bold;
}

/* 生活剪影部分样式 */
.life {
    background: #fff;
    padding-top: 1.2rem;
    padding-bottom: 1.493rem;
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.72rem;
    justify-content: center;
}

.life-item {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.533rem 0.027rem rgba(0, 0, 0, 0.07);
    border-radius: 0.133rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}



.life-image {
    width: 100%;
    height: 10rem;
    overflow: hidden;

}

.life-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}



.life-content {
    position: absolute;
    bottom: 0.533rem;
    z-index: 1;
    text-align: center;
    width: 100%;
}
.life-content .title_1 {
    width: 100%;
    height: 0.587rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.45rem;
    color: #FFFFFF;
    text-align: left;
}
.life-content h3 {
    height: 0.747rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.533rem;
    color: #FFFFFF;

}

/* 页面底部样式 */
.footer {
    width: 100%;
    background: #FAFAFC;
    border-radius: 0rem 0rem 0rem 0rem; /* 0px */
    padding-top: 1.8rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.footer-section h3 {
    font-size: 0.5rem;
    margin-bottom: 0.533rem;
    color: #000;
    font-weight: bold;
}

.footer-section p,
.footer-section a {
    font-size: 0.373rem;
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.267rem;
    display: block;
}

.footer-section a:hover {
   
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.48rem;
}

.footer-section ul li a {
    font-size: 0.4rem;
    color: #000;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section ul li a:hover {
   
}

.contact-info {
    display: flex;
    gap: 0.533rem;
    padding-top: 0.88rem;
}

.map-container {
    width: 10.427rem;
    height: 6.88rem;
    border-radius: 0.133rem 0.133rem 0.133rem 0.133rem;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0.693rem;
}

.contact-details {

    height: 0.747rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.45rem;
    color: #555;
    gap: 0.693rem 0;
}

.contact-item {
    width: fit-content;
    font-weight: bold;
    display: flex;
    gap: 0.693rem 0;

}

.contact-item span {
    text-align: left;
    width: 10.667rem;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.533rem;
    font-size: 0.373rem;
    color: #999;
}

.footer-bottom-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom-copyright p {
    width: fit-content;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 0.373rem;
    color: #555;
}









