﻿:root .theme-red{
    --ow-color:#e1251b;
}

.vee{
    background-color: #fff;
    height: 100%;
    overflow: auto;
    position: absolute;
    width: 100%;
    scroll-behavior:smooth;
    font-family: SimHei;
}
ul{margin: 0;padding: 0;list-style: none;}
a{
    cursor: pointer;
    text-decoration: none;
    display: block;
    user-select: none;
    /* -webkit-tap-highlight-color: rgba(255, 255, 255, 0); */
}
img{width: 100%;display: block;}

.bold{font-weight: bold;}
.refprice{
    text-decoration: line-through;
    color: var(--ow-gray-500);
}
.cost-tag{
    color: var(--ow-color);
    position: relative;
    padding: 0.1rem 0.25rem;
}
.cost-tag::before{
    content: '';
    position: absolute;
    left: 0;top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ow-color);
    opacity: .09;
}

.bc{background-color: #fff;}
.more{color: var(--ow-gray-500)}
.more:hover{color: var(--ow-color)}
.fc{color: var(--ow-color);}
.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    color: var(--ow-gray-800);
}
.ellipsis2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    color: var(--ow-gray-800);
}

/* header */
.header{
    color: var(--ow-gray-800);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 3;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 6px;
}
.header .nav-list {
    background-color: #fff;
}
.header .nav-list .item{
    color: var(--ow-gray-800);
    font-size: 16px;
    border-bottom: 2px solid transparent;
}
.header .nav-list .item:hover{
    color: var(--ow-color);
}
.header .nav-list .current{
    color: var(--ow-color);
    border-bottom:2px solid var(--ow-color);
}
.header .login{
    color: var(--ow-gray-600);
    font-size: 16px;
}
.header .select-box{
    position: relative;
    font-size: 16px;
}
.header .select-list{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translate(0,100%);
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 6px;
    background-color: #fff;
    display: none;
}
.header .select-list .select-item:hover{
    color: var(--ow-color);
}

/* .md{
    position: initial;
} */
.header.md .list-wrap{
    display: block;
    background-color: rgba(0, 0, 0, .2);
}
.header .list-wrap{
    display: none;
    position: fixed;
    top: 0;left: 0;
    bottom: 0;right: 0;
    z-index: 2;
}
.header .close,
.header .menu{
    display: block;
    background-color: #fff;
    color: var(--ow-gray-600);
}
.header .menu .icon{
    border: 1px solid var(--ow-gray-300);
}
@keyframes bc-in {
    from {background-color: rgba(0, 0, 0, 0)}
    to {background-color: rgba(0, 0, 0, .2)}
}
@keyframes bc-out {
    from {background-color: rgba(0, 0, 0, .2)}
    to {background-color: rgba(0, 0, 0, 0)}
}
@keyframes position-in{
    from {transform: translateY(-100%);opacity: 0;}
    to {transform: translateY(0);opacity: 1;}
}
@keyframes position-out{
    from {transform: translateY(0);opacity: 1;}
    to {transform: translateY(-100%);opacity: 0;}
}


.header-img{
    position: relative;
}
.header-img .img{
    /* min-height: 600px; */
    overflow: hidden;
    background-color: var(--ow-gray-200);
}
.header-img .img img{
    height: 600px;
    /* width: auto; */
}
.header-img .text{
    position: absolute;
    top: 0;bottom: 0;
    left: 0;right: 0;
}
.header-img .text .title,
.header-img .text .desc{
    text-align: center;
    letter-spacing: 8px;
    line-height: 1.8;
    color: #fff;
}
.header-img .text .btn{
    color: var(--ow-color);
    background-color: #fff;
    transition: all .2s ease;
}

.block{
    color: var(--ow-gray-800);
}
.block .title{
    position: relative;
    letter-spacing: 4px;
    font-family: SimHei;
}
.block .title::after{
    position: absolute;
    bottom: -14px;
    content: '';
    width: 20%;
    height: 4px;
    background-color: var(--ow-color);
}

.about{
    background-color: #fff;
    box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
    border-radius: 6px;
    overflow: hidden;
}
.about .about-img{
    height: 300px;
}
.about .about-img img{
    width: 100%;
    height: 100%;
}
.about .about-desc{
    line-height: 1.5;
}
.about .about-desc .title{
    position: relative;
}
.about .about-desc .title::after{
    position: absolute;
    left: 0;bottom: -10px;
    content: '';
    width: 6%;
    height: 4px;
    background-color: var(--ow-color);
}
.about .about-desc .btn{
    background-color: var(--ow-color);
    color: #fff;
}

.advantage{
    /* background-color: #EFF5FF; */
    background-color: #f2f2f2;
}
.advantage .advantage-list{
    --ow-columns:12
}
.advantage .advantage-list .advantage-item{
    background-color: #fff;
    transition: all .2s linear;
    border-radius: 10px;
}
.advantage .advantage-list .advantage-item:hover{
    box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
    transform: translate3d(0,-2px,0);
}
.advantage .advantage-list .advantage-item img{
    width: 60px;
    height: 60px;
}
.advantage .advantage-list .advantage-item .desc{
    line-height: 2;
}
.advantage .advantage-list .advantage-item .center{
    text-align: center;
}
.advantage .advantage-list .advantage-item .desc-list{
    list-style-type:disc;
}

/* .condition{
    background-color: var(--ow-gray-100);

} */
.condition .list{
    background: url(首页/04-入驻条件背景.png) center;
    height: 769px;
}
.condition .list-item{
    background-color: rgba(255, 255, 255, .6);
    border-radius: 10px;
    border: 1px solid var(--ow-gray-400);
}
.condition .list-item .img{
    width: 120px;
}
.condition .list-item .desc{
    line-height: 1.8;
}
.condition .list-item .btn{
    color: var(--ow-color);
    text-align: right;
}

.condition .text{
    color: var(--ow-color);
    display: block;
}

.info{
    gap: 1.5rem;
}
.info-item{
    border: 1px solid var(--ow-gray-400);
    border-bottom: 3px solid var(--ow-color);
}
.info-item .date{
    border-bottom: 1px solid var(--ow-gray-400);
    color: var(--ow-gray-600);
}
.info-item:hover .text{
    color: var(--ow-color);
}
.info-item .text{
    font-weight: bold;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--ow-gray-700);
}
.info-item .desc{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--ow-gray-600);
    line-height: 1.5;
}
.info+.btn a{
    background-color: var(--ow-color);
    color: #fff;
}

.footer-wra{
    background: url('首页/06-底部背景.jpg') center;
    min-height: 320px;
    border-top: 3px solid #f5c4bf;
}
.footer-wra-item{
    border-right: 3px solid #f5c4bf;
    height: 100%;
}
.footer-wra-item span{
    display: block;
    text-align: center;
}
.footer-wra-item .item-title{
    font-weight: bold;
    color: var(--ow-color);
    height: 30px;
    text-align: center;
}
.footer-wra-item .qrcode{
    height: 100px;
}
.footer-wra-item .qrtext{
    width: 80px;
    height: 80px;
}
.footer-wra-item:last-child{
    border-right: none;
}

.footer-wra-item .logo{
    width: 200px;
}
.footer-wra-item .link{
    text-align: center;
    color: var(--ow-gray-700);
}
.footer-wra-item .link:hover{
    color: var(--ow-color);
}
.copyright{
    color: var(--ow-gray-200);
    background-color: var(--ow-gray-700);
}
.copyright a {
    color: var(--ow-gray-200);
}

/* 适配 */
@media (min-width: 768px) {
    .header .list-wrap{
        display: flex;
        position: inherit;
    }
    .header .close,
    .header .menu{
        display: none;
    }
    .advantage .advantage-list{
        --ow-columns:15
    }
    .info{
        gap: 5rem;
    }
}