v-cloak {
    display: none;
}
/* 默认字体大小，适用于移动端 */
html {
    font-size: calc(100vw / 3.75); /* 基于 375px 设计图宽度 */
}

/* 当屏幕宽度大于 768px 时使用固定字体大小 */
@media (min-width: 768px) {
    html {
        font-size: 160px;
    }
}

/* 当屏幕宽度大于 1024px 时，可以设置更大的字体大小 */
@media (min-width: 1024px) {
    html {
        font-size: 180px; /* 可根据需要调整 */
    }
}

body {
    margin: 0;
    padding: 0;
    font-size: 0.14rem;
    background-color: #ffffff;
}
.scan-container {
    height: calc(100vh - 1.02rem);
    padding: 1.02rem 0.16rem 0.36rem;
    box-sizing: border-box;
    overflow-y: auto;
}
.scan-step {
    margin: 0 0 0.2rem;
}
.question-title {
    margin-bottom: 0.2rem;
    font-size: 0.16rem;
    font-weight: 510;
}
.radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.12rem;
    padding: 0.16rem;
    border-radius: 0.12rem;
    background-color: rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}
.radio-item-active {
    background-color: rgba(111, 186, 44, 0.16);
}
.radio-item .van-radio__label {
    color: rgba(0, 0, 0, 0.3);
}
.radio-item-active .van-radio__label {
    color: #6FBA2C;
}
.bottom-button {
    position: fixed;
    bottom: 0;
    margin: 0 0.16rem;
    padding-bottom: 0.2rem;
    width: calc(100% - 0.32rem);
    background-color: #fff;
}

.grt-btn {
    height: 0.52rem !important;
    font-size: 0.16rem !important;
    color: #6FBA2C !important;
    border-radius: 0.12rem !important;
    background-color: #ffffff !important;
    border-color: #6FBA2C !important;
}
.grt-btn-submit {
    color: #fff !important;
    background-color: #6FBA2C !important;
    border-color: #6FBA2C !important;
}
.scan-form {
    flex-direction: column;
}
.scan-form.van-cell--required::before {
    left: 0;
}
.scan-form .van-field__label {
    padding-left: 8px;
    width: 100%;
    font-size: 0.14rem;
    color: rgba(0, 0, 0, 0.9)
}
.scan-form .van-cell__value {
    margin-top: 0.08rem;
    padding: 0 0.16rem;
    font-size: 0.14rem;
    line-height: 0.44rem;
    border: 1px solid #CDD4D9;
    border-radius: 0.06rem;
}
.scan-form.van-cell {
    padding: 10px 0;
}
.scan-form.van-cell::after {
    border-bottom: none;
}
.scan-container-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 0.16rem;
    font-weight: 510;
    color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    transform: translateY(-10%);
}
.scan-container-result .result-message {
    margin-bottom: 0.16rem;
    padding-top: 0.16rem;
    color: rgba(0, 0, 0, 0.9);
}
.scan-container-header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 0.16rem 0.2rem;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 1;
}
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.1rem;
    height: 0.52rem;
}
.header-nav .logo img {
    width: 1.14rem;
}
.language-list {
    position: relative;
    padding-left: 0.2rem;
    width: 30%;
    height: 0.52rem;
    line-height: 0.52rem;
    cursor: pointer;
    text-align: right;
    z-index: 2;
}
.language-list .language-img {
    margin-right: 0.05rem;
    position: relative;
    top: 0.04rem;
    width: 0.18rem;
    height: 0.18rem;
}
.language-list .current-text {
    color: #333333;
}
.language-list .icons-down,
.language-list .icons-up {
    display: inline-block;
    position: relative;
    top: 0.05rem;
    width: 0.2rem;
    height: 0.2rem;
    background-image: url(../images/icons-down.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.language-list .icons-up {
    background-image: url(../images/icons-up.png);
}
.language-list ul {
    position: absolute;
    top: 0.4rem;
    right: 0;
    min-width: 1.4rem;
    max-height: 2rem;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
    border-radius: 0.08rem;
    box-sizing: border-box;
    visibility: visible;
    text-align: left;
    z-index: 2;
    background-color: #fff;
}
.language-list ul li {
    padding: 0 0.12rem;
    height: 0.44rem;
    line-height: 0.44rem;
    color: #666666;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.language-list ul li.active span {
    color: #6FBA2C;
}
.mb-30 {
    margin-bottom: 0.3rem;
}