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

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

ul,
li {
   list-style: none;
}

.flex {
   display: flex;
}

.flex50 {
   flex: 0 0 50%;
}

.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;
}

.header {
   background: url('../image/main_bg.png') no-repeat;
   background-size: cover;
   padding: 20px;
}

.header .goods-reep {
   background-color: #fff;
   padding: 10px;
   border-radius: 7px;
}

.header .goods-reep .top-img {
   height: 200px;
   overflow: hidden;
   position: relative;
}

.header .goods-reep .top-img .tag {
   position: absolute;
   background: #434343;
   color: #FBEEC9;
   padding: 2px 5px;
   top: 10px;
   left: 10px;
}


.header .goods-reep .top-img img {
   width: 100%;
   height: 100%;
}


.header .goods-reep .top-img .sqsb {
   position: absolute;
   top: 10px;
   right: 10px;
   width: 58px;
   height: auto;
}


.header .goods-reep .title {
   font-size: 15px;
   color: #0F0F0F;
   font-weight: bold;
   padding-top: 15px;
}

.header .goods-reep .tag-list {
   padding-top: 10px;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 5px;
}

.header .goods-reep .tag-list span {
   border-radius: 2px;
   background: #F5F8FF;
   font-size: 10px;
   padding: 4px 0;
   border: 1px solid #B6CAFC;
   text-align: center;
   color: #527CDB;
}

.header .goods-reep .tag-list .tag1 {
   color: #E62129;
   border: 1px solid #F9BBBB;
   background: #FEF7F7;
}

.header .goods-reep .tag-list .tag2 {
   background: #FFFBF8;
   border: 1px solid #FEDDC5;
   color: #FD832A;
}

.header .goods-reep .tag-list .tag3 {
   background: #F5FCFA;
   border: 1px solid #91EDCE;
   color: #21C58F;
}
.top-title{
    font-size:0.5rem;
}
.header .goods-reep .desc {
    font-size: 10px;
    color: #999999;
    padding-top: 15px;
    font-size: 0.28rem;
}

.header .goods-reep .desc span {
   color: #000;
}

.header .goods-reep .phone {
   padding-top: 15px;
}

.header .goods-reep .phone>div {
   flex: 1;
}

.header .goods-reep .phone>div button {
   width: 90%;
   background: #3476EF;
   border-radius: 24px;
   border: 0;
   color: #fff;
   font-weight: bold;
   padding: 5px 4px;
   cursor: pointer;
   font-size: 0.35rem;
   line-height:0.35rem;
}

.header .goods-reep .phone .price {
   color: #FE712A;
   font-weight: bold;
   font-size: 10px;
}

.header .goods-reep .phone .num {
   font-size: 0.4rem;
}

.header .goods-reep .phone .more {
   padding: 0 5px;
}

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

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

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

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

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

.goods-list {
   padding: 0 20px;
}

.goods-list .item {
   background-color: #fff;
   border-radius: 3px;
   padding: 10px;
   margin-bottom: 10px;
}

.goods-list .item>.title {
   color: #060606;
   font-weight: bold;
   font-size: 10px;
   padding-bottom: 10px;
}

.goods-list .item .top-img {
   width: 100%;
   height: 100px;
   position: relative;
}

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

.goods-list .item .top-img img {
   /*width: 100%;*/
   height: 100%;
}

.goods-list .item .classification {
   padding-top: 8px;
}

.goods-list .item .classification>div {
   flex: 0 0 33.3333%;
   text-align: center;
   font-size: 10px;
}

.goods-list .item .classification span {
   color: #666666;
   font-size:0.33rem;
}
    .goods-list .item .classification p {
        font-size: 0.33rem!important;
        height:0.6rem;
    }

.goods-list .item .classification .price {
   flex: 1;
   position: relative;
}

.goods-list .item .right-item {
   padding-left: 10px;
   position: relative;
}

.goods-list .item .right-item>.title {
   color: #FE712A;
}

.goods-list .item .right-item>.title span {
   font-weight: bold;
}

.goods-list .item .right-item .unit {
   font-size: 10px;
}

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

.goods-list .item .right-item .tag-list span {
   border-radius: 3px;
   height: 22px;
   line-height: 22px;
   text-align: center;
   font-size: 10px;
}

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

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

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

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

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

.goods-list .item .right-item .tel {
   position: absolute;
   bottom: 0;
   width: 100%;
   left: 0;
}

.goods-list .item .right-item .tel button {
   border: 0;
   width: 65px;
   height: 22px;
   border-radius: 11px;
   background: #3476EF;
   color: #fff;
   cursor: pointer;
   font-size: 10px;
}

.goods-list .item .right-item .tel button span {
   padding-left: 3px;
}

.goods-list .check-more {
   margin: 30px 0;
   text-align: center;
}

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

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

.success-case .banner {
   padding-top: 15px;
   overflow: hidden;
   margin:auto;
}

.success-case .banner .swiper-container {
   width: 100%;
   height: 100%;
   position: relative;
}

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

.success-case .banner .swiper-slide {
   background-color: #fff;
   border-radius: 3px;
   flex-shrink: 0;
}

.success-case .swiper-pagination {
   --swiper-pagination-bullet-horizontal-gap: 4px;
   /* 水平间距 */
   position: relative;
   margin-top: 20px;
}

.success-case .swiper-pagination-bullet-active {
   background-color: #fff;
}

.success-case .banner .top-img {
   height: 100px;
   padding: 5px;
}

.success-case .banner .top-img img {
   width: 100%;
   height: 100%;
}

.success-case .banner .title {
   padding-top: 10px;
   font-size: 10px;
   padding: 5px;
   padding-top: 0;
}

.success-case .banner p {
   color: #FE712A;
   font-size: 12px;
   padding-top: 10px;
}

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

.success-case .scoring>div {
   flex: 0 0 50%;
   padding: 5px 10px;
   border-bottom: 1px solid #ddd;
}

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

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

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

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

}

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

.success-case .phone>div span {
   padding-left: 5px;
   font-size:0.32rem;
}

.success-case .indicator {
   padding-top: 20px;
}

.success-case .indicator span {
   display: inline-block;
   width: 7px;
   height: 7px;
   background-color: rgba(255, 255, 255, 0.5);
   border-radius: 100%;
   margin-left: 10px;
}

.success-case .indicator .active {
   background-color: #fff;
}

.faq {
   padding: 20px;
   background-color: #fff;
}

.faq .shop-img {
   width: 100%;
   height: 150px;
}

.faq .shop-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

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

.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: 138px;
   height: 38px;
   background: #3476EF;
   border-radius: 19px;
   font-weight: bold;
   border: 0;
   color: #fff;
   cursor: pointer;
}

.hot-list {
   width: 98.8%;
   overflow: hidden;
   margin-bottom: 50px;
   margin-left:auto;
   margin-right:auto;
}

.hot-list .item {
   width: 200px;
   flex: 0 0 200px;
   margin-right: 10px;
}

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

.hot-list .item .top-img {
   width: 180px;
   height: 216px;
   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: 32px;
   height: auto;
}

    .hot-list .item .top-img .desc {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 10px;
        font-size: 13px;
        color: #fff;
        font-weight: 500;
        background-color: rgba(81, 81, 81, 0.61);
    }

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

.hot-list .text-list {
   padding-top: 10px;
   display: grid;
   grid-template-columns: repeat(2, 50%);
   gap: 10px;
   font-size: 10px;
}

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

.hot-list .text-list>span {
   padding-bottom: 10px;
}

.hot-list .check-shop button {
   background: #FFFFFF;
   border: 0;
   border-radius: 15px;
   width: 123px;
   height: 30px;
   line-height: 21px;
   color: #3476EF;
   font-weight: bold;
   margin-top: 20px;
   cursor: pointer;
   font-size: 13px;
}