:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #888;
    --gray-dark: #666;
    --primary: #94002d;
    --primary-gray: #4f1a1f;
    --primary-dark: #4d0b11;
    --secondary: #cdb03d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f4f4f4;
    --light-b: #f8f9fa;
    --dark: #363636;
    --black: #000;
    --rgb-white: 255,255,255;
    --rgb-primary: 148,0,0;
    --rgb-primary-dark: 74,0,0;
    --rgb-dark: 54,54,54;
    --rgb-black: 0,0,0;
    --rgb-gray: 134,134,134;
    --rgb-secondary: 205,176,61;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --btn-hover-default: 0 0 0 5px rgba(var(--rgb-primary),0.25);
    --btn-hover-secondary: 0 0 0 5px rgba(var(--rgb-secondary),0.2);
    --btn-hover-dark: 0 0 0 5px rgba(var(--rgb-dark),0.2);
    --box-shadow: 0 0 8px 0 rgba(var(--rgb-dark),0.15);
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

* {
  padding: 0;
  margin: 0;
  /* color: var(--dark); */
  /* box-sizing: border-box; */
}

a{
	color: var(--dark);
    text-decoration: none;
}
a:hover{
	color: var(--primary);
    text-decoration: none;
}

li {
  list-style: none;
}

p,li,ul{
	padding: 0;
	margin: 0;
}

img{
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
}


body{
	font-family: "微软雅黑", Microsoft YaHei, PingFang SC, Heiti SC, tahoma, arial, Hiragino Sans GB, sans-serif;
	font-size: 16px !important;
	font-weight: 400;
	color: var(--dark);
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-ms-user-select: none;
}

.btn {
	display: inline-flex;
	font-weight: 400;
	color: #212529;
	align-items: center;
	justify-content: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	/* padding: 0.375rem 0.75rem; */
	/* font-size: .7rem; */
	/* line-height: 1; */
	border-radius: 0.370rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:hover {
	/* color: #212529; */
	text-decoration: none;
	box-shadow: var(--btn-hover-default);
}
.btn:focus,
.btn.focus {
	outline: 0;
	box-shadow: inherit;
}
.btn.disabled,
.btn:disabled {
	opacity: 0.65;
}

.btn-primary{
	color: var(--white);
	background-color: var(--primary);
	border-color: var(--primary);
}
.btn-primary:hover{
	background-color: var(--primary) !important;
	border-color: var(--primary) !important';
}
.btn-outline-primary{
	color: var(--primary);
	border-color: var(--primary);
}
.btn-outline-primary:hover{
	color: var(--white);
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-group-sm>
.btn, .btn-sm{
	font-size: 12px;
	padding: 5px 10px;
	border-radius: 4px;
}

.btn-group-lg>
.btn, 
.btn-lg{
	padding: 8px 16px;
	font-size: 18px;
	line-height: 1.5;
}

.btn-danger {
    color: var(--white);
    background-color: #dc3545;
    border-color: #dc3545;
}
	
.btn-danger:hover{
	color: var(--white) !important;
	text-decoration: none;
	box-shadow: 0 0 0 5px rgba(220,53,69,0.25);
}

.pt-4, 
.py-4 {
    padding-top: 30px !important;
}

.gutters-10 {
    margin-left: -10px;
    margin-right: -10px;
}
.gutters-10>.col,
.gutters-10>[class*="col-"] {
	padding-right: 10px;
	padding-left: 10px;
}

/* 布局 */
.flex-center{
	display: flex;
	align-items: center;
}
.flex-between{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.all-center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.mb-distance{
	margin-bottom: 20px;
}
.flex-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.flex-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.mt-3, 
.my-3{
	margin-top: 0.533rem !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.label {
    display: inline-flex;
    background-color: var(--primary-gray);
    color: var(--white);
    height: 20px;
    font-size: 12px;
    padding: 0 6px;
    border-radius: 10px;
    line-height: 1;
    border: 1px solid transparent;
    justify-content: center;
    align-items: center;
}

.rounded{
	border-radius: 5px !important;
}


/* 首页标题 */
.x-home-title-wrap{
	text-align: center;
	margin-bottom: 25px;
}
.x-home-title-wrap .title {
	display: inline-block;
	font-size: 22px;
	letter-spacing: 1.5px;
	font-weight: 500;
	position: relative;
	margin-bottom: 10px;
}
.x-home-title-wrap .title::before {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    left: -10px;
    border-radius: 50%;
    background: linear-gradient(315deg, rgba(101, 229, 181, 0), rgb(229 101 101 / 10%), rgb(229 101 101 / 60%));
    top: 0;
    z-index: 1;
}
.x-home-title-wrap .desc{
	position: relative;
	color: var(--gray);
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 1.2px;
	font-style: italic;
}
.x-home-title-wrap .desc::before, 
.x-home-title-wrap .desc::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 30%;
    background-color: #E7E7E7;
}
.x-home-title-wrap .desc::before {
    left: 0;
}
.x-home-title-wrap .desc::after {
    right: 0;
}
@media (min-width: 992px){
	/* 首页标题 */
	.x-home-title-wrap{
		text-align: center;
		margin-bottom: 25px;
	}
	.x-home-title-wrap .title {
		display: inline-block;
		font-size: 34px;
		letter-spacing: 1.5px;
		font-weight: 500;
		position: relative;
		margin-bottom: 10px;
	}
	.x-home-title-wrap .title::before {
	    content: "";
	    position: absolute;
	    width: 36px;
	    height: 36px;
	    left: -10px;
	    border-radius: 50%;
	    background: linear-gradient(315deg, rgb(229 101 101 / 0%), rgb(229 101 101 / 10%), rgb(229 101 101 / 60%));
	    top: 0;
	    z-index: 1;
	}
	.x-home-title-wrap .desc{
		position: relative;
		color: var(--gray);
		font-size: 15px;
		font-weight: 300;
		letter-spacing: 1.2px;
		font-style: italic;
	}
	.x-home-title-wrap .desc::before, 
	.x-home-title-wrap .desc::after {
	    content: "";
	    position: absolute;
	    height: 1px;
	    width: 40%;
	    background-color: #E7E7E7;
	}
	.x-home-title-wrap .desc::before {
	    left: 0;
	}
	.x-home-title-wrap .desc::after {
	    right: 0;
	}
}

/* 更多 */
.more-btn{
	margin: 0 auto;
	text-align: center;
}
.more-btn a{
	min-width: 150px;
	height: 36px;
	line-height: 36px;
	border-radius: 20px;
	font-size: 14px;
	color: var(--white);
	background: var(--primary);
}

/* 价格 */
.price, .yp-price {
    color: var(--orange);
	font-size: 10px;
}
.price>span {
    font-size: 18px;
	font-weight: 700;
    color: var(--orange);
    margin-right: 2px;
}

/* 轮播图 */
.swiper-pagination-bullet-active{
	background: var(--orange);
}
.swiper-pagination-bullet{
	width: 16px;
	height: 6px;
	border-radius: 5px;
}

/* 分页器 */
.pagination{
	justify-content: center;
	margin-top: 60px;
}
.page-link{
	padding: 0.185rem 0.278rem;
	color: var(--primary);
}
.page-link:hover{
	color: var(--primary);
}
.page-item.active .page-link{
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

/* 内容为空提示 */
.empty {
	margin: 0.26667rem auto;
    text-align: center;
    position: relative;
}
.empty img {
	width: 6.4rem;
	height: 6.4rem;
}
.empty .txt {
    text-align: center;
    color: #999;
    position: absolute;
	font-size: 0.42667rem;
	top: 70%;
    left: 50%;
    transform: translateX(-50%);
}

/* 侧边推荐 */
.x-title-side {
	margin-bottom: 20px;
	position: relative
}
.x-title-side:after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	right: 0;
	bottom: 10px;
	height: 10px;
	background: linear-gradient(90deg, rgb(229 101 209 / 0%), rgb(229 101 135 / 10%), rgb(229 101 101 / 60%));
	border-radius: 4px;
}
.x-title-side>.title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1.5;
	position: relative;
	z-index: 1;
	color: var(--primary-dark)
}
@media (min-width: 992px) {
    .page-sidebar {
        width: 300px;
    }
	.x-title-side>.title {
		font-size: 22px;
		font-weight: 500
	}
	
	/* 内容为空提示 */
	.empty {
	     margin: 20px auto;
	}
	.empty img {
	    width: 400px;
	    height: 400px;
	}
	.empty .txt {
	    font-size: 18px;
	    top: 75%;
	}
}


/* 头部 */
.top-wrap{
	background-color: var(--primary);
	color: var(--white);
	padding-top: 8px;
	padding-bottom: 8px;
	overflow: hidden;
}
.Apage-header>.top-wrap .web-ts {
	display: flex;
	font-size: 12px;
}
/* .top-wrap .web-ts>li:last-child {
    margin-left: 15px;
} */
.Apage-header>.top-wrap .web-ts>li+li {
	margin-left: 10px;
}
.top-wrap .web-ts>li i{
	font-size: 12px;
	color: var(--secondary);
}
.top-wrap .web-ts>li span{
	color: var(--white);
}
.Apage-header>.top-wrap .tel-num {
	background-color: var(--secondary);
	line-height: 1.0;
	padding: 4px 8px;
	border-radius: 13px;
	margin-left: auto;
	font-size: 14px;
	position: relative;
}
.Apage-header>.top-wrap .tel-num span {
	font-weight: 700
}
.header-wrap>.nav-wrap {
	display: none
}
.header-wrap .logo{
	padding: 13px 0 13px 0;
}
.header-wrap .logo a{
	display: inline-block;
}
.header-wrap .logo img{
	height: 36px;
	width: auto !important;
}
.header-wrap {
	display: flex;
	align-items: center;
	position: relative
}
/* .header-wrap>.nav-wrap {
    display: block;
    margin-left: auto;
} */
.header-wrap>.nav-wrap .navs {
    display: flex !important;
    align-items: center;
}
.header-wrap>.nav-wrap .navs>li>a {
    display: block;
	color: var(--dark);
    font-size: 18px;
    padding: 10px;
    position: relative;
    z-index: 1;
	transition: all .2s ease-in-out;
}
.header-wrap>.nav-wrap .navs>li:hover a{
	color: var(--primary);
}
.header-wrap>.nav-wrap .navs>li.active>a {
	color: var(--primary)
}
.header-wrap>.nav-wrap .navs>li.active>a:before {
    content: "";
    height: 10px;
    width: 70%;
    left: 15%;
    bottom: 10px;
    background-color: rgba(var(--rgb-secondary), .3);
    position: absolute;
    border-radius: 6px;
    z-index: -1;
}    
.header-wrap>.nav-wrap .navs>li.dropdown>ul {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -70px;
    width: 140px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 500ms ease;
    transition: opacity 500ms ease;
    z-index: 99;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .1);
    padding: 5px 10px;
}
.header-wrap>.nav-wrap .navs>li.dropdown>ul>li>a {
	display: block;
	color: var(--dark);
	line-height: 36px;
	text-align: center;
	font-size: 14px;
}
.header-wrap>.nav-wrap .navs>li.dropdown:hover>ul {
	opacity: 1;
	visibility: visible
}
.header-wrap>.nav-wrap .navs>li.dropdown>ul:after {
	content: "";
	height: 3px;
	width: 50%;
	position: absolute;
	bottom: 0;
	left: 25%;
	background-color: var(--primary)
}

.header-wrap>.others {
	margin-left: auto;
	display: flex;
	align-items: center
}
.topsearch>a {
	display: block;
	line-height: 38px;
	padding: 0 10px;
	background-color: rgba(var(--rgb-primary), .05);


	border-radius: 4px;
}
.topsearch>a i{
	font-size: 20px;
}
.dropdown-menu{
	min-width: 9rem;
}
.dropdown-menu.search-dropdown-menu {
	border: none;
	padding: 0;
	box-shadow: 0 0 12px 0 rgba(var(--rgb-black), .08);
}
.search-dropdown-menu input[type="text"] {
	height: 48px;
	line-height: 48px;
	font-size: 14px;
	background: none !important;
	box-shadow: none;
	border: 0
}
.dropdown-menu.search-dropdown-menu .dropdown-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	transition: all 200ms ease-in-out;
	font-size: 26px;
	font-weight: 500;
	right: 14px;
}
.top-menu-icon {
	position: relative;
	padding: 10px 15px;
	margin-right: -14px;
	margin-left: 2px;
}
.top-menu-icon .navbar-toggler-icon {
	width: 16px;
	height: 18px;
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	margin-right: 7px;
	border-bottom: 2px solid var(--dark);
	transform: translateX(8px);
}
.top-menu-icon .navbar-toggler-icon:before,
.top-menu-icon .navbar-toggler-icon:after {
	width: 16px;
	position: absolute;
	height: 2px;
	background-color: var(--dark);
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
	transform: translateX(-8px);
	transition: transform 200ms linear;
}
.top-menu-icon .navbar-toggler-icon:after {
	top: 8px;
	width: 24px;
	left: 0;
}
.top-menu-icon.open .navbar-toggler-icon {
	border-color: transparent;
	transition: all 300ms linear;
}
.top-menu-icon.open .navbar-toggler-icon:before {
	transform: translate(-8px, 8px) rotate(-45deg);
	width: 24px;
}
.top-menu-icon.open .navbar-toggler-icon:after {
	transform: translateX(-8px) rotate(45deg);
}

.mobile-nav__wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
	z-index: 999;
	opacity: 0;
}
.mobile-nav__content {
	width: 315px;
	background-color: var(--white);
	z-index: 10;
	position: relative;
	height: 100%;
	overflow-y: auto;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
}
.mobile-nav__wrapper.expanded {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 1;
}
.mobile-nav__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.8;
	cursor: pointer;
}
.mobile-nav__close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 20px;
	cursor: pointer;
}
.mobile-nav__close i{
	font-size: 26px;
	font-weight: 500;
}
.mobile-nav__content .logo-box {
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mobile-nav__content .logo-box a {
	display: block;
}
.mobile-nav__content .logo-box a img {
	height: 30px;
	width: auto;
}
.mobile-nav__content .navs {
	margin-left: 10px;
	margin-right: 10px;
}
.mobile-nav__content .navs li:not(:last-child) {
	border-bottom: 1px solid rgba(125, 125, 125, 0.15);
}
.mobile-nav__content .navs li>a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	line-height: 30px;
	font-weight: 500;
	height: 42px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.mobile-nav__content .navs li.active>a {
	font-weight: 700;
	color: var(--primary)
}
.mobile-nav__content .navs li a button {
	width: 30px;
	height: 30px;
	background-color: var(--gray);
	border: none;
	outline: none;
	color: var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
	border-radius: 4px;
	font-size: 12px;
}
.mobile-nav__content .navs ul {
	display: none;
	border-top: 1px solid rgba(125, 125, 125, 0.15);
	margin-left: 10px;
}
.mobile-nav__content .navs ul>li>a {
	font-size: 14px;
	padding-left: 12px;
	position: relative
}
.mobile-nav__content .navs ul>li>a:before {
	content: "\e60a";
	font-family: iconfont;
	position: absolute;
	left: -5px
}
.mobile-nav__content .navs li a button.expanded {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	background-color: var(--primary);
	color: var(--light);
}
.mobile-nav__content .mobile-nav__telwrap {
	margin-top: 20px;
}
.mobile-nav__content .mobile-nav__telwrap a {
	display: block;
	font-size: 18px;
	color: var(--white);
	background-color: var(--primary);
	padding: 5px 12px;
	border-radius: 4px;
}
.mobile-nav__content .mobile-nav__telwrap a:hover {
	background-color: var(--red);
}


/* 底部 */
.Apage-footer {
	/* background-color: #032215; */
	background-color: #4d0b11;
	position: relative;
	padding-top: 20px;
	padding-bottom: 70px;
	border-top: 1px dashed var(--white);
	box-shadow: 0px -6px 10px rgba(0, 0, 0, 0.04);
	background-image: url("../img/Apage-footerimg-1.png");
	background-size: 300px;
	background-position: 120% 100%;
	background-repeat: no-repeat;
	color: var(--white)
}
.Apage-footer .f-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
	color: var(--white);
}
.Apage-footer .f-desc {
	color: var(--gray);
	font-size: 14px;
}
.Apage-footer .f-telwrap {
	text-align: center;
	padding: 10px;
	border-radius: 4px;
	margin-top: 15px;
	background-color: var(--white)
}
.Apage-footer .f-telwrap .tel-num {
	font-size: 22px;
	color: var(--primary);
	line-height: 1.3
}
.Apage-footer .f-telwrap .tel-num>span {
	font-weight: 700;
}
.Apage-footer .f-telwrap .tips {
	font-size: 14px;
	margin-top: 6px;
	color: rgba(var(--rgb-primary), .75);
}
.Apage-footer .copy-wright {
	margin-top: 20px;
	font-size: 13px;
	color: rgba(var(--rgb-white), .68)
}
.Apage-footer .weixin {
	border: 1px dashed rgba(var(--rgb-primary), .15);
	padding: 5px;
	text-align: center;
	position: relative;
	max-width: 132px;
	margin: auto;
	background-color: var(--white)
}
.Apage-footer .weixin:hover {
	border-color: var(--primary)
}
.Apage-footer .weixin .img img {
	width: 120px;
}
.Apage-footer .weixin .tips {
	font-size: 12px;
	margin-top: 5px;
	color: var(--gray)
}
.Apage-footer a {
	color: rgba(var(--rgb-white), .4)
}
.Apage-footer a:hover {
	color: var(--secondary)
}
.Apage-footer .statement{
	font-size: 0.267rem;
	color: rgba(var(--rgb-white), .4);
	margin-top: 15px;
}

.Afooter-PCsticky {
	display: none !important
}

/* 底部导航条 */
.Afooter-Msticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	background-color: rgba(var(--rgb-white), .9);
	display: flex;
	/* padding-left: 60px; */
	padding-left: 10px;
	padding-right: 10px;
	align-items: center;
	border-radius: 14px 14px 0 0;
	box-shadow: 0 -4px 8px 0 rgba(var(--rgb-black), .15)
}
.Afooter-Msticky>.kefu-img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #eaeaea;
	background-image: url("../img/wanghan.png");
	background-repeat: no-repeat;
	background-size: cover;
	/* position: absolute; */
	bottom: 0;
	left: 0;
}
.Afooter-Msticky>.txt {
	text-align: center;
	margin-right: 0;
	min-width: 108px
}
.Afooter-Msticky>.txt .num {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--red)
}
.Afooter-Msticky>.txt .tips {
	font-size: 12px;
	transform: scale(.75);
	transform-origin: center;
	color: var(--gray)
}
.Afooter-Msticky>.btn-wrap {
	flex-grow: 1;
	min-width: 0;

	display: flex;
	justify-content: space-between;
	padding-top: 5px;
	padding-bottom: 5px;
}
.Afooter-Msticky>.btn-wrap .f-btn {
	display: flex;
	height: 40px;
	align-items: center;
	justify-content: center;
	flex: 0 0 48.5%;
	min-width: 0;
	border-radius: 22px;
	font-size: 14px;
}
.Afooter-Msticky>.btn-wrap .f-btn.online {
	background-color: var(--white);
	border: 1px solid var(--primary);
	color: var(--primary)
}
.Afooter-Msticky>.btn-wrap .f-btn.tel {
	background-color: var(--red);
	color: var(--white)
}
.Afooter-PCsticky {
	display: none !important
}

@media (max-width: 360px) {
	.Apage-header>.top-wrap .web-ts>li+li{
		display: none;
	}
}

@media (max-width: 768px) {
	.flex-between{
		padding-left: 10px;
		padding-right: 10px;
	}
	.Apage-header>.top-wrap .web-ts>li+li{
		margin-left: 6px;
	}
	.Apage-header>.top-wrap .tel-num{
		padding: 4px;
		border-radius: 12px;
	}
}

@media (min-width: 768px) {
    .mt-md-0, 
	.my-md-0 {
        margin-top: 0 !important;
    }
}


@media (min-width: 992px) {
	/* 头部 */
	.top-menu-icon, 
	.mobile-nav__wrapper {
	    display: none !important;
	}
	.Apage-header>.top-wrap .web-ts {
		font-size: 15px;
	}
	.Apage-header>.top-wrap .web-ts>li {
		letter-spacing: 1.2px;
	}
	.Apage-header>.top-wrap .web-ts>li:before {
		margin-right: 4px;
	}
	.Apage-header>.top-wrap .web-ts>li+li {
		margin-left: 15px;
	}
	.top-wrap .web-ts>li i{
		font-size: 16px;
		color: var(--secondary);
	}
	.Apage-header>.top-wrap .tel-num {
		font-size: 18px;
		letter-spacing: .6px;
		/* width: 158px */
	}
	.Apage-header>.top-wrap .tel-num span {
		font-weight: 500
	}
	.Apage-header>.top-wrap .tel-num:after {
		content: "";
		position: absolute;
		bottom: -9px;
		width: 80px;
		height: 50px;
		background-image: url("../img/Apage-topimg_1.png");
		background-repeat: round;
		right: 105%
	}
	.header-wrap>.nav-wrap {
		display: block;
		margin-left: auto
	}
	.header-wrap .logo img{
		height: 44px;
	}
	
	
    /* 底部 */
	.Apage-footer {
		padding-top: 40px;
		padding-bottom: 100px;
		background-position: 60% 100%;
		background-size: auto
	}
	.Apage-footer .f-title {
		font-size: 28px;
		font-weight: 500
	}
	.Apage-footer .f-desc {
		font-size: 16px;
	}
	.Apage-footer .f-telwrap {
		padding: 12px;
		max-width: 280px;
		margin-top: 30px;
	}
	.Apage-footer .f-telwrap .tel-num {
		font-size: 26px;
	}
	.Apage-footer .f-telwrap .tel-num>span {
		font-weight: 500;
	}
	.Apage-footer .f-telwrap .tips {
		font-size: 16px;
	}
	.Apage-footer .copy-wright {
		margin-top: 40px;
	}
	.Apage-footer .statement{
		font-size: 14px;
		/* color: rgba(var(--rgb-white), .4); */
		margin-top: 20px;
	}
	.Afooter-PCsticky {
		display: block !important;
		position: fixed;
		z-index: 9;
		left: 15px;
		right: 15px;
		bottom: 0;
		background-color: rgba(var(--rgb-primary-dark), .9);
		color: var(--white);
		border-radius: 12px 12px 0 0;
		transition: background-color .3s ease-in-out
	}
	.Afooter-PCsticky.active {
		opacity: 1;
		visibility: visible;
	}
	.Afooter-PCsticky:hover {
		background-color: rgba(var(--rgb-primary-dark), .8)
	}
	.Afooter-PCsticky .container {
		display: flex;
		align-items: center;
		position: relative
	}
	.Afooter-PCsticky .title {
		font-size: 18px;
		margin-bottom: 0;
		padding-top: 12px;
		padding-bottom: 12px;
		line-height: 1
	}
	.Afooter-PCsticky .kefu-img {
		position: absolute;
		bottom: 0;
		left: 46%;
		background-image: url("../img/wanghan-b.png");
		width: 64px;
		height: 88px;
		background-repeat: no-repeat;
		background-size: cover;
		transition: transform .1s ease-in-out
	}
	.Afooter-PCsticky .btn-wrap {
		margin-left: auto;
		display: flex;
		align-items: center;
	}
	.Afooter-PCsticky .btn-wrap .tel-num {
		font-size: 20px;
		line-height: 1;
	}
	.Afooter-PCsticky .btn-wrap .tel-num i{
		font-size: 22px;
		margin-right: 5px;
	}
	/* .Afooter-PCsticky .btn-wrap .tel-num:before {
		content: "\e7a2";
		font-family: iconfont;
		margin-right: 4px;
	} */
	.Afooter-PCsticky .btn-wrap .btn-b {
		margin-left: 15px;
		border-radius: 20px;
		position: relative;
		transition: all .2s ease-in-out
	}
	.Afooter-PCsticky .btn-wrap .btn-b .subdiv {
		position: absolute;
		bottom: 100%;
		color: var(--gray);
		left: 50%;
		transform: translateX(-50%);
		opacity: 0;
		visibility: hidden;
	}
	.Afooter-PCsticky .btn-wrap .btn-b:hover .subdiv {
		opacity: 1;
		visibility: visible
	}
	.Afooter-PCsticky .btn-wrap .btn-b span,
	.Afooter-PCsticky .btn-wrap .btn-b a {
		display: flex;
		align-items: center;
		height: 36px;
		/* padding: 0 12px; */
		border-radius: 20px;
		cursor: pointer
	}
	.Afooter-PCsticky .btn-wrap .btn-b i{
		font-size: 20px;
		margin-right: 5px;
	}
	.Afooter-PCsticky .btn-wrap .btn-b.online {
		color: var(--white);
		background-color: var(--secondary);
		padding: 0 20px;
	}
	.Afooter-PCsticky .btn-wrap .btn-b.weixin{
		background-color: var(--white);
		color: var(--primary);
		padding: 0 20px;
	}
	.Afooter-PCsticky .btn-wrap .btn-b.weixin a{
		color: var(--primary)
	}
	.Afooter-PCsticky .btn-wrap .btn-b.weixin .subdiv {
		background-color: var(--white);
		padding: 5px;
		width: 132px;
		border: 1px solid rgba(var(--rgb-primary), .15);
		margin-bottom: 10px;
		text-align: center
	}
	.Afooter-PCsticky .btn-wrap .btn-b.weixin .subdiv .img {
		width: 120px;
		height: 120px;
		background-image: url("../img/foot-wx.png");
		background-size: cover;
	}
	.Afooter-PCsticky .btn-wrap .btn-b.weixin .subdiv .tips {
		font-size: 12px;
	}
	
	/* 底部导航条 */
	.Afooter-Msticky {
		display: none !important
	}
}



@media (min-width:1200px) {
	.Afooter-PCsticky .title {
		font-size: 22px;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.Afooter-PCsticky .btn-wrap .btn-b {
		margin-left: 20px;
		display: flex;
		align-items: center;
	}

	.Afooter-PCsticky .btn-wrap .btn-b span,
	.Afooter-PCsticky .btn-wrap .btn-b a {
		/* padding: 0 20px; */
		font-size: 17px
	}
}

