/* 
    主题 —— 首页组件样式 
*/

.view-more i,.learn-more i,.view-all i {
display: none;
}

/* 
轮播图 Start
 */
.wrapper.slide-wrapper {
    padding: 0 25px 25px;
}

.slide .swiper-slide a {
    font-size: 0;
}

.slide .swiper-pagination-bullet-active {
    background-color: var(--main-bg-color);
}

.slide-wrapper .slide-btn {
    font-size: 12px;
    background-color: #121212;
    opacity: 0.6;
}

.slide-wrapper .slide-btn.slide-btn--prev {
    left: 48px;
    transform: rotate(180deg);
}

.slide-wrapper .slide-btn.slide-btn--next {
    right: 48px;
}

.slide-wrapper .slide-btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .wrapper{
      padding: 24px 18px;
    }
    .wrapper.slide-wrapper {
        padding: 0 0 3px;
    }

    .slide-wrapper .slide-btn {
        display: none;
    }
}

/* 轮播图 End */

/* 
商品专辑 Start 
*/
 
 .prev-btn,
 .next-btn {
    position: absolute;
    top: 260px;
    z-index: 10;
    height: 32px;
    width: 32px;
    line-height: 31px;
    color: var(--theme-color-font);
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid var(--theme-border-color);
    cursor: pointer;
    transition: transform .5s cubic-bezier(.67, 1.79, .14, .74);
}
 .prev-btn {
    left: -25px;
}
 .next-btn {
    right: -25px;
}
@media screen and (max-width: 1510px){
    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }
}
@media screen and (max-width: 768px){
    .swiper-scrollbar {
        width: 100%;
        height: 5px;
        margin-bottom: 20px ;
    }
    .prev-btn,.next-btn{
        display: none;
    }
}
.prev-btn::after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    position: absolute;
    top: 14px;
    left: 10px;
    background: #484848;
}
.prev-btn:hover::before {
    padding-right: 6px;
    transition: all .5s cubic-bezier(.67, 1.79, .14, .74);
}

.prev-btn:hover:after {
    width: 12px;
    transition: all .5s cubic-bezier(.67, 1.79, .14, .74);
}
.next-btn::after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    position: absolute;
    top: 14px;
    right: 11px;
    background: var(--theme-color-font);
}

.next-btn:hover::before {
    padding-left: 5px;
    transition: all .5s cubic-bezier(.67, 1.79, .14, .74);
}
.next-btn:hover:after{
    width: 12px;
    transition: all .5s cubic-bezier(.67, 1.79, .14, .74);
}

.view-all {
    /* margin-top: 24px; */
}


@media screen and (max-width: 768px) {

    .product-list .prev-btn,
    .product-list .next-btn {
        display: none;
    }

}

/* 商品专辑 End */

/* 
Banner Start 
*/
div.banner-image .section-title {
    color: var(--theme-color-font)
}
.banner .view-more {
    color: var(--theme-color-font);
    border-color: #fff;
    background: #fff;
}
.banner .button--default::after{
    background: #fff;
    color: var(--theme-color-font );
}
.banner .button--default::before{
    color: var(--theme-color-font);
}


@media screen and (max-width: 768px) {
    .banner .view-more {
      color: 14px;
    }

}

/* Banner End */

/* 
博客专辑 Start 
*/

.blog-list {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    margin-bottom: -16px;
}

.blog-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    order: 0;
    margin-bottom: 16px;
    width: 25%;
}

.blog-item .blog-cover {
    font-size: 0;
    transition: .5s all ease;
    -moz-transition: .5s all ease;
    -webkit-transition: .5s all ease;
}

.blog-item .blog-cover img {
    transition: .5s all ease;
    -moz-transition: .5s all ease;
    -webkit-transition: .5s all ease;
}

.blog-item .blog-title {
  order: 1;
  display: inline-block;
  margin-top: 16px;
  color: var(--theme-color-font);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-item .blog-title.animation-underline::before {
    bottom: 2px;
}

.blog-item .blog-time {
    margin-top: 12px;
}

.blog-item .blog-content {
  order: 2;
  margin-top: 20px;
  text-align: left;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
    .blog-list {
        margin: -5px -25px;
        padding: 5px 25px;
    }
    .blog-list .blog-item:nth-child(3n) {
        margin-right: 0;
    }
    .blog-list .blog-item:nth-child(4n) {
        margin-right: 24px;
    }
    .blog-list .blog-item {
        width: calc(33.33% - 16px);
        margin-right: 24px;
    }

    .blog-list .blog-item:hover .blog-cover img {
        transform: scale(1.05);
        -moz-transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }
}

@media screen and (max-width: 768px) {
    .blog-item .blog-title {
        font-size: 18px;
    }
    .blog-item .blog-time{
        font-size: 14px;
        font-weight: 600;
    }
    .blog-list .blog-item {
        width: 100%;
    }
    .blog-item .blog-content{
        font-size: 14px;
    }
}

/* 博客专辑 End */

/* 图文列表 Start */
.image-text .text-content .content-title{
  text-align: start;
  font-family: 'NeueHaasUnica', sans-serif;
}
.image-text .text-content {
  width: calc(50% - 80px);
    align-items: flex-start;
}
.text-content .learn-more {
    margin-top: 32px;
}

.learn-more i {
    color: var(--main-bg-color);
}
@media screen and (max-width: 768px) {
  .image-text .text-content{
    width: 100%;
  }
  .text-content .learn-more{
    margin-top: 20px;
  }
  .image-text .rich-text p{
    min-height: 16px;
  }
}
/* 图文列表 End */

/* 
    图钮列表 Start
*/
.image-btn-main{
  position: absolute;
  left: 32px;
  bottom: 32px;
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color-font);
}
.image-btn{
  margin-top: 14px;
  color: var(--theme-color-font);
  background-color: #fff;
  border-color: #fff;
}
.image-btn-list .text-align--center{
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .image-btn-list .swiper-wrapper{
    flex-wrap: wrap;
  }
  .image-btn-list .swiper-slide:not(:last-child) {
    margin-bottom: 24px;
  }
  .image-btn-main{
    left: 20px;
    right: 20px;
    font-size: 16px ;
  }
  .image-btn{
    font-size: 14px;
  }
}
/* 图钮列表 End */


/* 
邮箱订阅 Start 
*/
.email-subscribe {
    display: flex;
    justify-content: center;
    padding: 28px 0;
    background: #d6e8f9;
}

.subscribe-title {
    font-size: 18px;
    font-weight: bold;
}

.subscribe-subtitle {
    font-size: 14px;
}

.subscribe-left {
    width: 37.5%;
}

.subscribe-right {
    display: flex;
    align-items: center;
    width: 37.5%;
}

.email-input {
    display: block;
    margin: 0 8px 0 30px;
    width: 100%;
    border: 1px solid var(--theme-color-font);
}

@media screen and (max-width: 768px) {
    .email-subscribe {
        flex-direction: column;
    }

    .email-subscribe>div {
        padding: 0 12.5px;
        width: 100%;
    }

    .subscribe-title {
        margin-bottom: 8px;
    }

    .subscribe-right {
        flex-direction: column;
        margin-top: 20px;
    }

    .email-input {
        margin: 0;
    }

    .subscribe-button {
        margin-top: 10px;
        width: 100%;
    }
}

/* 邮箱订阅 End */

/* 
  首页富文本 Start
*/
.home-rich-text{
 max-width: 100%;
 padding: 40px 0 0;
}
.rich-text *{
  color: var(--theme-color-font);
}
.rich-text-item *{
  max-width: var(--max-width);
  margin: auto;
}
.home-rich-text .rich-text {
  padding:40px 0 ;
  background: var(--main-bg-color);
}
@media screen and (max-width: 768px){
  .home-rich-text {
    padding: 24px 0 0;
  }
  .rich-text-item{
    padding:24px 0 ;
  }
  
}
/* 首页富文本 End*/


/* 
图标文本 Start 
*/
.icon-text {
  background: var(--main-bg-color-sub);
  max-width: 100%;
}
.icon-text .section-title{
  color: #fff;
}
.image-list.tile-list {
    display: flex;
    justify-content: space-between;
    max-width:var(--max-width);
    margin: auto;
    padding: 0 25px;
    margin-bottom: 0;
}

.tile-list .item-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tile-list .item-top img {
    height: 48px;
    width: 48px;
}



.tile-list .tile-item:not(:last-child) {
    padding-right: 48px;
}

.tile-list .item-top .tile-title {
    margin: 22px 0 0;
    color: var(--main-bg-color);
    font-size: 24px;
    font-weight: bold;
    white-space: normal;
}

.tile-list .item-bottom {
    line-height: 24px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .icon-text-scrollbar{
        width: 100%;
        height: 5px;
        background: #fff;
    }
    .swiper-scrollbar-drag{
      border-radius: 0;
      background: #666;
    }
    .image-list.tile-list {
        flex-wrap: nowrap;
        padding: 0;
    }

    .mrshop-section .tile-list .tile-item {
        padding: 0 12.5px;
        margin: 0 0 24px 0;
    }

    .tile-list .tile-item:nth-child(even) {
        margin-right: 0;
    }

    .tile-list .item-top {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .tile-list .item-top .tile-title {
        margin-left: 0;
        margin-top: 20px;
        font-size: 16px;
        text-align: center;
    }

    .tile-list .item-bottom {
        font-size: 14px;
    }
}

/* 图标文本 End */