body{
	padding: 0;
	margin: 0;
}
.webview{
	width: 100%;
	min-width: 1560px;
}
.index{
	width: 100%;
	padding-top: 5px;
	box-sizing: border-box;
	background-image: url(../img/index/background.png);
	/* background-size: 100%; */
}
.indexcontent{
	width: 1200px;
	margin: auto ;
}

/* 头部 */
.header{
	width: 100%;
}
.toplogo{
	width: 1200px;
	height: 100px;
	display: flex;
	align-items: center;
	margin: auto;
	
}
.logo{
	display: flex;
	align-items: center;
	margin: auto;
	font-size: 36px;
	color: #A2594D;
}
.toplogo img{
	width: 80px;
	display: block;
	margin-right: 6px;
}
.cut{
	float: right;
	display: flex;
	border-radius: 4px;
	overflow: hidden;
	border: #a2594d 2px solid;
}
.cut div{
	width: 58px;
	height: 31px;
	text-align: center;
	line-height: 31px;
	cursor: pointer;
}
.cut a{
	text-decoration: none;
	color: #a2594d;
}
.selectcut{
	background-color: #a2594d !important;
	color: #fff !important;
}
.selectcut a{
	background-color: #a2594d !important;
	color: #fff !important;
}
.menu{
	width: 100%;
	border-top: 1px solid #f3f1ef;
}
.menulist{
	width: 1200px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin: auto;
}
.menulist a{
	color: #5b5b5c;
	font-size: 16px;
	text-decoration: none;
}
.selectmenu{
	color: #A2594D !important;
	text-decoration:underline #A2594D !important;
	text-underline-offset: 6px;
}

/* 底部 */
body{
	margin: 0;
	padding: 0;
}
.bottom{
	width: 100%;
	padding-top: 55px;
	/* margin-top: 50px; */
	/* background-image: url(../img/bottombg.png);
	background-repeat: repeat;
	background-size: 100%; */
}
.bottomcont{
	width: 1200px;
	margin: auto;
}
.title{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.dot{
	width: 8px;
	height: 8px;
	background-color: #a2594d;
	border-radius: 50%;
}
.line{
	width: 45%;
	display: flex;
}
/* 调整以下参数自定义效果 */
.dynamic-line {
	width: 25%;
	height: 3px;
	background: linear-gradient(90deg, 
		#a2594d 0%,    /* 起点 */
		#ead3d0 30%,  
		#ead3d0 100%   /* 终点 */
	);
	background-size: 200% 100%;
	position: relative;
	overflow: hidden;
}

.dynamic-line::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, 
		#a2594d 0%,          /* 实线段颜色 */
		#a2594d 40%,         /* 实线长度 */
		transparent 40%,  /* 虚线段起始位置 */
		transparent 60%,  /* 虚线段结束位置 */
		#ead3d0 60% 
		#ead3d0 100%
	);
}
.dot-line{
	width: 75%;
	height: 3px;
	/* background-color: #ead3d0; */
	background-size: 200% 100%;
	position: relative;
	overflow: hidden;
}

.dot-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #ead3d0 0px, #ead3d0 5px, 
    transparent 5px, transparent 10px
  );
}
.flip{
	transform: rotate(180deg);
}

.guide{
	width: 310px;
	height: 55px;
	text-align: center;
	line-height: 55px;
	color: #A2594D;
	font-weight: normal;
	font-size: 26px;
	border: dashed #ead3d0 2px;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.guide img{
	width: 59px;
}
 
/* 左侧伪元素 */
.guide::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%); /* 垂直居中 */
  width: 11px;
  height: 11px;
  background-color: #EAD3D0;
  
}

/* 右侧伪元素 */
.guide::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: #EAD3D0;
}
.keyword{
	width: 100%;
	font-size: 17px;
	color: #6F6D6A;
	text-align: center;
	margin-top: 11px;
}
.topmargin{
	margin-top: 43px;
}


.copyright{
	width: 100%;
	/* height: 55px; */
	border-top: 2px solid #e0d2d0;
	margin-top: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	font-size: 13px;
	color: #A9A8A7;
	padding: 11px 0 11px 0;
	box-sizing: border-box;
}



/* 标签 */
.lable{
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #E0D2D0;
}
.labletitle{
	height: 100%;
	border-bottom: 4px solid #A2594D;
	line-height: 100px;
	font-size: 32px;
	color: #A2594D;
}
.download{
	width: 78px;
	height: 35px;
	border-radius: 4px;
	border: 1px solid #A2594D;
	color: #A2594D;
	font-size: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.download img{
	width: 22px;
	height: 22px;
}

/* 灰色透明背景 */
.gray{
	background-color: rgba(128, 128, 128, 0.1);
}
.pink{
	background-color: rgba(245,228,224,0.1);
}


/* 二维码 */
.qrccodelist{
	width: 100%;
	padding-top: 43px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-around;
}
.qrcode{
	width: 217px;
	display: flex;
	flex-direction: column;
	color: #A2594D;
	font-size: 17px;
}
.qrcode img{
	width: 217px;
	height: 217px;
}
.qrcode-text{
	margin-top: 17px;
	text-align: center;
}