/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 背景图片容器 */
.bg-container {
    min-height: 100vh;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* 顶部区域 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: none;
    border-bottom: 1px solid #ffffff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    display: inline-block;
	margin-right:40px;
    z-index: 1;
}

.logo-image img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 0;
}

.logo h1 {
    font-size: 30px;
    font-weight: bold;
    color: #e60013;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 26px;
    color: #000;
    font-weight: bold;
}

.contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact .phone {
    text-align: center;
}

.contact .phone h3 {
    font-size: 20px;
    color: #e60013;
    margin-bottom: 5px;
}

.contact .phone p {
    font-size: 24px;
    font-weight: bold;
    color: #e60013;
}

.contact .qrcode {
    text-align: center;
}

.contact .qrcode img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.contact .qrcode p {
    font-size: 14px;
    color: #000;
}

/* 主体内容区域 */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 40px;
}

.welcome-section {
    text-align: center;
}

.welcome-title {
    font-size: 36px;
    color: #e60013;
    margin-bottom: 10px;
}

.service-tagline {
    font-size: 24px;
    color: #000;
	 margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #e60013;
    color: #ffffff;
    min-width: 120px;
    text-align: center;
}

.btn:hover {
    background-color: #c40010;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 0, 19, 0.3);
}

.entrance-container {
    display: flex;
    gap: 100px;
    align-items: center;
}

.entrance-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.entrance-item:hover {
    transform: translateY(-10px);
}

.entrance-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    border: 5px solid rgba(255, 255, 255, 0.9);
}

.entrance-image a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.entrance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.entrance-item:hover .entrance-image img {
    transform: scale(1.05);
}

.entrance-item h2 {
    font-size: 24px;
    color: #e60013;
    margin-top: 20px;
}

/* 底部区域 */
.footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 30px 50px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.copyright p {
    font-size: 14px;
}

.friend-links {
    margin: 20px 0;
}

.friend-links h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.friend-links ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.friend-links li {
    display: inline-block;
}

.friend-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border-radius: 8px;
    background-color: #e60013;
    border: 2px solid #ffffff;
}

.friend-links a:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.record-info {
    font-size: 12px;
    opacity: 0.8;
}

.record-info p {
    margin-bottom: 5px;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        text-align: center;
    }

    .logo {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-text {
        align-items: center;
    }

    .logo h1 {
        font-size: 28px;
    }

    .logo-subtitle {
        font-size: 14px;
    }

    .contact {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }

    .contact .phone h3 {
        font-size: 14px;
    }

    .contact .phone p {
        font-size: 16px;
    }

    .main-content {
        padding: 30px 20px;
        gap: 30px;
    }

    .welcome-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .service-tagline {
        font-size: 20px;
    }

    .action-buttons {
        gap: 15px;
        margin-top: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }

    .entrance-container {
        flex-direction: column;
        gap: 40px;
    }

    .entrance-image {
        width: 200px;
        height: 200px;
    }

    .entrance-item h2 {
        font-size: 20px;
    }

    .footer {
        padding: 20px;
    }

    .friend-links ul {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .friend-links h3 {
        text-align: center;
    }

    .friend-links a {
        font-size: 13px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 12px;
    }

    .contact .qrcode img {
        width: 80px;
        height: 80px;
    }

    .main-content {
        padding: 20px 15px;
        gap: 20px;
    }

    .welcome-title {
        font-size: 24px;
    }

    .service-tagline {
        font-size: 18px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
        width: 200px;
        text-align: center;
    }

    .friend-links ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .friend-links a {
        width: 180px;
        text-align: center;
        font-size: 13px;
        padding: 8px 12px;
    }

    .entrance-image {
        width: 150px;
        height: 150px;
    }

    .entrance-item h2 {
        font-size: 16px;
    }

    .footer {
        padding: 15px;
    }

    .footer-content {
        gap: 10px;
    }

    .copyright p {
        font-size: 12px;
    }

    .record-info {
        font-size: 10px;
    }
}