@charset "utf-8";


/* @font-face {
	font-family: Lexend;
	src: url('../font/Lexend-Regular.ttf')
} */



@font-face {
	font-family: 'iconfont';
	src: url('../iconfont/iconfont.woff2?t=1705108683799') format('woff2'),
		url('../iconfont/iconfont.woff?t=1705108683799') format('woff'),
		url('../iconfont/iconfont.ttf?t=1705108683799') format('truetype');



}

/* 视频控制按钮 */
.video-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
}

.video-controls .soundicon,
.video-controls .fullscreenicon,
.video-controls .pauseicon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-controls .soundicon::before,
.video-controls .fullscreenicon::before,
.video-controls .pauseicon::before {
  font-family: 'iconfont';
  font-size: 20px;
  color: #fff;
}

.video-controls .soundicon {
  display: none;
}

.video-controls .soundicon.icon-mute::before {
  content: '\eCA9';
}

.video-controls .soundicon.icon-sound::before {
  content: '\e8b8';
}

.video-controls .fullscreenicon::before {
  content: '\ec13';
}

.video-controls .pauseicon::before {
  content: '\e65f';
}

.video-controls .pauseicon.start::before {
  content: '\e6dd';
}

.video-controls .soundicon:hover,
.video-controls .fullscreenicon:hover,
.video-controls .pauseicon:hover {
  transform: scale(1.1);
}

/* 声音状态 */
/* 默认状态（无muted类）：有声音，显示声音图标 */
.video-controls .soundicon.icon-mute {
  display: none;
}

.video-controls .soundicon.icon-sound {
  display: flex;
}

/* 静音状态（添加muted类）：显示静音图标，隐藏声音图标 */
.video-controls.muted .soundicon.icon-mute {
  display: flex;
}

.video-controls.muted .soundicon.icon-sound {
  display: none;
}

/* 响应式视频控制按钮 */
@media (max-width: 767px) {
  .video-controls {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .video-controls .soundicon,
  .video-controls .fullscreenicon,
  .video-controls .pauseicon {
    width: 28px;
    height: 28px;
  }
  
  .video-controls .soundicon::before,
  .video-controls .fullscreenicon::before,
  .video-controls .pauseicon::before {
    font-size: 16px;
  }
}

/* 浏览历史样式（保留一个精简版本） */
.cp-lish {
  padding: 50px 0 15px;
}

.lish-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lish-empty {
  text-align: center;
  padding: 40px 0;
  color: #999;
  font-size: 14px;
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: inherit;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


* {
	box-sizing: border-box;
}

body,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p,
textarea,
table,
div,
ul,
li,
select,
td,
th,
em,
span,
i,
button,
code {
	margin: 0;
	padding: 0;
	color: inherit;
	line-height: inherit;
	font-family: GT-America, sans-serif;
}

img {
	border: 0;
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
	height: auto;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

ul,
li {
	list-style: none;
}

a,
p,
span,
i,
em {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
}

pre {
	word-break: break-word;
}

:focus {
	outline: none !important;
	border-color: inherit;
}

.clearfix {
	*zoom: 1;
}

.clearfix:before,
.clearfix:after {
	display: table;
	line-height: 0;
	content: "";
}

.clearfix:after {
	clear: both;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: inherit;
}

em,
i {
	font-style: normal;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"] {
	-webkit-appearance: none;
}

input[type="button"] {
	border: none;
}

textarea {
	-webkit-appearance: none;
}

.auto {
	margin: 0 auto;
	width: calc(100% - 40px);
}

:hover {
	transition: all .2s ease;
}

.img_hover_wrap {
	overflow: hidden;
}

.img_hover {
	transition: all .3s;
}

.img_hover:hover {
	transform: scale(1.05, 1.05);
}

.img_traslate {
	transition: all .3s;
}

.img_traslate:hover {
	transform: translateY(-10px);
}

.img_rotate {
	transition: all .3s;
}

.img_rotate:hover {
	transform: rotate(-360deg);
}

.bold {
	font-weight: bold;
}

.normal {
	font-weight: normal !important;
}

.center {
	text-align: center !important;
}

.img {
	/* width: 100%; */
	display: block;
	height: auto;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ele {
	position: relative;
}

.ele:before,
.ele:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
}

.ipt {
	display: block;
	border: none;
}

.ipt_button {
	cursor: pointer;
}

.item_scale .icon {
	transition: all .3s;
}

.item_scale:hover .icon {
	transform: scale(1.08, 1.08);
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.clamp {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	/* display: -ms-flexbox; */
	-webkit-box-orient: vertical;
	/*-webkit-line-clamp: 3;*/
}

.clamp1 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.clamp2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.clamp3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.imgbox {
	display: block;
	overflow: hidden;
}

.item .img {
	transition: all 1s;
	width: 100%;
	display: block;
}

.item:hover .imgbox .img {
	transform: scale(1.1, 1.1);
}

.zoomimg {
	position: relative;
	overflow: hidden;
	height: 0;
	display: block;
}

.zoomimg .img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.flipx .icon {
	transition: all .3s;
}

.flipx:hover .icon {
	transform: scaleX(-1);
}

.scale .icon {
	transition: all .3s;
}

.scale:hover .icon {
	transform: scale(1.1, 1.1);
}

.underline {
	text-decoration: underline;
}

label {
	-webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

.img_full {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.flex-align-start {
	align-items: flex-start;
}

.flex-align-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex-align-end {
	align-items: flex-end;
}

.flex-pack-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flex-pack-justify {
	-webkit-box-pack: justify;
	-webkit-justify-content: pace-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex-pack-start {
	justify-content: flex-start;
}

.flex-pack-end {
	justify-content: flex-end;
}

.flex-v {
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-w {
	flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
	overflow: hidden;
}

.flex-11 {
	flex: 1;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* html{font-size: 5.2083vw;} */
body {
	overflow-x: hidden;
	color: #000;
	font-size: 14px;
	line-height: 1.4;
	background: #fff;
}

/* ::-webkit-input-placeholder{color:#999;}
:-moz-placeholder{color:#999;}
::-moz-placeholder{color:#999;}
:-ms-input-placeholder{color:#999;} */

.squareimg {
	width: 100%;
	padding-bottom: 100%;
	overflow: hidden;
	position: relative;
}

.squareimg .img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}

.item:hover .imgbox.squareimg .img {
	transform: translate(-50%, -50%) scale(1.1, 1.1);
}



.link-hover {
	display: inline-block;
	vertical-align: middle;
	padding-bottom: 1px;
	position: relative;
}

.link-hover::before,
.link-hover::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	background: #fff;
	height: 1px;
}

.link-hover::before {
	width: 100%;
}

.link-hover::after {
	width: 0;
	transition: all 0.4s;
}

.link-hover:hover::before {
	display: none;
}

.link-hover:hover::after {
	width: 100%;
}


.swiper-button {
	background: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	transform: translate(0, -50%);
}

.swiper-button::after {
	font-family: 'iconfont';
	content: '\e600';
}

.swiper-button-prev {
	transform: translate(0, -50%) rotate(180deg);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}



.fz32 {
	font-size: 32px;
}

/* index */
.head {
	height: 48px;
	background: #fff;
	position: sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid #e5e5e5;
}

.head .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.head .l,
.head .r {
	display: flex;
	align-items: center;
}


.hd-logo .img {
	height: 36px;
	width: auto;
}

.hd-icos {}

.hd-icos .icon {
	font-size: 17px;
	margin-left: 17px;
	font-weight: bold;
}

.hd-icos .icon::after {
	font-family: 'iconfont';
}

.hd-icos .search::after {
	content: '\e612';
}

.hd-icos .admin::after {
	content: '\e79d';
}

.hd-icos .collect::after {
	content: '\e602';
}

.hd-icos .handbag::after {
	content: '\e601';
}

.hd-nav {
	padding-left: 95px;
}

.hd-nav li {
	display: inline-block;
	vertical-align: middle;
	padding: 0 10px;
}

.hd-nav li>a {
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	line-height: 48px;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
}

.hd-nav li:hover>a {
	border-color: #000;
}

.hd-nav li:hover .drop {
	display: block;
}


.hd-nav .drop {
	background: #fff;
	padding: 10px;
	position: absolute;
	width: 100%;
	left: 0;
	font-size: 12px;
	display: none;
}

.hd-nav .drop .closedrop {
	font-size: 15px;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}

.hd-nav .drop .closedrop::after {
	content: '\e839';
	font-family: 'iconfont';
}

.hd-nav .drop .lk {
	line-height: 1.5;
	display: block;
	margin-bottom: 8px;
}

.hd-nav .drop .lk:hover {
	opacity: 0.8;
}

.hd-nav .detail {
	display: flex;
}

.hd-nav .mod {
	display: flex;
	margin-right: 10px;
}

.hd-nav .lksbox {
	background: #f7f7f7;
	padding: 15px;
	width: 200px;
}


.hd-nav .imgsbox {
	margin-right: 10px;
	display: grid;
	gap: 10px;
}

.hd-nav .imgsbox .imgbox {
	position: relative;
	width: 155px;
}

.hd-nav .imgsbox .shade {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s;
}

.hd-nav .imgsbox .title {
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	width: 85%;
	font-weight: bold;
	text-align: center;
}

.hd-nav .imgsbox .imgbox:hover .shade {
	opacity: 1;
}


.hd-nav .imgsbox.one .imgbox {
	width: 320px;
}

.hd-nav .imgsbox.two {
	grid-template-columns: repeat(2, 1fr);
}

.hd-nav .imgsbox.three {
	grid-template-columns: repeat(3, 1fr);
}



.hd-nav .imgsbox.three2 {
	display: flex;
}

.hd-nav .imgsbox.three2 .imgbox {
	margin-top: 10px;
}

.hd-nav .imgsbox.three2 .imgbox:first-child {
	margin-top: 0;
}

.hd-nav .imgsbox.three2>.imgbox {
	width: 320px;
	height: 320px;
}

.hd-nav .imgsbox.three2>div {
	width: 155px;
}


.hd-nav .menus {
	padding: 15px 30px;
	display: flex;
}

.hd-nav .menus .col {
	width: 150px;
	margin-right: 20px;
}

.hd-nav .menus .row {
	margin-bottom: 40px;
}

.hd-nav .menus .row:last-child {
	margin-bottom: 0;
}


/* 搜索 */

.hd-sear {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 110;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	display: none;
}

.hd-sear .wrap {
	background: #fff;
	padding: 25px 0 60px;
	min-height: 300px;
}

.hd-sear .ssbox {
	display: flex;
	align-items: center;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #000;
}

.hd-sear .ssbox .input {
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	line-height: 30px;
}

.hd-sear .ssbox .gb {
	font-size: 12px;
	text-decoration: underline;
	margin-left: 40px;
	cursor: pointer;
}

.hd-sear .cols {
	display: flex;
	flex-wrap: wrap;
}

.hd-sear .col {
	font-size: 12px;
	line-height: 22px;
	min-width: 22%;
	margin-right: 3%;
}

.hd-sear .lks li {
	margin-top: 10px;
}

.hd-sear .lks .lk {
	display: inline-block;
	vertical-align: middle;
}

.hd-sear .lks .lk::after {
	background: #000;
}


.foot {
	background: #fff;
	border-top: 1px solid #e5e5e5;
}

.ft-t {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 32px 0;
}

.ft-t .info {
	width: 26%;
	margin-right: 5%;
}

.ft-t .menu {
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.ft-t .col {
	min-width: 23%;
}

.ft-t .tit {
	margin-bottom: 18px;
	font-weight: bold;
}

.ft-t .lks {}

.ft-t .lks li {
	margin-bottom: 7px;
	line-height: 20px;
}

.ft-t .email {}

.ft-t .email .text {
	font-size: 12px;
	font-weight: bold;
}

.ft-t .form {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #000;
	position: relative;
	margin-top: 20px;
}

.ft-t .form .label {
	position: absolute;
	left: 0;
	z-index: 1;
	transition: all 0.2s;
}

.ft-t .form .ipt-txt {
	font-size: 14px;
	padding: 5px 0;
	position: relative;
	z-index: 2;
	background: none;
}

.ft-t .form .send {
	width: 40px;
	height: 40px;
	border: 0;
	background: none;
	font-size: 22px;
	cursor: pointer;
}

.ft-t .form .send::after {
	content: '\e60e';
	font-family: 'iconfont';
}

.ft-t .form .label.up {
	top: -12px;
	font-size: 12px;
}


.ft-t .social {
	display: flex;
	margin-top: 40px;
}

.ft-t .social .icon {
	margin-right: 22px;
	font-size: 17px;
}



.ft-b {
	border-top: 1px solid #e5e5e5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 20px;
}

.ft-b .bq {
	font-size: 10px;
	display: flex;
	flex-wrap: wrap;
}

.ft-b .bq span {
	margin: 0 6px;
}

.ft-b .bq img {
	width: 10px;
	margin: -2px 2px 0 0;
}

.ft-b .lks {}

.ft-b .lk {
	font-size: 12px;
	padding: 24px 32px;
	border-left: 1px solid #e5e5e5;
	display: inline-block;
}

.ft-b .lk i {
	font-size: 15px;
	margin: -1px 5px 0 0;
	display: inline-block;
	vertical-align: middle;
}





.idx-box {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 40px;
	max-width: 90%;
	text-align: center;
	color: #fff;
}

.idx-box .title {
	font-weight: bold;
	margin-bottom: 10px;
}

.idx-box .lks {
	margin-top: 10px;
}

.idx-box .lk {
	margin: 0 20px;
}



.idx-ban {
	height: calc(90vh - 48px);
	position: relative;
}

.idx-ban .video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.idx-ban .lks {
	margin-top: 20px;
}

/* .idx-ban .pauseicon {
	width: 34px;
	height: 34px;
	color: #fff;
	position: absolute;
	right: 30px;
	bottom: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.idx-ban .pauseicon::after {
	content: '\e65f';
	font-family: 'iconfont';
}

.idx-ban .pauseicon.start::after {
	content: '\e6dd';
} */

.idx-cp {
	padding: 70px 0 50px;
}

.idx-cp .tabs {
	text-align: center;
	margin: 20px 0 55px;
}

.idx-cp .tabs .lk {
	margin: 0 10px;
	padding-bottom: 10px;
	position: relative;
}

.idx-cp .tabs .lk::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #000;
}

.idx-cp .tabs .lk.cur {
	font-weight: bold;
}

.idx-cp .tabs .lk.cur::after {
	width: 100%;
}

.idx-cp .list {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
}

.idx-cp .list .title {
	margin-top: 15px;
	text-align: center;
}


.idx-bags {
	height: 85vh;
	position: relative;
}

.idx-gift {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(2, 1fr);
	margin: 1px 0;
}

.idx-gift .item {
	position: relative;
	display: block;
}







.idx-xw {
	padding: 95px 0;
	background: #111;
	color: #fff;
}

.idx-xw .t-tit {
	font-size: 24px;
	text-align: center;
	margin-bottom: 80px;
	font-weight: bold;
}

.idx-xw .item {}

.idx-xw .item .imgbox {
	height: 58vh;
	position: relative;
}

.idx-xw .item .shade {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .25);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: .3s ease;
}

.idx-xw .item .title {
	font-size: 16px;
	text-align: center;
	margin-top: 28px;
	display: block;
}

.idx-xw .item:hover .shade {
	opacity: 1;
}

.idx-xw .swiper-slide {
	transform: scale(0.9, 0.9);
	width: 50vw;
}

.idx-xw .swiper-slide-active {
	transform: scale(1, 1);
}


.idx-xw .swiper-button-prev {
	left: 20%;
}

.idx-xw .swiper-button-next {
	right: 20%;
}



/* news */
.inner-ban {
	position: relative;
	height: 45vh;
}

.inner-ban .box {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	text-align: center;
}

.inner-ban .title {
	font-size: 44px;
	color: #fff;
}

.inner-ban .icon {
	height: 90px;
	width: auto;
	position: absolute;
	left: 50%;
	bottom: -45px;
	transform: translate(-50%, 0);
}

.main {
	padding: 120px 0;
}

.xw-main {
	max-width: 1200px;
	margin: 0 auto;
}

.xw-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.xw-list .item {
	margin-bottom: 90px;
	width: 31%;
}

.xw-list .title {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-top: 30px;
	-webkit-line-clamp: 2;
}

.xw-list .item:hover {
	text-decoration: underline;
}


/* newsDetail */
.xw-det .auto {
	max-width: 1200px;
	margin: 0 auto;
}

.xw-det .topbox {
	padding: 0 0 20px;
	border-bottom: 2px solid #e5e5e5;
	margin-bottom: 40px;
}

.xw-det .title {
	font-size: 42px;
}

.xw-det .date {
	text-align: right;
	color: #999;
	margin-top: 20px;
}

.xw-det .edit {
	line-height: 1.6;
}


/* goods */
.cp-bar {
	border-bottom: 1px solid rgb(217 220 224);
	position: sticky;
	width: 100%;
	left: 0;
	top: 48px;
	background: #fff;
	z-index: 50;
}

.cp-bar .wrap {
	display: flex;
}

.cp-bar .tit {
	font-size: 20px;
	font-weight: bold;
	margin-right: 25px;
	line-height: 50px;
}

.cp-bar .tabs {
	display: flex;
}

.cp-bar .tabs .lk {
	font-size: 12px;
	margin-right: 24px;
	position: relative;
	line-height: 50px;
}

.cp-bar .tabs .lk::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	background: #000;
	width: 0;
	transition: all 0.3s;
}

.cp-bar .tabs .lk.cur::after {
	width: 100%;
}

.cp-bar .tabs .lk:last-child {
	margin-right: 0;
}

.cp-total {
	font-size: 12px;
	padding: 15px 0;
}
.cp-total span {float: right;}
.cp-list {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
}

.cp-list .item {
	margin-bottom: 45px;
}

.cp-list .imgbox {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1; /* 保持3:4的比例 */
}

.cp-list .pic {
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	object-fit: cover; /* 裁剪并保持比例 */
}

.cp-list .pic-s,
.cp-list .pic-h {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover; /* 确保两张图片都裁剪 */
}

.cp-list .smlogo {
	height: 20px;
	position: absolute;
	left: 12px;
	top: 10px;
	z-index: 10;
}

.cp-list .pic {
	transition: all 0.6s;
}

.cp-list .pic-h {
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
}

.cp-list .info {
	padding: 20px 18px;
}

.cp-list .title {
	font-weight: bold;
}

.cp-list .price {
	margin-top: 10px;
}

.cp-list .colors {
	margin-top: 13px;
	display: flex;
}

.cp-list .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 10px;
}

.cp-list .color1 {
	background: #000;
}

.cp-list .color2 {
	background: #422e26;
}

.cp-list .color3 {
	background: #5e5c5f;
}

.cp-list .item:hover .pic-s {
	opacity: 0;
}

.cp-list .item:hover .pic-h {
	opacity: 1;
}

.cp-video {
	width: 100%;
	height: 95vh;
	position: relative;
}

.cp-video .video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cp-video .pauseicon {
	width: 34px;
	height: 34px;
	color: #fff;
	position: absolute;
	right: 30px;
	bottom: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cp-video .pauseicon::after {
	content: '\e65f';
	font-family: 'iconfont';
}

.cp-video .pauseicon.start::after {
	content: '\e6dd';
}


.cp-series {
	height: 95vh;
	position: relative;
}

.cp-bottxt {
	padding: 56px 0;
	text-align: center;
}

.cp-bottxt .txt {
	max-width: 500px;
	margin: 0 auto;
}

.cp-crumb {
	text-align: center;
	border-top: 1px solid #e5e5e5;
	padding: 30px 0;
}

.cp-crumb span,
.cp-crumb a {
	padding: 0 8px;
}

.cp-crumb a:hover {
	text-decoration: underline;
}


/* goodsDetail */
.cp-recom {
	padding: 50px 0 15px;
}

.cp-recom .t-tit {
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
	font-weight: bold;
}


.cp-det {
	display: flex;
}

.cp-det .lbox {
	width: 50%;
	position: relative;
}

.cp-det .rbox {
	width: 50%;
	position: sticky;
	right: 0;
	top: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 48px);
	padding: 0 7.5%;
}

.cp-det .box {
	width: 100%;
}


.cp-det .item {
	margin-bottom: 2px;
	display: block;
}

.cp-det .item .img {
	width: 100%;
	display: block;
}

.cp-det .dots {
	position: fixed;
	left: 30px;
	bottom: 30px;
	z-index: 20;
}

.cp-det .dots.pos {
	position: absolute;
}

.cp-det .dots em {
	width: 6px;
	height: 6px;
	border: 1px solid #000;
	border-radius: 50%;
	display: block;
	margin-bottom: 10px;
}

.cp-det .dots em.active {
	background: #000;
}

.cp-det .smlogo {
	height: 10px;
	width: auto;
}

.cp-det .title {
	font-size: 20px;
	font-weight: bold;
	margin: 5px 0 8px;
}

.cp-det .ys {
	font-size: 12px;
	margin-top: 20px;
}

.cp-det .ys span {
	margin-left: 15px;
}

.cp-det .color {
	display: flex;
	margin-top: 10px;
	margin-bottom: 30px;
}

.cp-det .color span {
	width: 20px;
	height: 20px;
	border: 1px solid transparent;
	margin-right: 10px;
	border-radius: 50%;
	position: relative;
	font-size: 0;
	cursor: pointer;
	transition: all 0.3s;
}

.cp-det .color span i {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
/* 
.cp-det .color .heise i {
	background: #000;
}

.cp-det .color .heise.checked,
.cp-det .color .heise:hover {
	border-color: #000;
}

.cp-det .color .hese i {
	background: rgb(66, 46, 38)
}

.cp-det .color .hese.checked,
.cp-det .color .hese:hover {
	border-color: rgb(66, 46, 38)
}

.cp-det .color .huise i {
	background: #5e5c5f;
}

.cp-det .color .huise.checked,
.cp-det .color .huise:hover {
	border-color: #5e5c5f;
} */



.cp-det .row {
	margin-bottom: 20px;
	font-size: 12px;
}

.cp-det .link-hover:before {
	display: none;
}

.cp-det .link-hover::after {
	background: #000;
}

.cp-det .link-hover:hover::after {
	width: 100%;
}

.cp-det .card {
	display: flex;
	padding: 20px;
	background: #f7f7f7;
	align-items: flex-start;
	margin-top: 30px;
}

.cp-det .card .imgbox {
	width: 90px;
	height: 90px;
	margin-right: 20px;
}

.cp-det .card .smtit {
	font-size: 14px;
	font-weight: bold;
}

.cp-det .card .txt {
	font-size: 12px;
	margin-top: 6px;
}

.cp-det .card .lk {
	font-size: 12px;
	margin-top: 8px;
	padding-bottom: 4px;
}

/* 详情弹窗 */
.pop{position: fixed;width: 100%;height:100%;left:0;top:0;z-index:110;background:rgba(0,0,0,.5);display: none;}


.pop-xq .close{position: absolute;top:40px;right:40px;font-size:16px;cursor: pointer;}
.pop-xq .wrapbox{background-color: #fff;position: absolute;right:0;top:0;bottom:0;width:55%;max-width: 960px;padding:3% 5%;}
.pop-xq .detail{height: 100%;overflow-y: auto;}
.pop-xq .detail::-webkit-scrollbar{display: none;}
.pop-xq .mod{border-bottom:1px solid #e5e5e5;padding:30px 0;}
.pop-xq .mod:last-child{border-bottom:0;}
.pop-xq .box{border:1px solid red;}
.pop-xq .smtit{font-weight: bold;display: flex;align-items: center;justify-content: space-between;}
.pop-xq .sx{margin:25px 0 25px 15px;}
.pop-xq .txt{margin-top:20px;}
.pop-xq .text a{text-decoration: underline;}
.pop-xq .text .mr{margin-right:20px;}

.pop-xq .arrow{transform: rotate(90deg);font-size:12px;}
.pop-xq .drop{display: none;margin-top:20px;}
.pop-xq .smtit.checked .arrow{transform: rotate(270deg);}


@media (max-width:1279px) {

	.sj-menu {
		position: absolute;
		right: 2%;
		top: 50%;
		width: 34px;
		height: 34px;
		margin-top: -17px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		line-height: 1;
	}

	.sj-menu::after {
		content: '\e63d';
		font-family: 'iconfont';
	}

	.sj-menu.close {
		font-size: 18px;
	}

	.sj-menu.close::after {
		content: '\e839';
	}


	.hd-icos {
		margin-right: 50px;
	}

	.hd-nav {
		position: fixed;
		width: 100%;
		left: 0;
		top: 48px;
		bottom: 0;
		z-index: 100;
		background-color: #fff;
		display: none;
		overflow-y: auto !important;
		border-top: 1px solid #efefef;
		padding: 15px 0;
	}

	.hd-nav.show {
		display: block;
	}

	.hd-nav li {
		display: block;
		margin: 0;
		padding: 0 20px;
		position: relative;
	}

	.hd-nav li>a {
		font-size: 15px;
		display: block;
		line-height: 60px;
	}


	.hd-nav .arrow {
		width: 60px;
		height: 60px;
		position: absolute;
		right: 0;
		top: 0;
		font-size: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		display: none;
	}

	.hd-nav .arrow::after {
		content: '\e600';
		font-family: 'iconfont';
	}

	.hd-nav .drop {
		position: static;
	}



	.hd-sear .col {
		min-width: 30%;
	}


	.ft-t {
		display: block;
		width: 100%;
		padding: 32px 0 0;
	}

	.ft-t .info {
		width: 100%;
		margin: 0;
		padding: 0 20px;
	}

	.ft-t .menu {
		display: block;
		margin-top: 40px;
		border-top: 1px solid #d9dce0;
	}

	.ft-t .col {
		min-width: 100%;
		border-bottom: 1px solid #d9dce0;
		padding: 24px 0;
		position: relative;
	}

	.ft-t .col:last-child {
		border-bottom: 0;
	}

	.ft-t .tit {
		line-height: 22px;
		margin: 0;
		padding: 0 20px;
		margin: 0;
	}

	.ft-t .lks {
		display: none;
		padding: 0 20px;
	}

	.ft-t .lks li {
		font-size: 14px;
		padding: 8px 0;
		margin: 15px 0 0;
	}

	.ft-t .arrow {
		position: absolute;
		right: 0;
		top: 0;
		width: 55px;
		height: 70px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 13px;
		transform: rotate(90deg);
		font-weight: bold;
	}

	.ft-t .arrow::after {
		content: '\e600';
		font-family: 'iconfont';
	}

	.ft-t .arrow.this {
		transform: rotate(-90deg);
	}




	.ft-b {
		flex-direction: column-reverse;
		padding-left: 0;
	}

	.ft-b .lks {
		width: 100%;
	}

	.ft-b .lk {
		display: block;
		text-align: center;
		border: 0;
		border-bottom: 1px solid #d9dce0;
	}

	.ft-b .bq {
		display: flex;
		flex-direction: column;
		text-align: center;
		padding: 24px 0;
	}

	.ft-b .bq span {
		padding: 6px 0;
	}

	.ft-b .bq em {
		display: none;
	}

	/* d9dce0 */


	.idx-xw .item .imgbox {
		height: 48vh;
	}

	/* news */
	.xw-list {}

	.xw-list .item {
		width: 47%;
	}

	/* newsdetail */
	.xw-det .title {
		font-size: 28px;
	}


	/* list */

.pop-xq .wrapbox{width:80%;}



}

@media (max-width:991px) {

	/* d9dce0 */

	.hd-sear .col {
		min-width: 45%;
	}



	.idx-xw .item .imgbox {
		height: 250px;
	}

	.idx-xw .swiper-button {
		margin-top: -26px;
	}

	.idx-xw .swiper-button-prev {
		left: 18%;
	}

	.idx-xw .swiper-button-next {
		right: 18%;
	}


	/* news */
	.xw-list .title {
		font-size: 20px;
		margin-top: 15px;
	}

	/* list */
	.cp-bar {
		padding: 15px 0 0;
	}

	.cp-bar .wrap {
		display: block;
	}

	.cp-bar .tit {
		line-height: 1.6;
	}

	.cp-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.cp-video {
		height: 70vh;
	}

	.cp-series {
		height: 70vh;
	}

	/* goodsDetail */
	.cp-det {
		display: block;
	}

	.cp-det .lbox {
		width: 100%;
		height: 80vh;
		overflow-y: scroll;
	}

	.cp-det .rbox {
		width: 100%;
		height: auto;
		position: static;
		padding: 50px 5%;
	}

	.cp-det .dots {
		display: none;
	}


}

@media (max-width:767px) {
	.sj-menu {
		width: 30px;
		height: 30px;
		margin-top: -15px;
		font-size: 18px;
	}

	.sj-menu.close {
		font-size: 16px;
	}

	.head .wrap {
		width: calc(100% - 30px);
	}

	.hd-logo .img {
		height: 30px;
	}

	.hd-icos {
		margin-right: 38px;
	}

	.hd-icos .icon {
		font-size: 16px;
		margin-left: 15px;
	}



	.hd-nav li>a {
		font-size: 14px;
		line-height: 45px;
	}

	.hd-nav .arrow {
		width: 45px;
		height: 45px;
	}

	.hd-sear .wrap {
		height: 100%;
	}

	.hd-sear .ssbox {
		border: 0;
		padding: 0;
	}

	.hd-sear .ssbox .input {
		background: #f5f5f5;
		line-height: 35px;
		border-radius: 4px;
		padding: 0 10px;
		font-weight: normal;
		font-size: 12px;
	}

	.hd-sear .ssbox .gb {
		margin-left: 20px;
	}

	.hd-sear .col {
		min-width: 100%;
		margin: 0 0 30px;
		padding: 0 10px;
	}



	/* d9dce0 */

	.fz32 {
		font-size: 20px;
	}

	.idx-box {
		width: 90%;
	}

	.idx-box .lk {
		margin: 0 10px;
	}

	.idx-ban .pauseicon {
		right: 15px;
		bottom: 15px;
		width: 24px;
		height: 24px;
	}

	.idx-cp {
		padding: 40px 0 10px;
	}

	.idx-cp .tabs {
		margin-bottom: 35px;
	}

	.idx-cp .list {
		grid-template-columns: repeat(2, 1fr);
	}

	.idx-cp .list .item {
		padding-bottom: 30px;
	}

	.idx-gift {
		grid-template-columns: repeat(1, 1fr);
	}

	.idx-gift .item {
		height: 80vh;
	}

	.idx-xw {
		padding: 55px 0;
	}

	.idx-xw .t-tit {
		margin-bottom: 45px;
		font-size: 20px;
	}

	.idx-xw .swiper-button {
		display: none;
	}

	.idx-xw .item .imgbox {
		height: 340px;
	}

	.idx-xw .swiper-slide {
		width: 270px;
	}


	/* news */
	.inner-ban {
		height: 30vh;
	}

	.inner-ban .title {
		font-size: 28px;
	}

	.inner-ban .icon {
		height: 50px;
		bottom: -25px;
	}

	.main {
		padding: 80px 0;
	}

	.xw-list .item {
		width: 100%;
		margin-bottom: 50px;
	}

	.xw-list .title {
		font-size: 16px;
		margin-top: 15px;
	}

	.xw-list .item:last-child {
		margin-bottom: 0;
	}

	/* newsdetail */
	.xw-det .title {
		font-size: 22px;
	}

	/* list */
	.cp-bar {
		padding: 10px 0 0;
	}

	.cp-bar .tit {
		font-size: 18px;
	}

	.cp-bar .tabs {
		overflow-x: scroll;
		white-space: nowrap;
	}

	.cp-bar .tabs .lk {
		margin-right: 15px;
	}

	.cp-video {
		height: 60vh;
	}

	.cp-video .txt {
		max-width: 90% !important;
	}

	.cp-video .pauseicon {
		right: 15px;
		bottom: 15px;
		width: 24px;
		height: 24px;
	}

	.cp-list .item {
		margin-bottom: 20px;
	}

	.cp-list .info {
		padding: 10px 10px;
	}

	.cp-list .price {
		margin-top: 6px;
	}

	.cp-list .dot {
		width: 8px;
		height: 8px;
		margin-right: 5px;
	}

	.cp-series {
		height: 60vh;
	}

	.cp-bottxt {
		padding: 40px 0;
	}

	.cp-bottxt .txt {
		font-size: 12px;
	}

	.cp-crumb {
		padding: 25px 0;
	}

.pop-xq .wrapbox{width:90%;padding:30px 30px;}
.pop-xq .close{right:20px;top:20px;}

}

/* 分页样式 */
.page {
  text-align: center;
  margin: 30px 0;
  font-family: GT-America, sans-serif;
}

.pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 8px;
}

.pagination li {
  margin: 0;
  padding: 0;
}

.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  color: #000;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.pagination li a:hover {
  border-color: #000;
  background-color: #f7f7f7;
}

.pagination li.active span {
  background-color: #000;
  color: #fff;
  border-color: #000;
  font-weight: bold;
}

.pagination li.disabled span {
  color: #999;
  border-color: #e5e5e5;
  cursor: not-allowed;
}

.pagination li:first-child a,
.pagination li:first-child span,
.pagination li:last-child a,
.pagination li:last-child span {
  min-width: 40px;
}

/* 响应式分页 */
@media (max-width: 767px) {
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  
  .pagination li a,
  .pagination li span {
    min-width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .pagination li:first-child a,
  .pagination li:first-child span,
  .pagination li:last-child a,
  .pagination li:last-child span {
    min-width: 32px;
  }
}



