
/* introduction */

.transition {
  transition: all .3s ease-out .1s;
  -webkit-transition: all .3s ease-out .1s;
  -moz-transition: all .3s ease-out .1s;
  -ms-transition: all .3s ease-out .1s;
  -o-transition: all .3s ease-out .1s;
}
.centerBg {
  width: 100%;
  height: 300px;
}
.commonMain {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}
.commonNavLeft {
  width: 230px;
  height: auto;
}
.commonNavLeft>ul {
  width: 100%;
  background-color: rgba(251, 240, 230, 1);
}
.commonNavLeft>ul>h3 {
  display: block;
  width: 100%;
  height: 66px;
  background: linear-gradient( 153deg, #9D171F 0%, #94151D 100%);
  background: url(../images/icon_commonNav.png) no-repeat right #9D171F;
  font-weight: bold;
  font-size: 26px;
  color: #FFFFFF;
  line-height: 66px;
  text-indent: 20px;
}
.commonNavLeft>ul>li {
  width: 100%;
  overflow: hidden;
}
.commonNavLeft>ul>li>a {
  display: block;
  height: 60px;
  line-height: 60px;
  font-weight: 400;
  font-size: 16px;
  color: #93141C;
  position: relative;
  text-indent: 20px;
}
.commonNavLeft>ul>li:hover {
  background: url(../images/icon_commonLeft_h.jpg) no-repeat;
  background-size: cover;
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
}
.commonNavLeft>ul>li>a:hover {
  background: url(../images/icon_arrow_right.png) no-repeat 90%;
  color: #ffffff;
}
.commonNavLeft>ul>li.active {
  background: url(../images/icon_commonLeft_h.jpg) no-repeat !important;
  background-size: cover !important;
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
}
.commonNavLeft>ul>li.active>a {
  background: url(../images/icon_arrow_right.png) no-repeat 90% !important;
  color: #ffffff !important;
}
.commonLeft_T {
  display: none;
  width: 100%;
  padding: 10px 0px;
  border-bottom: 1px solid #e2e2e2;
  text-align: center;
}
.commonLeft_T_Nav>a {
  display: block;
  font-size: 16px;
  color: #666666;
  line-height: 40px;
}
.commonLeft_T_Nav>a:hover {
  color: #ad0b29;
}
.commonRight {
  width: calc(100% - 300px);
}
.commonRightTitle {
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #999999;
}
.commonRightTitle>h3 {
  display: inline-block;
  font-weight: bold;
  font-size: 26px;
  color: #333333;
  line-height: 40px;
}
.location {
  width: auto;
  text-align: right;
  line-height: 40px;
  font-size: 16px;
  color: #666666;
  padding-left: 30px;
}
.location>a {
  display: inline-block;
  font-size: 16px;
  color: #666666;
}
.location>a:hover {
  color: #ad0b29;
}
.college_introduction {
  width: 100%;
  margin-top: 40px;
}
.introductionCont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.introductionCont+.introductionCont {
  margin-top: 40px;
}
.introductionContText {
  width: calc(100% - 52%);
}
.introductionContText p {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 30px;
}
.introductionContText p+p {
  margin-top: 10px;
}
.introductionContText p span {
  color: #ad0b29;
}
.introductionContPic {
  width: calc(100% - 52%);
  height: 305px;
  overflow: hidden;
}
.introductionContPic img {
  display: block;
  width: 100%;
}

/* college_leader_box */

.college_leader_box {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 0px;
}
.college_leader_item {
  width: calc(100% - 52%);
  height: 240px;
  background: url(../images/icon_leader.png) no-repeat center center / cover;
}
.college_leader_item>a {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.college_leader_item_pic {
  width: 150px;
  height: 200px;
  overflow: hidden;
}
.college_leader_item_pic>img {
  display: block;
  width: 100%;
}
.college_leader_item_text {
  width: calc(100% - 170px);
}
.college_leader_item_text>h3 {
  display: block;
  font-size: 20px;
  color: #B8373F;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.college_leader_item_text>span {
  display: block;
  font-size: 13px;
  color: #333333;
  line-height: 21px;
  background: linear-gradient( 90deg, rgba(184, 55, 63, 0.1) 0%, rgba(255,255,255,0) 100%);
  padding-left: 10px;
}
.college_leader_item_text>span+span {
  margin-top: 20px;
}
.college_leader_item:hover {
  background: url(../images/icon_leader_h.png) no-repeat right bottom rgba(184, 55, 63, 1);
}
.college_leader_item:hover h3 {
  color: #ffffff;
}
.college_leader_item:hover span {
  color: rgba(255, 255, 255, 0.8);
}
.college_leader_item {
  transition: transform .3s ease-out .1s;
  -webkit-transition: transform .3s ease-out .1s;
  -moz-transition: transform .3s ease-out .1s;
  -ms-transition: transform .3s ease-out .1s;
  -o-transition: transform .3s ease-out .1s;
}
.college_leader_item:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
}

/* college_department_box */

.college_department_box {
  width: 100%;
  margin-top: 40px;
}
.college_department {
  width: 100%;
}
.college_department_title {
  max-width: 450px;
  width: auto;
  height: 60px;
  background: linear-gradient( 90deg, #F6F6F9 0%, rgba(246,246,249,0) 100%);
  background-color: rgba(246, 246, 249, 0.3);
  border-left: 4px solid rgba(184, 55, 63, 1);
  text-indent: 20px;
  font-weight: bold;
}
.college_department_title>h3 {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  line-height: 60px;
}
.college_department_title>span {
  display: inline-block;
  font-size: 12px;
  color: #111111;
  line-height: 60px;
  margin-left: 20px;
}
.college_department_cont  {
  width: 100%;
  margin-top: 20px;
}
.college_department_cont p {
  font-size: 16px;
  color: #333333;
  line-height: 32px;
  text-indent: 2em;
  margin-bottom: 10px;
}
.college_department+.college_department {
  margin-top: 50px;
}

/* college_contact_box */

.college_contact_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.college_contact_left {
  width: calc(100% - 51%);
}
.college_contact {
  width: 100%;
}
.college_contact_title {
  max-width: 450px;
  width: auto;
  height: 60px;
  background: linear-gradient( 90deg, #F6F6F9 0%, rgba(246,246,249,0) 100%);
  background-color: rgba(246, 246, 249, 0.3);
  border-left: 4px solid rgba(184, 55, 63, 1);
  text-indent: 20px;
  font-weight: bold;
}
.college_contact_title>h3 {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  line-height: 60px;
}
.college_contact_title>span {
  display: inline-block;
  font-size: 12px;
  color: #111111;
  line-height: 60px;
  margin-left: 20px;
}
.college_contact_cont  {
  width: 100%;
  margin-top: 20px;
  background: url(../images/contact_bg.png) no-repeat top center / cover;
}
.college_contact_cont>span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  padding-top: 10px;
}
.college_contact_cont>img {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
}
.college_contact_cont p {
  font-size: 16px;
  color: #333333;
  line-height: 60px;
  text-indent: 2em;
  margin-bottom: 10px;
}
.college_contact+.college_contact {
  margin-top: 50px;
}
.college_contact_right {
  width: calc(100% - 51%);  
}
.college_contact_number {
  width: 100%;
  margin-top: 20px;
  background: url(../images/contact_bg.png) no-repeat bottom center / cover;
  padding: 60px 140px;
}
.college_contact_number h3 {
  font-size: 16px;
  color: rgba(184, 55, 63, 1);
  line-height: 26px;
  padding-top: 27px;
}
.college_contact_number p {
  display: block;
  font-size: 16px;
  color: rgba(51, 51, 51, 1);
  line-height: 26px;
  margin: 10px 0px;
}

/* news_list */

.news_list_box {
  width: 100%;
  margin-top: 40px;
}
.news_item {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
  transition: transform .3s ease-out .1s;
  -webkit-transition: transform .3s ease-out .1s;
  -moz-transition: transform .3s ease-out .1s;
  -ms-transition: transform .3s ease-out .1s;
  -o-transition: transform .3s ease-out .1s;
}
.news_item>a {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.news_item_pic {
  width: 300px;
  height: 200px;
  overflow: hidden;
}
.news_item_pic>img {
  display: block;
  width: 100%;
}
.news_item_text {
  width: calc(100% - 320px);
  padding-top: 15px;
}
.news_item_title {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.news_item_title>h3 {
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 40px;
  width: 80%;
  overflow: hidden;
  height: 40px;
}
.news_item_title>span {
  display: inline-block;
  border: 1px solid RGBA(224, 181, 186, 1);
  border-radius: 20px;
  width: 100px;
  height: 40px;
  line-height: 35px;
  background: url(../images/icon_notice_more.png) no-repeat right center;
  text-align: left;
  padding: 0px 0px 0px 20px;
  color: #B8373F;
  font-size: 16px;
}
.news_item_text>p {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 15px;
}
.news_item_text>span {
  display: block;
  width: 130px;
  height: 30px;
  background: rgba(184, 55, 63, 0.1);
  border-radius: 0px 10px 0px 10px;
  font-size: 14px;
  color: #B8373F;
  text-align: center;
  line-height: 30px;
  overflow: hidden;
  margin-top: 25px;
}
.news_item+.news_item {
  margin-top: 20px;
}
.news_item:hover a {
  background: url(../images/icon_news_hover.png) no-repeat bottom right rgba(184, 55, 63, 1);
}
.news_item:hover .news_item_title>span {
  border: 1px solid rgba(255, 255, 255, 1);
  background: url(../images/icon_notice_h.png) no-repeat right center rgba(184, 55, 63, 1);
  color: #ffffff;
}
.news_item:hover h3 {
  color: #ffffff;
}
.news_item:hover p {
  color: rgba(255, 255, 255, 0.8);
}
.news_item:hover .news_item_text>span {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}
.news_item:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
}

/* page */

.page {
  width: 100%;
  margin-top: 50px;
}
.page_nav {
  height: 40px;
  width: 100%;
  text-align: center;
}
.page_nav li {
  width: auto;
  padding: 0px 5px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #222222;
  border-radius: 5px;
  margin: 0px 3px;
}
.page_nav li a {
  display: block;
  color: #222222;
}
.page_nav li>a.active {
  border: 1px solid #ad0b29;
  color: #ad0b29;
}
.page_nav li.active>span {
  border: 1px solid #ad0b29;
  color: #ad0b29;
}
.pagination {
  margin: 0 !important;
}
.page_nav li:last-child {
  width: auto;
}
.total {
  width: auto !important;
}
.total span {
  width: auto !important;
  font-size: 14px;
  padding: 0px 5px;
}
.pagination span,
.pagination a {
  box-sizing: border-box;
  display: block;
  width: auto;
  padding: 0px 14px;
  height: 40px;
  line-height: 40px !important;
  border: 1px solid #656565;
  border-radius: 4px;
}
.pagination a:hover {
  color: #ad0b29;
  border: 1px solid #ad0b29;
}
.pagination div {
  display: inline-block;
  height: 40px;
  font-size: 16px;
  color: #333333;
  line-height: 40px;
}
.pagination div input {
  width: 40px;
  height: 40px;
  border: 1px solid #e6e6e6;
  margin: 0px 5px;
  font-size: 16px;
  text-align: center;
}
.pagination div input[type="button"] {
  width: 60px;
  background-color: #990000;
  border: 1px solid #990000;
  color: #ffffff;
  margin-left: 10px;
  cursor: pointer;
}

/* article_box */

.article_box {
  width: 100%;
  margin-top: 40px;
}
.article_title {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(238, 238, 238, 1);
  text-align: center;
}
.article_title>h3 {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 34px;
}
.article_title>span {
  display: inline-block;
  text-align: center;
  background: #F2F2F6;
  border-radius: 15px;
  padding: 5px 15px;
  font-size: 14px;
  color: #666666;
  margin-top: 10px;
}
.article_cont {
  width: 100%;
  padding: 40px 0px;
}
.article_cont p {
  font-size: 16px;
  color: #333333;
  line-height: 32px;
  margin-bottom: 10px;
  text-indent: 2em;
}
.article_cont img {
  display: block;
  max-width: 490px;
  margin: 20px auto;
}
.article_cont table p {
  text-indent: 0em !important;
}
.article_page {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.article_page>a {
  display: block;
  width: 140px;
  height: 58px;
  border: 1px solid rgba(51, 51, 51, 1);
  font-size: 16px;
  border-radius: 32px;
  text-align: right;
  color: #333333;
  line-height: 52px;
  padding-right: 15px;
  position: relative;
}
.article_page>a:after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/icon_arrow_page_left.png) no-repeat center center rgba(221, 221, 221, 1);
  border-radius: 50px;
  position: absolute;
  z-index: 2;
  top: 3px;
  left: 8px;
}
.article_page>a+a {
  text-align: left;
  padding-right: 0px;
  padding-left: 15px;
  padding-right: 15px;
}
.article_page>a+a:after {
  left: auto;
  right: 8px;
  background: url(../images/icon_arrow_page_right.png) no-repeat center center rgba(221, 221, 221, 1);
}
.article_page>a:hover {
  background-color: rgba(184, 55, 63, 1);
  border: 1px solid rgba(184, 55, 63, 1);
  color: #ffffff;
}
.article_page>a:hover:after {
  background: url(../images/icon_arrow_page_left.png) no-repeat center center rgba(255, 255, 255, 1);
}
.article_page>a+a:hover:after {
  background: url(../images/icon_arrow_page_right.png) no-repeat center center rgba(255, 255, 255, 1);
}

/* teacher_work_box */

.teacher_work_nav {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  background-color: rgba(238, 238, 238, 1);
  overflow: hidden;
  padding: 8px 20px;
}
.teacher_work_nav>a {
  display: block;
  width: calc((100% / 3) - 10px);
  text-align: center;
  line-height: 40px;
  background-color: #ffffff;
  border-radius: 4px;
}
.teacher_work_nav>a.active {
  background-color: rgba(184, 55, 63, 1) !important;
  color: #ffffff !important;
}
.teacher_work_nav>a:hover {
  background-color: rgba(184, 55, 63, 1) !important;
  color: #ffffff !important;
}
.teacher_work_box {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.teacher_work_item {
  width: calc(100% - 52%);
  height: 240px;
  background: url(../images/icon_teacher_bg.png) no-repeat right bottom  #ffffff;
  box-shadow: 0px 2px 4px 0px rgba(3,0,85,0.15);
}
.teacher_work_item>a {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.teacher_work_item_pic {
  width: 150px;
  height: 200px;
  overflow: hidden;
}
.teacher_work_item_pic>img {
  display: block;
  width: 100%;
}
.teacher_work_item_text {
  width: calc(100% - 170px);
}
.teacher_work_item_text>h3 {
  display: block;
  font-size: 20px;
  color: #B8373F;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.teacher_work_item_text>h3>span {
  font-size: 16px;
}
.teacher_work_item_text>span {
  display: block;
  font-size: 13px;
  color: #333333;
  line-height: 21px;
  padding-left: 10px;
}
.teacher_work_item_text>span+span {
  margin-top: 20px;
}
.teacher_work_item:hover {
  background: url(../images/icon_teacher.png) no-repeat right bottom rgba(184, 55, 63, 1);
}
.teacher_work_item:hover h3 {
  color: #ffffff;
}
.teacher_work_item:hover span {
  color: rgba(255, 255, 255, 0.8);
}
.teacher_work_item {
  transition: transform .3s ease-out .1s;
  -webkit-transition: transform .3s ease-out .1s;
  -moz-transition: transform .3s ease-out .1s;
  -ms-transition: transform .3s ease-out .1s;
  -o-transition: transform .3s ease-out .1s;
}
.teacher_work_item:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
}

/* teacher_retired_box */

.teacher_retired_box {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 34px;
}
.teacher_retired_item {
  width: calc((100% / 5) - 34px);  
  height: 320px;
  background-color: #ffffff;
}
.teacher_retired_item>a {
  padding: 20px;
}
.teacher_retired_pic {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.teacher_retired_pic>img {
  display: block;
  width: 100%;
}
.teacher_retired_item>a>h3 {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #333333;
  line-height: 40px;
}
.teacher_retired_item:hover {
  background: url(../images/icon_teacher_retired.png) no-repeat bottom right rgba(184, 55, 63, 1);
}
.teacher_retired_item:hover h3 {
  color: #ffffff;
}

/* teacher_aids_box */

.teacher_aids_box {
  width: 100%;
  margin-top: 40px;
}
.teacher_aids_title {
  max-width: 450px;
  width: auto;
  height: 60px;
  background: linear-gradient( 90deg, #F6F6F9 0%, rgba(246,246,249,0) 100%);
  background-color: rgba(246, 246, 249, 0.3);
  border-left: 4px solid rgba(184, 55, 63, 1);
  text-indent: 20px;
  font-weight: bold;
}
.teacher_aids_title>h3 {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  line-height: 60px;
}
.teacher_aids_box .teacher_retired_box {
  margin-top: 20px;
}

/* teacher_article */

.teacher_article_box {
  width: 100%;
  margin-top: 40px;
}
.teacher_article_info {
  width: 100%;
  height: 240px;
  padding: 0px 20px;
  background: url(../images/icon_teacher.png) no-repeat right bottom rgba(184, 55, 63, 1);
  display: flex;
  justify-content: space-between;
  transform: translateY(80px);
}
.teacher_article_pic {
  width: 225px;
  height: 300px;
  overflow: hidden;
  transform: translateY(-80px);
}
.teacher_article_pic>img {
  display: block;
  width: 100%;
}
.teacher_article_text {
  width: calc(100% - 305px);
  padding-top: 40px;
}
.teacher_article_text>h3 {
  display: block;
  font-size: 26px;
  color: #FFFFFF;
  line-height: 40px;
}
.teacher_article_text>h3>span {
  font-size: 20px;
}
.teacher_article_pro {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}
.teacher_article_pro>a {
  display: block;
  width: calc(100% - 51%);
  height: 40px;
  overflow: hidden;
}
.teacher_article_pro>a {
  font-size: 13px;
  color: #ffffff;
  line-height: 40px;
  padding-left: 10px;
}
.teacher_cont_box {
  width: 100%;
  margin-top: 140px;
}
.teacher_cont {
  width: 100%;
  margin-top: 60px;
}
.teacher_title {
  max-width: 450px;
  width: auto;
  height: 60px;
  background: linear-gradient( 90deg, #F6F6F9 0%, rgba(246,246,249,0) 100%);
  background-color: rgba(246, 246, 249, 0.3);
  border-left: 4px solid rgba(184, 55, 63, 1);
  text-indent: 20px;
  font-weight: bold;
}
.teacher_title>h3 {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  line-height: 60px;
}
.teacher_title>span {
  display: inline-block;
  font-size: 12px;
  color: #111111;
  line-height: 60px;
  margin-left: 20px;
}
.teacher_detail {
  width: 100%;
  padding: 40px;
  margin-top: 20px;
  background: url(../images/teacher_article_bg.png) no-repeat center center / cover;
}
.teacher_detail h3 {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  background: #B8373F;
  font-size: 16px;
  color: #ffffff;
  padding: 0px 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.teacher_detail p {
  font-size: 14px;
  color: #333333;
  line-height: 30px;
  margin-bottom: 10px;
}

/* research_institution_box */

.research_institution_box {
  width: 100%;
  margin-top: 40px;
}
.research_institution {
  width: 100%;
  column-count: 2;
  column-gap: 20px;
  /*display: flex;
  justify-content: space-between;
  flex-wrap: wrap;*/
}
.research_institution_item {
  break-inside: avoid;
  page-break-inside: avoid;
  height: auto;
  box-shadow: 0px -3px 4px 0px rgba(3,0,85,0.15);
  margin-bottom: 50px;
}
.research_institution_title {
  width: 100%;
  height: 60px;
  background: linear-gradient( 90deg, #F6F6F9 0%, rgba(255,255,255,0) 100%);
}
.research_institution_title>h3 {
  display: block;
  line-height: 60px;
  border-left: 4px solid rgba(184, 55, 63, 1);
  padding-left: 25px;
  font-size: 18px;
  color: #111111;
  font-weight: bold;
}
.research_institution_cont {
  width: 100%;
  padding: 30px 60px;
  background: url(../images/icon_research_institution.png)  no-repeat bottom center / cover;
}
.research_institution_cont>p {
  display: inline-block;
  background: #F6F6F9;
  border-radius: 15px;
  width: 200px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: #333333;
}
.research_institution_cont>p:nth-child(2n) {
  margin-left: 25px;
}
.research_institution_cont>p+p+p {
  margin-top: 20px;
}
.research_institution_cont span {
  display: block;
  font-size: 14px;
  color: #333333;
  line-height: 25px;
  margin-top: 30px;
}
.research_institution_cont p + p {
  margin-top: 5px;
}
.research_institution_cont a {
  display: block;
  text-align: center;
  font-size: 14px;
  color: rgba(184, 55, 63, 1);
  margin-top: 15px;
}
.research_institution_item:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
}

/* research_news_item */

.news_list_box {
  width: 100%;
  margin-top: 40px;
}
.research_news_item {
  width: 100%;
  background: rgba(246, 246, 249, 1);
  transition: transform .3s ease-out .1s;
  -webkit-transition: transform .3s ease-out .1s;
  -moz-transition: transform .3s ease-out .1s;
  -ms-transition: transform .3s ease-out .1s;
  -o-transition: transform .3s ease-out .1s;
}
.research_news_item>a {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
}
.research_news_item_pic {
  width: 225px;
  height: 300px;
  overflow: hidden;
}
.research_news_item_text {
  width: calc(100% - 265px);
  padding-top: 15px;
}
.research_news_item_title {
  width: 100%;
  border-bottom: 1px dotted rgba(184, 55, 63, 1);
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.research_news_item_title>h3 {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 40px;
  width: 80%;
  overflow: hidden;
  height: 40px;
}
.research_news_item_title>h3>span {
  display: inline-block;
  height: 40px;
  background-color: rgba(184, 55, 63, 1);
  padding: 0px 10px;
  font-size: 18px;
  color: #ffffff;
  margin-right: 20px;
}
.research_news_item_title>span {
  display: none;
  border: 1px solid RGBA(224, 181, 186, 1);
  border-radius: 20px;
  width: 100px;
  height: 40px;
  line-height: 35px;
  background: url(../images/icon_notice_more.png) no-repeat right center;
  text-align: left;
  padding: 0px 0px 0px 20px;
  color: #B8373F;
  font-size: 16px;
}
.research_news_item_text>p {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.research_news_item_text>span {
  display: block;
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  overflow: hidden;
  margin-top: 20px;
}
.research_news_item+.research_news_item {
  margin-top: 20px;
}
.research_news_item:hover a {
  background: url(../images/icon_news_hover.png) no-repeat bottom right rgba(184, 55, 63, 1);
}
.research_news_item:hover .research_news_item_title {
  border-bottom: 1px dotted rgba(255, 255, 255, 1);
}
.research_news_item:hover .research_news_item_title>h3>span {
  background-color: #ffffff;
  color: rgba(184, 55, 63, 1);
}
.research_news_item:hover .research_news_item_title>span {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 1);
  background: url(../images/icon_notice_h.png) no-repeat right center rgba(184, 55, 63, 1);
  color: #ffffff;
}
.research_news_item:hover h3 {
  color: #ffffff;
}
.research_news_item:hover p {
  color: rgba(255, 255, 255, 0.8);
}
.research_news_item:hover .research_news_item_text>span {
  color: rgba(255, 255, 255, 0.8);
}
.research_news_item:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
}

/* group */

.group:hover a {
  background: url(../images/group_h.png) no-repeat bottom right rgba(184, 55, 63, 1);
}

/* student_style_box */

.student_style_box {
  width: 100%;
  margin-top: 40px;
}
.student_style {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.student_style_item {
  width: 406px;
  height: 525px;
  overflow: hidden;
  background: url(../images/student_style.png) no-repeat;
}
.student_style_item>a {
  height: 80%;
  padding: 70px 60px 0px 60px;
  overflow: hidden;
}
.student_style_item>a>h3 {
  display: block;
  text-align: center;
  font-size: 26px;
  color: rgba(190, 35, 37, 1);
  line-height: 34px;
  margin-bottom: 10px;
}
.student_style_item>a>span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: rgba(190, 35, 37, 1);
  line-height: 25px;
}
.student_style_item>a>span+span {
  margin-bottom: 20px;
}
.student_style_item>a>p {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  margin-bottom: 10px;
}
.student_style_item+.student_style_item+.student_style_item+.student_style_item {
  margin-top: 40px;
}

/* student_donation_box */

.student_donation_box {
  width: 100%;
  margin-top: 40px;
}
.student_donation {
  width: 1000px;
  margin: 0 auto;
}
.student_donation_logo {
  width: 430px;
  height: 50px;
  overflow: hidden;
  margin: 0 auto 40px;
}
.student_donation_introduction p {
  font-size: 14px;
  color: #333333;
  line-height: 30px;
  margin-bottom: 10px;
}
.student_donation_introduction img {
  display: block;
  width: 100%;
}
.student_donation_introduction a {
  display: inline-block;
  width: calc(100% - 52%);
  height: 100px;
  border: 1px solid #999999;
  font-size: 20px;
  color: #000000;
  letter-spacing: 10px;
  line-height: 100px;
  text-align: center;
  margin-top: 40px;
  background: url(../images/student_arrow.png) no-repeat 90%;
}
.student_donation_introduction a+a {
  margin-left: 35px;
}
.student_donation_introduction a:hover {
  border: 1px solid rgba(184, 55, 63, 1);
  color: #ffffff;
  background: url(../images/student_arrow_h.png) no-repeat 90% rgba(184, 55, 63, 1);
}

/* student_photo_box */

.student_photo_box {
  width: 100%;
  margin-top: 40px;
}
.student_photo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.student_photo_list {
  width: calc(100% - 50%);
  height: auto;
}
.student_photo_title {
  width: 410px;
  float: right;
  position: relative;
}
.student_photo_title:after {
  content: '';
  display: block;
  width: 100%;
  height: 30px;
  background: url(../images/student_photo_title_bg.png) no-repeat;
  position: absolute;
  z-index: -1;
  top: 0px;
}
.student_photo_title>h3 {
  display: block;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
  padding-top: 30px;
}
.student_photo_cont {
  clear: both;
  width: 100%;
  background: url(../images/student_photo_list_bg.png) no-repeat  right 0px;
  padding-top: 20px;
}
.student_photo_cont>img {
  display: block;
  width: 92%;
  max-height: 430px;
}
.student_photo_list:nth-child(2n) {
  margin-top: 310px;
  transform: translateX(-25px);
  -webkit-transform: translateX(-25px);
  -moz-transform: translateX(-25px);
  -ms-transform: translateX(-25px);
}
.student_photo_list:nth-child(2n) .student_photo_title {
  float: left;
  text-align: right;
}
.student_photo_list:nth-child(2n) .student_photo_title:after {
  transform: rotate(180deg);
}
.student_photo_list:nth-child(2n) .student_photo_cont {
  background: url(../images/student_photo_list_bg.png) no-repeat  left 0px;
}
.student_photo_list:nth-child(2n) .student_photo_cont>img {
  margin-left: 45px;
}
.student_photo_list:nth-child(2n+3) {
  margin-top: -90px;
}
.student_photo_list:nth-child(2n+4) {
  margin-top: 220px;
}

/* student_list_box */

.student_list_box {
  width: 100%;
  margin-top: 40px;
}
.student_list_slogan {
  width: 650px;
  position: relative;
  margin: 0 auto;
  padding-bottom: 40px;
}
.student_list_slogan>h3 {
  display: block;
  width: 100%;
  height: 80px;
  background: #B8373F;
  border-radius: 10px 10px 0px 0px;
  font-size: 30px;
  color: #FBF0E6;
  line-height: 80px;
  letter-spacing: 20px;
  text-align: center;
}
.student_list_slogan>h4 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: RGBA(251, 240, 230, 1);
  border-radius: 0px 0px 10px 10px;
}
.student_list_slogan>h4>span+span {
  display: inline-block;
  padding-left: 0px;
  background: none;
  font-size: 16px;
  color: #B8373F;
  line-height: 40px;
  text-align: center;
}
.student_list_slogan>h4>span {
  display: inline-block;
  font-size: 16px;
  color: #B8373F;
  padding-left: 30px;
  background: url(../images/student_list_arrow_left.png) no-repeat 10px;
}
.student_list_slogan>h4>span+span+span {
  padding-left: 0px;
  padding-right: 30px;
  background: url(../images/student_list_arrow_right.png) no-repeat 45px;
}
.student_list_slogan:after {
  content: '';
  display: block;
  width: 20px;
  height: 60px;
  background: #FBF0E6;
  border-radius: 10px;
  position: absolute;
  z-index: -1;
  bottom: 0px;
  left: 50%;
  margin-left: -10px;
}
.student_list_directory {
  width: 100%;
}
.student_list_directory_nav {
  width: 100%;
  padding: 10px 20px;
  background: rgba(246, 246, 249, 1);
}
.student_list_directory_title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.student_list_directory_title>a {
  display: block;
  width: calc((100% / 4) - 10px);
  height: 50px;
  background: #FFFFFF;
  border-radius: 4px;
  font-size: 16px;
  color: #333333;
  line-height: 50px;
  letter-spacing: 5px;
  text-align: center;
}
.student_list_directory_title>a:hover {
  color: #ffffff;
  background: rgba(184, 55, 63, 1);
}
.student_list_directory_title>a.active {
  color: #ffffff !important;
  background: rgba(184, 55, 63, 1) !important;
}
.student_list_directory_year {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.student_list_directory_year>a {
  display: block;
  width: calc((100% / 13) - 10px);
  height: 50px;
  background: rgba(246, 246, 249, 1);
  font-size: 16px;
  border-radius: 4px;
  color: #333333;
  line-height: 50px;
  text-align: center;
}
.student_list_directory_year>a:hover {
  background: rgba(184, 55, 63, 1);
  color: #ffffff;
}
.student_list_directory_year>a.active {
  background: rgba(184, 55, 63, 1) !important;
  color: #ffffff !important;
}
.student_list_directory_cont {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.student_list_directory_cont>a {
  display: block;
  width: calc((100% / 8) - 20px);
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-left: 4px solid rgba(184, 55, 63, 1);
  font-weight: 400;
  font-size: 18px;
  color: #333333;
}
.student_list_directory_cont>a:hover {
  background: linear-gradient( 90deg, #F6F6F9 0%, rgba(246,246,249,0) 100%);
}

.college_contact_logo {
  width: 100%;
  background: url(../images/contact_bg.png) no-repeat top center / cover;
  padding: 31px 140px;
}
.college_contact_logo>img {
  display: block;
  width: auto;
  margin: 20px auto;
}

/* undergraduate_box */

.undergraduate_box {
  width: 100%;
  margin-top: 40px;
}
.undergraduate,
.under_professional_info {
  width: 100%;
}
.under_title {
  width: 100%;
  position: relative;
}
.under_title>span {
  display: inline-block;
  font-size: 30px;
  color: transparent;
  font-family: fantasy;
   background: linear-gradient(to bottom, RGBA(188, 188, 188, 1) 0%, RGBA(188, 188, 188, 1) 20%, white 70%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.under_title>h3 {
  display: block;
  font-size: 30px;
  color: #000000;
  font-weight: bold;
}
.under_professional_item {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px 60px;
}
.under_professional_list {
  width: calc((100% / 3) - 60px);
  background-size: contain !important;
  height: 120px;
}
.under_professional_list>a {
  font-weight: 500;
  font-size: 26px;
  color: #5559A3;
  line-height: 120px;
  text-indent: 85px;
}
.under_professional_list {
  background: url(../images/icon_professional_first.png) no-repeat left;
}
.under_professional_list+.under_professional_list {
  background: url(../images/icon_professional_sec.png) no-repeat left;
}
.under_professional_list+.under_professional_list+.under_professional_list {
  background: url(../images/icon_professional_third.png) no-repeat left;
}
.under_professional_list+.under_professional_list+.under_professional_list+.under_professional_list {
  background: url(../images/icon_professional_four.png) no-repeat left;
}
.under_professional_list+.under_professional_list+.under_professional_list+.under_professional_list+.under_professional_list {
  background: url(../images/icon_professional_five.png) no-repeat left;
}
.under_professional_list:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
}
.under_infomation {
  width: 100%;
  background: url(../images/under_info_bg.png) no-repeat top left / contain RGBA(242, 242, 246, 1);
  padding: 80px 0px;
}
.under_infomation_right {
  width: calc(100% - 300px);
  float: right;
}
.under_information_item {
  width: 100%;
  margin-top: 40px;
}
.under_information_list {
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
}
.under_information_list>a {
  display: block;
  width: 90%;
  line-height: 80px;
  overflow: hidden;
  font-size: 18px;
  color: #333333;
  padding-left: 20px;
}
.under_information_list>span {
  display: block;
  width: calc(100% - 90%);
  text-align: right;
  font-size: 14px;
  color: #7D7C7C;
  line-height: 80px;
  padding-right: 20px;
}
.under_information_list+.under_information_list {
  margin-top: 15px;
}
.under_information_list:hover {
  background: url(../images/under_list_hover.png) no-repeat top left / cover;
}
.under_information_list:hover a {
  color: #ffffff;
}
.under_information_list:hover span {
  color: rgba(255, 255, 255, 0.6);
}
.under_infomation_top {
  background: url(../images/under_top_hover.png) no-repeat 20px;
  padding-left: 60px !important;
}
.under_information_list:hover .under_infomation_top {
  background: url(../images/under_top.png) no-repeat 20px;
}
.under_more {
  display: block;
  border: 1px solid RGBA(224, 181, 186, 1);
  border-radius: 20px;
  width: 100px;
  height: 40px;
  line-height: 35px;
  background: url(../images/icon_notice_more.png) no-repeat right center;
  text-align: left;
  padding: 0px 0px 0px 20px;
  color: #B8373F;
  font-size: 16px;
  position: absolute;
  top: 35px;
  z-index: 1;
  right: 0px;
}
.under_more:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
}
.under_rules {
  width: 100%;
  margin-top: 80px;
}
.under_rules .under_more {
  right: auto;
  left: 0px;
}
.under_rules .under_title {
  text-align: right;
}
.under_rules .under_information_list {
  background-color: RGBA(246, 246, 249, 1);
}
.under_download {
  width: 100%;
  margin-top: 80px;
  background: linear-gradient( 320deg, #F6F6F9 0%, rgba(246,246,249,0.77) 100%);
  box-shadow: inset 20px 23px 40px 0px rgba(230,230,237,0.6);
  background-color: rgba(230, 230, 237, 0.60);
  border-radius: 319px 0px 0px 319px;
  padding: 60px 0px;
}
.under_download_item {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0px;
}
.under_download_list {
  width: calc(100% - 51%);
  height: 80px;
  line-height: 80px;
  overflow: hidden;
}
.under_download_list>a {
  display: block;
  font-size: 18px;
  color: #333333;
  background: url(../images/icon_word.png) no-repeat 20px 15px;
  padding-left: 90px;
}
.under_download_list:hover {
  background: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(3,0,85,0.15);
  border-radius: 10px;
}
.under_service {
  width: 100%;
  background: url(../images/under_service.png) no-repeat bottom left;
  padding-bottom: 80px;
  margin-top: 80px;
}
.under_service .under_title {
  text-align: center;
}
.under_service_cont {
  width: 100%;
  margin-top: 40px;
  background: url(../images/under_service_cont_bg.png) no-repeat top;
  padding: 60px 0px;
}
.under_service_item {
  width: 100%;
}
.under_service_item>a>h3 {
  display: inline-block;
  height: 40px;
  background: url(../images/under_service_title_bg.png) no-repeat RGBA(184, 55, 63, 1);
  font-size: 18px;
  line-height: 40px;
  color: #ffffff;
  text-indent: 60px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-right: 30px;
}
.under_service_detail {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  padding: 0px 30px;
}
.under_service_pic {
  width: 200px;
  height: 150px;
  overflow: hidden;
  margin-right: 30px;
}
.under_service_article {
  width: auto;
}
.under_service_article p {
  font-size: 14px;
  color: #333333;
  line-height: 30px;
  margin-bottom: 10px;
  text-indent: 2em;
}
.under_service_item+.under_service_item {
  margin-top: 30px;
}
.under_link {
  width: 100%;
  margin-bottom: 80px;
}
.under_link .under_title {
  text-align: center;
}
.under_links_item {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px 60px;
}
.under_link_list {
  width: calc((100% / 4) - 60px);
  height: 240px;
  background-size: contain !important;
}
.under_link_list>a  {
  display: block;
  text-align: center;
  font-size: 26px;
  color: #5559A3;
  padding-top: 30px;
}
.under_link_list {
  background: url(../images/under_link_list_first.png) no-repeat;
}
.under_link_list + .under_link_list {
  background: url(../images/under_link_list_sec.png) no-repeat;
}
.under_link_list + .under_link_list+ .under_link_list {
  background: url(../images/under_link_list_third.png) no-repeat;
}
.under_link_list + .under_link_list+ .under_link_list+ .under_link_list {
  background: url(../images/under_link_list_four.png) no-repeat;
}
.under_link_list + .under_link_list+ .under_link_list+ .under_link_list+ .under_link_list {
  width: 510px;
  height: 200px;
  background: url(../images/icon_link_five.png) no-repeat;
}
.under_link_list + .under_link_list+ .under_link_list+ .under_link_list+ .under_link_list+ .under_link_list {
  background: url(../images/icon_link_six.png) no-repeat;
}
.under_link_list:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
}

/* MBA_box */

.MBA_box {
  width: 100%;
  margin-top: 40px;
}
.mba_project {
  width: 100%;
}
.mba_project>a {
  display: flex;
  justify-content: space-between;
}
.mba_project .under_title {
  width: calc(100% - 70%);
  margin-top: 160px;
}
.mba_project_img {
  width: 66%;
  height: auto;
  overflow: hidden;
}
.mba_project_img>img {
  display: block;
  width: 100%;
}
.mba_system {
  width: 100%;
  margin-top: 60px;
}
.mba_system_tab {
  width: 100%;
  margin-top: 40px;
}
.mba_system_nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.mba_system_nav>div {
  width: calc((100% / 4) - 10px);
  height: 200px;
  background-color: rgba(184, 55, 63, 1);
  line-height: 200px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  overflow: hidden;
  cursor: pointer;
}
.mba_system_nav .scholarNavAct {
  background: url(../images/mba_system_nav_bg.png) no-repeat rgba(184, 55, 63, 1);
}
.mba_system_nav>div:nth-child(2n),
.mba_system_detail:nth-child(2n) {
  background-color: rgba(161, 5, 15, 1);
}
.mba_system_cont {
  width: 100%;
  margin-top: 10px;
}
.mba_system_detail {
  width: 100%;
  background: rgba(184, 55, 63, 1);
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
}
.mba_system_detail_nav {
  width: calc(100% - 65%);
  padding-right: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.mba_system_detail_nav>span {
  width: calc(100% - 52%);
  height: 40px;
  border: 1px solid rgba(161, 5, 15, 1);
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  overflow: hidden;
  font-size: 14px;
  color: #FFFFFF;
}
.mba_system_detail_cont {
  width: calc(100% - 35%);
  padding-left: 60px;
}
.mba_system_detail_cont>h3 {
  display: block;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 30px;
}
.mba_system_detail_cont p {
  font-size: 14px;
  color: #ffffff;
  line-height: 24px;
  text-indent: 2em;
  margin-top: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mba_system_detail_btn {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}
.mba_system_detail_btn>div {
  width: auto;
  height: 80px;
  position: relative;
  padding-left: 100px;
  margin-right: 20px;
}
.mba_system_detail_btn>div>h3 {
  display: block;
  font-size: 28px;
  color: #ffffff;
  font-weight: bold;
  line-height: 30px;
  margin-top: 15px;
}
.mba_system_detail_btn>div>span {
  font-size: 14px;
  color: #ffffff;
  line-height: 25px;
}
.mba_system_detail_btn>div:after {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  background: url(../images/mba_system_detail_btn_first.png) no-repeat center center;
}
.mba_system_detail_btn>div+div:after {
  background: url(../images/mba_system_detail_btn_sec.png) no-repeat center center;
}
.mba_system_detail_btn>div+div+div:after {
  background: url(../images/mba_system_detail_btn_third.png) no-repeat center center;
}
.mba_faculty {
  width: 100%;
  padding: 80px 0px;
  background: url(../images/mba_faculty_bg.png) no-repeat bottom left / contain RGBA(242, 242, 246, 1);
}
.mba_faculty_box {
  width: 100%;
  margin-top: 40px;
}
.mba_faculty_number {
  display: flex;
  justify-content: flex-start;
}
.mba_faculty_number_list {
  width: calc(100% / 4);
  text-align: center;
}
.mba_faculty_number_list>h3 {
  display: block;
  font-size: 100px;
  color: #111111;
}
.mba_faculty_number_list>h3>span {
  font-size: 16px;
}
.mba_faculty_number_list>span {
  font-size: 16px;
  color: #111111;
  line-height: 25px;
}
.mba_faculty_number_list+.mba_faculty_number_list {
  border-left: 1px solid RGBA(199, 199, 203, 1);
}
.mba_faculty_teacher {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(3,0,85,0.15);
  border-radius: 40px 0px 0px 40px;
  padding: 40px;
  margin-top: 40px;
}
.mba_faculty_teacher_nav {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  background-color: rgba(238, 238, 238, 1);
  overflow: hidden;
  padding: 8px 20px;
}
.mba_faculty_teacher_nav>div {
  display: block;
  width: calc((100% / 4) - 10px);
  text-align: center;
  line-height: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
}
.mba_faculty_teacher_nav>div.scholarNavAct {
  background-color: rgba(184, 55, 63, 1) !important;
  color: #ffffff !important;
}
.mba_faculty_teacher_nav>div:hover {
  background-color: rgba(184, 55, 63, 1) !important;
  color: #ffffff !important;
}
.mba_faculty_teacher_cont {
  width: 100%;
  margin-top: 30px;
}
.mba_faculty_teacher_detail {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.mba_faculty_teacher_list {
  width: calc(100% - 51%);
}
.mba_faculty_teacher_list>a {
  display: flex;
  justify-content: space-between;
}
.mba_faculty_teacher_list_pic {
  width: 150px;
  height: 200px;
  overflow: hidden;
}
.mba_faculty_teacher_list_pic>img {
  display: block;
  width: 100%;
}
.mba_faculty_teacher_list_text {
  width: calc(100% - 170px);
}
.mba_faculty_teacher_list_text>h3 {
  display: block;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.mba_faculty_teacher_list_text>h3>span {
  font-size: 16px;
}
.mba_faculty_teacher_list_text>span {
  display: block;
  font-size: 13px;
  color: #333333;
  line-height: 21px;
  padding-left: 10px;
}
.mba_faculty_teacher_list_text>span+span {
  margin-top: 20px;
}
.mba_faculty_teacher_list:hover .mba_faculty_teacher_list_text>h3 {
  color: #B8373F;
}
.mba_globel {
  width: 100%;
  margin-top: 60px;
}
.mba_globel .under_infomation_right {
  display: flex;
  justify-content: space-between;
}
.mba_globel_item {
  width: calc(100% - 30%);
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.mba_globel .under_title {
  width: calc(100% - 70%);
  margin-top: 100px;
  text-align: center;
}
.mba_globel_list {
  width: calc((100% / 3) - 20px);
  height: 250px;
  line-height: 250px;
  text-align: center;
}
.mba_globel_list>a {
  display: block;
  font-size: 20px;
  color: #ffffff;
}
.mba_globel_alumni {
  width: 210px;
  height: 210px;
  overflow: hidden;
  margin: 0 auto 20px;
}
.mba_globel_list>a>span {
  display: block;
  font-size: 16px;
  color: #000000;
  line-height: initial;
}
.mba_globel+.mba_globel {
  margin-top: 80px;
}
.mba_globel+.mba_globel .under_infomation_right {
  background: #FFFFFF;
  box-shadow: inset 0px 0px 80px 0px rgba(184,55,63,0.15);
  border-radius: 157px 0px 0px 157px;
  padding: 40px 0px;
}
.mba_channel {
  width: 100%;
  margin-top: 60px;
}
.mba_channel_donation {
  width: 100%;
}
.mba_channel_donation a {
  display: inline-block;
  width: calc(100% - 52%);
  height: 100px;
  border: 1px solid #999999;
  font-size: 20px;
  color: #000000;
  letter-spacing: 10px;
  line-height: 100px;
  text-align: center;
  margin-top: 40px;
  background: url(../images/student_arrow.png) no-repeat 90%;
}
.mba_channel_donation a+a {
  margin-left: 35px;
}
.mba_channel_donation a:hover {
  border: 1px solid rgba(184, 55, 63, 1);
  color: #ffffff;
  background: url(../images/student_arrow_h.png) no-repeat 90% rgba(184, 55, 63, 1);
}


/* international_item */

.international_item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 40px;
}
.international_list {
  width: 420px;
  height: 120px;
  background: url(../images/international_title_bg_first.png) no-repeat;
  overflow: hidden;
  text-align: center;
  line-height: 120px;
  padding: 0px 10px;
}
.international_list>a {
  display: block;
  font-size: 26px;
  color: #B8373F;
}
.international_list:hover {
  transform: translateY(-5PX);
  -webkit-transform: translateY(-5PX);
  -moz-transform: translateY(-5PX);
  -ms-transform: translateY(-5PX);
}
.international_list:nth-child(2n) {
  background: url(../images/international_title_bg_sec.png) no-repeat;
}
.international_list:nth-child(2n)>a {
  color: #ffffff;
}
.under_professional_info + .under_professional_info {
  margin-top: 60px;
}
.international_cont {
  width: 100%;
  margin-top: 60px;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 80px 0px #E9E9F1;
  border-radius: 60px;
  padding: 60px 100px;
}
.international_cont .under_title {
  text-align: center;
}
.international_cont_detail {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
.international_cont_list {
  width: calc(100% - 52%);
}
.international_cont_list_title {
  width: 100%;
  height: 60px;
  background: linear-gradient( 90deg, #F6F6F9 0%, rgba(246,246,249,0) 100%);
  background-color: rgba(246, 246, 249, 0.3);
  border-left: 4px solid rgba(184, 55, 63, 1);
  font-weight: bold;
}
.international_cont_list_title>h3 {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  text-indent: 20px;
  color: #111111;
  line-height: 60px;
}
.international_cont_list_detail {
  width: 100%;
  margin-top: 20px;
  text-indent: 20px;
}
.international_cont_list_detail p {
  font-size: 16px;
  color: #333333;
  line-height: 30px;
}
.international_about_us {
  width: 100%;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 80px 0px #E9E9F1;
  border-radius: 60px;
  padding: 60px 100px;
  margin-top: 120px;
}
.international_about_us .under_information_list {
  background: #F6F6F9;
}
.international_about_us .under_information_list:hover {
  background: url(../images/under_list_hover.png) no-repeat top left / cover;
}
.international_about_us .under_information_list:hover a {
  color: #ffffff;
}
.international_about_us .under_information_list:hover span {
  color: rgba(255, 255, 255, 0.6);
}
.international_about_us .under_more {
  right: auto;
  left: 0px;
}
.international_about_us .under_title {
  text-align: right;
}