.el-option {
    display: none;
}
/*店铺*/
.recommend-shop-line{
    position: relative;
}
.shop{
    transition: all 220ms cubic-bezier(.4,0,.2,1);
    box-shadow: 0 3px 3px -2px rgba(0, 0, 0, .08), 0 3px 4px 0 rgba(0, 0, 0, .04), 0 1px 8px 0 rgba(0, 0, 0, .04);
    border-color: transparent;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}
.shop::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    pointer-events: none;
    border: 2px solid;
    border-color: inherit;
    border-radius: inherit;
}
.pic-collection {
    display: flex;
    flex-wrap: wrap;
    padding: 11px;
    aspect-ratio: 1;
}
.pic-collection__item {
    position: relative;
    width: 50%;
}
.pic-collection__item img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    padding: 4px;
    aspect-ratio: 1;
    object-fit: cover;
}
.pic-collection__item::after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
.logo-wrap {
    position: absolute;
    margin-top: -55px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.logo-wrap .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0 3px 12px -1px rgba(0, 0, 0, .15);
    background: #fff;
}
.logo-wrap .logo img {
    max-width: 100%;
    max-height: 100%;
}
.shop-info{
    text-align: center;
    margin-top: 29px;
    padding: 20px 16px;
}
.shop-info .title {
    font-weight: 600;
    font-size: 14px;
    color: #202229;
    line-height: 20px;
    margin-bottom: 6px;
}
.shop-info .desc {
    margin-bottom: 0;
    font-size: 12px;
    color: #787878;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 12px;
    height: 12px;
}
.shop:hover {
    border-color:var(--color-primary);
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .08), 0 12px 17px 2px rgba(0, 0, 0, .04), 0 5px 22px 4px rgba(0, 0, 0, .04);
}

/*商品*/
.goods-outer{
    background-repeat: no-repeat;
    background-size: cover;
}
.goods-line{
    position: relative;
}
.goods{
    transition: all 220ms cubic-bezier(.4,0,.2,1);
    box-shadow: 0 3px 3px -2px rgba(0, 0, 0, .08), 0 3px 4px 0 rgba(0, 0, 0, .04), 0 1px 8px 0 rgba(0, 0, 0, .04);
    border-color: transparent;
    cursor: pointer;
    width: 100%;
    display: block;
    height: 100%;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}
.goods:hover{
    border-color:  var(--color-primary);

}
.goods .pic {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    padding: 15px;
}
.goods-save{
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.16);
    border-radius: 50%;
    font-size: 20px !important;
    color: var(--color-primary);
    text-align: center;
    line-height: 42px;
}
.goods-save.active{
    color: red;
}
.no-save .goods-save{
    display: none;
}

.goods .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.goods .info {
    padding: 0 15px 30px;
}
.goods .info .title {
    font-weight: 600;
    font-size: 14px;
    color: #202229;
    line-height: 20px;
    height: 40px;
    margin-bottom: 13px;
}
.goods .info .desc {
    font-size: 12px;
    color: #6F7182;
    line-height: 17px;
}
.goods-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #2D3E87;
    height: 54px;
    border-top: 1px solid #F5F5F5;
    cursor: pointer;
}
.no-inquiry .goods-btn{
    display: none;
}
.goods:hover .goods-btn{
    background: #D5D8E7;
}
.goods-btn .el-iconfont{
    margin-right: 6px;
    font-size: 10px;
}
/*新闻资讯*/
.news{
    cursor: pointer;
}
.news *{
    transition: All .5s ease;
}
.zoomImg {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
}
.zoomImg::before{
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: .6;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}
.zoomImg img {
    width: 100%;
    height: 114px;
    object-fit: cover;
}
.news .bd .time {
    font-size: 14px;
    color: gray;
    line-height: 20px;
    padding: 10px 0 10px 0;
}
.news .bd .name {
    font-size: 16px;
    line-height: 24px;
}
.news:hover .zoomImg:before {
    animation: shine .75s;
}
.news:hover .zoomImg img {
    transform: scale(1.1);
}
.news:hover .name{
    text-decoration: none;
    color: #da1212;
    outline: none;
}
.bold{
    font-weight: bold;
}
.text-desc{
    width: 66%;
    color: #121212;
    line-height: 40px;
}
.text-desc .font24{
    font-size: 24px;
}
.text-desc .font20{
    font-size: 20px;
}
.text-desc .font16{
    font-size: 16px;
}
.desc-btn{
    cursor: pointer;
    width: fit-content;
    color: #ca3525;
    background: #fff;
    height: 44px;
    line-height: 44px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 44px;
    font-size: 14px;
    border-radius: 44px;
    box-shadow: 0 3px 3px -2px rgba(0,0,0,.08),0 3px 4px 0 rgba(0,0,0,.04),0 1px 8px 0 rgba(0,0,0,.04);
    margin-top: 20px;
}
.desc-btn:hover{
    color: #fff;
    background-color: #ca3525;
}

.page-phone .shop-line{
    grid-template-columns: repeat(2, 1fr);
    padding: 0 12px;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@media (max-width: 600px) {
    .shop-line{
        grid-template-columns: repeat(2, 1fr);
    }
}








.banner-swiper{

}
.banner-swiper-item{
    height: 771px;
    width: 100%;
    position: relative;
}
.banner-swiper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-swiper-info{
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    left: 50%;
    transform: translate(-50%);
}
.banner-swiper-info .text1{
    font-weight: 500;
    font-size: 20px;
    color: #2D3E87;
    line-height: 33px;
    margin-bottom: 25px;
}
.banner-swiper-info .text2{
    font-weight: 500;
    font-size: 48px;
    color: #2D3E87;
    line-height: 60px;
}
.banner-swiper-info .text3{
    font-weight: 500;
    font-size: 20px;
    color: #202229;
    line-height: 30px;
    margin-top: 40px;
    margin-bottom: 10px;
}
.banner-swiper-info .text4{
    font-size: 14px;
    color: #202229;
    line-height: 25px;
}





.article{
    width: 100%;

    text-align: center;
}
.page-en-name{
    font-size: 20px;
    color: #2D3E87;
    line-height: 25px;
    position: relative;
}
.page-zh-name{
    /*font-weight: 600;*/
    font-size: 36px;
    color: #202229;
    line-height: 50px;
    position: relative;
    text-align: center;
}
.page-desc{
    font-weight: 500;
    font-size: 16px;
    color: #202229;
    line-height: 24px;
    position: relative;
}
.page-brief{
    font-size: 14px;
    color: #A0A1AC;
    line-height: 22px;
    position: relative;
}
.article .main-img{
    width: 100%;
    object-fit: contain;
}
.btm-function{
    display: flex;
    margin-left: -12px;
}
.btm-function .col{
    margin: 12px;
}
.btm-function-item{
    width: 100%;
    aspect-ratio: 287 / 198;
    flex-direction: column;
    align-items: center;
    border: 1px solid #CFD3D9;
    transition: all .2s;
    cursor: pointer;
}
.btm-function-item:hover{
    border: 1px solid #2D3E87;
}
.btm-function-item img{
    width: 40px;
    height: 40px;
    margin-bottom: 17px;
}
.btm-function-item div{
    font-size: 20px;
    color: #2D3E87;
    white-space: nowrap;
}
.number-info{
    padding: 151px 0;
    position: relative;
    display: block;
}
.number-info .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 2;
}
.number-list{
    flex-wrap: wrap;
}
.number-item{
    width: 100%;
    aspect-ratio: 287 / 128;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.number-item .num{
    font-weight: 500;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 6px;
}
.number-item .num span{
    font-size: 14px;
    color: #FFFFFF;
}
.number-item .text{
    font-size: 14px;
    color: #FFFFFF;
    line-height: 22px;
}
.shop-logo-item{
    position: relative;
    width: 100%;
    aspect-ratio: 287 / 192;
    cursor: pointer;
    display: block;
}
.shop-logo-item .bg{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
}
.shop-logo-item .text{
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0,0,0,.7);
    /*font-weight: 600;*/
    font-size: 20px;
    color: #FFFFFF;
    line-height: 28px;
    position: relative;
    text-align: center;
    display: none;
    z-index: 1;
}
.shop-logo-item:hover .text{
    display: flex;
}
.news-list{}
.new-item{
    padding: 40px 20px;
    background: #fff;
    position: relative;
    display: block;
    flex: 1;
}
.new-item:hover{
    box-shadow: 0px 0px 16px 0px rgba(65,87,124,0.16);
}
.new-item .name{
    font-size: 20px;
    color: #202229;
    line-height: 26px;
    height: 52px;
    margin-bottom: 10px;
}
.new-item .time{
    font-size: 14px;
    color: #6F7182;
    line-height: 22px;
    margin-bottom: 20px;
}
.new-item .brief{
    height: 44px;
    font-size: 14px;
    color: #121212;
    line-height: 24px;
}
.new-item .el-btn{
    margin-top: 40px;
}
.event-list{
    grid-gap: 30px;
}
.event-item{
    padding: 40px 36px 40px 0;
    background: #fff;
    margin-bottom: 30px;
}
.event-list .event-item:last-child{
    margin-bottom: 0;
}
.event-item .event-item:last-child{
    margin-bottom: 0;
}
.event-item .main-img{
    margin-right: 24px;
    width: 360px;
    height: 240px;
    object-fit: cover;
}
.event-item .name{
    /*font-weight: 600;*/
    font-size: 20px;
    color: #202229;
    line-height: 33px;
    height: 33px;
    margin-bottom: 16px;
}
.event-item .time{
    font-size: 14px;
    color: #6F7182;
    line-height: 22px;
    margin-bottom: 16px;
}
.event-item .brief{
    height: 44px;
    font-size: 14px;
    color: #121212;
    line-height: 22px;
    margin-bottom: 18px;
}
.event-item-right{
    max-width: calc(100% - 424px);
}
.recommend-shop{

    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-swiper-btn{
    position: absolute;
    height: 52px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.base-swiper-btn{
    position: absolute;
    top: 50%;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    color: #202229;
    font-weight: bold;
    transform: translateY(-50%);
    font-size: 15px !important;
    z-index: 2;
    box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
}
.banner-swiper-btn .base-swiper-btn{
    border: 1px solid #fff;
    background: transparent;
    backdrop-filter: blur(12px);
}
.swiper-btn-last{
    left: -18px;
}
.swiper-btn-next{
    right: -18px;
}
.disClick{
    pointer-events: none;
}
.z-2{
    z-index: 2;
}
.del-icon-btn{
    color: red;
    border: 1px solid red;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    width: 20px;
    line-height: 20px;
    margin-top: 8px;
}
.add-icon-btn{
    color: #007bff;
    border: 1px solid #007bff;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    width: 20px;
    line-height: 20px;
    margin-top: 8px;
}
.page-btn .el-iconfont{
    font-size: 20px;
    margin-left: 10px;
}
.text-source .page-btn:hover{
    background: #fff;
    color: #C30064;
}
.text-source .page-btn:hover .el-iconfont{
    color: #C30064;
}
@media (max-width: 1500px){
    .text-source-left{
        padding: 40px;
    }
}





@media (max-width: 1227px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 800px) {
    .event-item{
        flex-direction: column;
        padding: 20px;
    }
    .event-item .main-img{
        margin-right: 0;
        width: 100%;
        height: fit-content;
        margin-bottom: 24px;
        object-fit: contain;
    }
    .event-item-right{
        max-width: 100%;
    }
    .news-video-line{
        flex-direction: column;
    }
    .news-video-line .new-item .el-btn{
        position: relative;
        margin-bottom: 30px;
    }
    .news-video{
        width: 100%;
        padding-right: 40px;
    }
    /*.news-video-line .new-item{*/
    /*    margin-right: 40px;*/
    /*}*/
}

@media (max-width: 608px) {
    .banner-swiper-info .text2{
        font-size: 28px;
        line-height: 40px;
    }
}



