/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 顶部导航栏 */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-item {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #ff6b35;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b35;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* 英雄区域 */
.hero {
    margin-top: 70px;
    background-image: url('../img/首页.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 882px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 70px);
    position: relative;
    left: 40px;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.scroll-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 50px;
    left: 40px;
}

.scroll-indicator:hover {
    background-color: #333;
    color: #fff;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* 背景图已移至 .hero */

/* 背景文字效果 */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 320px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 10px;
    user-select: none;
}

/* 第二个模块 - The Beauty */
.beauty-section {
    background-image: url('../img/index2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.beauty-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.beauty-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.beauty-text {
    flex: 1;
    max-width: 500px;
}

.beauty-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.beauty-paragraph:last-child {
    margin-bottom: 0;
}

.beauty-bg-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 280px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -10px;
    user-select: none;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-bg-text {
        font-size: 240px;
    }

    .beauty-content {
        gap: 60px;
    }

    .beauty-bg-text {
        font-size: 200px;
    }
}

@media (max-width: 992px) {
    .nav {
        gap: 25px;
    }
    
    .nav-item {
        font-size: 13px;
    }
    
    .hero-container {
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .scroll-indicator {
        margin: 0 auto;
    }
    
    .hero-image {
        min-height: 500px;
        background-position: center center;
    }
    
    .hero-bg-text {
        font-size: 180px;
    }

    .beauty-section {
        padding: 80px 0;
    }

    .beauty-content {
        flex-direction: column;
        gap: 50px;
    }

    .beauty-text {
        max-width: 100%;
    }

    .beauty-bg-text {
        font-size: 150px;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-item {
        font-size: 12px;
    }
    
    .hero-container {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-image {
        min-height: 400px;
    }
    
    .hero-bg-text {
        font-size: 120px;
    }

    .beauty-section {
        padding: 60px 0;
    }

    .beauty-container {
        padding: 0 30px;
    }

    .beauty-paragraph {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .beauty-bg-text {
        font-size: 100px;
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 30px;
    }
    
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-image {
        min-height: 300px;
    }
    
    .hero-bg-text {
        font-size: 80px;
    }

    .beauty-section {
        padding: 40px 0;
    }

    .beauty-container {
        padding: 0 20px;
    }

    .beauty-paragraph {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .beauty-bg-text {
        font-size: 60px;
        bottom: 20px;
    }

    .tech-innovation-section {
        padding-bottom: 40px;
    }

    .tech-header-bg {
        padding: 30px 0 60px;
    }

    .tech-innovation-container {
        padding: 0 20px;
    }

    .tech-title {
        font-size: 24px;
    }

    .tech-subtitle {
        font-size: 11px;
    }

    .tech-images-grid {
        gap: 15px;
        margin-top: -50px;
        margin-bottom: 30px;
    }

    .tech-image-item {
        width: 70px;
        height: 70px;
    }

    .tech-paragraph {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .tech-description {
        padding-right: 20px;
    }
}

/* 第三个模块 - Driving Technological Innovation */
.tech-innovation-section {
    position: relative;
    padding-bottom: 80px;
}

/* 背景区域 - 只包含标题 */
.tech-header-bg {
    background: linear-gradient(to right, #e8e8e8 0%, #e8e8e8 70%);
    padding: 60px 0 120px;
    position: relative;
}

.tech-innovation-container {
    max-width: 1450px;
    margin: 0 auto;

}

.tech-header {
    text-align: left;
}

.tech-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.tech-subtitle {
    font-size: 24px;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
}

/* 圆形图片 - 悬浮在背景下方 */
.tech-images-grid {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-top: -80px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.tech-image-item {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.tech-description {
    max-width: 720px;
    margin: 0 0 60px auto;
}

.tech-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 18px;
    font-weight: 400;
}

.tech-paragraph:last-child {
    margin-bottom: 0;
}

.tech-banner {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.tech-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* 响应式设计 - 技术创新模块 */
@media (max-width: 992px) {
    .tech-innovation-section {
        padding-bottom: 60px;
    }

    .tech-header-bg {
        padding: 50px 0 100px;
    }

    .tech-innovation-container {
        padding: 0 40px;
    }

    .tech-title {
        font-size: 32px;
    }

    .tech-subtitle {
        font-size: 13px;
    }

    .tech-images-grid {
        flex-wrap: wrap;
        gap: 25px;
        margin-top: -70px;
    }

    .tech-image-item {
        width: 120px;
        height: 120px;
    }

    .tech-description {
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .tech-innovation-section {
        padding-bottom: 50px;
    }

    .tech-header-bg {
        padding: 40px 0 80px;
    }

    .tech-innovation-container {
        padding: 0 30px;
    }

    .tech-title {
        font-size: 28px;
    }

    .tech-subtitle {
        font-size: 12px;
    }

    .tech-images-grid {
        gap: 20px;
        margin-top: -60px;
    }

    .tech-image-item {
        width: 100px;
        height: 100px;
    }

    .tech-paragraph {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .tech-description {
        padding-right: 30px;
    }
}

/* 第四个模块 - Development History & Core Values */
.history-section {
    position: relative;
    background-color: #fff;
}

.history-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 200px 0px 60px;
}

/* 上半部分：白色背景时间线 */
.history-timeline {
    background-color: #fff;
    width: 1520px;
    margin: auto;
    padding: 80px 0 60px 0;
}

/* 主标题 */
.history-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 50px;
    letter-spacing: -0.5px;

}

/* 时间线顶部（2020和2021） */
.timeline-top {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.timeline-item {
    display: flex;
    padding-bottom: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.timeline-year {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    min-width: 80px;
    flex-shrink: 0;
    padding-top: 3px;
    position: relative;
}

.timeline-year1 {
    font-size: 48px;
   margin-left: -50px;
   font-weight: bold;
}

.timeline-year::after {
    content: "";
    display: block;
    height: 172px;
    width: 1px;
    background:#000 ;
    position: absolute;
    left: 25%;
}


.timeline-content {
    flex: 1;
    max-width: 700px;
}

.timeline-text {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;

}


.timeline-text1{
    font-size: 48px;
    font-weight: bold;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-text:last-child {
    margin-bottom: 0;
}

/* 下半部分：包含2025、模特图片和Core Values */
.bottom-section {
    position: relative;
    background-color: #86858c;
}

/* 2025 大标题区域 */
.year-2025 {
    padding-bottom: 40px;
}

.big-year {
    font-size: 72px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.year-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

/* 模特图片（左下角） */
.model-image {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.model-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Core Values 灰色区域（右侧） */
.core-values {
    position: relative;
    padding: 60px 80px;
    margin-left: auto;
    width: 60%;
    min-height: 452px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    margin-top: 150px;
}

.values-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.values-text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-text:last-child {
    margin-bottom: 0;
}

/* 响应式设计 - History Section */
@media (max-width: 1200px) {
    .timeline-item {
        gap: 60px;
    }

    .big-year {
        font-size: 60px;
    }

    .core-values {
        padding: 50px 60px;
    }
}

@media (max-width: 992px) {
    .history-container {
        padding: 0 40px;
    }

    .history-timeline {
        padding: 60px 0 50px 0;
    }

    .history-main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .timeline-item {
        gap: 40px;
    }

    .timeline-year {
        font-size: 14px;
    }

    .timeline-text {
        font-size: 14px;
    }

    .bottom-section {
        padding-top: 50px;
    }

    .big-year {
        font-size: 50px;
    }

    .year-subtitle {
        font-size: 16px;
    }

    .model-image {
        width: 45%;
    }

    .core-values {
        width: 65%;
        padding: 40px 50px;
        min-height: 350px;
    }

    .values-title {
        font-size: 30px;
    }

    .values-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .history-container {
        padding: 0 30px;
    }

    .history-timeline {
        padding: 50px 0 40px 0;
    }

    .history-main-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .timeline-top {
        gap: 30px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .timeline-year {
        font-size: 13px;
    }

    .timeline-text {
        font-size: 13px;
    }

    .bottom-section {
        padding-top: 40px;
        display: flex;
        flex-direction: column;
    }

    .year-2025 {
        padding-bottom: 30px;
    }

    .big-year {
        font-size: 40px;
    }

    .year-subtitle {
        font-size: 15px;
    }

    .model-image {
        position: relative;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px auto;
    }

    .core-values {
        position: relative;
        width: 100%;
        padding: 40px 30px;
        margin-left: 0;
        min-height: auto;
    }

    .values-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .values-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .history-container {
        padding: 0 20px;
    }

    .history-timeline {
        padding: 40px 0 30px 0;
    }

    .history-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .timeline-top {
        gap: 25px;
    }

    .timeline-year {
        font-size: 12px;
    }

    .timeline-text {
        font-size: 12px;
    }

    .bottom-section {
        padding-top: 30px;
    }

    .year-2025 {
        padding-bottom: 25px;
    }

    .big-year {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .year-subtitle {
        font-size: 14px;
    }

    .model-image {
        max-width: 280px;
        margin-bottom: 25px;
    }

    .core-values {
        padding: 30px 20px;
    }

    .values-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .values-text {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

/* 第五个模块 - Vision Mission Values & Cooperation */
.vmv-section {
    background-color: #fff;
    padding: 80px 0 0 0;
}

/* 上半部分：三张卡片 */
.vmv-cards-container {
    max-width: 1450px;
    margin: 0 auto 100px auto;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.vmv-card {
    flex: 1;
    max-width: 350px;
    text-align: left;
}

.vmv-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.vmv-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vmv-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.vmv-card-text {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

/* 下半部分：合作信息与握手图片 */
.cooperation-section {
    background: linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);
    padding: 60px 0 80px 0;
}

.cooperation-content {
    max-width: 1450px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('../img/Group 1000005479.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 400px;
}

.cooperation-text {
    flex: 1;
    max-width: 550px;
}

.cooperation-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.cooperation-info {
    margin-top: 40px;
}

.location-title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.location-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.location-text {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.5px;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.company-email {
    font-size: 20px;
    font-weight: 400;
    color: #666;
}

/* 响应式设计 - VMV Section */
@media (max-width: 1200px) {
    .vmv-cards-container {
        gap: 30px;
    }

    .cooperation-content {
        padding: 50px;
        min-height: 350px;
        background-size: 50%;
    }

    .cooperation-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .vmv-section {
        padding: 60px 0 0 0;
    }

    .vmv-cards-container {
        padding: 0 40px;
        margin-bottom: 80px;
    }

    .vmv-card-image {
        height: 180px;
    }

    .vmv-card-title {
        font-size: 18px;
    }

    .vmv-card-text {
        font-size: 13px;
    }

    .cooperation-section {
        padding: 50px 0 60px 0;
    }

    .cooperation-content {
        padding: 40px;
        min-height: 300px;
        background-size: 45%;
    }

    .cooperation-title {
        font-size: 26px;
    }

    .location-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .vmv-section {
        padding: 50px 0 0 0;
    }

    .vmv-cards-container {
        flex-direction: column;
        padding: 0 30px;
        margin-bottom: 60px;
        align-items: center;
    }

    .vmv-card {
        max-width: 400px;
    }

    .vmv-card-image {
        height: 200px;
    }

    .cooperation-section {
        padding: 40px 0 50px 0;
    }

    .cooperation-content {
        flex-direction: column;
        padding: 30px;
        min-height: auto;
        background-image: none;
    }

    .cooperation-text {
        max-width: 100%;
    }

    .cooperation-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .location-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .vmv-section {
        padding: 40px 0 0 0;
    }

    .vmv-cards-container {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .vmv-card {
        max-width: 100%;
    }

    .vmv-card-image {
        height: 180px;
    }

    .vmv-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .vmv-card-text {
        font-size: 12px;
    }

    .cooperation-section {
        padding: 30px 0 40px 0;
    }

    .cooperation-content {
        padding: 20px;
        background-image: none;
    }

    .cooperation-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .location-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .location-icon {
        gap: 6px;
    }

    .location-text {
        font-size: 13px;
    }

    .company-name {
        font-size: 15px;
    }

    .company-email {
        font-size: 13px;
    }
}

/* ============================================
   第六个模块 - Join Us 招聘
   ============================================ */

.join-us-section {
    background: #000;
    color: #fff;
    padding: 100px 0 30px 0;
    text-align: center;
}

.join-us-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.join-us-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.join-us-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
}

.job-roles {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

.job-role {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

.join-us-description {
    max-width: 1580px;
    margin: 0 auto 100px auto;
    text-align: center;
}

.join-us-text {
    font-size: 16px;
    font-weight: 400;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 10px;
}

.join-us-text:last-child {
    margin-bottom: 0;
}

.copyright {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* 响应式设计 - Join Us Section */
@media (max-width: 992px) {
    .join-us-section {
        padding: 80px 0 50px 0;
    }

    .join-us-title {
        font-size: 42px;
    }

    .join-us-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .job-roles {
        gap: 12px;
        margin-bottom: 50px;
    }

    .job-role {
        padding: 10px 24px;
        font-size: 14px;
    }

    .join-us-text {
        font-size: 14px;
    }

    .copyright {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .join-us-section {
        padding: 60px 0 40px 0;
    }

    .join-us-container {
        padding: 0 30px;
    }

    .join-us-title {
        font-size: 36px;
    }

    .join-us-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .job-roles {
        gap: 10px;
        margin-bottom: 40px;
    }

    .job-role {
        padding: 8px 20px;
        font-size: 13px;
    }

    .join-us-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .copyright {
        margin-top: 50px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .join-us-section {
        padding: 50px 0 30px 0;
    }

    .join-us-container {
        padding: 0 20px;
    }

    .join-us-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .join-us-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .job-roles {
        gap: 8px;
        margin-bottom: 35px;
    }

    .job-role {
        padding: 8px 16px;
        font-size: 12px;
    }

    .join-us-description {
        margin-bottom: 40px;
    }

    .join-us-text {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .copyright {
        margin-top: 40px;
        padding-top: 25px;
        font-size: 11px;
    }
}

