.demo1{
    width: 100%;
    height: 100%;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
 
    /* height: 3.5rem; */
    /* height: 100vh; */
    /* min-height: 600px;
    max-height: 800px; */
    
}


.wrapper h3 {
    position: absolute;
    left: 4rem;
    top: 4rem;
    z-index: 1000;
    padding: 0 1rem;
    background-color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    color: #222;
    border-radius: 1.4rem;
}

.wrapper .container {
    position: relative;
    margin: 0 auto;
}

.horizontal .container {
    width: 2.34rem;
    height: 3.38rem;
}

/* .vertical .container {
    width: 37rem;
    height: 14rem;
} */

.container .cards-list {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: #f4f4f4;
    border-radius: 0.03125rem;
    transition: 330ms;
    cursor: pointer;
}


 

.horizontal .cards-list {
    width: 100%;
    height: 100%;
    box-shadow: 0px 3px 16px 1px rgba(0, 0, 0, 0.16);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .24rem .18rem;
}

.horizontal .img {
position:absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
}








.horizontal .img>img {

    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    -moz-user-select: none;
    user-select: none;

}

.main-con {
    width: 100%;
    height: 100%;
    padding: .24rem .18rem;
    
  
    background: #FFFFFF;
    border-radius: .08rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.main-con .main_logo{
    width: 1.15rem;
    height: .32rem;

}

.main-con .name {
    /* padding-top: .2rem; */
    font-size: .18rem;
    font-weight: 600;
    color: #424242;
    font-size: .18rem;
    font-family: Source Han Sans CN-Bold, Source Han Sans CN;
    font-weight: bold;
    color: #040404;
}

.main-con .content {
    /* padding-top: .1rem; */
    /* height: 4.5rem; */

    color: #777;
    text-align: justify;
    /* line-height: 1.4rem; */
    font-size: .18rem;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
}







.btn-direct {
    position: absolute;
    top: 50%;
  
    z-index: 100000;
    width: .64rem;
    height: .64rem;
    transform: translateY(-50%);
    cursor: pointer;
    transition: .2s;
}


.btn-direct.btn-left {
    left: .1rem;
    margin-left: -0.32rem;
   border-radius: 50%;
   background: #FFFFFF;
    box-shadow: 0px 3px 10px 1px rgba(9,41,96,0.15), inset 6px 6px 10px 1px #E1E7ED;
    opacity: 1;
    border: 1px solid #FFFFFF;
}

.btn-direct.btn-right {
    right: .1rem;
    margin-right: -0.32rem;
    border-radius: 50%;
    background: #FFFFFF;
     box-shadow: 0px 3px 10px 1px rgba(9,41,96,0.15), inset 6px 6px 10px 1px #E1E7ED;
     opacity: 1;
     border: 1px solid #FFFFFF;

}

.btn-direct>span {
    position: absolute;
   
    left: calc(50% - .1rem);
    top: calc(50% - .1rem);
    width: .2rem;
    height: .2rem;
    border-top: 0.03rem solid #98A3B7;
    border-left: 0.03rem solid #98A3B7;
}

.horizontal .shift-left {
    transform: translateX(25%) rotate(-45deg);
}

.horizontal .shift-right {
    transform: translateX(-25%) rotate(135deg);
}



.navigation {
    position: absolute;
    bottom: .5rem;
    left: 50%;
    transform: translate(-50%);
}

.navigation .dot {
    display: inline-block;
    width: .15rem;
    height: .15rem;
    margin: .2rem;
    border: .01rem solid #fff;
    background-color: #fff;
    border-radius: 100%;
    cursor: pointer;
}
.navigation .dot.active {
    background-color: transparent;
}



