/* 导航栏和页脚复用 journal/style.css，可根据需要调整 */

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 导航栏样式 */
#header-1-06 {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container-1-41, .container-1-42 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-1-003 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-left-1-228 {
    display: flex;
    align-items: center;
}

.logo-1-519 {
    font-size: 24px;
    font-weight: bold;
    color: #E4393C;
    text-decoration: none;
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 40px;
    width: auto;
}

.nav-links-1-520 {
    display: flex;
}

.nav-link-1-893, .nav-link-1-894, .nav-link-1-895, .nav-link-1-896, .nav-link-1-897 {
    margin-right: 20px;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* 覆盖导航链接默认不可见的样式 */
.nav-links-1-520 a {
    display: inline-block !important;
}

.nav-link-1-893:hover, .nav-link-1-894:hover, .nav-link-1-895:hover, .nav-link-1-896:hover, .nav-link-1-897:hover {
    color: #E4393C;
}

.nav-link-1-893.active, .nav-link-1-894.active, .nav-link-1-895.active, .nav-link-1-896.active, .nav-link-1-897.active {
    color: #E4393C;
    font-weight: 500;
}

.nav-right-1-229 {
    display: flex;
    align-items: center;
}

.search-container-1-523 {
    position: relative;
    margin-right: 15px;
}

.search-input-1-907 {
    padding: 8px 15px;
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
    font-size: 14px;
}

.search-icon-button-1-908 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.search-button-1-522 {
    padding: 8px 20px;
    background-color: #E4393C;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.search-button-1-522:hover {
    background-color: #C1272D;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 2;
    pointer-events: none;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
    filter: blur(3px);
}

.hero-banner-bg.active {
    opacity: 1 !important;
    z-index: 1;
    visibility: visible;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.8s ease;
    padding: 0 20px;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-slide p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: white;
    color: #e4393c;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 18px;
}

.hero-btn:hover {
    background-color: #fafafa;
    transform: translateY(-3px);
}

.hero-btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hero-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-indicator.active {
    background-color: white;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: #e4393c;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e4393c;
}

/* Latest Journals Section */
#latest-journals-1-31 {
    padding: 70px 0;
    background-color: #fff;
}

.journal-grid-1-83 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a.journal-card-1-063 {
    text-decoration: none;
    color: inherit;
}

.journal-card-1-063 {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.journal-card-1-063:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.journal-image-container-1-466 {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.journal-image-container-1-466 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journal-card-1-063:hover .journal-image-container-1-466 img {
    transform: scale(1.05);
}

.journal-info-1-465 {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.journal-title-1-676 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
    font-weight: 600;
}

.journal-cn-1-677, .journal-frequency-1-678 {
    font-size: 14px;
    color: #777;
    margin-bottom: 4px;
}

/* Services Section */
.viser-services {
    background: #f8f9fa;
    padding: 70px 0;
}

.viser-services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.viser-service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 40px 30px;
    width: 50%; /* 设置固定宽度百分比 */
    min-width: 400px; /* 设置最小宽度 */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.viser-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.viser-service-card h3 {
    color: #e4393c;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.viser-service-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* About Section */
.viser-about {
    background: #fff;
    padding: 70px 0;
}

.viser-about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.viser-about-container h2 {
    font-size: 32px;
    color: #e4393c;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.viser-about-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e4393c;
}

.viser-about-container p {
    font-size: 17px;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.7;
}

.viser-about-container ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 30px;
}

.viser-about-container li {
    font-size: 16px;
    color: #e4393c;
    background: rgba(228, 57, 60, 0.08);
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.viser-about-container li:hover {
    background: rgba(228, 57, 60, 0.15);
    transform: translateY(-3px);
}

/* Data Section */
.viser-data {
    background: #f8f9fa;
    padding: 60px 0;
}

.viser-data-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.viser-data-item {
    text-align: center;
}

.viser-data-number {
    font-size: 48px;
    color: #e4393c;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.viser-data-label {
    font-size: 17px;
    color: #444;
    font-weight: 500;
}

/* Book CTA Section */
.book-cta {
    background-color: #e4393c;
    padding: 60px 0;
    text-align: center;
}

.book-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.book-cta h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #e4393c;
    padding: 12px 36px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
.viser-contact {
    background: #fff;
    padding: 70px 0;
}

.viser-contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.viser-contact-container h2 {
    color: #e4393c;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.viser-contact-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e4393c;
}

.viser-contact-container p {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
}

.viser-contact-container p strong {
    color: #333;
}

/* 页脚样式 */
#footer-1-05 {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content-1-230 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section-1-524, .footer-section-1-525, .footer-section-1-526 {
    flex: 1;
    margin-right: 30px;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-heading-1-909, .footer-heading-1-911, .footer-heading-1-914 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-text-1-910, .footer-text-1-912 {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-link-1-916 {
    margin-bottom: 10px;
}

.footer-link-1-916 a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-1-916 a:hover {
    color: #e4393c;
}

.footer-bottom-1-231 {
    border-top: 1px solid #444;
    padding-top: 20px;
}

.copyright-1-527 {
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* 右侧悬浮窗样式 */
.floating-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 1000;
}

.floating-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #E4393C;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-button:hover {
    background-color: #C1272D;
}

.floating-button.urgent {
    background-color: #E4393C;
}

.floating-button.urgent:hover {
    background-color: #C1272D;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .hero-slide h1 {
        font-size: 38px;
    }
    
    .hero-slide p {
        font-size: 20px;
    }
    
    .hero-banner {
        height: 450px;
    }

    .logo-image {
        max-height: 35px;
    }
}

@media (max-width: 900px) {
    .viser-services-container, .viser-data-container {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .viser-about-container ul {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-slide h1 {
        font-size: 32px;
    }
    
    .hero-slide p {
        font-size: 18px;
    }
    
    .hero-banner {
        height: 400px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 10px;
    }
    
    .floating-button {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .hero-banner {
        height: 350px;
    }
    
    .hero-slide h1 {
        font-size: 28px;
    }
    
    .hero-slide p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .section-header h2, 
    .viser-about-container h2, 
    .viser-contact-container h2 {
        font-size: 26px;
    }
    
    .viser-data-number {
        font-size: 36px;
    }

    .logo-image {
        max-height: 30px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-height: 28px;
    }
}

.nav-a:link,.nav-a:visited{
    text-decoration: none;
}
