body {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	color: #000000;
	font-family: 'Birdseye', sans-serif;
	font-size: 16px;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 公共样式 */
/* ::-webkit-scrollbar {
	display: none;
} */
@font-face {
    font-family: 'myfont'; /* 自定义字体名称 */
    src: url('../font/engry-2.ttf') format('truetype'),
         url('../font/engry-2.woff') format('woff'),
         url('../font/engry-2.woff2') format('woff2');
    /* 其他可选属性，如字体粗细、样式等 */
}
@font-face {
    font-family: 'menufont'; /* 自定义字体名称 */
    src: url('../font/Particle-Regular-2.ttf') format('truetype'),
         url('../font/Particle-Regular-2.woff') format('woff'),
         url('../font/Particle-Regular-2.woff2') format('woff2');
    /* 其他可选属性，如字体粗细、样式等 */
}

.w80 {
	width: 1600px;
	margin: 0 auto;
}

.w90 {
	width: calc(100% - 4vw);
	margin: 0 auto;
}

.pl-w80 {
	padding-left: calc((100vw - 1600px)/2);
}

.pr-w80 {
	padding-right: calc((100vw - 1600px)/2);
}

.ml-w80 {
	margin-left: calc((100vw - 1600px)/2);
}

.mr-w80 {
	margin-right: calc((100vw - 1600px)/2);
}

header {
	position: fixed;
	top: 0;
	z-index: 12;
	width: 100%;
	max-width: 100%;
	color: #ffffff;
	box-sizing: border-box;
	-webkit-transition: background-color 300ms ease, color 260ms ease, padding 180ms ease;
	-moz-transition: background-color 300ms ease, color 260ms ease, padding 180ms ease;
	-ms-transition: background-color 300ms ease, color 260ms ease, padding 180ms ease;
	transition: background-color 300ms ease, color 260ms ease, padding 180ms ease;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

header .icon02 {
	display: none;
}

header .con {
	position: relative;
	z-index: 12;
	padding: 10px 40px;
}

header li {
	margin: 5px 5px 5px 0;
	position: relative;
}

header li .oneNav {
	display: block;
	padding: 12px 20px;
	border: 0 solid #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	-webkit-transition: opacity 300ms ease;
	-moz-transition: opacity 300ms ease;
	-ms-transition: opacity 300ms ease;
	transition: opacity 300ms ease;
}

header li.on .oneNav {
	border: 1px solid #fff;
}

header dl {
	color: #000;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: rgb(255, 255, 255, 1);
	/* box-shadow: inset 0px 5px 10px rgb(0 0 0 / 15%); */
	margin-top: 0;
}

header dl ul {
	width: 100%;
}

header dl ul li {
	width: 100%;
	margin: 0;
}

header dl a {
	font-size: 12px;
	padding: 12px;
	display: block;
	text-align: center;
}

header dl a:hover {
	opacity: .6;
}

header li dl {
	visibility: hidden;
	opacity: 0;
	filter: alpha(opacity=0);
	transform: translateY(20px);
	transition: all .53s
}

header li:hover dl {
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=100);
	transform: translateY(0);
}


.logoImg {
	height: 56px;
}

header::after {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	content: '';
	transition: all .36s;
	width: 100%;
	height: 0;
	background-color: rgba(255, 255, 255, .15);
	-webkit-transition: all .36s;
	-moz-transition: all .36s;
	-ms-transition: all .36s;
	-o-transition: all .36s;
}

header.scroll {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
	color: #000;
}

header.scroll .icon01,
header:hover .icon01 {
	display: none;
}

header.scroll .icon02,
header:hover .icon02 {
	display: block;
}

header.scroll::after {
	background-color: #fff;
	height: 100%;
}


header.scroll nav li.on .oneNav {
	border: 1px solid #000;
}

header.scroll li:hover dl {
	padding-top: 10px;
}

header nav li:hover.on .oneNav {
	opacity: .6;
}

header nav li:hover .oneNav {
	opacity: .6;
}



.idxBanImg {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	min-height: 360px;
}

.idxBan .swiper-slide-active .idxBanImg {
	animation: swiper_img_move 6s linear 0s normal both;
	-webkit-animation: swiper_img_move 6s linear 0s normal both;
}

.subBanImg {
	width: 100%;
	height: 650px;
	object-fit: cover;
	min-height: 360px;
}

.idxBan .subBanImg {
	animation: swiper_img_move 6s linear 0s normal both;
	-webkit-animation: swiper_img_move 6s linear 0s normal both;
}

.idxBan .text,
.subBan .text {
	font-size: 65px;
	text-align: center;
	font-family: "myfont" !important;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .6), transparent);
}

.idxBan .text p {
	line-height: 1.15;
}

.idxBan .text,
.subBan .text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.subBan .text p {
	line-height: 1.15;
}



footer {
	width: 100%;
	font-size: 14px;
}

footer .wsite-footer {
	padding: 60px 40px;
}

footer .friendLink,
footer .bottomTxt {
	max-width: 1200px;
	margin: 0 auto;
}

footer .friendLink {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
}

footer .friendLink .title {
	width: 20%;
}

footer .friendLink .title img {
	width: 100%;
}

footer .friendLink .linkImg {
	width: 100%;
}

footer .friendLink .linkImg ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

footer .friendLink .linkImg ul li:nth-of-type(1) {
	height: 90px;
}

footer .friendLink .linkImg ul li {
	height: 70px;
}

footer .friendLink .linkImg ul li a {
	height: 100%;
}

footer .friendLink .linkImg ul li a img {
	height: 100%;
}

footer .bottomTxt {
	color: #626262;
	font-family: 'Birdseye', sans-serif;
	font-weight: 500;
	line-height: 1.75;
	text-align: right;
}

.wsite-section-wrap {
	display: table;
	table-layout: fixed;
	width: 100%;
	background-color: #f5f7fa;
}

.wsite-section-wrap .container {
	padding: 60px 40px;
	max-width: 1200px;
	margin: 0 auto;
}

/* home */

.wsite-section-wrap .container .title {
	width: 100%;
	text-align: center;
	font-weight: 500;
	color: #2a2a2a;
	font-size: 32px;
	margin-bottom: 40px;
	line-height: 1.2;
}

.wsite-section-wrap .container .txt {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wsite-section-wrap .container .txt .news {
	width: 100%;
	padding: 0 15px;
}

.wsite-section-wrap .container .txt .news .newsTitle {
	width: 100%;
	color: #515151;
	font-size: 30px;
}

.wsite-section-wrap .container .txt .homeNews {
	width: 100%;
	margin-bottom: 30px;
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.wsite-section-wrap .container .txt .homeNews li {
	width: calc(50% - 15px);
	background-color: #fff;
	background-repeat: no-repeat;
    border-radius: 0 15px 0 15px;
	position: relative;
	z-index: 1;
}
.wsite-section-wrap .container .txt .homeNews li:before{content: '';background-color:#94070a;display: block;position: absolute;z-index: 10;width: 100%;height:0;left:0%;top: 50%;background-size: 50% 50%; background-repeat: no-repeat;transition: all 0.3s ease-in-out;border-radius: 0 15px 0 15px;}

.wsite-section-wrap .container .txt .homeNews li:after{height: 0;width: 0}
.wsite-section-wrap .container .txt .homeNews li:hover{z-index: 10;position: relative;}
.wsite-section-wrap .container .txt .homeNews li:hover:before{width: 100%;height: 100%;left:0 ;top:0%;content: '';box-shadow:3px 35px 77px -17px rgba(139, 0, 18, 0.5);}
.wsite-section-wrap .container .txt .homeNews li:hover:after{content: '';width: 100%;height: 100%;background:url(../image/li_bg2.svg) no-repeat bottom right;overflow: hidden;position: absolute;left: 0;top: 0;z-index: 11}
.wsite-section-wrap .container .txt .homeNews li a {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding: 15px;
	z-index: 20;
	position: relative;
}
.wsite-section-wrap .container .txt .homeNews li .time {
	border-top:2px solid #94070a;
	padding-top: 10px;
	width: 100px;
	font-size: 12px;
	color: #999;
	text-align: right;
}
.wsite-section-wrap .container .txt .homeNews li .time span:nth-of-type(2) {
	font-size: 30px;
	font-weight: bold;
	color: #94070a;
}
.wsite-section-wrap .container .txt .homeNews li .name {
	border-bottom:2px solid #94070a;
	padding-bottom: 30px;
	width: calc(100% - 140px);
	font-size: 18px;
}
/* .wsite-section-wrap .container .txt .homeNews li:hover {
	color: #fff;
	background: url(../image/li_bg2.svg) #94070a bottom right no-repeat;
	box-shadow:3px 35px 77px -17px rgba(139, 0, 18, 0.5);
    background-size: 104%;
    background-repeat: no-repeat;
    border-radius: 0 15px 0 15px;
} */
.wsite-section-wrap .container .txt .homeNews li:hover .time {
	color: #fff;
	border-top:2px solid #fff;
}
.wsite-section-wrap .container .txt .homeNews li:hover .name {
	color: #fff;
	border-bottom:2px solid #fff;
}
.wsite-section-wrap .container .txt .homeNews li:hover .time span:nth-of-type(2) {
	color: #fff;
}

.wsite-section-wrap .container .txt .news dl {
	width: 100%;
	margin-bottom: 30px;
}

.wsite-section-wrap .container .txt .news dl:nth-last-of-type(1) {
	margin-bottom: 0;
}

.wsite-section-wrap .container .txt .news dl dt {
	width: 100%;
	color: #2a2a2a;
	font-size: 12px;
	line-height: 24px;
}

.wsite-section-wrap .container .txt .news dl dd {
	width: 100%;
	color: #2a2a2a;
	line-height: 24px;
	margin: 3px auto;
	position: relative;
	padding-left: 24px;
}

.wsite-section-wrap .container .txt .news dl dd::before {
	position: absolute;
	left: 0;
	top: 10px;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #626262;
}

.wsite-section-wrap .container .txt .news dl dd span {
	font-size: 10px;
}

.wsite-section-wrap .container .txt .news .btn {
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
}

.wsite-section-wrap .container .txt .news .btn a {
	display: inline-block;
	height: auto;
	padding: 0;
	background-image: none !important;
	background-color: transparent;
	color: #000000 !important;
	border: 1px solid #000000 !important;
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
}
.wsite-section-wrap .container .txt .news .btn a span {
    display: inline-block;
    height: auto;
    padding: 14px 30px;
    background: transparent;
    background-image: none !important;
    color: inherit !important;
    letter-spacing: 0.03em;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.wsite-section-wrap .container .txt .newsRight {
	width: calc(42% - 30px);
	padding: 0 15px;
	max-height: 1500px;
	overflow-y: auto;
}

.wsite-section-wrap .container .txt .newsRight .rightTitle {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	border-bottom: 2px solid rgb(212, 219, 226, 1);
	margin-bottom: 20px;
	padding-bottom: 10px;
}

.wsite-section-wrap .container .txt .newsRight .rightTitle img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.wsite-section-wrap .container .txt .newsRight .rightTitle h1 {
	width: calc(100% - 70px);
	font-size: 30px;
}

.wsite-section-wrap .container .txt .newsRight .rightTitle h1 span {
	color: rgb(66, 87, 108, 1);
	font-size: 16px;
	display: block;
}

.wsite-section-wrap .container .txt .newsRight .rightList .item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid rgb(212, 219, 226, 1);
	margin: 0 0 20px 0;
	padding: 0 0 10px 0;
}

.wsite-section-wrap .container .txt .newsRight .rightList .item .img {
	width: 40px;
	height: 40px;
}

.wsite-section-wrap .container .txt .newsRight .rightList .item .img img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.wsite-section-wrap .container .txt .newsRight .rightList .itemTxt {
	width: calc(100% - 50px);
}

.wsite-section-wrap .container .txt .newsRight .rightList .item h2 {
	width: 100%;
	font-size: 16px;
}

.wsite-section-wrap .container .txt .newsRight .rightList .item h2 span:nth-of-type(1) {
	color: rgb(66, 87, 108, 1);
	font-size: 14px;
}

.wsite-section-wrap .container .txt .newsRight .rightList .item h2 span:nth-of-type(2) {
	font-size: 14px;
}

.wsite-section-wrap .container .txt .newsRight .rightList .item p {
	color: rgb(11, 15, 20, 1);
	line-height: 24px !important;
	letter-spacing: 0.25px;
	font: 16px -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.wsite-section-wrap .container .txt .newsRight .rightList .subTxt {
	border-radius: 5px;
	border: 1px solid rgb(212, 219, 226, 1);
	margin-top: 10px;
	padding: 12px;
}

.wsite-section-wrap .container .txt .newsRight .subTxt .imgTxt {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	border-bottom: 2px solid rgb(212, 219, 226, 1);
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.wsite-section-wrap .container .txt .newsRight .subTxt .imgTxt img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.wsite-section-wrap .container .txt .newsRight .subTxt .imgTxt h3 {
	width: calc(100% - 50px);
	font-size: 16px;
}

.wsite-section-wrap .container .txt .newsRight .subTxt .imgTxt h3 span:nth-of-type(1) {
	display: block;
	font-weight: 500;
}

.wsite-section-wrap .container .txt .newsRight .subTxt .imgTxt h3 span:nth-of-type(2) {
	color: rgb(66, 87, 108, 1);
	font-size: 14px;
}

.wsite-section-wrap .container .txt .newsRight .subTxt .imgTxt h3 span:nth-of-type(3) {
	font-size: 14px;
}


.wsite-section-wrap .container .txt .newsRight .subTxt .imgTxt p {
	color: rgb(11, 15, 20, 1);
	line-height: 24px !important;
	letter-spacing: 0.25px;
	font: 16px -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}


/* people */

.wsite-section-wrap .container .teamImg {
	width: 100%;
}

.wsite-section-wrap .container .teamImg img {
	width: 100%;
}

.wsite-section-wrap .container .ourTeam {
	width: 100%;
}

.wsite-section-wrap .container .ourTeam .ourTeamTitle {
	width: 100%;
	color: #2a2a2a;
	font-size: 30px;
	text-align: left;
	margin: 30px auto;
}

.wsite-section-wrap .container .ourTeam .teamList {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.wsite-section-wrap .container .ourTeam .teamList li {
	width: calc(25% - 21px);
	line-height: 1.5;
}

.wsite-section-wrap .container .ourTeam .teamList li .pic {
	width: 100%;
	margin-bottom: 20px;
}

.wsite-section-wrap .container .ourTeam .teamList li .pic img {
	width: 100%;
}

.wsite-section-wrap .container .ourTeam .teamList li .name {
	width: 100%;
}

.wsite-section-wrap .container .ourTeam .teamList li .name span {
	color: #2a2a2a;
	display: block;
}

.wsite-section-wrap .container .ourTeam .teamList li .name span a {
	display: inline;
	font-size: 12px;
	padding: 3px 8px;
	background-color: #9B0000;
	color: #fff;
	border-radius: 3px;
}

.wsite-section-wrap .container .ourTeam .teamList li .name span:nth-of-type(1) {
	font-weight: bold;
}

.wsite-section-wrap .container .alumni {
	width: 100%;
}

.wsite-section-wrap .container .alumni .alumniTitle {
	width: 100%;
	color: #2a2a2a;
	font-size: 30px;
	text-align: left;
	margin: 30px auto;
	overflow: hidden;
}

.wsite-section-wrap .container .alumni .alumniList {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.wsite-section-wrap .container .alumni .alumniList li {
	width: 100%;
	line-height: 1.5;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

/* .wsite-section-wrap .container .alumni .alumniList li a {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
} */

.wsite-section-wrap .container .alumni .alumniList li .pic {
	width: 20%;
}

.wsite-section-wrap .container .alumni .alumniList li .pic img {
	width: 100%;
}

.wsite-section-wrap .container .alumni .alumniList li .name {
	width: calc(80% - 40px);
}

.wsite-section-wrap .container .alumni .alumniList li .name span {
	color: #2a2a2a;
	display: block;
}

.wsite-section-wrap .container .alumni .alumniList li .name span:nth-of-type(1) {
	font-weight: bold;
}

/* research */

.wsite-section-wrap .container .researchToptxt {
	color: rgb(98, 98, 98);
	font-weight: bold;
	margin-bottom: 30px;
}

.wsite-section-wrap .container .researchTitle {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.wsite-section-wrap .container .researchTxt {
	width: 100%;
	color: #626262;
	line-height: 1.75;
}

.wsite-section-wrap .container .researchTxt p {
	text-align: justify;
	margin-bottom: 30px;
}

/* publications */

.wsite-section-wrap .container .publications {
	width: 100%;
}

.wsite-section-wrap .container .publications .publicationsTitle {
	width: 100%;
	margin: 30px auto;
	overflow: hidden;
}

.wsite-section-wrap .container .publications .publicationsTitle .left {
	width: 50%;
	color: #2a2a2a;
	font-size: 30px;
	text-align: left;
	float: left;
}

.wsite-section-wrap .container .publications .publicationsTitle .left span {
	display: block;
	color: #626262;
	font-size: 16px;
}

.wsite-section-wrap .container .publications .publicationsTitle .right {
	width: 50%;
	color: #fff;
	font-size: 12px;
	float: left;
}

.wsite-section-wrap .container .publications .publicationsTitle .right a {
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	float: right;
	background-color: #000;
	color: #fff;
	border: 1px solid #000;
	padding: 14px 30px;
	margin-left: 50px;
	font-weight: 700;
}

.wsite-section-wrap .container .publications .publicationsTitle .right a:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}

.wsite-section-wrap .container .publications .publicationsList {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

.wsite-section-wrap .container .publications .publicationsList dt {
	color: #515151;
	font-size: 26px;
	font-weight: 500;
	width: 100%;
}

.wsite-section-wrap .container .publications .publicationsList dd {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

/* .wsite-section-wrap .container .publications .publicationsList dd a {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
} */

.wsite-section-wrap .container .publications .publicationsList dd .pic {
	width: 240px;
	height: 240px;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.wsite-section-wrap .container .publications .publicationsList dd .pic img {
	max-width: 100%;
	max-height: 100%;
}

.wsite-section-wrap .container .publications .publicationsList dd .publicationsTxt {
	width: calc(100% - 280px);
	color: #2a2a2a;
	line-height: 24px;
}

.wsite-section-wrap .container .publications .publicationsList dd .publicationsTxt .subTxt {}

.wsite-section-wrap .container .publications .publicationsList dd .publicationsTxt .type {
	margin: 5px auto;
	padding-left: 30px;
}

.wsite-section-wrap .container .publications .publicationsList dd .publicationsTxt .type p {
	position: relative;
	/* padding-left: 24px; */
	margin: 5px auto;
}

.wsite-section-wrap .container .publications .publicationsList dd .publicationsTxt ul li {
	position: relative;
	padding-left: 24px;
	margin: 5px auto;
}

.wsite-section-wrap .container .publications .publicationsList dd .publicationsTxt ul li::before {
	position: absolute;
	left: 0;
	top: 10px;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #626262;
}

.wsite-section-wrap .container .publications .publicationsList dd .publicationsTxt ul li span {
	text-decoration: underline;
}

/* work */
.wsite-section-wrap .container .work {
	width: 100%;
}

.wsite-section-wrap .container .work .workToptxt {
	color: rgb(98, 98, 98);
	font-weight: bold;
	margin-bottom: 30px;
}

.wsite-section-wrap .container .work .workTitle {
	width: 100%;
	color: #2a2a2a;
	font-size: 30px;
	text-align: left;
	overflow: hidden;
	line-height: 1.75
}

.wsite-section-wrap .container .work .workTitle span {
	display: block;
	color: #626262;
	font-size: 16px;
}

.wsite-section-wrap .container .work .workList {
	width: 100%;
	margin: 30px auto;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	position: relative;
}

.wsite-section-wrap .container .work .workList li {
	width: calc(33.33333% - 12px);
}
.wsite-section-wrap .container .work .workList li:nth-of-type(1) {
	width: calc(30% - 12px);
}
.wsite-section-wrap .container .work .workList li:nth-of-type(2),
.wsite-section-wrap .container .work .workList li:nth-of-type(3) {
	width: calc(35% - 12px);
}
.wsite-section-wrap .container .work .workList li:nth-last-of-type(3),
.wsite-section-wrap .container .work .workList li:nth-last-of-type(4) {
	width: calc(40% - 12px);
}

.wsite-section-wrap .container .work .workList li:nth-last-of-type(1),
.wsite-section-wrap .container .work .workList li:nth-last-of-type(2) {
	width: calc(20% - 12px);
}
.wsite-section-wrap .container .work .workList li:nth-last-of-type(1) {
	position: absolute;
	right: 0;
	bottom: 0;
	border-top: 18px solid #f5f7fa;
}

.wsite-section-wrap .container .work .workList li img {
	width: 100%;
	object-fit: cover;
}

.wsite-section-wrap .container .work .coverList {
	width: 100%;
	margin: 30px auto;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	position: relative;
}

.wsite-section-wrap .container .work .coverList li {
	width: calc(25% - 13.5px);
}
/* .wsite-section-wrap .container .work .coverList li:nth-last-of-type(3),
.wsite-section-wrap .container .work .coverList li:nth-last-of-type(2),
.wsite-section-wrap .container .work .coverList li:nth-last-of-type(1) {
	width: calc(33.33333% - 12px);
} */


.wsite-section-wrap .container .work .coverList li img {
	width: 100%;
	object-fit: cover;
}
.wsite-section-wrap .container .movies {
	width: 100%;
	margin-top: 20px;
	overflow: hidden;
}

.wsite-section-wrap .container .movies .moviesTitle {
	width: 100%;
	color: #2a2a2a;
	font-size: 30px;
	text-align: left;
	overflow: hidden;
}

.wsite-section-wrap .container .movies .moviesList {
	width: 100%;
	margin: 30px auto;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.wsite-section-wrap .container .movies .moviesList li {
	width: calc(50% - 15px);
	text-align: center;
}

.wsite-section-wrap .container .movies .moviesList li p {
	margin-bottom: 5px;
}

.wsite-section-wrap .container .movies .moviesList li p span {
	font-size: 12px;
}

.wsite-section-wrap .container .movies .moviesList li a {
	text-decoration: underline;
}

.wsite-section-wrap .container .movies .moviesList li video {
	margin: 0 auto;
}

/* contact */
.wsite-section-wrap .container .contact {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.wsite-section-wrap .container .contact .contactTxt {
	width: 36%;
	color: #2a2a2a;
}

.wsite-section-wrap .container .contact .contactTxt h1 {
	font-size: 30px;
	margin-bottom: 30px;
}

.wsite-section-wrap .container .contact .contactTxt .type {
	margin-bottom: 50px;
	line-height: 24px;
}

.wsite-section-wrap .container .contact .contactTxt p {
	line-height: 24px;
}

.wsite-section-wrap .container .contact .map {
	width: calc(60% - 40px);
}

.wsite-section-wrap .container .contact .map img {
	width: 100%;
}

.wsite-section-wrap .container .joinUs {
	width: 100%;
	margin-top: 50px;
}

.wsite-section-wrap .container .joinUs h1 {
	font-size: 30px;
	margin-bottom: 30px;
}

.wsite-section-wrap .container .joinUs .joinTxt {
	width: 100%;
	margin-top: 50px;
}

.wsite-section-wrap .container .joinUs .joinTxt a {
	display: inline-block;
	height: auto;
	padding: 14px 30px;
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
	letter-spacing: 0.03em;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	margin-left: 50px;
}

.wsite-section-wrap .container .joinUs .joinTxt a:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}

/* content */

.wsite-section-wrap .container .contentTitle {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.wsite-section-wrap .container .contentTxt {
	width: 100%;
	color: #626262;
	line-height: 1.75;
}

.wsite-section-wrap .container .contentTxt p {
	text-align: justify;
	margin-bottom: 30px;
}