/* 基础样式 */
body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #2c3e50;
    line-height: 1.6;
    background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: -1;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 20px 40px;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #4a89dc;
    position: relative;
    padding-left: 40px;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/2436/2436874.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: #4a89dc;
}

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

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.menu-icon.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-icon.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/2436/2436874.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    transform: rotate(15deg);
}

h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #4a89dc;
    border-radius: 2px;
}

/* 人物画像样式 */
#user-profile {
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.profile-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.profile-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image-container {
    flex: 1;
    max-width: 400px;
}

.profile-tags-container {
    flex: 1;
    max-width: 400px;
}

.profile-image {
    position: relative;
    width: 100%;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 5px solid #ffffff;
}

.profile-image img:hover {
    transform: scale(1.02);
}

.profile-tags {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background-color: transparent;
    border-radius: 12px;
    box-shadow: none;
    width: 100%;
}

.profile-tags span {
    background-color: #4a89dc;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    width: 100%;
}

.profile-tags span:before {
    content: "🌟";
    margin-right: 10px;
    font-size: 20px;
}

.profile-tags span:nth-child(2n) {
    background-color: #5d9cec;
}

.profile-tags span:nth-child(3n) {
    background-color: #37bc9b;
}

.profile-tags span:nth-child(4n) {
    background-color: #f6bb42;
}

.profile-tags span:nth-child(5n) {
    background-color: #e9573f;
}

.profile-tags span:nth-child(6n) {
    background-color: #8cc152;
}

.profile-tags span:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.profile-intro, .profile-story {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.profile-intro::before, .profile-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #4a89dc, #5d9cec);
}

.profile-intro h3, .profile-story h3 {
    color: #4a89dc;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.profile-intro p, .profile-story p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin: 0;
}

/* 信息框架样式 */
.info-framework-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.framework-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.framework-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.framework-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.framework-section h3 {
    color: #3498db;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.framework-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.framework-section li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #34495e;
}

.framework-section li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 产品简介样式 */
#product-intro {
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

#product-intro p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
    position: relative;
    padding-left: 20px;
}

#product-intro p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
}

/* 情景故事样式 */
#scenario {
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

#scenario p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

/* 功能列表样式 */
.feature-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}

.feature-module {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-module h3 {
    color: #4a89dc;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a89dc;
}

.feature-module h4 {
    color: #2c3e50;
    font-size: 18px;
    margin: 15px 0 10px;
    padding-left: 15px;
    border-left: 3px solid #4a89dc;
}

.feature-module ul {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
}

.feature-module ul ul {
    margin-left: 20px;
}

.feature-module li {
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-module li::before {
    content: "•";
    color: #4a89dc;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.feature-module ul ul li::before {
    content: "◦";
    color: #5d9cec;
}

/* 树状图样式 */
.tree-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tree {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tree > li {
    width: 100%;
}

.tree > li > ul {
    padding-left: 30px;
}

.tree > li > ul > li {
    width: 100%;
    margin-bottom: 15px;
}

.tree ul {
    margin: 0;
    padding: 0 0 0 30px;
    list-style: none;
    position: relative;
}

.tree ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    border-left: 2px solid #d0d0d0;
    height: 100%;
}

.tree li {
    position: relative;
    padding: 10px 0;
}

.tree li:before {
    content: "";
    position: absolute;
    top: 20px;
    left: -15px;
    width: 15px;
    border-top: 2px solid #d0d0d0;
}

.tree li:first-child:before {
    top: 10px;
}

.tree-node {
    display: inline-block;
    padding: 10px 15px;
    background: #f0f4f8;
    border-radius: 5px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tree-node:hover {
    background: #e0e4e8;
}

.tree > li > .tree-node {
    background: #e6f2ff;
    color: #2c3e50;
    font-size: 1.2em;
    padding: 12px 20px;
}

.tree > li > ul > li > .tree-node {
    background: #f0f4f8;
    color: #34495e;
}

.tree > li > ul > li > ul > li > .tree-node {
    background: #f5f5f5;
    color: #5d6d7e;
}

.tree-leaf {
    display: inline-block;
    padding: 6px 12px;
    color: #666;
    font-size: 0.95em;
    transition: all 0.3s ease;
    background: #f9f9f9;
    border-radius: 4px;
    margin: 3px 0;
}

.tree-leaf:hover {
    color: #333;
    background: #f0f0f0;
}

/* 为不同层级的叶子节点设置不同的低饱和度颜色 */
.tree > li > ul > li > ul > li:nth-child(1) > .tree-leaf {
    background: #f0f7ff;
    color: #5d6d7e;
}

.tree > li > ul > li > ul > li:nth-child(2) > .tree-leaf {
    background: #f0fff4;
    color: #5d6d7e;
}

.tree > li > ul > li > ul > li:nth-child(3) > .tree-leaf {
    background: #fff7f0;
    color: #5d6d7e;
}

.tree > li > ul > li > ul > li:nth-child(4) > .tree-leaf {
    background: #fff0f0;
    color: #5d6d7e;
}

.tree > li > ul > li > ul > li:nth-child(5) > .tree-leaf {
    background: #f7f0ff;
    color: #5d6d7e;
}

.tree > li > ul > li > ul > li:nth-child(6) > .tree-leaf {
    background: #f0f0ff;
    color: #5d6d7e;
}

.tree > li > ul > li > ul > li:nth-child(7) > .tree-leaf {
    background: #fffff0;
    color: #5d6d7e;
}

.tree > li > ul > li > ul > li:nth-child(8) > .tree-leaf {
    background: #f0ffff;
    color: #5d6d7e;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        position: relative;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 20px;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background-color: #f8f9fa;
        color: #3498db;
    }

    .menu-icon {
        display: flex;
    }

    .section {
        margin: 30px 20px;
        padding: 30px 20px;
    }

    .profile-main {
        grid-template-columns: 1fr;
    }

    .profile-row {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-image-container,
    .profile-tags-container {
        max-width: 100%;
    }

    .profile-image {
        position: static;
        margin-bottom: 30px;
    }

    .profile-image img {
        max-width: 100%;
    }
    
    .info-framework-container {
        grid-template-columns: 1fr;
    }

    .profile-tags {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    
    .profile-tags span {
        min-width: 150px;
        width: auto;
    }
    
    .tree > li > ul > li {
        width: 100%;
    }
    
    .tree ul {
        padding-left: 20px;
    }
    
    .tree ul:before {
        left: 10px;
    }
    
    .tree li:before {
        left: -10px;
        width: 10px;
    }
    
    .tree-node, .tree-leaf {
        padding: 5px 10px;
        font-size: 0.9em;
    }

    .feature-container {
        grid-template-columns: 1fr;
    }
    
    .feature-module {
        padding: 20px;
    }
    
    .feature-module h3 {
        font-size: 20px;
    }
    
    .feature-module h4 {
        font-size: 16px;
    }
}

/* 页脚样式 */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4a89dc, #5d9cec);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: bold;
    color: #ecf0f1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h4 {
    color: #3498db;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #3498db;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
    }
}

/* 小组分工样式 */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #4a89dc, #5d9cec);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #4a89dc;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.team-member ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #34495e;
}

.team-member li::before {
    content: "✓";
    color: #4a89dc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .team-container {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .team-member h3 {
        font-size: 20px;
    }
}

/* 返回按钮样式 */
.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4a89dc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-left: 20px;
    white-space: nowrap;
}

.back-button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        padding: 10px;
    }

    .back-button {
        margin: 10px 0;
        width: 100%;
        text-align: center;
        order: 3;
    }

    .nav-links.active + .back-button {
        margin-top: 10px;
    }
}

/* 市场调研部分样式 */
.market-analysis {
    margin-bottom: 40px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.market-analysis h3 {
    color: #052659;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #C1E8FF;
    display: flex;
    align-items: center;
    gap: 12px;
}

.market-analysis h3 i {
    color: #4a89dc;
    font-size: 1.6rem;
}

.market-subsection {
    margin-bottom: 35px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.market-subsection h4 {
    color: #052659;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-subsection h4 i {
    color: #4a89dc;
    font-size: 1.2rem;
}

.market-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.market-icon {
    background: linear-gradient(135deg, #4a89dc, #052659);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.market-details {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.market-details h5 {
    color: #052659;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-details h5 i {
    color: #4a89dc;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #4a89dc;
    font-size: 1.1rem;
}

.feature-list ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.feature-list ul li {
    margin-bottom: 8px;
    color: #666;
}

.info-table {
    width: 100%;
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.info-table th {
    background: linear-gradient(135deg, #4a89dc, #052659);
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
}

.info-table th i {
    margin-right: 8px;
}

.info-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eef2f7;
    color: #2c3e50;
}

.info-table td i {
    margin-right: 8px;
    color: #4a89dc;
    width: 20px;
    text-align: center;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover {
    background-color: #f8fafc;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .market-analysis {
        padding: 20px;
    }

    .market-analysis h3 {
        font-size: 1.5rem;
    }

    .market-subsection {
        padding: 20px;
    }

    .market-subsection h4 {
        font-size: 1.2rem;
    }

    .market-card {
        flex-direction: column;
        gap: 15px;
    }

    .market-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .info-table {
        margin: 15px 0;
    }

    .info-table th,
    .info-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}