/* ::-webkit-scrollbar {
    display: none;
} */

::-moz-placeholder {
    color: #aaa;
}

::-webkit-input-placeholder {
    color: #aaa;
}

:-ms-input-placeholder {
    color: #aaa;
}

::selection {
    background: #111;
    color: #fff;
    font-weight: bold
}

html {
    color: #333;
}

body {
    min-width: 1200px;
}

html,
body {
    margin: 0;
    height: 100%;
    font-family: "Myriad Set Pro", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
}

hr {
    height: 1px;
    background: #ccc;
    width: 100%;
    border: none;
    padding: 0;
    margin-top: 10px;
}

img {
    width: 100%;
    height: auto;
    display: block;
    border: 0;
}

body,
html {
    color: #666;
    font: 12px/150% Arial, Verdana, "microsoft yahei";
    background-color: #F5F8F8;
}

html,
body,
div,
dl,
dt,
dd,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
button,
fieldset,
form,
input,
legend,
textarea,
th,
td {
    margin: 0;
    padding: 0;
}
/* 头部begin */
header {
    background: #4F9A96;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

main {
    padding-top: 80px;
}

.logo-box {
    width: 400px;
    margin-right: 100px;
}

.navbox {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav{
    width: 800px;
    display: flex;
    justify-content: space-between;
}
nav span {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
	padding: 10px 15px;
}

.navuser {
    display: flex;
    align-items: center;
    position: relative;
    height: 80px;
	padding-left: 20px;
}
.navuser:hover #sectionbox{
    display: block;
}
.subjects:hover{
    background-color: #FFF;
	padding: 10px 15px;
	border-radius: 20px;
	color: #4F9A96;
}
.xinlicp:hover .subjects{
    background-color: #FFF;
	padding: 10px 15px;
	border-radius: 20px;
	color: #4F9A96;
}
.xinlicp:hover #xinlicp{
    display: block;
}

.navtext{
	position: relative;
}
.listsconter{
	height: 36px;
	font-size: 18px;
	color: #666;
	font-weight: 400;
	line-height: 36px;
}
.listsconter:hover{
	color: #4F9A96;
}
#xinlicp{
	position: absolute;
	width: 200px;
	background: #FFFFFF;
	border-radius: 5px;
	z-index: 999;
	top: 80px;
	left: -34px;
	list-style: none;
	padding: 0 20px;
	display: none;
}
#xinlicp li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #EAEAEA;
}
#xinlicp li img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

#sectionbox {
    position: absolute;
    width: 220px;
    background: #FFFFFF;
    border-radius: 5px;
    z-index: 999;
    top: 80px;
    right: 0;
    list-style: none;
    padding: 0 20px;
    display: none;
}

#sectionbox li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #EAEAEA;
}

#sectionbox li img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.section {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

.navuser img {
    width: 13px;
    height: 6px;
    margin-left: 14px;
}

.login {
	width: 220px;
	text-align: right;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}
/* 头部end */
/*设置轮播图的边框相对定位*/
.play-box {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/*设置边框下的图片*/
.play-box img {
    width: 100%;
    height: auto;
    border: 0;
}

/*设置超链接下的所有图片不显示*/
.play-box a {
    display: block;
    /*现在是文本状态，要修改为块状*/
    overflow: hidden;
    /*隐藏超过边框高度的图片*/
    opacity: 0;
    /*默认图片为全透明*/
    height: 0;
    /*默认高度为0*/
    transition: opacity .5s;
    /*默认透明度过渡时间为0.5s*/
}

/*设置当前图片显示*/
#imgList a.current {
    opacity: 1;
    /*默认图片显示*/
    height: auto;
    /*默认高度为自动*/
}
#imgList img{
    max-height:500px;
}
/*设置列表ul*/
.iconList ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*设置列表ul下的li*/
.iconList ul li {
    width: 50px;
    height: 5px;
    margin: 0 4px;
    font-size: 0;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: inline-block;
}

/*当图片变化时，图标也跟着变化*/
.iconList ul li.current {
    background-color: #4F9A96;
}

/*设置图标绝对定位*/
.iconList {
    position: absolute;
    bottom: 10px;
    width: 400px;
    left: calc(50% - 200px);
    text-align: center;
}

/*设置向左向右图标*/
.sliderbar {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 30px;
    height: 50px;
    font-family: simsun;
    color: #fff;
    text-align: center;
    line-height: 50px;
    background-color: #000;
    opacity: .6;
    display: none;
    cursor: pointer;
}

.body {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
}

.toptitle {
    display: flex;
    justify-content: space-between;
}

.toptitle p {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    color: #000000;
}
.body{
    position: relative;
}


.select img {
    margin-left: 16px;
}

.cepitem {
    display: inline-block;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(79, 154, 150, 0.24);
    border-radius: 5px;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

#evaluation>a {
    width: calc(50% - 15px);
    float: left;
    margin-bottom: 30px;
}

#evaluation>a:nth-child(2n+1) {
    margin-right: 30px;
}

.cepitem>div {
    padding: 20px 20px 8px;
}
.cepitem img {
    height: 200px;
}

.cepname {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
}

.online {
    height: 126px;
}

.ceptime {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #4F9A96;
}

.cepitemmini {
    /* width: calc(20% - 8px); */
    /* float: left; */
    margin-bottom: 30px;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #4F9A96;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(79, 154, 150, 0.24);
    border-radius: 5px;
}

.cepitemmini img {
    width: 224px;
    height: 224px;
}

.cepitemmini>div {
    padding: 20px 15px 10px;
}

.cepitemmini .cepname {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
}

.cepitemmini .ceptime {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #4F9A96;
    margin-top: 10px;
}

.cepitemminibox {
    display: flex;
    justify-content: space-between;

}
.Training{
    margin:20px 0;
}
.musicbox{
    display: flex;
    justify-content: space-between;
}
.musicitem{
    border-radius: 5px;
    position: relative;
}
.musicitem img{
    width: 386px;
    height: 258px;
}
.musicdetail{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.musicitem .play{
    width: 40px;
    height: 40px;
}
.cepnum {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.online {
    margin-top: 20px;
    font-family: 'PingFang SC';
    font-style: normal;
    font-size: 12px;
	line-height: 180%;
    color: #000000;
}

.cepbox {
    overflow: auto;
    margin-top: 50px;
}

.more {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #4F9A96;
    display: flex;
    align-items: center;
}

.moreimg {
    width: 16px;
    height: 16px;
    border: 1px solid #4F9A96;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
}

.news {
    margin:50px 0;
}

.newsitem {
    width: calc(50% - 15px);
    float: left;
    margin-bottom: 30px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(79, 154, 150, 0.24);
    border-radius: 5px;
    padding: 28px 30px 30px;
    min-height: 380px;
}

.newsitem:nth-child(2n+1) {
    margin-right: 30px;
}

.newtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.itemmore {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #4F9A96;
}

.itemmore img {
    margin-left: 6px;
}

.newtitle p {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    position: relative;
    padding-left: 20px;
}

.newtitle p::before {
    content: '';
    display: block;
    width: 10px;
    height: 29px;
    background: linear-gradient(180deg, #37BCB5 0%, #98DCA7 100%);
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: -4px;
}

.list p {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin-bottom: 30px;
    white-space: nowrap;
    /*内容超宽后禁止换行显示*/
    overflow: hidden;
    /*超出部分隐藏*/
    text-overflow: ellipsis;
    /*文字超出部分以省略号显示*/
    line-height: 24px;
}

.ontitle {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    color: #000000;
    margin: 100px 0 40px;
}

.newsbox {
    overflow: auto;
}

.relationbox {
    position: relative;
    margin-bottom: 150px;
}

.relation {
    width: 300px;
    height: 70px;
    background: linear-gradient(97.12deg, #37BCB5 12.68%, #98DCA7 88.14%);
    border-radius: 49px;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 2px;
    color: #FFFFFF;
    line-height: 70px;
    text-align: center;
    position: absolute;
    left: 100px;
    bottom: 90px;
    z-index: 999;
}

footer {
    background: #4F9A96;
}

.footernav {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;

}

.linkbox {
    width: 500px;
}

.linkbox a {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    display: inline-block;
    width: 50%;
    margin-bottom: 15px;
}

.footernav img {
    width: 131px;
    margin-right: 10px;
}

.relationtext p {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    color: #FFFFFF;
}
.index_all{
	position: absolute;
	background-color: #FFF;
	display: flex;
	top: -150px;
	left: 0;
	width: 100%;
	box-shadow: 0px 4px 15px rgba(79, 154, 150, 0.24);
}
.selectpeson{
	display: flex;
    /* position: absolute; */
    top: -150px;
    left: 0;
	
}
.selectpeson_right{
	/* position: absolute; */
	top: -150px;
	/* right: 0; */
	left: 600px;
	height: 100px;
	/* margin-left: 30px; */
	/* width: 580px; */
	background-color: #FFF;
	/* box-shadow: 0px 4px 15px rgba(79, 154, 150, 0.24); */
	border-radius: 5px;
	padding: 12px;
	display: flex;
	width: 100%;
}
.selectpeson_people{
	/* position: absolute; */
	/* top: -150px;
	right: 0;
	left: 600px; */
	margin:0 10px;
	margin-left: auto;
	/* width: 100px; */
	/* height: 100px; */
	background-color: #FFF;
	/* box-shadow: 0px 4px 15px rgba(79, 154, 150, 0.24); */
	border-radius: 5px;
	/* padding: 15px 15px; */
}
.seetask{
	background-color: #37BCB5;
	padding: 10px 20px;
	/* width: 100%; */
	text-align: center;
	border-radius: 12px;
	height: 40px;
	margin-left: auto;
	text-align: center;
	margin-top: 15px;
	color: #FFF;
}
.addpeople{
	background-color: #37BCB5;
	padding: 10px 20px;
	/* width: 100%; */
	text-align: center;
	border-radius: 12px;
	height: 40px;
	margin-left: auto;
	text-align: center;
	margin-top: 15px;
	color: #FFF;
}
#test_people{
	font-size: 15px;
	color: #000;
	padding-bottom: 10px;
}
#test_sex{
	font-size: 13px;
	color: #000;
	padding-bottom: 10px;
}
#test_dept{
	font-size: 15px;
	color: #000;
	padding-bottom: 10px;
}
/* .selectpeson:hover .selectbox{
    display: block !important;
} */
.select {
    height: 100px;
    /* width: 1200px; */
	/* width: 600px; */
    background: #FFFFFF;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    padding: 13px 33px;
    align-items: center;
    /* box-shadow: 0px 4px 15px rgba(79, 154, 150, 0.24); */
    border-radius: 5px;
    color: #999999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.selectbox{
    min-height: 100px;
    /* width: 1200px; */
    background: #FFFFFF;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    padding: 13px 20px;
    box-shadow: 0px 4px 15px rgba(79, 154, 150, 0.24);
    border-radius: 0 0 5px 5px;
    color: #202020;
    display: none;
}
.selectitem{
    padding: 8px 10px;
    border-radius: 5px;
    background-color: #e7e7e7;
    margin-right: 20px;
    /* display: inline-block; */
    margin-bottom: 5px;
}
.selectitemact{
    color: #FFFFFF;
    background-color: #4F9A96;
}
@media screen and (max-width: 1450px) {
    .logo-box {
        width: 300px;
        margin-right: 100px;
    }
}
.popup{
	background-color: #FFF;
	padding: 15px 30px;
	width: 450px;
	border: 1px solid #D9D9D9;
	border-radius: 12px;
	position: absolute;
	top: -220px;
	left: calc(50% - 225px);
}
.title_pop{
	font-size: 18px;
	color: #999;
	padding-bottom: 10px;
	border-bottom: 1px dashed #D9D9D9;
}
.err_div{
	color: red;
	font-size: 12px;
	margin-top: 2px;
	display: none;
}
.title_all{
	display: flex;
	margin-top: 12px;
	font-size: 16px;
	color: #999;
}
.title_all input{
	/* margin-left: 10px; */
	padding: 8px 12px;
	border: 1px solid #999 !important;
	font-size: 16px;
}
.btn_sure{
	width: 30%;
	background: #37BCB5;
	padding: 8px 10px;
	text-align: center;
	color: #FFF;
	border-radius: 12px;
	margin: 0 auto;
}
.btn_close{
	margin-left: 15px;
	width: 30%;
	background: #999;
	padding: 8px 10px;
	text-align: center;
	color: #FFF;
	border-radius: 12px;
	margin: 0 auto;
}