/* 部分公用样式 */
:root {
    --primary-blue: #1a4d8c;
    --accent-blue: #2a75d1;
    --text-dark: #333;
    --text-light: #666;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --link-gradient: linear-gradient(135deg, #1a4d8c, #2267B1);
    --link-hover: #2a75d1;
    --primary-color: #2a75d1;
    --secondary-color: #8ec0fc;
    --accent-color: #d1e5fa;
}

.header {
    position: relative;
}

/* 顶部轮播图样式 */
.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 77, 140, 0.2);
}

.swiper-slide {
    position: relative;
    transition: transform 1s ease-in-out;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 444px;
    display: block;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    width: 56px;
    height: 56px;
    background: transparent;
    /* backdrop-filter: blur(4px); */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 28px;
    color: white;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

/* 轮播图上方 */
.top-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    /* background-color: rgba(255, 255, 255, 0.35); */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
}

/* 内部盒子 */
.inner {
    position: relative;
    width: 1520px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner .logo {
    color: white;
}

/* 内部右侧盒子 */
.right-side {
    display: flex;
    align-items: center;
    gap: 15px;
    /* transform: translateX(110px); */
}

/* 快递通道模块 */
.path {
    position: relative;
}

.path span {
    cursor: default;
    font-size: 16px;
    color: #4d9df5;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}

.path span:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.path-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 2;
}

.path-list:before {
    position: absolute;
    content: '';
    background-color: transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-top: 8px solid transparent;
    top: -15px;
    right: 44px;
}

.path:hover .path-list {
    visibility: visible;
    opacity: 1;
}

.path-list li {
    text-align: center;
    height: 42px;
    line-height: 21px;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.path-list li:last-child {
    border-bottom: none;
}

.path-list li:hover {
    background-color: #f0f0f0;
    font-size: 15px;
}

/* 搜索模块 */
.search {
    position: relative;
    width: 200px;
    max-width: 90%;
    transition: all 0.3s ease;
}

.search-input {
    background-color: transparent;
    width: 100%;
    padding: 6px 40px 6px 20px;
    border: 2px solid #4d9df5;
    border-radius: 25px;
    font-size: 16px;
    box-sizing: border-box; 
    transition:
        width 0.3s ease,
        border-radius 0.3s ease;
}

.search-input::placeholder {
    color: #4d9df5;
}

.search-input:focus::placeholder {
    color: transparent;
}

.search-button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    background-color: transparent;
    transition: transform 0.3s ease; 
}

.search-button img {
    width: 20px;
    height: 20px;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
}

.search-button:hover {
    background-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(26, 77, 140, 0.3);
}

.search-button:active {
    transform: translateY(-50%) scale(0.95);
}
 
.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    font-weight: 600;
    color: white;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-button .home-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.home-button .text {
    letter-spacing: 1px;
    color: #4e9df4;
}

.home-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    transform: scale(1.1);
}

/* 导航栏样式 */
.nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    z-index: 100;
    position: relative;
    background: linear-gradient(135deg, #265288, #2267B1);
    box-shadow: 0 4px 20px rgba(26, 77, 140, 0.3);
}

.select-box {
    width: 1520px;
    height: 60px;
}

.nav_tab {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_tab li {
    position: relative;
    width: 190px;
    text-align: center;
    padding: 7.5px 0;
    font-size: 20px;
    font-family: "黑体", sans-serif;
    transition: background-color 0.3s ease;
}

.nav_tab li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: color 0.4s ease;
}

.nav_tab li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav_tab li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #2267B1;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav_tab li:hover ul {
    opacity: 1;
    visibility: visible;
}

.nav_tab li ul li {
    height: 55px;
    font-size: 16px;
    text-align: center;
    line-height: 35px;
    background-color: #85acd6;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav_tab li ul li:hover {
    font-size: 17px;
    background-color: #377acd;
}

.nav_tab li ul li a {
    color: white;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

/* 主体的背景图片 */
.main {
    width: 100%;
    height: 1335px;
    position: relative;
    overflow: visible;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/background1.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

.main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

/* 加载进入时的效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 主体部分的news和notice */
.poster {
    width: 1520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.poster .news {
    margin-top: 25px;
    position: relative;
    width: 100%;
    height: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.poster .news {
    top: 0;
}

.poster .notice {
    bottom: 0;
}

.top1 {
    width: 100%;
    height: 80px;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 30px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid transparent;
    background-image: linear-gradient(to right, rgba(100, 113, 125, 0.3), rgba(100, 113, 125, 0.7), rgba(100, 113, 125, 0.3));
    background-position: bottom;
    background-size: 100% 1px;
    background-repeat: no-repeat;
}

.news-icon,
.more-icon {
    height: 30px;
    margin: 0 20px;
}

.news-leader {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    letter-spacing: .1em;
}

.more-section {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.more-text {
    font-size: 16px;
    color: #666;
    margin-left: 10px;
}

.more-section:hover {
    cursor: pointer;
}

.news-content {
    display: flex;
    flex: 1;
    width: 100%;
    height: 550px;
}

.left1 {
    width: 740px;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 700px;
    height: 51px;
    margin-bottom: 10px;
    padding: 0;
    background-color: transparent;
    border-bottom: 1px solid #dee7ea;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-list li:hover {
    transform: scale(1.05);
}

.news-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0593ff;
    transition: width 0.3s ease;
}

.news-list li:hover::after {
    width: 100%;
}

.new-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-link:hover {
    background-color: transparent;
}

.news-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1em;
    color: #1a2634;
    flex: 1;
    margin-left: 10px;
    transition: font-size 0.3s ease;
    position: relative;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 600px;
}

.news-date {
    font-size: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #6c757d;
    letter-spacing: 0.5px;

    position: relative;
    padding-left: 20px;
    min-width: 50px;
    display: inline-block;
    line-height: 1.4;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23999" d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM5 8V6h14v2H5z"/></svg>');
        background-size: contain;
        opacity: 0.8;
    }

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-list li:hover .news-date {
    color: var(--primary-blue);
    transform: translateX(4px);

    &::before {
        opacity: 1;
        filter: brightness(0.8);
    }
}

.enter-icon {
    height: 20px;
    margin-left: 10px;
}

.right1 {
    width: 780px;
    background-color: white;
}

.container {
    width: 720px;
    height: 480px;
    padding: 20px 30px 20px 30px;
    position: relative;
    overflow: hidden;
}

/* 轮播容器 */
.slider {
    border-radius: 18px;
    height: 480px;
    position: relative;
    overflow: hidden;
}

.slides {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    width: 33.3333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center center;
    will-change: transform;
}

.slide:hover img {
    transform: scale(1.04);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
}

.pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 4;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.nav-btn::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-width: 2px 2px 0 0;
}

.prev-btn {
    left: 20px;
}

.prev-btn::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.next-btn {
    right: 20px;
}

.next-btn::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.notice {
    width: 1520px;
    height: 521px;
    display: flex;
    gap: 30px;
    background: transparent; 
    border-radius: 12px;
}

.notice-column {
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.notice-column:hover {
    transform: translateY(-5px);
}

.notice-header {
    background: linear-gradient(135deg, #235d96, #3498db);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 25px 20px;
    font-size: 20px;
}

.notice-header a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    letter-spacing: .1em;
}

.notice-header {
    justify-content: space-between;
}

.more-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 4px 8px;
    border-radius: 4px;
}

.more-link:hover {
    transform: translateX(3px);
}

.more-link::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url('../assets/enter.png');
    background-size: contain;
    transition: transform 0.3s;
}

.more-link:hover::after {
    transform: translateX(2px);
}

.notice-list {
    padding: 15px 20px;
    list-style: none;
}

.notice-list a {
    text-decoration: none;
}

.notice-list li {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: relative;
    transition: all 0.2s;
    padding-left: 8px;
}

.notice-list li:hover .notice-title {
    color: #2267B1;
    transform: scale(1.04);
}

.notice-list li::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 4px;
    background: #3498db;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.2s;
}

.notice-list li:hover::before {
    opacity: 1;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-title {
    font-size: 16px;
    margin: 6px 0;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
    transition: all 0.2s;
}

.notice-time {
    color: #95a5a6;
    font-size: 12px;
    float: right;
    flex-shrink: 0;
    margin-left: 15px;
}

.notice-desc {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden;
}

.notice-list a:hover {
    cursor: pointer;
}

.notice-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 主体部分的友情链接 */
.link-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1520px;
    margin: 0 auto;
}

.link-card {
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f8faff 0%, #ffffff 100%);
    box-shadow: 0 4px 15px rgba(42, 117, 209, 0.08);
    border: 1px solid rgba(42, 117, 209, 0.12);
    opacity: 0;
    transform: translateX(-100%);
    animation: flyIn 1s ease forwards;
}

@keyframes flyIn {
    0% {
        transform: translateX(-100%) rotate(-5deg);
        opacity: 0;
        filter: blur(2px);
    }

    100% {
        transform: translateX(0) rotate(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes flyOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.link-card:nth-child(1) {
    animation-delay: 0.2s;
}

.link-card:nth-child(2) {
    animation-delay: 0.4s;
}

.link-card:nth-child(3) {
    animation-delay: 0.6s;
}

.link-card:nth-child(4) {
    animation-delay: 0.8s;
}

.link-card:nth-child(5) {
    animation-delay: 1s;
}

.link-container:not(.in-view) .link-card {
    opacity: 0;
    transform: translateX(-100%) rotate(-5deg);
}

.link-container.in-view .link-card {
    animation: flyIn 0.8s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

.link-container.out-view .link-card {
    animation: flyOut 0.8s ease forwards;
}

.link-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transform: rotate(45deg);
    transition: all 0.5s ease;
    background: linear-gradient(45deg,
            transparent 25%,
            rgba(42, 117, 209, 0.08) 50%,
            transparent 75%);
}

.link-card:hover {
    box-shadow: 0 12px 25px rgba(42, 117, 209, 0.15); 
    transform: translate3d(0, -8px, 0) scale(1.04) !important;
}

.link-card:hover::before {
    animation: shine 1.5s;
}

.link-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    /* background: linear-gradient(135deg,
            var(--primary-color) 0%,
            color-mix(in srgb, var(--primary-color), white 30%) 100%); */
    background-color: white;
    /* box-shadow: 0 2px 8px rgba(42, 117, 209, 0.2); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.link-icon img {
    width: 40px;
    height: auto;
}

.link-text {
    line-height: 1.4;
}

.link-title {
    color: #1d3a6b;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Segoe UI', sans-serif;
}

.link-description {
    color: #5a7a9f;
    font-size: 13px;
    text-decoration: underline
}


.link-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 35%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 65%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.link-card:hover .link-icon::after {
    animation: icon-shine 1.4s;
}

@keyframes icon-shine {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(45deg);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100%) rotate(45deg);
    }
}

/* 末尾部分 */
.footer {
    background: linear-gradient(135deg, #1a4d8c, #2267B1); 
    position: relative;
    overflow: hidden;
    font-family: 'Noto Sans SC', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content p {
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    position: relative;
    padding-left: 24px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.footer-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-size: contain;
}

.footer-content p:first-child::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23ffffff" d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5 14.5 7.62 14.5 9 13.38 11.5 12 11.5z"/></svg>');
}

.footer-content p:nth-child(2)::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23ffffff" d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.footer-content p:last-child {
    margin-top: 25px;
    font-size: 13px;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-top: 15px;
}

.footer-content p:last-child {
    margin-top: 4px;
    padding: 8px 0 0;
    position: relative;
}

.footer-content p:last-child::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 1px; 
    background: linear-gradient(90deg,
            transparent 20%,
            rgba(255, 255, 255, 0.6) 45%,
            rgba(255, 255, 255, 0.6) 55%,
            transparent 80%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-content p:hover {
    cursor: default;
    transform: translateX(4px);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}