* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

/* 超出1行显示...
------------------------------- */
.text-ellipsis {
   overflow: hidden;
   text-overflow: ellipsis;
   word-break: break-all;
   white-space: nowrap;
}

/* 超出2行显示...
------------------------------- */
.text-ellipsis2 {
   display: -webkit-box;
   overflow: hidden;
   text-overflow: ellipsis;
   word-break: break-all;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
}

body {
   background-color: #f4f5f7;
   font-size: 14px;
   color: #000;
}

ul,
li {
   list-style: none;
}

.flex {
   display: flex;
}

.flex-center {
   justify-content: center;
   align-items: center;
}

.align-items-center {
   align-items: center;
}

.space-between {
   justify-content: space-between;
}

.flex-end {
   justify-content: flex-end;
}

.main-width {
   width: 1300px;
   margin: 0 auto;
}

.header {
   position: relative;
}

.header .main-bg {
   width: 100%;
   height: 350px;
   position: absolute;
   top: 0;
   left: 0;
}

.header .main-bg img {
   width: 100%;
   height: 100%;
}

.header .h-position {
   width: 100%;
   padding-top: 40px;
   left: 0;
   display: flex;
   justify-content: center;
   position: relative;
   z-index: 99;
}

.header .h-position .content {
   background-color: #fff;
   padding: 30px;
   position: relative;
}

.header .h-position .content .breadcrumbs {
   position: absolute;
   top: -24px;
   left: 0;
   color: #fff;

}

.header .h-position .content .logo {
   width: 380px;
   height: 330px;
   border-radius: 8px;
   background: #B8D5E1;
}

.header .h-position .content .logo img {
   width: 100%;
   height: 100%;
}

.header .h-position .content .description {
   flex: 1;
}

.header .description .top {
   padding-left: 30px;
}

.header .top .title h2 {
   color: #0F0F0F;
   font-size: 26px;
   font-weight: bold;
   line-height: 24px;
   padding-left: 16px;
}

.header .top .scoring {
   padding-top: 16px;
}

.header .top .scoring span {
   display: inline-block;
   width: 138px;
   height: 28px;
   border-radius: 6px;
   background: #F5F8FF;
   border: 1px solid #B6CAFC;
   color: #527CDB;
   font-size: 12px;
   text-align: center;
   line-height: 28px;
   margin-right: 5px;
}

.header .top .scoring .tag1 {
   background: #FEF7F7;
   border: 1px solid #F9BBBB;
   color: #E62129;
}

.header .top .scoring .tag2 {
   background: #FFFBF8;
   border: 1px solid #FEDDC5;
   color: #FD832A;
}

.header .top .scoring .tag3 {
   background: #F5FCFA;
   border: 1px solid #91EDCE;
   color: #21C58F;
}

.header .description .shop-desc {
   background-color: #F7F8FC;
   padding: 20px 30px;
   margin-top: 14px;
   border-radius: 0 8px 8px 0;
   color: #999;
   line-height: 26px;

}

.header .description .shop-desc p {
   display: -webkit-box;
   overflow: hidden;
   text-overflow: ellipsis;
   word-break: break-all;
   -webkit-line-clamp: 6;
   -webkit-box-orient: vertical;
}

.header .description .shop-desc span {
   color: #000;

}

.header .description .price {
   padding-top: 30px;
   justify-content: end;
   align-items: center;
}

.header .description .price .title {
   color: #47597B;
   font-size: 13px;
}

.header .description .price .num {
   font-size: 36px;
   font-weight: bold;
   color: #FE712A;
}

.header .description .price .unit {
   font-size: 14px;
   color: #FE712A;
}

.header .description .price button {
   width: 200px;
   height: 48px;
   background: #3476EF;
   border-radius: 24px;
   border: 0;
   font-size: 18px;
   color: #fff;
   font-weight: bold;
   padding: 0 4px;
   cursor: pointer;
}

.header .description .price .more {
   padding: 0 15px;

}

.main-title {
   padding-top: 75px;
   padding-bottom: 30px;
   text-align: center;
}

.main-title h2 {
   font-weight: bold;
   font-size: 42px;
   color: #000;
}

.main-title .desc {
   font-size: 18px;
   color: #333333;
   padding-top: 13px;
}

.main-title .subtitle {
   color: #3476EF;
}

.main-title img {
   margin-bottom: -25px;
}

.shop-list .grid {
   display: grid;
   grid-template-columns: repeat(2, 50%);
   gap: 20px;
}

.shop-list .grid .item {
   background-color: #fff;
   padding: 20px;
   border-radius: 8px;
   height: 324px;
}

.shop-list .grid .item>.title {
   color: #060606;
   font-size: 18px;
   font-weight: bold;
   padding-bottom: 20px;
}

.shop-list .grid .item .goods-img {
   width: 285px;
   height: 196px;
   border-radius: 8px;
   overflow: hidden;
   background-color: #f4f5f7;
   position: absolute;
}

.shop-list .grid .item .goods-img .tag {
   position: absolute;
   top: 10px;
   left: 10px;
   background: #434343;
   color: #FBEEC9;
   padding: 2px 5px;
}

.shop-list .grid .item .goods-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.shop-list .grid .item .goods-desc {
   color: #000000;
   padding-top: 10px;
}

.shop-list .grid .item .goods-desc>div {
   flex: 0 0 33.3333%;
   text-align: center;
}

.shop-list .grid .item .goods-desc span {
   font-size: 12px;
   color: #666666;
}

.shop-list .grid .item .price {
   padding-left: 28px;
   flex: 1;
   position: relative;
   height: 230px;
}

.shop-list .grid .item .price .title {
   color: #FE712A;
}

.shop-list .grid .item .price .tag-list {
   display: grid;
   grid-template-columns: repeat(2, 50%);
   gap: 10px;
   padding-top: 10px;
}

.shop-list .grid .item .price .tag-list span {
   border-radius: 6px;
   height: 28px;
   line-height: 28px;
   text-align: center;
   font-size: 12px;
}

.shop-list .grid .item .price .tag-list .tag1 {
   background: #F5F8FF;
   border: 1px solid #B6CAFC;
   color: #527CDB;
}

.shop-list .grid .item .price .tag-list .tag2 {
   background: #FEF7F7;
   border: 1px solid #F9BBBB;
   color: #E62129;
}

.shop-list .grid .item .price .tag-list .tag3 {
   background: #FFFBF8;
   border: 1px solid #FEDDC5;
   color: #FD832A;
}

.shop-list .grid .item .price .tag-list .tag4 {
   background: #F5FCFA;
   border: 1px solid #91EDCE;
   color: #21C58F;
}

.shop-list .grid .item .price .tag-list .tag5 {
   background: #F5F8FF;
   border: 1px solid #B6CAFC;
   color: #527CDB;
}

.shop-list .grid .item .price .tel {
   position: absolute;
   bottom: 0;
   width: 100%;
   left: 0;
}

.shop-list .grid .item .price .tel button {
   border: 0;
   width: 117px;
   height: 42px;
   border-radius: 21px;
   background: #3476EF;
   color: #fff;
   cursor: pointer;
}

.shop-list .grid .item .price .tel button span {
   padding-left: 8px;
}

.shop-list .check-more {
   margin: 60px 0;
   text-align: center;
}

.shop-list .check-more button {
   width: 247px;
   height: 48px;
   background: #FFFFFF;
   border-radius: 24px;
   cursor: pointer;
   color: #3476EF;
   font-size: 18px;
   font-weight: bold;
   text-align: center;
   border: 0;
   margin: 0 auto;
}

.success-case {
   background: url('../image/case.png') no-repeat;
   background-size: cover;
   padding-bottom: 78px;
}

.success-case .item-list {
   padding: 30px 40px 0 50px;
   overflow: hidden;
   position: relative;
}

.swiper-container {
   width: 100%;
   height: 100%;
}

.success-case .pre {
   cursor: pointer;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translate(0%, -50%);
   z-index: 9;
   width: 40px;
   height: 40px;
}

.success-case .next {
   cursor: pointer;
   position: absolute;
   top: 50%;
   right: 0;
   transform: translate(0, -50%);
}

.success-case .swiper-slide {
   width: 285px !important;
   flex-shrink: 0;
}

.success-case .item-list .item .cell {
   width: 285px;
   height: 410px;
   background-color: #fff;
   border-radius: 8px;
   margin-right: 20px;
   flex-shrink: 0;
}

.success-case .item-list .top-img {
   width: 100%;
   height: 136px;
   padding: 7px;
   border-radius: 8px;
   overflow: hidden;
}

.success-case .item-list .top-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.success-case .item-list .item .price {
   padding-left: 13px;
}

.success-case .item-list .item .price a {
   color: #000;
   font-size: 16px;
   line-height: 28px;
   text-decoration: none;
   display: block;
}

.success-case .item-list .item .price .num {
   color: #FE712A;
}

.success-case .item-list .scoring {
   border-top: 1px solid #ddd;
   flex-wrap: wrap;
}

.success-case .item-list .scoring>div {
   flex: 0 0 50%;
   padding: 18px 13px;
   border-bottom: 1px solid #ddd;
}

.success-case .item-list .scoring>div p {
   color: #000;
}

.success-case .item-list .scoring>div span {
   color: #666666;
   font-size: 12px;
}

.success-case .item-list .scoring .border-right {
   border-right: 1px solid #ddd;
}

.success-case .item-list .phone>div {
   flex: 1;
   text-align: center;
   height: 60px;
   position: relative;

}



.success-case .item-list .phone .kf::after {
   width: 1px;
   height: 12px;
   background: #ddd;
   content: '';
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
}

.success-case .item-list .phone>div span {
   padding-left: 5px;
}

.faq {
   background-color: #fff;
   border-radius: 8px;
   padding: 30px 46px;
   margin-top: 20px;
}

.faq .list {
   margin-bottom: 30px;
   height: 194px;
}

.faq .chatting {
   padding-left: 43px;
   flex-direction: column;
   justify-content: space-between;
}

.faq .chatting .top-img {
   width: 40px;
   height: 40px;
   overflow: hidden;
   border-radius: 100%;
}

.faq .chatting .top-img img {
   width: 100%;
   height: 100%;
}

.faq .chatting .fl2 {
   padding-left: 8px;
}

.faq .chatting .fl2 .name {
   font-size: 16px;
}

.faq .chatting .fl2 .time {
   color: #A2A5AA;
}

.faq .check-more button {
   width: 172px;
   height: 48px;
   background: #3476EF;
   border-radius: 24px;
   font-size: 18px;
   font-weight: bold;
   border: 0;
   color: #fff;
   cursor: pointer;
}

.hot-list {
   width: 100%;
   overflow: hidden;
   margin-bottom: 50px;
}

.hot-list .item {
   width: 400px;
   flex: 0 0 400px;
}

.hot-list .item .top {
   padding: 10px;
   background-color: #fff;
   border-radius: 8px;
}

.hot-list .item .top-img {
   width: 380px;
   height: 316px;
   border-radius: 8px;
   overflow: hidden;
   position: relative;
   background-color: green;
}

.hot-list .item .top-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.hot-list .item .top-img .hot_tag {
   position: absolute;
   top: 0;
   left: 30px;
   width: 52px;
   height: auto;
}

.hot-list .item .top-img .desc {
   position: absolute;
   bottom: 0;
   width: 100%;
   padding: 25px 30px;
   font-size: 18px;
   color: #fff;
   font-weight: 500;
   background: rgba(255, 255, 255, 0.8);
}

.hot-list .item .top-img .desc .tag {
   background-color: #fff;
   color: #778648;
   border-radius: 4px;
   padding: 0 8px;
   margin-left: 14px;
}

.hot-list .text-list {
   padding: 0 20px;
   padding-top: 10px;
   flex-wrap: wrap;
}

.hot-list .text-list img {
   margin-right: 10px;
}

.hot-list .text-list>span {
   flex: 0 0 50%;
   padding-bottom: 26px;
}

.hot-list .check-shop button {
   background: #FFFFFF;
   border: 0;
   border-radius: 24px;
   width: 200px;
   height: 48px;
   line-height: 48px;
   color: #3476EF;
   font-weight: bold;
   margin-top: 50px;
   cursor: pointer;
}