.amo-horisontal {
     display: none;
 }

 .swiper {
     width: 100%;
     /* 轮播容器宽度为100% */
     height: 600px;
     /* 设定固定高度，或者根据需求调整 */
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .swiper-wrapper {
     display: flex;
     width: 100%;
     /* 让swiper-wrapper的宽度也为100% */
 }

 .swiper-slide {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     /* 每个swiper-slide宽度占满整个页面 */
     padding: 10px;
     box-sizing: border-box;
 }

 .swiper-left {
    /* width: 500px;
    height: 100%; */
     flex: 1;
     display: flex;
     justify-content: flex-start;
     align-items: center;
     text-align: left;
     padding-left: 20px;
     font-size: 18px;
     /* max-width: 0%; */
 }

 .swiper-right {
    /* width: 300px; */
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
     overflow: hidden;
 }

 @media screen and (max-width: 768px) {

 .center-in-mobile{
    text-align: center;
    justify-content: center;
    align-items: center;
 }

 .center-in-mobile-button{
    display: flex;
    justify-content: center;
 }
    
 }


 .swiper-right img {
    width: 600px;
     height: 600px;
     object-fit: contain;
     /* max-width: 100%; */
     transition: all 0.3s ease-in-out;
 }

 .swiper-right img:hover {
     transform: scale(1.05) rotate(3deg);
 }

 @media (max-width: 768px) {
     .swiper-slide {
         flex-direction: column;
         /* 小屏幕时，左右布局变成上下堆叠 */
         text-align: center;
     }

     .swiper-right {
         padding-left: 0;
         padding-bottom: 10px;
     }

     .swiper-right img {
        margin-left: 30px;
        width: auto;
        object-fit: contain;
         /* height: auto; */
         /* width: 100%; */
     }
 }
 .quomodo-btn{
    display: line-block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
 }

