body{
    padding: 0;
    margin: 0;
    position: relative;
}

:root{
    --page-width:1200px;
    --primary-color:#ff0000;
    --second-color:rgba(255,0,0,0.1);
    --banner-space:200px;
    --radius:10px;
}

ul,ol{
    list-style-type: none;
    list-style-position: inside;
    padding-inline-start: 0;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-start{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flex-end{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex1{
    width: 0;
    flex: 1;
}
.gap-4{
    gap: 4px;
}
.gap-6{
    gap: 6px;
}
.gap-8{
    gap: 8px;
}
.gap-10{
    gap:10px;
}
.gap-16{
    gap: 16px;
}
.gap-24{
    gap: 24px;
}
.gap-30{
    gap: 30px;
}
.red{
    color: var(--primary-color) !important;
}
.c-999{
    color: #999999;
}
.c-orange{
    color: #FF6010;
}
.c-blue{
    color: #1677FF;
}
.c-blue2{
    color: #00B9FF;
}
.c-red{
    color: #ff0000;
}
.c-yellow{
   color: #FF8F1F;
}
.c-purple{
    color: #8016FF;
}
.b-red{
    background: rgba(255,0,0,0.1);
    border-radius: 4px;
    padding: 3px 6px;
}
.b-orange{
    background: rgba(255,96,16,0.1);
    border-radius: 4px;
    padding: 3px 6px;
}
.b-blue{
    background: rgba(22,119,255,0.1);
    border-radius: 4px;
    padding: 3px 6px;
}
.b-blue2{
    background: rgba(0,185,255,0.1);
    border-radius: 4px;
    padding: 3px 6px;
}
.b-yellow{
    background: rgba(255,143,31,0.1);
    border-radius: 4px;
    padding: 3px 6px;
}
.b-purple{
    background: rgba(128,22,255,0.1);
    border-radius: 4px;
    padding: 3px 6px;
}
.bg-white{
    background: #FFFFFF;
}
.text{
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    font-style: normal;
}
.a-top{
    align-items: flex-start;
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 向上移动10px */
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50px); }
}




.nav-bar{
    width: 100%;
    background: #F7F8FC;
}
.nav-bar .content{
    width: var(--page-width);
    height: 30px;
    margin: 0 auto;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    line-height: 30px;
    text-align: left;
    font-style: normal;
}
.nav-bar .content .line-h{
    width: 1px;
    height: 10px;
    background: #999999;
}

.nav-bar .content a{
    text-decoration: none;
}

.nav-bar .content a:hover{
    text-decoration: underline;
}
.nav-bar .page-nav{
    background: #FFFFFF;
    padding-top: 16px;
}
.page-nav .search-bar,.tab-bar{
    width: var(--page-width);
    margin: 0 auto;
}

.page-container{
    width: var(--page-width);
    padding-bottom: 48px;
    margin: 0 auto;
    position: relative;
}

.banner-bar{
    width: 100%;
    background: #FFFFFF;
}
.logo-in{
    width: 124px;
    height: 36px;
}
.icon-cart{
    width: 16px;
    height: 16px;
}

.banner-bar .search-bar{
    width: var(--page-width);
    height: 84px;
    margin: 0 auto;
}
.search-bar .banner-space{
    width: var(--banner-space);
}
.cart-btn{
    width: 100%;
    height: 36px;
    background: var(--second-color);
    border-radius: var(--radius);
    cursor: pointer;
}
.search{
    height: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--primary-color);
    overflow: hidden;
}
.search .btn-search{
    width: 64px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 0px var(--radius) var(--radius) 0px;
    cursor: pointer;
}
.search .search-input{
    width: 100%;
    height: 34px;
    border: none;
    outline: none;
    border-radius: var(--radius);
    padding: 0 20px;
}
.btn-search .search-icon{
    width: 16px;
    height: 16px;
}

.tab-bar{
    height: 38px;
}
.tab-bar .banner-space{
    width: var(--banner-space);
}
.tab-bar .tab-item{
    cursor: pointer;
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    line-height: 38px;
    text-align: left;
    font-style: normal;
}
.tab-item a{
    color: #333333;
    text-decoration: none;
}
.tab-bar .tab-item a:hover{
    color: var(--primary-color);
}
.arrow-menu-bar{
    position: relative;
}
.icon-arrow-down{
    width: 16px;
    height: 16px;
}
.arrow-menu-bar:hover .arrow-menu{
    display: block;
}
.arrow-menu{
    display: none;
    position: absolute;
    top: 16px;
    background: #FFFFFF;
    box-shadow: 0px 6px 20px 0px rgba(0,0,0,0.08);
    border-radius: 10px;
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    text-align: left;
    font-style: normal;
    z-index: 999;
}
.arrow-menu li{
    padding: 0 27px;
    line-height: 38px;
    display: block;
}
.arrow-menu a{
    text-decoration: none;
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    text-align: left;
    font-style: normal;
    white-space: nowrap;
}
.arrow-menu a:hover{
    color: var(--primary-color);
}
.type-bar{
    position: relative;
}
.type-bar-menu{
    width: 1000px;
    /* width: calc(var(--page-width)-200); */
    height: 450px;
    position: absolute;
    left: 200px;
    /* top:128px; */
    top:0;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius);
    z-index: 999;
    display: none;
}
.type-menu-list{
    height: 100%;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 16px;
}
.type-menu-item{
    cursor: pointer;
    text-align: center;
}
.tm-img{
    width: 90px;
    height: 90px;
    border-radius: 6px;
    object-fit: cover;
    overflow: hidden;
}
.tm-name{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: center;
    font-style: normal;
    margin-top: 6px;
}
.type-bar .banner-space{
    width: var(--banner-space);
    height: 450px;
    background: #F7F8FC;
    border-radius: 10px;
    position: relative;
}
.type-list{
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}
.type-list::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.type-item{
    height: 62px;
    cursor: pointer;
    padding: 0 16px;
}
.t-img{
    width: 16px;
    height: 16px;
}
.t-name{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: left;
    font-style: normal;
}
.type-item:hover{
    background-color: rgba(255, 255, 255, 0.5);
}
.type-item:hover .t-name{
    color: var(--primary-color);
}
.arrow-right{
    width: 16px;
    height: 16px;
}
.sub-type a{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-decoration: none;
}
.sub-type a:hover{
    text-decoration: underline;
}
.banner{
    width: 734px;
    height: 450px;
    overflow: hidden;
    margin-left: 216px;
}
.swiper-container{
   position: relative;
}
.banner .swiper-wrapper{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.banner img{
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}
.head-info{
    margin: 16px;
}
.head-info .avatar{
    width: 50px;
    height: 50px;
}
.head-info .info{
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: left;
    font-style: normal;
}
.head-info .wecome{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 10px;
    color: #333333;
    line-height: 14px;
    text-align: left;
    font-style: normal
}
.btn-info{
    margin: 0 16px;
}

.btn-login{
    height: 32px;
    background:var(--primary-color);
    border-radius: 6px;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    font-style: normal;
    cursor: pointer;
}
.btn-register{
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: var(--primary-color);
    line-height: 32px;
    text-align: center;
    font-style: normal;
    cursor: pointer;
}
.dash{
    margin: 16px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.pttz{
    width: 60px;
    height: 14px;
    margin-left: 16px;
    margin-bottom: 6px;
}
.tz-list{
    margin: 0 16px;
    height: 104px;
    overflow: hidden;
}
.tz-item{
    width: 100%;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    text-align: left;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-left: 10px;
}
.tz-item a{
    text-decoration: none;
    color: #333333;
}
.tz-item a:hover{
    text-decoration: underline;
}
.tz-item::before{
   content: '';
   width: 6px;
   height: 6px;
   background: #CCCCCC;
   border-radius: 6px;
   top: calc(50% - 3px);
   left: 0;
   position: absolute;
}
.right-img-box{
    margin: 0 16px;
}
.right-img{
    height: 64px;
    object-fit: contain;
}

.gg{
    margin-top: 16px;
}

.gg-item{
    width: 100%;
    height: 106px;
    position: relative;
    overflow: hidden;
}
.gg-item-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    position: absolute;
}
.gg-text{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.gg-title{
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    line-height: 28px;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.08);
    text-align: left;
    font-style: normal;
    margin-top: 24px;
    margin-left: 24px;
}
.gg-desc{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 13px;
    color: #666666;
    line-height: 18px;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.08);
    text-align: left;
    font-style: normal;
    margin-top: 12px;
    margin-left: 24px;
}

.title-bar{
    padding: 48px 0;
    text-align: center;
}
.title-bar .title{
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 30px;
    color: rgba(0,0,0,0.85);
    line-height: 42px;
    text-align: center;
    font-style: normal;
    animation: jump 0.5s 1; /* 0.5秒的动画持续时间，1次播放，交替方向 */
}
.title-bar .subtitle{
    margin-top: 24px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #999;
    line-height: 26px;
    text-align: center;
    font-style: normal;
    animation: jump 0.5s 1;
}

.design-container{
    position: relative;
    /* height: 600px; */
}
.design-container .design-title-bar{
    width: 100%;
    height: 82px;
    overflow: hidden;
    position: relative;
    margin-top: 24px;
}
.design-container >div:first-child .design-title-bar{
    margin-top: 0;
}
.design-title-bar .title-img{
    width: 100%;
    height: 82px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.design-title-text{
    width: 100%;
    height: 82px;
    position: absolute;
    top: 0;
    left: 0;
}
.design-title{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    line-height: 34px;
    text-align: left;
    font-style: normal;
    margin-left: 24px;
}
.tip-item{
    width: fit-content;
    height: 24px;
    border-radius: 4px;
}
.tip-item img{
    width: 16px;
    height: 16px;
}
.more{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    line-height: 20px;
    text-align: center;
    font-style: normal;
    margin-right: 250px;
    cursor: pointer;
}
.more img{
    width: 16px;
    height: 16px;
}

.goods-list{
    background: #F7F8FC;
    border-radius: 0px 0px 10px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    padding:24px;
}
.goods-item{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.goods-img{
    width: 270px;
    height: 270px;
    /* height: fit-content; */
    object-fit: cover;
    border-radius: var(--radius);
    overflow: hidden;
}
.goods-name{
    margin-top: 16px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    height: 56px;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    overflow: hidden;
}
.goods-desc{
    margin-top: 6px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: center;
    font-style: normal;
}
.goods-price{
    margin-top: 16px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 18px;
    color: #FF0000;
    line-height: 28px;
    text-align: center;
    font-style: normal;
}
.goods-price span{
    font-size: 14px;
}
.design-slide-box{
    /* position: -webkit-sticky; */
    position: absolute;
    width: 128px;
    /* height: 184px; */
    background: #FFFFFF;
    box-shadow: 0px 6px 20px 0px rgba(0,0,0,0.08);
    border-radius: 10px;
    top: 0px;
    left: -140px;
    z-index: 2;
}

.design-slide-item{
    height: 44px;
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    line-height: 44px;
    text-align: center;
    font-style: normal;
    cursor: pointer;
}
.design-slide-item.active,
.design-slide-item:hover{
    color: var(--primary-color);
}
.scene-select-bar{
    justify-content: flex-start;
    margin: 0 94px 0;
    width: calc(100% - 188px);
    overflow: auto;
    box-sizing: border-box;
}

/* 滚动条美化 */
.scene-select-bar::-webkit-scrollbar {
    height: 6px;
}

.scene-select-bar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.scene-select-bar::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ddd 0%, #ddd 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.scene-select-bar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ddd 0%, #ddd 100%);
}

/* Firefox 滚动条 */
.scene-select-bar {
    scrollbar-width: thin;
    scrollbar-color: #ddd #f1f1f1;
}

.s-select-item{
    flex-shrink: 0;
    width: 112px;
    height: 74px;
    background: #F7F8FC;
    border-radius: 10px;
    text-align: center;
    padding: 13px;
    cursor: pointer;
}

.s-select-item img{
    width: 36px;
    height: 36px;
}
.s-select-item .s-name{
    margin-top: 6px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    text-align: center;
    font-style: normal;
}

.s-select-item.active{
    background: rgba(255,0,0,0.1);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
   
}
.s-select-item.active .s-name{
    color: var(--primary-color);
}

.scene-list{
    max-height: 552px;
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px;
}
.scene-list .empty{
    color: #999;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 32px 0;
    text-align: center;
    grid-column: 1 / -1;
}
.scene-item{
    height: 268px;
    background: #F7F8FC;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #FFFFFF;
}
.scene-item:hover{
    border: 1px solid #FF0000;
}
.scene-img{
    width: 100%;
    height: 186px;
    object-fit: cover;
}
.s-name{
    margin: 6px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    text-align: left;
    font-style: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em; /* 每行的高度 */
    height: 2.4em; /* 两行的高度 */
}
.s-bottom{
    margin: 6px;
}
.s-price{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 13px;
    color: #FF0000;
    line-height: 18px;
    text-align: left;
    font-style: normal;
}
.s-price span{
    font-size: 18px;
}
.s-cart-img{
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.scene-other{
    width: 100%;
    margin-top: 48px;
}
.scene-other-item{
    width: 100%;
    height: 484px;
    border-radius: var(--radius);
    padding: 24px;
    cursor: pointer;
}

.so-bg1{
    background: linear-gradient( 180deg, #FFE0E0 0%, #FFFFFF 20.37%, #F7F8FC 100%), #FFFFFF;
}
.so-bg2{
    background: linear-gradient( 180deg, #FDEAD7 0%, #FFFFFF 20.37%, #F7F8FC 100%), #FFFFFF;
}
.so-bg3{
    background: linear-gradient( 180deg, #DFFDE4 0%, #FFFFFF 19.81%, #F7F8FC 100%), #FFFFFF;
}
.so-title-bar .more{
    margin-right: 0 !important;
}
.so-title{
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 24px;
    color: #333333;
    line-height: 34px;
    text-align: left;
    font-style: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em; /* 每行的高度 */
    max-height: 2.4em; /* 两行的高度 */
}
.so-list{
    width: 100%;
    margin-top: 8px;
}
.so-item{
    width: 100%;
    height: 136px;
    margin-top: 16px;
}
.so-item-img{
    width: 136px;
    height: 136px;
    border-radius: 6px;
    object-fit: cover;
    overflow: hidden;
}
.so-detail{
    flex:1;
    height: 100%;
}
.so-d-name{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: left;
    font-style: normal;
}
.so-d-price{
    margin-top: 16px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 13px;
    color: #FF0000;
    line-height: 18px;
    text-align: left;
    font-style: normal;
}
.so-d-price span{
    font-size: 18px;
}
.factory{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}
.f-item{
    width: 100%;
    height: 216px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.f-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.f-name{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 68px;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
    border-radius: 0px 0px 10px 10px;
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 68px;
    text-align: center;
    font-style: normal;
}

.about{
    align-items: flex-start;
    width: 100%;
    /* height: 296px; */
}
.about-left{
    flex:3;
    background: #F7F8FC;
    border-radius: 10px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    padding: 24px;
}
.a-title{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 20px;
    color: #333333;
    line-height: 28px;
    text-align: left;
    font-style: normal;
}
.a-img{
    width: 24px;
    height: 24px;
}
.a-list-item{
    margin-top: 22px;
}
.about-right{
    flex:1;
}
.about-kf{
    width: 100%;
    height: 64px;
    position: relative;
}
.bg-kf{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.mt-6{
    margin-top: 6px;
}
.mt-8{
    margin-top: 8px;
}
.kf-name{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 13px;
    color: #333333;
    line-height: 18px;
    text-align: left;
    font-style: normal;
}
.kf-value{
    font-family: DIN, DIN;
    font-weight: 500;
    font-size: 20px;
    color: var(--primary-color);
    line-height: 24px;
    text-align: left;
    font-style: normal;
}
.kf-b{
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 16px;
}
.about-qrcode{
    width: 100%;
    height: 146px;
    margin-top: 16px;
    background: #F7F8FC;
    border-radius: 10px;
}
.qr-item{
    text-align: center;
}
.qr-item img{
    width: 76px;
    height: 76px;
    margin: 0 auto;
}
.qr-name{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 12px;
    color: #333333;
    line-height: 18px;
    text-align: center;
    font-style: normal;
}
.qr-desc{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 10px;
    color: #999999;
    line-height: 14px;
    text-align: center;
    font-style: normal;
}
.que-title{
    width: 100%;
    height: 58px;
    background: url('../images/home/bg-wt.png');
    background-size: cover;
    background-position: center;
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color);
    line-height: 26px;
    text-align: left;
    font-style: normal;
}
.que-title img{
    width: 24px;
    height: 24px;
    margin-left: 24px;
}
.que-body{
    background: #F7F8FC;
    padding: 24px;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: left;
    font-style: normal;
}
.footer{
    margin-top: 48px;
    width: 100%;
    height: 63px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    line-height: 20px;
    text-align: center;
    font-style: normal;
}
