:root {
    --primary-color: #10a37f;
    --primary-dark: #0d8c6b;
    --primary-light: #e6f5f0;
    --secondary-color: #333;
    --text-color: #444;
    --bg-light: #f9f9f9;
    --gray-light: #eee;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 12px;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* 导航栏样式 */
.navbar {
    padding: 0 rem 0;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    margin-left: 1rem;
}

.navbar .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* 头部导航样式 */
.head-nav, .header-spacing {
    display: none;
}

@media (max-width: 500px) {
    body {
        background: #F8F8F8;
    }
    
    .head-nav, .header-spacing {
        display: flex;
    }

    p.p1 {
        display: none;
    }
}

/* 文本盒子样式 */
.text-box {
    padding: 18px;
    margin-top: 70px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.text-box h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.text-box h2 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.text-box p {
    margin-bottom: 15px;
    line-height: 24px;
    font-size: 14px;
    color: #393939;
}

.text-box ul {
    margin-bottom: 15px;
    margin-left: 20px;
}

.text-box ul li {
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 14px;
    color: #393939;
}

.text-box .emphasis {
    font-weight: bold;
    text-decoration: underline;
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
}

.footer p {
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
}

.footer a {
    color: #10a37f;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* 产品相关样式 */
.container {
    padding-top: 2px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 2px;
    text-align: center;
}

.product-notes {
    margin-top: 20px;
}

.button {
    margin-top: 40px;
}

.button a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.product-image {
    margin-top: 100px;
    margin-bottom: 100px;
}

.product-image img {
    width: 90%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Logo样式 */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.header-logo i {
    font-size: 3rem;
    color: var(--primary-color);
}

.header-logo span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* 新增样式 */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--primary-light) 100%);
}

.shadow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    background: rgba(16, 163, 127, 0.1);
    transform: rotate(-3deg) scale(0.95);
    z-index: -1;
}

.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.card {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
}

.pricing-header .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-header .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-header .period {
    font-size: 1rem;
    color: inherit;
    opacity: 0.8;
}

.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(16, 163, 127, 0.25);
} 


.isheetlogo{margin-top: 5px;}

.blog-content{
    height: 500px;
    overflow: hidden;
}