/* --- 全局重置和基础设置 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: "GenWanMinJP";
    /* 自定义字体名称 */
    src: url("fonts/GenWanMinJP-Medium-3.ttf") format("truetype");
    /* 路径和格式 */
    font-weight: normal;
    /* 字重 */
    font-style: normal;
    /* 字体样式 */
}

@font-face {
    font-family: "ImperialScript";
    /* 自定义字体名称 */
    src: url("fonts/P22 Imperial Script.ttf") format("truetype");
    /* 路径和格式 */
    font-weight: normal;
    /* 字重 */
    font-style: normal;
    /* 字体样式 */
}

/* --- 关键：动态设置根字体大小 --- */
html {
    font-size: 13.33333333vw;
    -webkit-text-size-adjust: 100%;
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {

    /* CSS specific to iOS devices */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Fix for border rendering in iOS */
    .vertical-text,
    .container .content-center,
    .container-question .title-center,
    .container-question .question-title-center,
    .container-question .question-center,
    .container-question .answer-center,
    .container-question .answer,
    .container-result .title-center,
    .container-result .result-title-centent,
    .container-result .result-detail,
    .container-result .scope-detail,
    .container-result .scope-description-text {
        border-width: 1px !important;
        -webkit-border-width: 1px !important;
    }

    /* Fix for selected answer in iOS */
    .container-question .answer.selected {
        /* border-width: 2px !important; */
        /* -webkit-border-width: 2px !important; */
    }

    /* Fix for vertical text in iOS */
    [writing-mode="vertical-rl"],
    [style*="writing-mode: vertical-rl"] {
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        -webkit-text-orientation: mixed;
    }

    /* Fix for touch events on iOS */
    .button,
    .answer,
    #start-button,
    #back-to-home {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-touch-callout: none;
    }

    /* Fix for SVG rendering in iOS */
    svg {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

body {
    font-family: "GenWanMinJP", sans-serif;
    background-color: #fff;
    color: #333;
    min-height: 100vh;
}



#back-to-home:hover {
    background-color: rgba(196, 168, 146, 0.2);
    -webkit-box-shadow: 0 0 0.05rem rgba(196, 168, 146, 0.5);
    box-shadow: 0 0 0.05rem rgba(196, 168, 146, 0.5);
}

/* Active state for touch devices */
#back-to-home:active {
    background-color: rgba(196, 168, 146, 0.3);
    -webkit-box-shadow: 0 0 0.05rem rgba(196, 168, 146, 0.7);
    box-shadow: 0 0 0.05rem rgba(196, 168, 146, 0.7);
}

/* --- 页面结构样式 (使用 rem 单位) --- */
.container {
    display: grid;
    grid-template-columns: 0.43rem 1fr 0.43rem;
    grid-template-rows: 0.525rem 13.39rem 0.86rem 0.525rem;
    width: 100%;
    height: 100vh;
    /* 添加高度使1fr能够正常工作 */
    overflow-x: hidden;

    /* 防止意外横向滚动 */
    /* 网格元素样式 */
    .grid-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 中间内容区域样式 */
    .content-center {
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* 确保内容区域占满整个空间 */
        height: 100%;
        border: 1px solid #c4a892;

        .image {
            width: 5.35rem;
            height: 5.42rem;
            position: relative;
            /* 这很重要，使其成为绝对定位的参考点 */
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            /* 水平居中 */
            margin-bottom: 1.07rem;
            margin-top: 1.07rem;

            /* 添加一些底部间距 */
        }

        .content-text {
            display: flex;
            flex-direction: row-reverse;
            margin-bottom: 1.41rem;

            img {
                width: 2.96rem;
                height: 4.42rem;
            }
        }
    }

    .main-image {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .test {
        width: 0.28rem;
        height: 3.52rem;
        position: absolute;
        object-fit: cover;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        /* 这是实现完美居中的关键 */
        z-index: 999;
    }

    .header-center {
        border: 1px solid #c4a892;
        box-sizing: content-box;
        border-top: none;
        border-bottom: none;
    }

    .content-left {
        border: 1px solid #c4a892;
        box-sizing: content-box;
        border-left: none;
        border-right: none;
    }

    .content-right {
        border: 1px solid #c4a892;
        box-sizing: content-box;
        border-left: none;
        border-right: none;
    }

    .content-center h1 {
        font-size: 0.4rem;
        margin-bottom: 0.3rem;
        color: #333;
    }

    .content-center p {
        font-size: 0.28rem;
        margin-bottom: 0.2rem;
        color: #666;
        max-width: 80%;
    }

    /* 底部区域样式 */
    .footer-center {
        background-color: #F3EEE9;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #c4a892;
        border-bottom: none;
        border-top: none;
        font-weight: bold;
        font-size: 0.28rem;
        cursor: pointer;
        -webkit-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
        color: #70543D!important; 
        /* border: 0.01rem solid #C4A892; */
    }

    .footer-center:hover {
        background-color: rgba(196, 168, 146, 0.1);
    }

    .footer-center:active {
        background-color: rgba(196, 168, 146, 0.2);
    }

    .footer-center p {
        font-size: 0.24rem;
        color: #777;
    }

    .bottom-left {
        border-top: 1px solid #c4a892;
        box-sizing: content-box;
        /* border-left: none;
        border-bottom: none; */
    }

    .bottom-center {
        border: 1px solid #c4a892;
        /* box-sizing:content-box; */
        /* border-left:none;
            border-bottom: none; */
            border-bottom: none; 
    }

    .bottom-right {
        border-top: 1px solid #c4a892;
        box-sizing: content-box;
      
    }
}

/* 顶部展示区域 */
.status-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 24px;
}

.time {
    font-size: 16px;
    font-weight: bold;
}

.status-icons {
    display: flex;
    align-items: center;
}

.signal {
    display: flex;
    align-items: flex-end;
    height: 16px;
    margin-right: 6px;
}

.signal-bar {
    width: 3px;
    background-color: black;
    margin-right: 1px;
}

.signal-bar:nth-child(1) {
    height: 5px;
}

.signal-bar:nth-child(2) {
    height: 8px;
}

.signal-bar:nth-child(3) {
    height: 11px;
}

.signal-bar:nth-child(4) {
    height: 14px;
}

.wifi {
    position: relative;
    width: 18px;
    height: 16px;
    margin-right: 6px;
}

.wifi-arc {
    position: absolute;
    border: 2px solid black;
    -webkit-border-top-left-radius: 100px;
    -webkit-border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom: none;
    width: 14px;
    height: 7px;
    bottom: 0;
    left: 0;
}

.wifi-arc:nth-child(2) {
    width: 8px;
    height: 4px;
    bottom: 0;
    left: 3px;
}

.wifi-arc:nth-child(3) {
    width: 2px;
    height: 2px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    bottom: 0;
    left: 6px;
}

.battery {
    width: 24px;
    height: 12px;
    border: 1px solid black;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
}

.battery:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 4px;
    background-color: black;
    right: -3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.battery-level {
    height: 8px;
    width: 80%;
    margin-left: 2px;
    background-color: black;
}

.container-question {
    display: grid;
    grid-template-columns: 0.43rem 1fr 0.43rem;
    grid-template-rows: 0.525rem  1.26rem 2.51rem 2.68rem 6.94rem 0.86rem 0.525rem;
    width: 100%;
    height: 100vh;
    /* 添加高度使1fr能够正常工作 */
    overflow-x: hidden;

    /* 防止意外横向滚动 */
    /* 网格元素样式 */
    .grid-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .title-center {
        display: flex;
        font-size: 0.21rem;
        justify-content: center;
        flex-direction: column;
        border: 1px solid #c4a892;
        border-bottom: none;
        color: #c4a892;

        .step {
            width: 100%;
            height: 0.35rem;
            background: #e6dfd9;
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .step .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background-color: #c4a892;
            -webkit-transition: width 0.5s ease;
            transition: width 0.5s ease;
            -webkit-border-top-right-radius: 0.1rem;
            -webkit-border-bottom-right-radius: 0.1rem;
            border-top-right-radius: 0.1rem;
            border-bottom-right-radius: 0.1rem;
            -webkit-box-shadow: 0 0 0.05rem rgba(196, 168, 146, 0.7);
            box-shadow: 0 0 0.05rem rgba(196, 168, 146, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step .progress-bar .progress-text {
            color: #70543d;
            font-size: 0.18rem;
            font-weight: bold;
            -webkit-text-shadow: 0 0 0.02rem rgba(255, 255, 255, 0.7);
            text-shadow: 0 0 0.02rem rgba(255, 255, 255, 0.7);
            white-space: nowrap;
        }

        .title {
            flex: 1;
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            padding: 0 0.1rem;

            /* height: 0.46rem; */
        }

        .serial-number {
            flex: 1;
            display: flex;
            width: 100%;
            align-items: center;
            padding: 0 0.1rem;
            justify-content: space-between;
            /* height: 0.46rem; */
        }
    }

    .title-left {
        border-top: 1px solid #c4a892;
       
    }

    .title-right {
        border-top: 1px solid #c4a892;
     
    }

    .question-title-center {
        display: flex;
        flex-direction: column;
        color: #c4a892;
        border: 1px solid #c4a892;
        border-bottom: none;
        /* border-bottom: none;
        border-top: none; */
    }

    .question-title-left {
        border-top: 1px solid #c4a892;
       
    }

    .question-title-right {
        border-top: 1px solid #c4a892;
      
    }

    .question-title-center {
        padding: 0 0.27rem;
    }

    .question-title {
        font-size: 0.87rem;
        font-weight: 600;
        width: 100%;
        margin-bottom: 0.1rem;
    }

    .question-sub-title {
        font-size: 0.28rem;
        width: 100%;
    }

    .question-center {
        color: #70543D!important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        letter-spacing: 0;
        font-size: 0.4rem;
        padding: 0 0.32rem;
        border: 1px solid #c4a892;
        border-bottom: none;
        white-space: pre-line;
    }

    .question-left {
        border-top: 1px solid #c4a892;
       
    }

    .question-right {
        border-top: 1px solid #c4a892;
       
    }

    .answer-center {
        display: flex;
        flex-direction: column;
        width: 100%;
        font-size: 0.28rem;
        color: #c4a892;
        gap: 0.94rem;
        border: 1px solid #c4a892;
        border-bottom: none;

        .answer {
            width: 100%;
            padding: 0 0.07rem;
            height: 0.62rem;
            line-height: 0.62rem;
            border: 1px solid #c4a892;
            border-left: none;
            border-right: none;
            cursor: pointer;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .answer:hover {
            background-color: rgba(196, 168, 146, 0.1);
        }

        .answer:active {
            background-color: rgba(196, 168, 146, 0.2);
        }

        .answer.selected {
            background-color: rgba(196, 168, 146, 0.3);
            font-weight: bold;
            color: #70543d;
            -webkit-box-shadow: 0 0 0.05rem rgba(196, 168, 146, 0.5);
            box-shadow: 0 0 0.05rem rgba(196, 168, 146, 0.5);
        }
    }

    .answer-left {
        border-top: 1px solid #c4a892;
      
    }

    .answer-right {
        border-top: 1px solid #c4a892;
       
    }

    .footer-center {
        font-size: 0.28rem;
        display: flex;
        color: #c4a892;

        .button {
            border: 1px solid #c4a892;
            flex: 1;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            -webkit-transition: background-color 0.3s ease;
            transition: background-color 0.3s ease;
        }
        .button:nth-child(1) {
            border-right: none;
        }
        .button:hover {
            background-color: rgba(196, 168, 146, 0.1);
        }

        .button:active {
            background-color: rgba(196, 168, 146, 0.2);
        }
    }

    .footer-left {
        border: 1px solid #c4a892;
        border-right: none;
        border-left: none;
    }

    .footer-right {
        border: 1px solid #c4a892;
        border-right: none;
        border-left: none;
    }

   .bottom-center {
        border: 1px solid #c4a892;
        border-bottom: none;
        border-top: none;
    } 
    .header-center{
        border: 1px solid #c4a892;
        border-bottom: none;
        border-top: none;
    }
 
}

.container-result {
    display: grid;
    grid-template-columns: 0.43rem 6.68rem 0.43rem;
    grid-template-rows: 0.45rem 1.1rem 8.34rem 3.87rem 2.04rem 0.43rem;
    width: 100%;
    height: 100vh;
    /* 添加高度使1fr能够正常工作 */
    overflow-x: hidden;

    /* 防止意外横向滚动 */
    /* 网格元素样式 */
    .grid-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .title-center {
        display: flex;
        font-size: 0.21rem;
        justify-content: center;
        flex-direction: column;
        border: 1px solid #c4a892;
        color: #c4a892;

        .step {
            width: 100%;
            height: 0.35rem;
            background: #e6dfd9;
            flex: 1;
        }

        .title {
            flex: 1;
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            padding: 0 0.1rem;
            line-height: 0.46rem;
        }

        .description {
            flex: 1;
            display: flex;
            width: 100%;
            font-size: 0.22rem;
            align-items: center;
            line-height: 0.46rem;
            padding: 0 0.11rem;
            justify-content: space-between;
            text-wrap: nowrap;
            overflow: hidden;
            /* height: 0.46rem; */
        }
    }

    .result-title-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        .result-title-centent {
            height: 2rem;
            width: 100%;
            display: flex;
            text-wrap: nowrap;
            color: #70543d;
            padding: 0 0.25rem;

            border: 1px solid #c4a892;
            border-top: none;
        }
    }

    .result-title-left {
        border: 1px solid #c4a892;
        border-right: none;
        border-left: none;
        border-top: none;
    }

    .guide-title-right {
        border: 1px solid #c4a892;
        border-right: none;
        border-left: none;
        border-top: none;
    }

    .title-left {
        border: 1px solid #c4a892;
        border-right: none;
        border-left: none;
    }

    .content-right {
        border: 1px solid #c4a892;
        border-right: none;
        border-left: none;
    }

    .result-title {
        display: flex;
        align-items: center;
        font-size: 1.36rem;
        width: 5.61rem;
        font-weight: 600;
        letter-spacing: 0;
    }

    .result-sub-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        font-weight: 600;
        width: 0.67rem;
        text-wrap: wrap;
        letter-spacing: 0;
    }

    .result-detail {
        height: 4.75rem;
        display: flex;
        flex-direction: row;
        width: 100%;
        border: 1px solid #c4a892;
        border-top: none;

        .result-description {
            width: 0.87rem;
            font-size: 0.37rem;

            display: flex;
            align-items: center;
            justify-content: center;
            color: #70543d;

            border-right: 1px solid #c4a892;

            span {
                width: 0.37rem;
                display: inline-block;
            }
        }

        .result-scope {
            flex: 1;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            height: 100%;

            .scope {
                width: 0.49rem;
                font-size: 0.24rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                .scope-line {
                    height: 0.06rem;
                    width: 100%;
                    background: #c4a892;
                    margin-bottom: 0.2rem;
                }

                .scope-step {
                    margin-bottom: 0.1rem;
                }

                .circle-progress {
                    width: 0.55rem;
                    height: 0.55rem;
                    position: relative;
                }

                .circular-chart {
                    display: block;
                    width: 100%;
                    height: 100%;
                    -webkit-transform: translateZ(0);
                    transform: rotate(90deg);
                }

                .circle-bg {
                    fill: none;
                    stroke: #f2ece6;
                    stroke-width: 3.8;
                }

                .circle {
                    fill: none;
                    stroke-width: 3.8;
                    stroke: #c9161f;
                    stroke-linecap: round;
                    -webkit-transform: rotate(-90deg);
                    transform: rotate(-90deg);
                    -webkit-transform-origin: 50% 50%;
                    transform-origin: 50% 50%;
                }

                .scope-description {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    margin-top: 0.1rem;
                    border: 1px solid #c4a892;
                    padding: 0.05rem 0.1rem;

                    .scope-description-text {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        text-align: center;
                        color: #70543d;
                        margin-bottom: 0.1rem;
                    }

                    .scope-description-star {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                    }

                    .star-rating {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                    }

                    .star {
                        font-size: 0.2rem;
                        line-height: 0.25rem;
                    }

                    .star.filled {
                        color: #c9161f;
                    }

                    .star.empty {
                        color: #f2ece6;
                    }
                }
            }
        }
    }

    .scope-detail {
        height: 1.59rem;
        width: 100%;
        display: flex;
        border: 1px solid #c4a892;
        border-top: none;

        .scope-percentage {
            font-size: 0.6rem;
            /* writing-mode: vertical-rl; */
            /* -webkit-writing-mode: vertical-rl; */

            height: 100%;
            color: #c9161f;
            width: 0.87rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-right: 1px solid #c4a892;
        }

        .scope-analyze {
            flex: 1;
            display: flex;
            flex-direction: column;
            font-size: 0.24rem;
            border-right: 1px solid #c4a892;
            padding: 0.17rem;
            color: #70543d;
            line-height: 0.46rem;
            text-align: center;

            .scope-analyze-title {
                line-height: 0.46rem;
            }

            .scope-analyze-center {
                position: relative;
                height: 0.46rem;

                .scope-analyze-symbol {
                    position: absolute;
                    font-size: 0.24rem;
                    top: 50%;
                    left: 50%;
                    -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -60%);
                    color: #70543D;
                }

                .scope-analyze-english {
                    position: absolute;
                    font-family: ImperialScript;
                    font-size: 0.23rem;
                    top: 50%;
                    left: 50%;
                    -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -44%);
                    color: #c9161f;
                }
            }

            .scope-analyze-description {
                font-size: 0.24rem;
                line-height: 0.36rem;
            }
        }

        .scope-exponent {
            width: 1.41rem;
            font-size: 0.21rem;
            position: relative;

            .scope-exponent-title {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 0.35rem;
                font-size: 0.21rem;
                line-height: 0.21rem;
                background-color: #c4a892;
                text-align: center;
                color: #ffffff;
            }

            .scope-exponent-number {
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 0.98rem;
                height: 1.06rem;
                /* flex: 1; */
                position: absolute;
                vertical-align: bottom;
                color: #c9161f;
                position: relative;
                left: -0.07rem;
                top: 0.15rem;

                span {
                    display: inline-block;
                    position: absolute;
                    font-size: 0.2rem;
                    right: 0;
                    bottom: 0.2rem;
                }
            }
        }
    }

    .guide-center {
        display: flex;
        justify-content: unset;
        align-items: unset;

        .other-people {
            display: flex;
            width: 3.81rem;
            flex-direction: row-reverse;
            padding: 0.22rem 0.47rem;
            border: 1px solid #c4a892;
            border-top: none;
            border-bottom: none;
            /* align-items: center; */
            justify-content: center;

            .other-people-title {
                margin-left: 0.12rem;
                position: relative;
                color: #FFF;
                div {
                    font-size: 0.17rem;
                    width: 0.29rem;
                    display: flex;
                    position: absolute;

                    /* writing-mode: vertical-rl; */
                    /* -webkit-writing-mode: vertical-rl; */
                    text-align: center;
                    justify-content: center;
                    flex-direction: column;
                    align-items: center;
                    padding: 0.07rem 0 0.31rem 0;
                    background-color: #c4a892;

                  
                }
                .other-people-english {
                    position: absolute;
                    font-family: ImperialScript;
                    font-size: 0.27rem;
                    /* transform: rotate(90deg); */
                    top: 1.4rem;
                    writing-mode: vertical-rl;
                    color: #c9161f;
                }
                /* .other-people-english {
            position: absolute;
            font-family: ImperialScript;
            font-size: 0.27rem;
            transform: rotate(90deg);
           

            color: #c9161f;
          } */
            }

            .other-people-description {
                display: flex;
                flex-direction: row-reverse;
                font-size: 0.18rem;

                div {
                    span {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        text-align: center;
                        width: 0.42rem;
                        padding: 0 0.11rem;
                        border-left: 1px solid #70543d;
                    }
                }

                /* width: ; */
            }
        }

        .guide {
            flex: 1;
            display: flex;
            flex-direction: row-reverse;
            padding-top: 0.22rem;
            border: 1px solid #c4a892;
            border-top: none;
            border-bottom: none;
            border-left: none;
            justify-content: center;

            .guide-title {
                margin-left: 0.12rem;
                position: relative;
                color: #FFF;

                div {
                    font-size: 0.17rem;
                    position: absolute;
                    width: 0.29rem;
                    display: flex;
                    /* writing-mode: vertical-rl; */
                    /* -webkit-writing-mode: vertical-rl; */
                    text-align: center;
                    justify-content: center;
                    align-items: center;
                    padding: 0.07rem 0 0.31rem 0;
                    background-color: #c4a892;
                }

                .guide-title-english {
                    position: absolute;
                    font-family: ImperialScript;
                    font-size: 0.27rem;
                    top: 0.98rem;
                    writing-mode: vertical-rl;
                    color: #c9161f;
                }
            }

            .guide-title-description {
                display: flex;
                flex-direction: row-reverse;
                font-size: 0.18rem;

                div {
                    span {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        text-align: center;
                        /* writing-mode: vertical-rl; */
                        /* -webkit-writing-mode: vertical-rl; */
                        /* width: 0.18rem; */
                        width: 0.42rem;
                        padding: 0 0.11rem;
                        border-left: 1px solid #70543d;
                    }
                }
            }
        }
    }

    .footer-center {
        display: flex;
        flex-direction: row;
        border: 1px solid #c4a892;
        align-items: center;
        justify-content: center;
        .footer-container {
            display: flex;
            flex-direction: row;
            gap: 0.3rem;

            .footer-title-container {
                flex: 1;
                display: flex;
                padding: 0 0;
             
                .footer-title {
                    font-size: 0.17rem;
                    width: 0.29rem;
                    height: 1.02rem;
                    display: flex;
                    text-align: center;
                    justify-content: center;
                    align-items: center;
                
                    background-color: #c4a892;
                    color: #FFFFFF;
    
                    span{
                        width: 0.17rem;
                    }
                }
    
                .footer-sub-title {
                    display: flex;
                    flex-direction: row-reverse;
                    font-size: 0.17rem;
                 
                    margin-right: 0.09rem;
                    margin-left: 0.2rem;
                    text-align: center;
                    align-items: flex-end;
                    color: #C4A892;
                    span{
                        width: 0.17rem;
                    }
                }
    
                img {
                    width: 1.12rem;
                    height: 1.09rem;
                }
            }
        }
       
    }

    .header-center {
        border: 1px solid #c4a892;
        box-sizing: content-box;
        border-top: none;
        border-bottom: none;
    }

    .footer-left {
        border: 1px solid #c4a892;
        box-sizing: content-box;
        border-right: none;
        border-left: none;
    }

    .footer-right {
        border: 1px solid #c4a892;
        box-sizing: content-box;
        border-right: none;
        border-left: none;
    }

    .bottom-center {
        border: 1px solid #c4a892;
        border-top: none;
        border-bottom: none;
        display: flex;
        justify-content: center;
        font-size: 0.18rem;
        align-items: center;
        color: #C4A892;
    }
}