:root {
	--sub-color: #fff;
	--sub-r: 255;
	--sub-g: 255;
	--sub-b: 255;
	--main-color: #c79e4f;
	--main-r: 199;
	--main-g: 158;
	--main-b: 79;
}

body {
	background-color: #fff;
	color: #101010;
	color: #666;
	font-family: arial, "Microsoft YaHei";
	max-width: 1920px;
	margin: 0 auto;
}

img {
	vertical-align: top
}

#header {
	position: fixed;
	position: relative;
	width: 100%;
	max-width: 1920px;
	top: 0;
	z-index: 9999;
	transition: 0.5s;
	background-color: rgba(var(--main-r), var(--main-g), var(--main-b), 0.8);
	height: 96px;
}

#header:hover {
	background-color: var(--main-color);
}

.head {
	display: flex;
	justify-content: space-between;
}

.head h1 {}

.head h1 a {
	display: block;
	height: 96px;

}

.head h1 a img {
	height: 60px;
	width: auto;
	margin: 18px;
}

.head .nav {
	margin-right: calc((100% - 1300px)/2);
}

.head .nav .navbtn {
	display: none;
}

.head .nav li {
	float: left;
	line-height: 96px;
	color: #fff;
	cursor: pointer;
}

.head .nav li>a {
	height: 94px;
	line-height: 96px;
	padding: 0 20px;
	display: block;
	font-size: 18px;
	color: var(--sub-color);
}

.head .nav li:is(.cur, :hover) {
	border-bottom: 2px solid var(--sub-color);
}

.banner {
	margin-top: -96px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center top;
}

.banner.index {
	background-image: url(../img/focus-img.jpg);
}

.banner.team {
	background-image: url(../img/team-img.jpg);
}

.banner.aboutus {
	background-image: url(../img/aboutus-img.jpg);
}

.banner.new {
	background-image: url(../img/new-img.jpg);
}

.banner.work {
	background-image: url(../img/work-img.jpg);
}

.banner .cont {
	display: flex;
	width: 1300px;
	height: 600px;
	margin: 0 auto;
	align-items: center;
}

.banner .cont .txt {
	margin-top: 100px;
	background-color: rgba(var(--main-r), var(--main-g), var(--main-b), 0.5);
	color: var(--sub-color);
	box-sizing: border-box;
	width: 1000px;
	padding: 34px 100px 34px 30px;
}

.banner .cont .txt h3 {
	font-size: 44px;
	letter-spacing: 5px;
	padding-bottom: 26px;
}

.banner .cont .txt p {
	font-size: 24px;
	line-height: 36px;
}

.bodyer {}

.mod {
	width: 1300px;
	margin: 0 auto;
	padding: 100px 0;
}

.mod.sp {
	width: 100%;
	padding: 0;
}

.mod .title {
	text-align: center;
	padding-bottom: 40px;
}

.mod .title p {
	font-size: 36px;
	font-weight: bold;
	color: #333;
	padding-bottom: 20px;
}

.mod .title span {
	color: #999;
	font-size: 18px;
}

:is(.area, .lawy) {
	display: flex;
	justify-content: space-between;
}

:is(.area, .lawy) .box {
	box-sizing: border-box;
	width: 295px;
	border: 1px solid #ccc;
	background-color: #fff;
	text-align: center;
	padding: 20px 30px 24px;
	transition: 0.5s;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.area .box:hover {
	border-color: var(--main-color);
	background-color: var(--main-color);
}

.area .box:hover * {
	color: #fff;
}

.area .box i {
	display: block;
	width: 90px;
	margin: 0 auto;
	font-size: 80px;
	height: 90px;
	line-height: 90px;
	color: var(--main-color);
}

.area .box .tit {
	font-size: 22px;
	font-weight: bold;
	padding: 16px 0;
}

.area .box .info {
	font-size: 16px;
	line-height: 26px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.left {
	float: left;
	width: 600px;
	transition: 0.5s;
	padding: 60px 760px 40px calc((100% - 1300px)/2);
	background-color: var(--main-color);
}

.left:has(~.right:hover) {
	background-color: #333;
}

.left .title {
	text-align: left;
}

:is(.left, .right) .title :is(p, span) {
	color: var(--sub-color);
}

:is(.left, .right) .cont {
	font-size: 18px;
	color: var(--sub-color);
	line-height: 32px;
}

:is(.left, .right, .about) .cont p {
	text-indent: 36px;
	padding-bottom: 10px;
}

:is(.left, .right, .about) .cont p:last-child {
	padding-bottom: 0;
}

.right {
	float: right;
	margin-top: -286px;
	transition: 0.5s;
	width: 600px;
	padding: 60px calc((100% - 1300px)/2) 40px 60px;
	background-color: #333;
}

.right:hover {
	background-color: var(--main-color);
}

.right .title {
	text-align: right;
}

.lawy .box {
	position: relative;
	padding: 0;
	overflow: hidden;
	text-align: left;
}

.lawy .box img {
	object-fit: cover;
	width: 100%;
	height: 420px;
}

.lawy .box .info {
	position: absolute;
	transition: 0.5s;
	top: 316px;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 30px;
	background-color: rgba(var(--main-r), var(--main-g), var(--main-b), 0.6);
	color: var(--sub-color);
}

.lawy .box:hover .info {
	top: 160px;
	background-color: rgba(var(--main-r), var(--main-g), var(--main-b), 0.9);
}

.lawy .box dt span {
	font-size: 20px;
	font-weight: bold;
}

.lawy .box dt p {
	padding-top: 10px;
	font-size: 16px;
}

.lawy .box dd {
	font-size: 15px;
	margin-top: 20px;
	border-top: 1px solid var(--sub-color);
	padding-top: 10px;
	line-height: 28px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.news dl {
	display: flex;
	justify-content: space-between;
}

.news dd {
	width: 400px;
}

.news dd img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.news dd .new {
	border: 1px solid #ccc;
	padding: 20px;
	background-color: #fff;
	transition: 0.5s;
}

.news dd .new span {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.news dd .new p {
	font-size: 15px;
	padding: 10px 0;
	line-height: 24px;
	color: #999;
}

.news dd .new a {
	color: var(--main-color);
	font-size: 14px;
}

.news dd:hover .new {
	border-color: var(--main-color);
	background-color: var(--main-color);
}

.news dd:hover * {
	color: var(--sub-color) !important;
}

.foot {
	text-align: center;
	padding: 40px 0;
	color: var(--sub-color);
	background-color: #333;
	font-size: 15px;
}

.foot span {
	padding: 0 14px;
}

.team-list {
	width: 1300px;
	padding: 100px 0;
	margin: 0 auto;
}

.team-list dd {
	display: flex;
	justify-content: space-between;
	transition: 0.3s;
	background-color: #FFFFFF;
}

.team-list dd img {
	object-fit: cover;
	width: 240px;
	height: 300px;
	transition: 0.3s;
}

.team-list dd .cont {
	width: calc(100% - 270px);
	transition: 0.3s;
}

.team-list dd .cont p {
	color: var(--main-color);
	font-size: 20px;
}

.team-list dd .cont p span {
	display: block;
	font-size: 26px;
	font-weight: bold;
	padding-bottom: 10px;
	color: #333;
}

.team-list dd .cont .intro {
	padding-top: 10px;
	color: #666;
	line-height: 28px;
	font-size: 16px;
}

.team-list dd:nth-child(even) {
	flex-direction: row-reverse;
	padding: 20px 0 20px 20px;
	border-top: 2px solid #ccc;
	border-left: 2px solid #ccc;
}

.team-list dd:nth-child(even) .cont p {
	text-align: right;
}

.team-list dd:nth-child(odd) {
	padding: 20px 20px 20px 0;
	border-top: 2px solid #ccc;
	border-right: 2px solid #ccc;
}

.team-list dd:last-child {
	border-bottom: 2px solid #ccc;
}

.team-list dd:hover {
	border-color: var(--main-color);
	background-color: rgba(var(--main-r), var(--main-g), var(--main-b), 0.2);
}

.team-list dd:hover~dd {
	border-top-color: var(--main-color);
}

.team-list dd:hover:nth-child(odd) img {
	transform: translateX(20px)
}

.team-list dd:hover:nth-child(even) img {
	transform: translateX(-20px)
}

.team-list dd:hover .cont {
	width: calc(100% - 290px);
}

.about {
	width: 1300px;
	margin: 0 auto;
	padding: 100px 0;
}

.about .cont {
	font-size: 18px;
	color: #666;
	line-height: 32px;
}

.mod:nth-child(even):has(.about) {
	background-color: var(--main-color);
}

.mod:nth-child(even):has(.about) :is(p, span) {
	color: var(--sub-color);
}

.new-list a {
	display: flex;
}

.new-list dd:not(:last-child) {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #ccc;
}

.new-list dd img {
	width: 320px;
	height: 180px;
	object-fit: cover;
	margin-right: 30px;
}

.new-list dd .tit {
	font-size: 20px;
	display: flex;
	color: var(--main-color);
	justify-content: space-between;
	align-items: center;
}

.new-list dd .tit span {
	color: #999;
	font-size: 15px;
}

.new-list dd .info {
	padding-top: 14px;
	font-size: 16px;
	line-height: 32px;
	color: #666;
}

.work-list {
	display: flex;
	justify-content: space-between;
}

.work-list .name {
	padding-left: 30px;
	width: 220px;
	text-align: right;
}

.work-list .name li {
	height: 54px;
	line-height: 54px;
	font-size: 20px;
	cursor: pointer;
	transition: 0.5s;
}

.work-list .name li:is(.cur, :hover) {
	color: var(--main-color);
	font-weight: bold;
	transform: translateX(15px);
}

.work-list .cont {
	width: 880px;
	padding: 0 30px 30px;
	border-left: 3px solid var(--main-color);
}

.work-list .cont .info {
	display: none;
}

.work-list .cont .info:first-child {
	display: block;
}

.work-list .cont p {
	text-indent: 2em;
	font-size: 18px;
	line-height: 32px;
	color: #666;
	padding-bottom: 10px;
}

.work-list .cont p:last-child {
	padding-bottom: 0;
}

@media screen and (max-width: 750px) {
	body {
		width: 7.5rem;
		max-width: 100%;
	}

	#header {
		position: fixed;
		width: 100%;
		max-width: 100%;
		height: 1.3rem;
		border-bottom: none;
		background-color: var(--main-color);
		transition: none;
	}

	#header:hover {
		background-color: var(--main-color);
	}

	.head h1 a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 1.3rem;
	}

	.head h1 a img {
		height: 0.8rem;
		width: auto;
		margin: 0 0.3rem;
	}

	.head .nav {
		position: relative;
		margin-right: 0;
	}

	.head .nav .navbtn {
		display: flex;
		height: 1.3rem;
		width: 1.3rem;
		align-items: center;
		justify-content: center;
		color: var(--sub-color);
		font-size: 0.8rem;
	}

	.head .nav ul {
		display: none;
		position: absolute;
		right: 0.2rem;
		top: 1.5rem;
		width: 3rem;
		box-sizing: border-box;
		padding: 0.2rem 0;
		border-radius: 0.2rem;
		background-color: rgba(28, 30, 37, 1);
		border: 1px solid rgba(255, 255, 255, 0.3);
		box-shadow: 0 0 8px rgba(28, 30, 37, 0.8);
	}

	.head .nav ul li {
		width: 100%;
		border: none !important;
	}

	.head .nav li>a {
		height: 1rem;
		line-height: 1rem;
		padding: 0 0.4rem;
		font-size: 0.34rem;
		white-space: nowrap;
	}

	.banner {
		margin-top: 0;
		background-size: cover;
	}

	.banner .cont {
		width: 100%;
		height: 5.4rem;
		justify-content: center;
	}

	.banner .cont .txt {
		margin-top: 1.2rem;
		color: var(--sub-color);
		box-sizing: border-box;
		width: 6.4rem;
		padding: 0.3rem;
	}

	.banner .cont .txt h3 {
		font-size: 0.48rem;
		letter-spacing: 0;
		padding-bottom: 0.4rem;
	}

	.banner .cont .txt p {
		font-size: 0.3rem;
		line-height: 0.5rem;
	}

	.mod {
		width: 100%;
		padding: 0.8rem 0;
	}

	.mod .title {
		padding-bottom: 0.6rem;
	}

	.mod .title p {
		font-size: 0.6rem;
		padding-bottom: 0.3rem;
	}

	.mod .title span {
		font-size: 0.36rem;
	}

	:is(.area, .lawy) {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}

	:is(.area, .lawy) .box {
		width: 44%;
		padding: 0.2rem 0.3rem 0.24rem;
		margin-bottom: 0.4rem;
	}

	.area .box i {
		width: 1rem;
		font-size: 1rem;
		height: 1rem;
		line-height: 1rem;
	}

	.area .box .tit {
		font-size: 0.32rem;
		padding: 0.3rem 0;
	}

	.area .box .info {
		font-size: 0.28rem;
		line-height: 0.5rem;
	}

	.left,
	.right {
		float: none;
		width: 100%;
		padding: 40px 30px;
		margin: 0;
		box-sizing: border-box;
	}

	:is(.left, .right) .title {
		text-align: center;
	}

	:is(.left, .right) .cont {
		font-size: 0.3rem;
		line-height: 0.5rem;
	}

	:is(.left, .right, .about) .cont p {
		text-indent: 2em;
		padding-bottom: 0.2rem;
	}

	.lawy .box {
		padding: 0;
	}

	.lawy .box img {
		height: 5rem;
	}

	.lawy .box .info {
		top: 3.2rem;
		padding: 0.2rem;
	}

	.lawy .box:hover .info {
		top: 1rem;
	}

	.lawy .box dt span {
		font-size: 0.32rem;
	}

	.lawy .box dt p {
		padding-top: 0.16rem;
		font-size: 0.3rem;
	}

	.lawy .box dd {
		font-size: 0.28rem;
		margin-top: 0.3rem;
		padding-top: 0.14rem;
		line-height: 0.44rem;
	}

	.news dl {
		flex-wrap: wrap;
		padding: 0 0.3rem;
	}

	.news dd {
		display: flex;
		width: 100%;
		margin-bottom: 0.3rem;
	}

	.news dd img {
		width: 2.2rem;
		height: auto;
	}

	.news dd .new {
		box-sizing: border-box;
		padding: 0.3rem;
	}

	.news dd .new span {
		font-size: 0.34rem;
	}

	.news dd .new p {
		display: none;
	}

	.news dd .new a {
		display: block;
		text-align: right;
		font-size: 0.24rem;
	}

	.foot {
		padding: 0.3rem 0;
		font-size: 0.28rem;
	}

	.foot span {
		padding: 0.1rem 0;
		display: block;
	}

	.work-list {
		display: block;
	}

	.work-list .name {
		margin: 0 0.3rem;
		padding: 0;
		width: calc(100% - 0.8rem);
		text-align: left;
		overflow-y: auto;
		white-space: nowrap;
	}

	.work-list .name li {
		display: inline-block;
		padding-right: 0.3rem;
		height: 0.6rem;
		line-height: 0.6rem;
		font-size: 0.32rem;
	}

	.work-list .name li:is(.cur, :hover) {
		transform: none;
	}

	.work-list .cont {
		margin: 0 0.3rem;
		padding: 0.4rem 0 0;
		width: calc(100% - 0.8rem);
		border-left: none;
		border-top: 3px solid var(--main-color);
	}

	.work-list .cont p {
		font-size: 0.3rem;
		line-height: 0.5rem;
		padding-bottom: 0.2rem;
	}

	.team-list {
		width: 100%;
		box-sizing: border-box;
		padding: 0.8rem 0.3rem;
	}

	.team-list dd:hover {
		background-color: unset;
	}

	.team-list dd img {
		width: 2rem;
		height: 3rem;
	}

	.team-list dd .cont {
		width: calc(100% - 2.3rem);
	}

	.team-list dd .cont p {
		font-size: 0.28rem;
	}

	.team-list dd .cont p span {
		font-size: 0.36rem;
		padding-bottom: 0.14rem;
	}

	.team-list dd .cont .intro {
		padding-top: 0.14rem;
		line-height: 0.46rem;
		font-size: 0.26rem;
	}

	.team-list dd:nth-child(even) {
		padding: 0.3rem 0 0.3rem 0.3rem;
	}


	.team-list dd:nth-child(odd) {
		padding: 0.3rem 0.3rem 0.3rem 0;
	}


	.team-list dd:hover img {
		transform: none !important;
	}

	.team-list dd:hover .cont {
		width: calc(100% - 2.3rem);
	}

	.new-list {
		padding-left: 0.3rem;
		padding-right: 0.3rem;
		box-sizing: border-box;
	}

	.new-list dd:not(:last-child) {
		padding-bottom: 0.3rem;
		margin-bottom: 0.3rem;
	}

	.new-list dd img {
		width: 2rem;
		height: 1.4rem;
		object-fit: cover;
		margin-right: 0.3rem;
	}

	.new-list dd .tit {
		font-size: 0.3rem;
	}

	.new-list dd .tit span {
		display: none;
	}

	.new-list dd .info {
		padding-top: 0.1rem;
		font-size: 0.24rem;
		line-height: 0.4rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}

	.about {
		width: 100%;
		box-sizing: border-box;
		padding: 0.8rem 0.3rem;
	}

	.about .cont {
		font-size: 0.3rem;
		line-height: 0.5rem;
	}
}
