body,html{
	width: 100vw;
	height: 100vh;
}
ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	text-decoration: none; /* 去除默认的下划线 */
	outline: none;	/* 去除旧版浏览器的点击后的外虚线框 */
	color: #000;	/* 去除默认的颜色和点击后变化的颜色 */ 
}
a :: hover{
	color: red;	/* 去除默认的颜色和点击后变化的颜色 */ 
}
.container{
	width: 100%;
}
.containers{
	width: 100%;
}
header{
	margin: 0 auto;
	width: 1200px;
	
}
header .top{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .top .logo{
	width: 390px;
	height: 80px;
}
header .top .logo img{
	width: 100%;
	height: 100%;
}
header .top ul{
	width: 680px;
	display: flex;
	justify-content: space-between;
	margin-right: -75px;
	margin-top:20px;
}
header .top ul li{
	padding: 7px;
	border: 1px solid #ccc;
	width: 125px;
	height: 28px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .top ul li .title{
	/* border: 1px solid #ccc; */
	font-size: 13px;
}
header .top ul li .icon{
	width: 15px;
	height: 15px;
	background-color: #d6d6d6;
	color: #fff;
	text-align: center;
	line-height: 17px;
}
header .top .search{
	margin-right: 0;
	margin-top:20px;
}

header .bottom{
	width: 100%;
	margin-top: 15px;
	display: flex;
	align-items: center;
}
header .bottom .left{
	width: 390px;
	display: flex;
	justify-content: center;
}
header .bottom .left a{}
header .bottom .left a div{
	width: 83px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	background-color: #f5f5f5;
}
header .bottom .left .login{}
header .bottom .left .register{
	margin-left: 10px;
}
header .bottom .middle ul{
	width: 773px;
	display: flex;
	flex-direction: row-reverse;
	margin-right: 27px;
}
header .bottom .middle ul li{
	border-right: 1px solid #ccc;
	padding: 2px 20px;
	height: 14px;
	line-height: 14px;
	font-size: 13px;
}
header .bottom .middle ul li a{}
header .bottom .middle ul li:first-child {
	padding-right: 0px;
	border-right: 0px;
}
header .bottom .middle .right{
	margin-top: -200px;
}



nav{
	width: 100vw;
	height: 75px;
	background-color: #d5ad33;
	margin-top: 30px;
	min-width: 1200px;
}
nav ul{
	width: 1200px;
	height: 75px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
nav ul li{
	height: 75px;
	line-height: 75px;
	
	padding: 0px 15px;
	font-size: 13px;
}
nav ul li:hover{
	background-color: #a11b22;
}
nav ul li a{
	color: #fff;
	cursor: pointer;
}
.banner{
	width: 100%;
}
.banner .swiper{
	margin: 0 auto;
	width: 100%;
	height: 720px;
	max-width: 1920px;
	min-width: 1200px;
	max-height: 720px;
	min-height: 448px;
	position: relative;
	/* overflow: hidden; */
}
.banner .swiper .slick-slider{
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
}
.banner .swiper .slick-slider .slide{
	width: 100%;
	height: 100%;
	flex-shrink: 0;
	
}
.banner .swiper .slick-slider .slide  img{
	width: 100%;
	height: 100%;
}
.banner .swiper .lr{
	width: 100%;
	height: 90px;
	position: absolute;
	top: 50%;
	transform: translateY(-100%); 
}
.banner .swiper .lr div{
	width: 90px;
	height: 90px;
	border: 2px solid #fff;
	border-radius: 50px;
	text-align: center;
	line-height: 90px;
	color: #fff;
	font-size: 50px;
	position: absolute;
}
.banner .swiper .lr .to-prev{
	left: 50px;
}
.banner .swiper .lr .to-next{
	right: 50px;
}
.banner .swiper .dot{
	width: 100%;
	height: 10px;
	position: absolute;
	bottom: 3%;
}
.banner .swiper .dot ul{
	margin: 0 auto ;
	display: flex;
	justify-content: center;
	
}
.banner .swiper .dot ul .dto-list{
	width: 38px;
	height: 8px;
	border: 2px solid #fff;
	margin-left: 15px;
}
.banner .swiper .dot ul .dto-list:first-child{
	margin-left: 0px;
}
.banner .swiper .dot ul .active{
	width: 40px;
	height: 10px;
	background-color: #932a31;
	border: 0px;
}


main{
	width: 100%;
	min-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
main .project{
	margin: 0 auto;
	width: 1200px;
	height: 575px;
}
main .project .title1{
	text-align: center;
	margin-top: 85px;
	color: #a11a21;
	font-size: 25px;
	font-family: "宋体", "SongTi", "STSongti", serif;
	font-weight: 600;
}


main .project .gold-divider {
	height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

/* 渐隐线条 */
main .project .gold-divider .line {
  width: 70px;
  height: 2px;
}

main .project .gold-divider .left-line {
  background: linear-gradient(90deg, 
    transparent, 
    #D4AF37 70% /* 金色渐显 */
  );
}

main .project .gold-divider .right-line {
  background: linear-gradient(90deg, 
    #D4AF37 30%, /* 金色渐隐 */
    transparent
  );
}

/* 菱形装饰 */
main .project .gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: #d5ad31;
  transform: rotate(45deg);
}
main .project .title2{
	text-align: center;
	margin-top: 15px;
	color: #666;
}
main .project .card{
	width: 100%;
	height: 240px;
	display: flex;
	justify-content: space-between;
	margin-top: 55px;
}
main .project .card .img{
	width: 240px;
	height: 240px;
	border-radius: 125px;
	overflow: hidden;
}
main .project .card .img img{
	width: 240px;
	height: 240px;
}
main .project .card .right{
	width: 850px;
	height: 240px;
	border: 1px solid #d5ad31;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
main .project .card .right .diamond{
	width: 15px;
	height: 15px;
	background: #d5ad31;
	transform: rotate(45deg);
	margin-left: -8px;
}
main .project .card .right .content{
	width: 775px;
}
main .project .dot{
	width: 100%;
	display: flex;
	flex-direction:row-reverse;
	margin-top: 50px;
}
main .project .dot ul{
	width: 100%;
	display: flex;
	flex-direction:row-reverse;
}
main .project .dot ul li{
	width: 40px;
	height: 6px;
	background-color: #d6d6d6;
	margin-left: 5px;
}
main .project .dot ul .actice{
	background-color: #d5ad33;
}
main .match{
	width: 100%;
	margin: 0 auto;
	min-width: 1200px;
	height: 690px;
	background-color: #eeede8;
}
main .match > .title1{
	margin-top: 65px;
	text-align: center;
	width: 100%;
	font-size: 45px;
	color:#9f1c21;
	font-weight: 500;
}
main .match > .title2{
	margin-top: 15px;
	text-align: center;
	display: block;
	width: 100%;
	font-size: 17px;
	color:#666;
	font-weight: 500;
}
main .match  .contetn{
	width: 1200px;
	margin: 0 auto;
	margin-top: 50px;
	display: flex;
}
main .match  .contetn .left{
	position: relative;
	width: 660px;
	height: 415px;
	cursor:pointer;
}
main .match  .contetn .left .slick-slider2{
	width: 660px;
	height: 415px;
	display: flex;
	overflow: hidden;
}
main .match  .contetn .left .slick-slider2 .slide2 {
	width: 660px;
	height: 415px;
	flex-shrink: 0;
}


main .match  .contetn .left > .operation{
	position: absolute;
	bottom: 0px;
	width: 660px;
	height: 65px;
	background-color: rgba(0, 0, 0, .6);
	display: flex;
	justify-content: space-between;
	color: #fff;
	align-items: center;
	padding: 0 35px;
	box-sizing: border-box;
}
main .match  .contetn .left  .operation .to-prev2{
	height: 65px;
	width: 30px;
	font-size: 24px;
	line-height: 65px;
	text-align: center;
}
main .match  .contetn .left  .operation .title{
	flex: 1;
	text-align: center;
	cursor:pointer;
	color: #fff;
}
main .match  .contetn .left  .operation .title .match-slick-number1{
	font-size: 20px;
	color: #d5ad33;
}
main .match  .contetn .left  .operation .to-next2{
	height: 65px;
	width: 30px;
	font-size: 24px;
	line-height: 65px;
	text-align: center;
	cursor:pointer;
}
main .match  .contetn > .right{
	position: relative;
	width: 480px;
	height: 415px;
	padding-left: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
main .match  .contetn > .right ul{
	width: 100%;
}
main .match  .contetn > .right ul li{
	margin-top: 17px;
	/* color: #666; */
	font-size: 13px;
}
main .match  .contetn > .right ul li a{
	/* margin-top: 17px; */
	color: #666;
	/* font-size: 13px; */
}
main .match  .contetn > .right ul .title{
	font-size: 20px;
	margin-top: 0px;
	color: #000;
	font-weight: 500;
}
main .block1{
	width: 100%;
	height: 1660px;
}
main .block1 .row1{
	width: 1200px;
	height: 650px;
	margin: 0 auto;
	margin-top: 29px;
}
main .block1 .row1 > ul{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}
main .block1 .row1 > ul > li{
	width: 380px;
	height: 650px;
	border:1px solid #d6d6d6;
	padding: 30px;
	box-sizing: border-box;
}
main .block1 .row1 > ul > li > .title{
	width: 100%;
	height: 50px;
	font-size: 20px;
	border-bottom: 1px solid #d6d6d6;
	font-weight: 500;
}

main .block1 .row1 > ul > .comment .title2{
	width: 100%;
	font-size: 25px;
	margin-top: 40px;
}
main .block1 .row1 > ul > .comment > ul{
	margin-top: 35px;
}
main .block1 .row1 > ul > .comment > ul > li{
	margin-top: 20px;
	color: #333;
	width: 100%;
	font-size: 13px;
}
main .block1 .row1 > ul > .comment  > .new{
	margin-top: 25px;
	color: #666;
	width: 100%;
}
main .block1 .row1 > ul > .comment  > .data{
	margin-top: 20px;
	color: #666;
	width: 100%;
}
main .block1 .row1 > ul > .comment .message{
	margin-top: 30px;
	width: 100%;
	display: flex;
}
main .block1 .row1 > ul > .comment .message .create{
	height: 40px;
	width: 125px;
	text-align: center;
	line-height: 40px;
	background-color: #d5ad33;
}
main .block1 .row1 > ul > .comment .message .create a{
	color: #fff;
}
main .block1 .row1 > ul > .comment .message .show{
	height: 40px;
	width: 125px;
	text-align: center;
	line-height: 40px;
	background-color: #a11b22;
	margin-left: 10px;
}
main .block1 .row1 > ul > .comment .message .show a{
	color: #fff;
}
main .block1 .row1 > ul > .poetry .title2{
	width: 100%;
	font-size: 25px;
	margin-top: 40px;
}
main .block1 .row1 > ul > .poetry > .author{
	color:#666;
	font-size: 15px;
}
main .block1 .row1 > ul > .poetry > ul{
	margin-top: 38px;
}
main .block1 .row1 > ul > .poetry > ul > li{
	margin-top: 17px;
	color: #333;
	width: 100%;
	font-size: 13px;
}
main .block1 .row1 > ul > .poetry .song{
	width: 100%;
	height: 260px;
	margin-top: 20px;
}
main .block1 .row1 > ul > .poetry .song .item{
	width: 100%;
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}
main .block1 .row1 > ul > .poetry .song .item .img{
	width: 78px;
	height: 78px;
}
main .block1 .row1 > ul > .poetry .song .item .img img{
	width: 100%;
	height: 100%;
}
main .block1 .row1 > ul > .poetry .song .item .right{
	width: 225px;
	height: 78px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
main .block1 .row1 > ul > .poetry .song .item .right .title{
	width: 100%;
}
main .block1 .row1 > ul > .poetry .song .item .right .author{
	width: 100%;
	color:#666;
	font-size: 14px;
}
main .block1 .row1 > ul > .poetry .song .item .right .read{
	width: 100%;
	color:#9f1c22;
	font-size: 14px;
}

main .block1 .row1 > ul > .poet .poet-list{
	width: 100%;
	height: 510px;
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
main .block1 .row1 > ul > .poet .poet-list .item{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
main .block1 .row1 > ul > .poet .poet-list .item .img{
	width: 78px;
	height: 78px;
}
main .block1 .row1 > ul > .poet .poet-list .item .img img{
	width: 100%;
	height: 100%;
}
main .block1 .row1 > ul > .poet .poet-list .item .right{
	width: 225px;
	height: 78px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
main .block1 .row1 > ul > .poet .poet-list .item .right .name{
	width: 100%;
}
main .block1 .row1 > ul > .poet .poet-list .item .right .works{
	width: 100%;
	color:#666;
	font-size: 14px;
}

main .block1 .row2{
	width: 1200px;
	height: 305px;
	margin: 0 auto;
	margin-top: 29px;
	background-color: #eeede8;
	display: flex;
}
main .block1 .row2 > .title{
	width: 76px;
	height: 100%;
	background-color: #d5ad33;
	color: white;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	 writing-mode: vertical-rl;
	/* 关键代码：裁剪右上角 */
	clip-path: polygon(
    0 0,              /* 左上角 */
    100% 0,           /* 右上角 */
    100% 45%,         /* 缺口起点（垂直居中偏上） */
    85% 50%,          /* 缺口顶点（向右15%，垂直居中） */
    100% 55%,         /* 缺口终点（垂直居中偏下） */
    100% 100%,        /* 右下角 */
    0 100%            /* 左下角 */
	);
}
main .block1 .row2 .card-list{
	flex: 1;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
main .block1 .row2 .card-list .card{
	width: 250px;
	/* height: 100%; */
}
main .block1 .row2 .card-list .card .img{
	width: 250px;
	height: 168px;
	position: relative;
	display: block;
	cursor:pointer;
}
/* 鼠标悬停时显示 */
main .block1 .row2 .card-list .card .img:hover .img-content {
  opacity: 1;
}
main .block1 .row2 .card-list .card .img img{
	width: 100%;
	height: 100%;
	position: absolute;
}
main .block1 .row2 .card-list .card .img .img-content{
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(213, 173, 51, 0.7);
	opacity: 0;
}
main .block1 .row2 .card-list .card .img .img-content .title{
	position: absolute;
	top: 50%;      /* 父容器高度的 50% */
	left: 50%;     /* 父容器宽度的 50% */
	transform: translate(-50%, -50%); /* 自身宽高的 50% 反向偏移 */
	font-size: 26px;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	color:#fff;
}

main .block1 .row2 .card-list .card ul{
	width: 100%;
}
main .block1 .row2 .card-list .card ul li{
	margin-top: 12px;
	font-size: 14px;
}
main .block1 .row2 .card-list .card ul li a{}
main .block1 .row2 .card-list .card ul li a:hover{
	color: #666;
}




main .block1 .row3{
	width: 1200px;
	margin: 0 auto;
	margin-top: 35px;
}
main .block1 .row3 > ul{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}
main .block1 .row3 > ul > li{
	width: 380px;
	border:1px solid #d6d6d6;
	padding: 30px;
	padding-bottom: 50px;
	box-sizing: border-box;
}
main .block1 .row3 > ul > li > .title{
	width: 100%;
	height: 50px;
	font-size: 20px;
	border-bottom: 1px solid #d6d6d6;
	font-weight: 500;
}


main .block1 .row3  > ul > li > .card{
	width: 320px;
	margin-top: 43px;
}
main .block1 .row3  > ul > li > .card .img{
	width: 320px;
	height: 197px;
	position: relative;
	cursor:pointer;
	display: block;
}
main .block1 .row3 > ul > li >  .card .img img{
	width: 100%;
	height: 100%;
}
main .block1 .row3 > ul > li >  .card ul{
	width: 100%;
}
main .block1 .row3 > ul > li >  .card ul li{
	margin-top: 12px;
	font-size: 14px;
}
main .block1 .row3 > ul > li >  .card ul li a{}
main .block1 .row3 > ul > li >  .card ul li a:hover{
	color: #666;
}


main .block1 .row4{
	width: 1200px;
	height: 305px;
	margin: 0 auto;
	margin-top: 35px;
	background-color: #eeede8;
	display: flex;
}
main .block1 .row4 > .title{
	width: 76px;
	height: 100%;
	background-color: #d5ad33;
	color: white;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	 writing-mode: vertical-rl;
	/* 关键代码：裁剪右上角 */
	clip-path: polygon(
    0 0,              /* 左上角 */
    100% 0,           /* 右上角 */
    100% 45%,         /* 缺口起点（垂直居中偏上） */
    85% 50%,          /* 缺口顶点（向右15%，垂直居中） */
    100% 55%,         /* 缺口终点（垂直居中偏下） */
    100% 100%,        /* 右下角 */
    0 100%            /* 左下角 */
	);
}
main .block1 .row4 form{
	flex: 1;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
main .block1 .row4 form .left{
	width: 565px;
	height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
main .block1 .row4 form .left input,textarea{
	display: block;
	padding: 15px;
	box-sizing: border-box;
	border: none;
	outline: none;
	font-size: 15px;
}
main .block1 .row4 form .left input{
	width: 100%;
	height: 37px;
	border-radius: 15px;
	
}
main .block1 .row4 form .left textarea{
	width: 100%;
	height: 123px;
	border-radius: 15px;
	resize:none;
}
main .block1 .row4 form .right{
	width: 456px;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: -45px;
}
main .block1 .row4 form .right .pull-down{
	width: 100%;
	height: 37px;
	background-color: #fff;
	/* overflow: hidden; */
	border-radius: 15px;
	display: flex;
	align-items: center;
	position: relative;
	
}
main .block1 .row4 form .right .pull-down input{
	border-radius: 15px;
	width: 360px;
	height: 37px;
	box-sizing: border-box;
	border: none;
	outline: none;
	font-size: 15px;
	padding: 15px;
}
main .block1 .row4 form .right .pull-down .tips{
	margin-left: 17px;
	color:#777;
}
main .block1 .row4 form .right .pull-down .down{
	margin-left: 5px;
	color:#777;
}
main .block1 .row4 form .right .pull-down #selectLocation{
	width: 100%;
	position: absolute;
	top: 38px;
	z-index: 100;
	background-color: #eee;
	border: 1px solid #ccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 15px;
	display: none;
}
main .block1 .row4 form .right .pull-down #selectLocation .location-item{
	padding: 5px;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
}
main .block1 .row4 form .right .pull-down #selectLocation .location-item:hover{
	background-color: #fff;
}
main .block1 .row4 form .right .pull-down #selectClass{
	width: 100%;
	position: absolute;
	top: 35px;
	z-index: 100;
	background-color: #eee;
	border: 1px solid #ccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 15px;
	display: none;
}
main .block1 .row4 form .right .pull-down #selectClass .class-item{
	padding: 5px;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
}
main .block1 .row4 form .right .pull-down #selectClass .class-item:hover{
	background-color: #fff;
}
main .block1 .row4 form .right .pull-down .code{
	width: 90px;
	height: 32px;
}
main .block1 .row4 form .right .pull-down .code img{
	width: 100%;
	height: 100%;
}
main .block1 .row4 form .right .button{
	width: 445px;
	height: 45px;
	background-color: #d5ad33;
	text-align: center;
	line-height: 45px;
	color: #fff;
	font-size: 18px;
}



main .culture-project{
	width: 100%;
	height: 1020px;
	background-color: #eeede8;
}
main .culture-project .row{
	margin: 0 auto;
	width: 1200px;
	height: 1100px;
}
main .culture-project .row .title1{
	text-align: center;
	margin-top: 67px;
	color: #a11a21;
	font-size: 25px;
	font-family: "宋体", "SongTi", "STSongti", serif;
	font-weight: 600;
}


main .culture-project .row .gold-divider {
	height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

/* 渐隐线条 */
main .culture-project .row .gold-divider .line {
  width: 70px;
  height: 2px;
}

main .culture-project .row .gold-divider .left-line {
  background: linear-gradient(90deg, 
    transparent, 
    #D4AF37 70% /* 金色渐显 */
  );
}

main .culture-project .row .gold-divider .right-line {
  background: linear-gradient(90deg, 
    #D4AF37 30%, /* 金色渐隐 */
    transparent
  );
}

/* 菱形装饰 */
main .culture-project .row .gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: #d5ad31;
  transform: rotate(45deg);
}
main .culture-project .row .title2{
	text-align: center;
	margin-top: 15px;
	color: #666;
}
main .culture-project .row  .card-list{
	width: 1200px;
	height: 670px;
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-content:space-between;
}
main .culture-project .row .card-list .card{
	width: 385px;
	display: block;
}
main .culture-project .row .card-list .card .img{
	width: 385px;
	height: 245px;
	position: relative;
}
main .culture-project .row .card-list .card .img img{
	width: 100%;
	height: 100%;
	position: absolute;
}
main .culture-project .row .card-list .card .img .plus{
	left: 14px;
	top: 14px;
	right: 14px;
	bottom: 14px;
	position: absolute;
	background-color: rgba(213, 173, 51, 0.7);
	line-height: 217px;
	text-align: center;
	font-size: 80px;
	color: #fff;
	opacity: 0;
}
main .culture-project .row .card-list .card:hover .img .plus{
	opacity: 1;
	cursor: pointer;
}
main .culture-project .row .card-list .card .title{
	margin-top: 13px;
	width: 385px;
	text-align: center;
	font-size: 21px;
	color:#666;
}
main .culture-project .row .card-list .card:hover  .title{
	color:#a11923;
}
main .culture-project .row .card-list .card .txt{
	margin-top: 10px;
	width: 385px;
	text-align: center;
	font-size: 14px;
	color:#666;
}
main .culture-project .row .card-list .card:hover  .txt{
	color:#a11923;
}
main .culture-project .row .button{
	width: 127px;
	height: 33px;
	line-height: 33px;
	
	margin: 0 auto;
	text-align: center;
	margin-top: 55px;
	background-image: url(../image/4854.png);
}
main .culture-project .row .button a{
	color: #8e7a3f;
}


main .diversified{
	width: 100%;
	height: 822px;
	background-image: url(../image/R-C.jpg);
	min-width: 1200px;
	background-size: 100% 100%;
	position: relative;
}
main .diversified .bg{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color:rgba(0, 0, 0, .6);
}
main .diversified .row{
	margin: 0 auto;
	width: 1200px;
	height: 822px;
}
main .diversified .row .title1{
	text-align: center;
	margin-top: 60px;
	color: #fff;
	font-size: 25px;
	font-weight: 500;
	position: relative; 
	z-index: 1; 
}


main .diversified .row .gold-divider {
	height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

/* 渐隐线条 */
main .diversified .row .gold-divider .line {
  width: 70px;
  height: 2px;
}

main .diversified .row .gold-divider .left-line {
  background: linear-gradient(90deg, 
    transparent, 
    #D4AF37 70% /* 金色渐显 */
  );
}

main .diversified .row .gold-divider .right-line {
  background: linear-gradient(90deg, 
    #D4AF37 30%, /* 金色渐隐 */
    transparent
  );
}

/* 菱形装饰 */
main .diversified .row .gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: #d5ad31;
  transform: rotate(45deg);
}
main .diversified .row .title2{
	text-align: center;
	margin-top: 15px;
	color: #fff;
	position: relative;
	z-index: 1; 
}
main .diversified .row  .card-list{
	width: 1200px;
	height: 460px;
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-content:space-between;
}
main .diversified .row .card-list .card{
	width: 285px;
	position: relative;
}
main .diversified .row .card-list .card .img{
	width: 285px;
	height: 460px;
	position: absolute;
}
main .diversified .row .card-list .card .img img{
	width: 100%;
	height: 100%;
}
main .diversified .row .card-list .card .card-content{
	width: 285px;
	height: 460px;
	position: absolute;
	z-index: 999;
	background-color: rgba(0, 0, 0, .6);
}
main .diversified .row .card-list .card .card-content .icon{
	width: 83px;
	height: 83px;
	padding: 20px;
	box-sizing: border-box;
	margin: 0 auto;
	margin-top: 95px;
	border-radius: 50px;
	position: relative;
	z-index: 100;
	opacity: 0;
}
main .diversified .row .card-list .card .card-content .icon img{
	width: 100%;
	height: 100%;
}
main .diversified .row .card-list .card .card-content .content{
	width: 285px;
	height: 132px;
	display: flex;
	padding-top:29px;
	padding-bottom:29px;
	flex-direction: column;
	justify-content: center;
	margin-top: -41px;
}
/* 半圆凸起 */
main .diversified .row .card-list .card .card-content:hover .content::before {
    content: "";
    position: absolute;
    top: 96px; /* 半圆半径 = 83px / 2 = 41.5px */
    left: 50%;
    transform: translateX(-50%);
    width: 83px; /* 直径 83px */
    height: 41.5px; /* 半圆高度 = 半径 */
    background-color: rgba(213, 173, 51, 0.7);
    border-radius: 83px 83px 0 0; /* 上半圆 */
}
main .diversified .row .card-list .card .card-content .content .name{
	font-size: 25px;
	color: #fff;
	padding: 0 39px;
	box-sizing: border-box;
	text-align: center;
	width: 100%;
}
main .diversified .row .card-list .card .card-content .content .txt{
	font-size: 14px;
	padding: 0 39px;
	box-sizing: border-box;
	text-align: center;
	width: 100%;
	margin-top: 30px;
	line-height: 22px;
}
main .diversified .row .card-list .card .card-content .content .txt a{
	color: #fff;

}
main .diversified .row .card-list .card .card-content:hover .icon{
	opacity: 1;
}
main .diversified .row .card-list .card .card-content:hover{
	background-color: rgba(0, 0, 0, .0);
}
main .diversified .row .card-list .card .card-content:hover .content{
	background-color: rgba(213, 173, 51, 0.7);
}

main .diversified .row .button{
	width: 127px;
	height: 33px;
	line-height: 33px;
	margin: 0 auto;
	text-align: center;
	margin-top: 55px;
	background-image: url(../image/4854.png);
	background-size: 100%  100%;
	position: relative;
	z-index: 100;
}
main .diversified .row .button a{
	color: #8e7a3f;
}

main .block2{
	width: 100%;
	margin: 0 auto;
	min-width: 1200px;
	height: 690px;
	background-color: #eeede8;
}
main .block2  .title1{
	text-align: center;
	margin-top: 85px;
	color: #a11a21;
	font-size: 25px;
	font-family: "宋体", "SongTi", "STSongti", serif;
	font-weight: 600;
}


main .block2 .gold-divider {
	height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

/* 渐隐线条 */
main .block2 .gold-divider .line {
  width: 70px;
  height: 2px;
}

main .block2  .gold-divider .left-line {
  background: linear-gradient(90deg, 
    transparent, 
    #D4AF37 70% /* 金色渐显 */
  );
}

main .block2  .gold-divider .right-line {
  background: linear-gradient(90deg, 
    #D4AF37 30%, /* 金色渐隐 */
    transparent
  );
}

/* 菱形装饰 */
main .block2  .gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: #d5ad31;
  transform: rotate(45deg);
}
main .block2  .title2{
	text-align: center;
	margin-top: 15px;
	color: #666;
}
main .block2  .contetn{
	width: 1200px;
	margin: 0 auto;
	margin-top: 50px;
	display: flex;
}
main .block2  .contetn .left{
	position: relative;
	width: 660px;
	height: 415px;
	cursor:pointer;
}
main .block2  .contetn .left .slick-slider3{
	width: 660px;
	height: 415px;
	display: flex;
	overflow: hidden;
}
main .block2  .contetn .left .slick-slider3 .slide3 {
	width: 660px;
	height: 415px;
	flex-shrink: 0;
}

main .block2  .contetn .left > .operation{
	position: absolute;
	bottom: 0px;
	width: 660px;
	height: 65px;
	background-color: rgba(0, 0, 0, .6);
	display: flex;
	justify-content: space-between;
	color: #fff;
	align-items: center;
	padding: 0 35px;
	box-sizing: border-box;
}
main .block2  .contetn .left  .operation .to-prev3{
	height: 65px;
	width: 30px;
	font-size: 24px;
	line-height: 65px;
	text-align: center;
}
main .block2  .contetn .left  .operation .title{
	flex: 1;
	text-align: center;
	cursor:pointer;
	color: #fff;
}
main .block2  .contetn .left  .operation .title .block2-slick-number1{
	font-size: 20px;
	color: #d5ad33;
}
main .block2  .contetn .left  .operation to-next3{
	height: 65px;
	width: 30px;
	font-size: 24px;
	line-height: 65px;
	text-align: center;
	cursor:pointer;
}
main .block2  .contetn > .right{
	position: relative;
	width: 480px;
	height: 415px;
	padding-left: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
main .block2  .contetn > .right ul{
	width: 100%;
}
main .block2  .contetn > .right ul li{
	margin-top: 10px;
	font-size: 13px;
}
main .block2  .contetn > .right ul li a{
	color: #666;
}
main .block2  .contetn > .right ul .title{
	font-size: 20px;
	margin-top: 0px;
	color: #000;
	font-weight: 500;
}
main .block2  .contetn > .right ul > .more{
	font-weight: 500;
}
main .block2  .contetn > .right ul > .more a{
	color: #9f1c22;
}



main .to-join{
	width: 100%;
	margin: 0 auto;
	min-width: 1200px;
	height: 705px;
}
main .to-join  .title1{
	text-align: center;
	margin-top: 85px;
	color: #a11a21;
	font-size: 25px;
	font-family: "宋体", "SongTi", "STSongti", serif;
	font-weight: 600;
}


main .to-join .gold-divider {
	height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

/* 渐隐线条 */
main .to-join .gold-divider .line {
  width: 70px;
  height: 2px;
}

main .to-join  .gold-divider .left-line {
  background: linear-gradient(90deg, 
    transparent, 
    #D4AF37 70% /* 金色渐显 */
  );
}

main .to-join  .gold-divider .right-line {
  background: linear-gradient(90deg, 
    #D4AF37 30%, /* 金色渐隐 */
    transparent
  );
}

/* 菱形装饰 */
main .to-join  .gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: #d5ad31;
  transform: rotate(45deg);
}
main .to-join  .title2{
	text-align: center;
	margin-top: 15px;
	color: #666;
}
main .to-join  .contetn{
	width: 1200px;
	margin: 0 auto;
	margin-top: 50px;
	display: flex;
	display: flex;
	justify-content: space-around;
}
main .to-join  .contetn .commodity{
	width: 530px;
}
main .to-join  .contetn .commodity .top{
	width: 100%;
	height: 65px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom:1px solid #ccc ;
}
main .to-join  .contetn .commodity .top .title{
	font-size: 19px;
	font-weight: 500;
}
main .to-join  .contetn .commodity .top ul{
	display: flex;
}
main .to-join  .contetn .commodity .top ul li{
	margin-left: 50px;
	font-size: 15px;
}
main .to-join  .contetn .commodity .top ul .active{
	color: #a11a21;
}
main .to-join  .contetn .commodity .commodity-data{
	width: 530px;
	margin-top: 38px;
	display: flex;
	justify-content: space-between;
	display: flex;
	justify-content: space-between;
}
main .to-join  .contetn .commodity .commodity-data  .img{
	width: 270px;
	height: 285px;
}
main .to-join  .contetn .commodity .commodity-data  .img img{
	width: 100%;
	height: 100%;
}
main .to-join  .contetn .commodity .commodity-data  ul{
	width: 235px;
	height: 285px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
main .to-join  .contetn .commodity .commodity-data  ul li{

}
main .to-join  .contetn .commodity .commodity-data  ul li a{
	display: block;
	display: flex;
	justify-content: space-between;
}
main .to-join  .contetn .commodity .commodity-data  ul li a .img{
	width: 90px;
	height: 90px;
}
main .to-join  .contetn .commodity .commodity-data  ul li a .img img{
	width: 100%;
	height: 100%;
}
main .to-join  .contetn .commodity .commodity-data  ul li a .right{
	width: 130px;
	height: 90px;
}
main .to-join  .contetn .commodity .commodity-data  ul li a .right .introduce{
	color: #333;
}
main .to-join  .contetn .commodity .commodity-data  ul li a .right .pice{
	margin-top: 12px;
	color: #a11a21;
}






main .mien{
	width: 100%;
	height: 550px;
	background:url(../image/R-C.jpg);
	min-width: 1400px;
	background-size: 100%  100%;
	position: relative;
}
main .mien .bg{
	width: 100%;
	min-width: 1400px;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	position: absolute;
}
main .mien .row{
	margin: 0 auto;
	width: 1400px;
	height: 400px;
	position: relative;
	z-index: 100;
}
main .mien .row .title1{
	text-align: center;
	margin-top: 67px;
	color: #fff;
	font-size: 25px;
	font-family: "宋体", "SongTi", "STSongti", serif;
	font-weight: 600;
}


main .mien .row .gold-divider {
	height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

/* 渐隐线条 */
main .mien .row .gold-divider .line {
  width: 70px;
  height: 2px;
}

main .mien .row .gold-divider .left-line {
  background: linear-gradient(90deg, 
    transparent, 
    #D4AF37 70% /* 金色渐显 */
  );
}

main .mien .row .gold-divider .right-line {
  background: linear-gradient(90deg, 
    #D4AF37 30%, /* 金色渐隐 */
    transparent
  );
}

/* 菱形装饰 */
main .mien .row .gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: #d5ad31;
  transform: rotate(45deg);
}
main .mien .row .title2{
	text-align: center;
	margin-top: 15px;
	color: #fff;
}
main .mien .row  .card-list{
	width: 1400px;
	height: 300px;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items:center;
}
main .mien .row .card-list .to-prev4{
	font-size: 35px;
	margin-right: 50px;
	color: #c3bab3;
	cursor: pointer;
}
main .mien .row .card-list .left:hover{
	color: #d4ac32;
}
main .mien .row .card-list .slick-slider4{
	width: 1200px;
	overflow: hidden;
	display: flex;
}
main .mien .row .card-list  .slick-slider4 .card{
	width: 300px;
}
main .mien .row .card-list  .slick-slider4 .card .img{
	width: 300px;
	height: 220px;
	position: relative;
}
main .mien .row .card-list  .slick-slider4 .card .img img{
	width: 100%;
	height: 100%;
	position: absolute;
}
main .mien .row .card-list .slick-slider4 .card   .img .plus{
	left: 14px;
	top: 14px;
	right: 14px;
	bottom: 14px;
	position: absolute;
	background-color: rgba(213, 173, 51, 0.7);
	line-height: 192px;
	text-align: center;
	font-size: 80px;
	color: #fff;
	opacity: 0;
}
main .mien .row .card-list .slick-slider4 .card:hover   .img .plus{
	opacity: 1;
	cursor: pointer;
}
main .mien .row .card-list .slick-slider4 .card   .title{
	margin-top: 20px;
	width: 330px;
	text-align: center;
	font-size: 17px;
	color: #fff;
}
main .mien .row .card-list .to-next4{
	font-size: 35px;
	margin-left: 50px;
	color: #c3bab3;
	cursor: pointer;
}
main .mien .row .card-list .right:hover{
	color: #d4ac32;
}






main .media-partners{
	width: 100%;
	margin: 0 auto;
	min-width: 1200px;
	height: 485px;
}
main .media-partners  .title1{
	text-align: center;
	margin-top: 85px;
	color: #a11a21;
	font-size: 25px;
	font-family: "宋体", "SongTi", "STSongti", serif;
	font-weight: 600;
}


main .media-partners .gold-divider {
	height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

/* 渐隐线条 */
main .media-partners .gold-divider .line {
  width: 70px;
  height: 2px;
}

main .media-partners  .gold-divider .left-line {
  background: linear-gradient(90deg, 
    transparent, 
    #D4AF37 70% /* 金色渐显 */
  );
}

main .media-partners  .gold-divider .right-line {
  background: linear-gradient(90deg, 
    #D4AF37 30%, /* 金色渐隐 */
    transparent
  );
}

/* 菱形装饰 */
main .media-partners  .gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: #d5ad31;
  transform: rotate(45deg);
}
main .media-partners  .title2{
	text-align: center;
	margin-top: 15px;
	color: #666;
}
main .media-partners  .icon{
	width: 1200px;
	margin: 0 auto;
	margin-top: 75px;
}
main .media-partners  .icon ul{
	width: 1200px;
	display: flex;
	margin-top: 25px;
	justify-content: space-between;
}

main .media-partners  .icon ul li{
	width: 160px;
	height: 80px;
	border: 1px solid #faf6f5;
	border-radius: 5px;
	overflow: hidden;
}

main .media-partners  .icon ul li img{
	width: 100%;
	height: 100%;
}


footer{
	width: 100%;
	border-top: 4px solid #727272;
}
footer .message{

	width: 100%;
	min-width: 1200px;
	height: 370px;
	background-image: url(../image/R-C.jpg);
	background-size: 100% 100%; 
	position: relative;
}
footer .message .bg{
	width: 100%;
	height: 370px;
	position: absolute;
	background-color: rgba(0, 0, 0, .6);
}
footer .message .row{
	position: relative;
	z-index: 100;
	margin: 0 auto;
	width: 1200px;
	height: 370px;
	padding-top: 70px;
	box-sizing: border-box;
	display: flex;
}
footer .message  .row > .left{
	display: flex;
	margin-left: 30px;
}
footer .message  .row .left .title1{
	writing-mode: vertical-rl;
	color: #fff;
	font-size: 35px;
}
footer .message  .row .left .title2{
	writing-mode: vertical-rl;
	font-size: 25px;
	color: #fff;
}
footer .message  .row  form{
	width: 610px;
	height: 240px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-left: 96px;
}
footer .message  .row  form .left{
	width: 285px;
	height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
footer .message  .row  form .left input,textarea{
	display: block;
	padding: 15px;
	box-sizing: border-box;
	border: none;
	outline: none;
	font-size: 15px;
}
footer .message  .row  form .left input{
	width: 100%;
	height: 37px;
	border-radius: 15px;
	
}
footer .message  .row  form .left textarea{
	width: 100%;
	height: 123px;
	border-radius: 15px;
	resize:none;
}
footer .message  .row  form .right{
	width: 285px;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: -45px;
}
footer .message  .row  form .right .pull-down{
	width: 100%;
	height: 37px;
	background-color: #fff;
	/* overflow: hidden; */
	border-radius: 15px;
	display: flex;
	align-items: center;
	position: relative;
}
footer .message  .row  form .right .pull-down input{
	width: 190px;
	height: 37px;
	box-sizing: border-box;
	border: none;
	outline: none;
	font-size: 15px;
	padding: 15px;
	border-radius: 15px;
}
footer .message  .row  form .right .pull-down .tips{
	margin-left: 17px;
	color:#777;
}
footer .message  .row  form .right .pull-down .down{
	margin-left: 5px;
	color:#777;
}
footer .message  .row  form .right .pull-down #selectLocation2{
	width: 100%;
	position: absolute;
	top: 38px;
	z-index: 100;
	background-color: #eee;
	border: 1px solid #ccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 15px;
	display: none;
	z-index: 200;
}
footer .message  .row  form .right .pull-down #selectLocation2 .location-item2{
	padding: 5px;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
}
footer .message  .row  form .right .pull-down #selectLocation2 .location-item2:hover{
	background-color: #fff;
}
footer .message  .row  form .right .pull-down #selectClass2{
	width: 100%;
	position: absolute;
	top: 38px;
	z-index: 100;
	background-color: #eee;
	border: 1px solid #ccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 15px;
	display: none;
	z-index: 200;
}
footer .message  .row  form .right .pull-down #selectClass2 .class-item2{
	padding: 5px;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
}
footer .message  .row  form .right .pull-down #selectClass2 .class-item2:hover{
	background-color: #fff;
}
footer .message  .row  form .right .pull-down .code{
	width: 90px;
	height: 32px;
}
footer .message  .row  form .right .pull-down .code img{
	width: 100%;
	height: 100%;
}
footer .message  .row  form .right .button{
	width: 285px;
	height: 45px;
	background-color: #d5ad33;
	text-align: center;
	line-height: 45px;
	color: #fff;
	font-size: 18px;
}
footer .message > .row > .right{
	width: 350px;
	height: 240px;
	margin-left: 55px;
}
footer .message  .row .right .title span:nth-child(1){
	font-size: 35px;
	color: #fff;
}
footer .message  .row .right .title span:nth-child(2){
	margin-left: 15px;
	font-size: 15px;
	color: #fff;
}
footer .message  .row .right .phone-number{
	display: flex;
	margin-top: 15px;
}
footer .message  .row .right .phone-number .left{
	width: 46px;
	height: 45px;
}
footer .message  .row .right .phone-number .left img{
	width: 100%;
	height: 100%;
}
footer .message  .row .right .phone-number .right{
	margin-left: 13px;
}
footer .message  .row .right .phone-number .right .title{
	color: #fff;
	font-size: 13px;
}
footer .message  .row .right .phone-number .right .number{
	color: #fff;
	font-size: 30px;
	margin-top: -5px;
}
footer .message  .row .right  .location{
	color: #fff;
	margin-top: 15px;
	/* font-size: 30px; */
}
footer .menu{
	height: 355px;
	width:100%; 
	background-color: #000;
}

footer .menu .row{
	margin: 0 auto;
	width:1200px;
	height: 355px;
	
}
footer .menu .row .list{
	width: 100%;
	height: 300px;
	padding: 1px; /* 添加最小内边距 */
text-align: center;
}
footer .menu .row .list .item{
	color: #bbbbbb;
	margin-top: 33px;
}
footer .menu .row .list .item .title{
	font-size: 22px;
	
}
footer .menu .row .list .item ul{
	margin-top: 12px;
	 display: inline-flex; /* 关键：行内弹性容器 */
	  flex-direction: column;
	  flex-wrap: wrap;
	  height: 180px;
	  width: auto; /* 明确设置宽度为自动 */
	  max-width: 100%; /* 防止超出父容器 */
}
footer .menu .row .list .item li{
	margin-top: 7px;
	width: 100px;
	font-size: 15px;
}
footer .menu .row .list .item li a{color: #bbbbbb;}

footer .menu .row .list .item .qr-list {
	margin-top: 12px;
	display: inline-flex; /* 关键：行内弹性容器 */
	flex-wrap: wrap;
	height: 180px;
	width: auto; /* 明确设置宽度为自动 */
	max-width: 100%; /* 防止超出父容器 */
}
footer .menu .row .list .item .qr-list .qr-item{
	width: 123px;
	height: auto;
	margin-right: 25px;
}
footer .menu .row .list .item .qr-list .qr-item .img{
	width: 123px;
	height: 123px;
}
footer .menu .row .list .item .qr-list .qr-item .img img{
	width: 100%;
	height: 100%;
}
footer .menu .row .list .item .qr-list .qr-item .title,
footer .menu .row .list .item .qr-list .qr-item .title2{
	width: 123px;
	text-align: center;
	font-size: 13px;
}




footer .menu .row .data{
	width: 100%;
	height: 55px;
	line-height: 55px;
	border-top:1px solid #36281f ;
	text-align: center;
	color: #bbbbbb;
}