@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

html,
body {
	font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #333333;
	background-color: #ffffff;
}

ul,
li {
	list-style-type: none;
	margin: 0;
}

input,
textarea,
select {
	resize: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border: 0;
}

a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

img {
	max-width: auto;
	border-style: none;
	vertical-align: middle;
}

.zoom-img {
	overflow: hidden;
}

.zoom-img .img {
	overflow: hidden;
}

.zoom-img img {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.zoom-img:hover img {
	transform: scale(1.04);
	-ms-transform: scale(1.04);
	-webkit-transform: scale(1.04);
	-o-transform: scale(1.04);
	-moz-transform: scale(1.04);
}

.clear:after {
	display: block;
	clear: both;
	content: "";
	visibility: hidden;
	height: 0;
}

.clear {
	zoom: 1;
}

.nav-page {
	font-size: 0;
	text-align: center;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
	box-shadow: none;
}

.btn-link:focus,
.btn-link:hover {
	text-decoration: none;
}
/*限制行数*/
.clamp1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.clamp2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.clamp3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.clamp4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.clamp5{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
/* header */
.w16 {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 9;
	transition: all 0.5s ease;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

.header.active {
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

.header.active .item {
	line-height: 70px;
}

.header .logo img {
	transition: all 0.5s ease;
}

.header.active .logo img {
	height: 60px;
}

.header.active .item.active>a::before {
	top: 30px;
}

.header .wrap {
	display: flex;
	align-items: center;
}

.header .topBox {
	background-color: #003366;
}

.header .wrapTop {
	flex-direction: row-reverse;
	padding: 2px 0;
}

.header .rBox {
	display: flex;
	align-items: center;
}

.header .link {
	font-size: 15px;
	line-height: 30px;
	color: #cccccc;
	margin-left: 35px;
}

.header .searchBox {
	position: relative;
	margin-left: 28px;
}

.header .iconSearch {
	cursor: pointer;
}

.header .searchBox .dropDown {
	top: 40px;
	right: -50px;
	width: 500px;
	background-color: #fff;
	z-index: 2;
}

.header .searchBox .dropDown::before {
	position: absolute;
	content: "";
	top: -10px;
	right: 55px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 10px solid #fff;
}

.header .searchBox .formBox {
	display: flex;
	align-items: center;
	padding: 20px 20px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .searchBox .btn {
	font-size: 0;
	background: none;
	cursor: pointer;
}

.header .searchBox .inputText {
	width: calc(100% - 19px);
	padding: 0 10px;
}

.header .dropDown {
	position: absolute;
	display: none;
}

.header .langBox {
	position: relative;
	margin-left: 16px;
}

.header .iconLang {
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 36px;
	color: #ffffff;
	cursor: pointer;
}

.header .iconLang img {
	margin-right: 9px;
}

.header .langBox .dropDown {
	top: 40px;
	left: 50%;
	transform: translate(-50%, 0);
	min-width: 100%;
	white-space: nowrap;
	background-color: #fff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.header .langBox .dropDown::before {
	position: absolute;
	content: "";
	top: -8px;
	right: 50%;
	margin-right: -4px;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 8px solid #fff;
}

.header .langBox a {
	display: block;
	font-size: 14px;
	line-height: 30px;
	color: #666;
	text-align: center;
	padding: 0 20px;
	transition: all 0.5s ease;
}

.header .langBox a:hover {
	background-color: #f5f5f5;
}

.header .wrapBot {
	justify-content: space-between;
}

.header .nav {
	display: flex;
	align-items: center;
}

.header .mobileNav {
	display: none;
}

.header .item {
	position: relative;
	line-height: 122px;
	margin-left: 60px;
}

.header .item>a {
	position: relative;
	font-size: 18px;
	line-height: 36px;
	color: #333333;
}

.header .item.active>a::before {
	position: absolute;
	content: "";
	top: 40px;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #2c68b6;
	transform: translate(0, 50%);
}

.header .item .dropDown {
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	min-width: 100%;
	white-space: nowrap;
	background-color: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.header .item .dropDown>a {
	display: block;
	font-size: 14px;
	line-height: 40px;
	color: #333;
	text-align: center;
	padding: 0 15px;
	transition: all 0.5s ease;
}

.header .item .dropDown>a:hover {
	background-color: #eee;
}

.header .btnMenu {
	width: 40px;
	height: 30px;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.header .btnMenu>span {
	width: 40px;
	height: 2px;
	background-color: #000;
	margin: 4px 0;
	transition: all 0.3s;
	-webkit-transform: skew(40deg);
	-moz-transform: skew(40deg);
	-o-transform: skew(40deg);
	-ms-transform: skew(40deg);
	transform: skew(40deg);
}

.header .btnMenu.on>span {
	width: 20px;
}

.header .btnMenu.on>span:first-child {
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.header .btnMenu.on>span:nth-child(2) {
	display: none;
}

.header .btnMenu.on>span:last-child {
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	margin-top: -6px;
}

/* footer */
.footer {
  padding-top: 0.78rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.footer.index-foot {
  background:#2c68b6;
}
.footer.common-foot {
  background-image: url("../images/foot-bg-gray.png")/*tpa=https://gzxy.dlufe.edu.cn/images/foot-bg-gray.png*/;
}
.footer .foot-logo {
  padding-bottom: 0.63rem;
  margin-bottom: 0.62rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .foot-logo img {
  display: block;
  margin: 0 auto;
}
.footer .foot-main {
  display: flex;
  align-items: stretch;
  padding-bottom: 3.96rem;
  padding-top: 3.96rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .foot-main .left {
  display: flex;
  align-items: flex-start;
  margin-right: 15px;
}

.footer .foot-main .left .qrcode {
  width: max(1.34rem, 65px);
  height: max(1.34rem, 65px);
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: max(15px, 0.32rem);
  padding: 0.12rem 0.1rem 0.11rem;
  flex-shrink: 0;
}
.footer .foot-main .left .qrcode img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
.footer .foot-main .left .foot-info {
  padding-top: 8px;
}
.footer .foot-main .left .foot-info .foot-info-item {
  display: flex;
  align-items: flex-start;
}
.footer .foot-main .left .foot-info .foot-info-item:first-of-type {
  margin-bottom: max(15px, 0.21rem);
  padding-bottom: max(15px, 0.18rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .foot-main .left .foot-info .foot-info-item .foot-icon {
  flex-shrink: 0;
}
.footer .foot-main .left .foot-info .foot-info-item .foot-text {
  margin-left: 9px;
}
.footer .foot-main .left .foot-info .foot-info-item .foot-text .common-text {
  font-family: Source Han Sans CN, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 9px;
}
.footer .foot-main .left .foot-info .foot-info-item .foot-text .foot-phone a {
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-size: max(20px, 0.28rem);
  color: #ffffff;
}
.footer .foot-main .right {
  margin-left: auto;
}
.footer .foot-main .right .list {
  display: flex;
  align-items: flex-start;
}
.footer .foot-main .right .list .foot-nav-item {
  margin-right: max(130px, 1rem);
  white-space: nowrap;
}
.footer .foot-main .right .list .foot-nav-item:last-of-type {
  margin-right: 0;
}
.footer .foot-main .right .list .foot-nav-item h5 {
  font-family: Source Han Sans CN, sans-serif;
  font-weight: 400;
  font-size: max(16px, 0.18rem);
  color: #ffffff;
  line-height: 1;
  margin-bottom: max(0.2rem, 10px);
}
.footer .foot-main .right .list .foot-nav-item h5 a{
  font-family: Source Han Sans CN, sans-serif;
  font-weight: 400;
  font-size: max(16px, 0.18rem);
  color: #ffffff;
  line-height: 1;
  margin-bottom: max(0.2rem, 10px);
}
.footer .foot-main .right .list .foot-nav-item a {
  font-family: Source Han Sans CN, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2.4285;
  position: relative;
}
.footer .foot-main .right .list .foot-nav-item a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #fff;
  right: 0;
  top: 100%;
  transition: all 0.45s ease;
}
.footer .foot-main .right .list .foot-nav-item a:hover {
  color: #fff;
}
.footer .foot-main .right .list .foot-nav-item a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.footer .foot-copyright {
  padding-top: 0.79rem;
  padding-bottom: 0.79rem;
  padding-left:8.79rem;
  padding-right:8.79rem;
  display: flex;
  align-items: center;
  background:#3f3f3f;
}
.footer .foot-copyright .copyright-l a {
  font-family: Source Han Sans CN, sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.34rem;
  transition: all 0.45s ease;
}
.copyright-text, .copyright-text a{
  color: rgba(255, 255, 255, 0.5);

}


.footer .foot-copyright .copyright-l a:hover {
  color: #fff;
}
.footer .foot-copyright .copyright-l a:last-of-type {
  margin-right: 0;
}

.footer .foot-copyright .copyright-r {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.footer .foot-copyright .copyright-r span {
  font-family: Source Han Sans CN, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.21rem;
}
.footer_support, a.footer_support{
  color: rgba(255, 255, 255, 0.1) !important;
  font-size: 12px;
}
.footer .foot-copyright .copyright-r .icons {
  display: flex;
  align-items: center;
}
.footer .foot-copyright .copyright-r .icons .icon-item {
  margin-right: 0.15rem;
  position: relative;
}
.footer .foot-copyright .copyright-r .icons .icon-item .hover-qrcode {
  width: 86px;
  height: 86px;
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%) scale(0, 1);
  padding: 6px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.25);
  transition: all 0.6s ease;
}
.footer .foot-copyright .copyright-r .icons .icon-item .hover-qrcode img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .foot-copyright .copyright-r .icons .icon-item:last-of-type {
  margin-right: 0;
}
.footer .foot-copyright .copyright-r .icons .icon-item .default {
  opacity: 0.45;
  transition: all 0.45s ease;
}
.footer .foot-copyright .copyright-r .icons .icon-item:hover .default {
  opacity: 1;
}
.footer .foot-copyright .copyright-r .icons .icon-item:hover .hover-qrcode {
  transform: translateX(-50%) scale(1, 1);
}
@media (max-width: 768px) {
	  .footer-wrap {
	    padding-left: 0;
	    padding-right: 0;
	  }
	  .footer .foot-main {
	    display: flex;
	    align-items: center;
	    padding-bottom: 0.96rem;
	    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	    flex-direction: column;
	  }
	  .footer .foot-main .right{
	  	margin-top: 1.96rem;
	  }
	  .footer .foot-main .right .list {
	    flex-wrap: wrap;
	  }
	  .footer .foot-main .right .list .foot-nav-item {
	    margin-right: 0;
	    width: 100%;
	    margin-bottom: 15px;
	  }
	  .footer .foot-main .right .list .foot-nav-item ul {
	    display: flex;
	    flex-wrap: wrap;
	  }
	  .footer .foot-main .right .list .foot-nav-item ul li {
	    width: auto;
	    margin-right: 4%;
	  }
	  .footer .foot-main .right .list .foot-nav-item ul li:nth-of-type(4n) {
	    margin-right: 0;
	  }
	  .footer .foot-main .left {
	    flex-wrap: wrap;
	  }
	  .footer .foot-main .left .foot-info {
	    width: 100%;
	    margin-top: 15px;
	  }
	  .footer .foot-main .left .foot-info .foot-info-item:first-of-type {
	    border-bottom: 0px;
	  }
	  .footer .foot-copyright {
	    flex-wrap: wrap;
	  }
	  .footer .foot-copyright .copyright-l {
	    width: 100%;
	  }
	  .footer .foot-copyright .copyright-r {
	    margin-top: 15px;
	    margin-left: 0;
	  }
}
.backTop {
	position: fixed;
	right: 3%;
	bottom: 5%;
	cursor: pointer;
	z-index: 2;
}

/* home */
.main {
	padding-top: 123px;
}

.swiperBanner .swiper-pagination {
	font-size: 0;
	bottom: 55px;
}

.swiperBanner .swiper-pagination-bullet {
	width: 13px;
	height: 13px;
	margin: 0 9px !important;
	background-color: #ffffff;
	opacity: 1;
}

.swiperBanner .swiper-pagination-bullet-active {
	background-color: #2c68b6;
}

.w14 {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}

.homeMain .title {
	text-align: center;
}

.homeMain .title .h1 {
	font-size: 36px;
	color: #000;
	line-height: 1;
	font-weight: bold;
}

.homeNews {
	padding: 55px 0 95px;
}

.homeNews .title {
	margin-bottom: 55px;
}

.homeNews .botBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.homeNews .box {
	padding: 0 15px;
}

.homeNews .lBox {
	width: 29.64%;
}

.homeNews .cBox {
	width: 43.92%;
}

.homeNews .rBox {
	width: 25.35%;
}

.homeNews .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.homeNews .h2 {
	font-size: 24px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
}

.homeNews .more {
	font-size: 16px;
	line-height: 30px;
	color: #333333;
}

.listBox a {
	display: block;
}

.lnewsList {
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lnewsList .item {
	padding: 10px 20px 22px;
	border-bottom: 1px solid #e6e6e6;
}

.lnewsList .item:last-child {
	border-bottom: 0;
}

.lnewsList .img {
	border-radius: 10px 10px 0 0;
	background-position: center center;
	background-size: cover;
}

.lnewsList .time {
	font-size: 16px;
	line-height: 30px;
	color: #aaaaaa;
	margin-bottom: 6px;
}

.lnewsList .h3 {
	font-size: 18px;
	line-height: 24px;
	color: #000000;
	font-weight: bold;
	transition: all .5s ease;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lnewsList .item:hover .h3 {
	color: #184a9c;
}

.swiperNews {
	border-radius: 0 0 10px 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiperNews .img {
	border-radius: 10px 10px 0 0;
	position: relative;
}

.swiperNews .backImg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s;
}

.swiperNews .swiper-slide:hover .backImg {
	transform: scale(1.04);
	-ms-transform: scale(1.04);
	-webkit-transform: scale(1.04);
	-o-transform: scale(1.04);
	-moz-transform: scale(1.04);
}

.swiperNews .textBox {
	padding: 10px 30px 82px;
}

.swiperNews .time {
	font-size: 16px;
	line-height: 30px;
	color: #aaaaaa;
	margin-bottom: 12px;
}

.swiperNews .h3 {
	font-size: 26px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 15px;
	transition: all .5s ease;
}

.swiperNews .text {
	font-size: 16px;
	line-height: 30px;
	color: #888888;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.swiperNews .swiper-pagination {
	left: auto;
	right: 20px;
	width: auto;
	font-size: 0;
	bottom: 30px;
}

.swiperNews .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #d8d8d8;
	opacity: 1;
}

.swiperNews .swiper-pagination-bullet-active {
	background-color: #2e79c6;
}

.swiperNews .swiper-slide:hover .h3 {
	color: #184a9c;
}

.rnewsList .item {
	position: relative;
	padding: 50px 15px 5px;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 10px;
}

.rnewsList .item .backImg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	transition: all .5s;
}

.rnewsList .item:hover .backImg {
	transform: scale(1.04);
	-ms-transform: scale(1.04);
	-webkit-transform: scale(1.04);
	-o-transform: scale(1.04);
	-moz-transform: scale(1.04);
}

.rnewsList .item::before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.38);
	z-index: 1;
}

.rnewsList .item .suspen {
	position: relative;
	z-index: 2;
}

.rnewsList .item:last-child {
	margin-bottom: 0;
}

.rnewsList .h3 {
	position: relative;
	font-size: 18px;
	line-height: 30px;
	height: 60px;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.rnewsList .time {
	position: relative;
	font-size: 16px;
	line-height: 30px;
	color: #e0e0e0;
	text-align: right;
}

.homeNews .bBox {
	width: 100%;
	margin-top: 50px;
}

.actiList {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 -13px;
}

.profile-container {
    width: 100%;
    background: white;
    box-shadow: 0 0px 12px 0.8px rgba(225, 225, 225,  0.9);
    overflow: hidden;
    text-align: left;
    margin-top: 20px;
}
.profile-container .head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    margin-left:10px;
    position: relative;
}

.profile-container .subtitle {
    font-size: 18px;
    color: #666;
    padding-left: 20px;
}
.profile-container .vertical-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
    margin: 0 20px;
}
.profile-container .horizontal-divider {
    border-bottom: 1px solid #dbdbdb;
}
.profile-container .content {
    padding: 30px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}
.actiList .item {
	position: relative;
	width: 25%;
	padding: 0 13px;
}

.actiList .item a {
	position: relative;
	overflow: hidden;
}

.actiList .item a::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.57);
	z-index: 1;
}

.actiList .item .img {
	position: relative;
}

.actiList .item .backImg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s;
}

.actiList .item:hover .backImg {
	transform: scale(1.04);
	-ms-transform: scale(1.04);
	-webkit-transform: scale(1.04);
	-o-transform: scale(1.04);
	-moz-transform: scale(1.04);
}

.actiList .suspen {
	position: absolute;
	left: 0;
	bottom: -95px;
	width: 100%;
	padding: 20px;
	z-index: 2;
	transition: all 0.5s ease;
}

.actiList .tips {
	font-size: 18px;
	line-height: 30px;
	color: #dddddd;
}

.actiList .h3 {
	font-size: 18px;
	line-height: 30px;
	height: 60px;
	color: #ffffff;
	font-weight: bold;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.actiList .h4 {
	font-size: 16px;
	line-height: 30px;
	height: 30px;
	color: #d6d6d6;
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.actiList .moreBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.actiList .more {
	font-size: 14px;
	line-height: 30px;
	color: #fff;
}

.a::-webkit-scrollbar {
	display: none;
}

.actiList .time {
	font-size: 16px;
	line-height: 30px;
	color: #fff;
	padding-left: 30px;
	background-image: url("../images/icon3.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon3.png*/;
	background-repeat: no-repeat;
	background-position: left center;
}

.actiList .item:hover .suspen {
	bottom: 0;
}

.homeAbout {
	padding: 75px 0 170px;
	background-color: #ececec;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% auto;
}

.homeAbout .title {
	margin-bottom: 65px;
}

.homeAbout .title .h1 {
	margin-bottom: 10px;
}

.homeMain .title .h2 {
	font-size: 18px;
	line-height: 30px;
	color: #848181;
}

.homeAbout .text {
	font-size: 16px;
	line-height: 36px;
	color: #777e86;
	padding: 0 70px;
	text-align: justify;
}

.homeAbout .dataBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 115px;
}

.homeAbout .item {
	position: relative;
	width: 16.6666%;
	text-align: center;
}

.homeAbout .item::before {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	width: 1px;
	height: 60px;
	background-color: #d2cccc;
}

.homeAbout .item:last-child::before {
	display: none;
}

.homeAbout .numberBox {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 70px;
	line-height: 1;
	color: #15477b;
	font-weight: bold;
	margin-bottom: 15px;
}

.homeAbout .name {
	display: block;
	font-size: 18px;
	line-height: 30px;
	color: #333333;
}

.homePlan {
	padding: 70px 0 80px;
	background-color: #f8f8f8;
}

.homePlan .title {
	margin-bottom: 145px;
}

.homePlan .title .h1 {
	margin-bottom: 10px;
}

.homePlan .mapBox {
	position: relative;
}

.homePlan .item .btn {
	position: absolute;
	cursor: pointer;
}

.homePlan .popup {
	position: absolute;
	/* display: none; */
}

.homePlan .item1 .btn {
	top: 36%;
	left: 11%;
}

.homePlan .item1 .popup {
	top: 1%;
	left: 13.4%;
}

.homePlan .item2 .btn {
	top: 61.5%;
	left: 34.8%;
}

.homePlan .item2 .popup {
	top: 26%;
	left: 37%;
}

.homePlan .item3 .btn {
	top: 42.7%;
	left: 64.5%;
}

.homePlan .item3 .popup {
	top: 54%;
	left: 52.5%;
}

.homePlan .item4 .btn {
	top: 2.6%;
	right: 27%;
}

.homePlan .item4 .popup {
	top: 0;
	right: 5%;
}

.homeEnterprise {
	padding: 80px 0 75px;
	background-position: center center;
	background-size: cover;
}

.w156 {
	max-width: 1560px;
	width: 100%;
	margin: 0 auto;
}

.homeEnterprise .title {
	margin-bottom: 65px;
}

.homeEnterprise .title .h1 {
	margin-bottom: 10px;
}

.homeEnterprise .swiperBox {
	position: relative;
}

.homeEnterprise .swiper-wrapper {
	display: flex;
	align-items: center;
}

/* .homeEnterprise .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.6);
  -ms-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -o-transform: scale(0.6);
  -moz-transform: scale(0.6);
}

.homeEnterprise .swiper-slide-active{
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
} */

.homeEnterprise .swiper-slide a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	transition: 300ms;
	transform: scale(0.8);
	-ms-transform: scale(0.8);
	-webkit-transform: scale(0.8);
	-o-transform: scale(0.8);
	-moz-transform: scale(0.8);
}

.homeEnterprise .swiper-slide-active a {
	transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-moz-transform: scale(1);
}

.homeEnterprise .img {
	position: relative;
}

.homeEnterprise .suspen {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 0 30px;
}

.homeEnterprise .swiper-slide-active .suspen {
	top: 0;
	display: flex;
	flex-direction: column-reverse;
	padding: 0 30px 40px;
}

.homeEnterprise .h3 {
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	padding: 10px 0;
}

.homeEnterprise .swiper-slide-active .h3 {
	margin-bottom: 10px;
}

.homeEnterprise .text {
	font-size: 18px;
	line-height: 36px;
	color: #d6d6d6;
	margin-bottom: 15px;
	display: none;
}

.homeEnterprise .swiper-slide-active .text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.homeEnterprise .more {
	font-size: 14px;
	line-height: 30px;
	color: #ffffff;
	display: none;
}

.homeEnterprise .swiper-slide-active .more {
	display: block;
}

.homeEnterprise .swiper-button-prev,
.homeEnterprise .swiper-button-next {
	width: 37px;
	height: 37px;
	border-radius: 50%;
	background-size: cover;
	transition: all 0.5s ease;
	z-index: 2;
}

.homeEnterprise .swiper-button-prev {
	left: -90px;
	background-image: url("../images/icon5.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon5.png*/;
}

.homeEnterprise .swiper-button-prev:hover {
	background-image: url("../images/icon5-1.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon5-1.png*/;
}

.homeEnterprise .swiper-button-next {
	right: -90px;
	background-image: url("../images/icon6.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon6.png*/;
}

.homeEnterprise .swiper-button-next:hover {
	background-image: url("../images/icon6-1.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon6-1.png*/;
}

.homeEnterprise .btnMore {
	display: block;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background-color: #2e79c6;
	font-size: 18px;
	line-height: 76px;
	color: #ffffff;
	text-align: center;
	margin: 0 auto;
	margin-top: 65px;
}

/* 媒体查询 */
/* header home footer */
@media only screen and (max-width: 1680px) {
	.w16 {
		width: 90%;
	}

	.w156 {
		width: 90%;
	}

	.homeEnterprise .swiper-button-prev {
		left: -60px;
	}

	.homeEnterprise .swiper-button-next {
		right: -60px;
	}
}

@media only screen and (max-width: 1500px) {
	.w14 {
		width: 90%;
	}

	.header .item {
		margin-left: 50px;
	}

	.homePlan .item1 .btn {
		width: 100px;
	}

	.homePlan .item1 .popup {
		top: 3%;
		width: 220px;
	}

	.homePlan .item2 .btn {
		left: 35.5%;
		width: 130px;
	}

	.homePlan .item2 .popup {
		top: 26%;
		left: 38%;
		width: 220px;
	}

	.homePlan .item3 .btn {
		top: 43%;
		width: 110px;
	}

	.homePlan .item3 .popup {
		left: 54%;
		width: 220px;
	}

	.homePlan .item4 .btn {
		right: 26%;
		width: 100px;
	}

	.homePlan .item4 .popup {
		right: 8%;
		width: 250px;
	}

	.rnewsList .item {
		padding: 38px 15px 5px;
	}

	.lnewsList .item {
		padding: 10px 20px 20px;
	}
}

@media only screen and (max-width: 1366px) {
	.header .item {
		margin-left: 30px;
	}

	.homePlan .item4 .popup {
		right: 6%;
	}

	.footer .addrBox {
		width: 50%;
	}

	.lnewsList .item {
		padding: 10px 15px 17px;
	}

	.rnewsList .item {
		padding: 31px 15px 5px;
	}
}

@media only screen and (max-width: 1280px) {
	.header .link {
		font-size: 14px;
	}

	.header .iconLang {
		font-size: 14px;
	}

	.header .logo img {
		height: 60px;
	}

	.header .item {
		line-height: 70px;
	}

	.header .item>a {
		font-size: 16px;
	}

	.header .item.active>a::before {
		top: 30px;
	}

	.main {
		padding-top: 72px;
	}

	.swiperBanner .swiper-pagination {
		bottom: 5%;
	}

	.homeMain .title .h1 {
		font-size: 28px;
	}

	.homeNews .h2 {
		font-size: 18px;
	}

	.homeNews .more {
		font-size: 14px;
	}

	.lnewsList .item {
		padding: 10px 10px 15px;
	}

	.lnewsList .time {
		font-size: 14px;
	}

	.lnewsList .h3 {
		font-size: 16px;
	}

	.swiperNews .time {
		font-size: 14px;
	}

	.swiperNews .h3 {
		font-size: 18px;
	}

	.swiperNews .text {
		font-size: 14px;
	}

	.rnewsList .item {
		padding: 25px 10px 5px;
	}

	.rnewsList .h3 {
		font-size: 16px;
	}

	.rnewsList .time {
		font-size: 14px;
	}

	.actiList .tips {
		font-size: 14px;
		line-height: 24px;
	}

	.actiList .h3 {
		font-size: 16px;
		line-height: 26px;
		height: 52px;
	}

	.actiList .h4 {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	.actiList .suspen {
		bottom: -85px;
	}

	.actiList .time {
		font-size: 14px;
	}

	.homeMain .title .h2 {
		font-size: 16px;
	}

	.homeAbout .text {
		font-size: 14px;
		line-height: 30px;
	}

	.homeAbout .numberBox {
		font-size: 50px;
	}

	.homeAbout .name {
		font-size: 16px;
	}

	.homePlan .item1 .btn {
		top: 35%;
	}

	.homePlan .item1 .popup {
		width: 180px;
	}

	.homePlan .item2 .btn {
		width: 110px;
	}

	.homePlan .item2 .popup {
		width: 180px;
	}

	.homePlan .item3 .btn {
		top: 43.5%;
		width: 90px;
	}

	.homePlan .item3 .popup {
		width: 180px;
	}

	.homePlan .item4 .btn {
		right: 25%;
		width: 90px;
	}

	.homePlan .item4 .popup {
		right: 8%;
		width: 200px;
	}

	.homeEnterprise .h3 {
		font-size: 16px;
		padding: 5px 0;
	}

	.homeEnterprise .swiper-slide-active .h3 {
		padding: 0;
		margin-bottom: 10px;
	}

	.homeEnterprise .swiper-slide-active .suspen {
		padding: 0 20px 20px;
	}

	.homeEnterprise .text {
		font-size: 16px;
		line-height: 30px;
	}

	.homeEnterprise .btnMore {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 16px;
	}

	.homeEnterprise .swiper-button-prev {
		left: -50px;
	}

	.homeEnterprise .swiper-button-next {
		right: -50px;
	}

	.footer .copyBox .text {
		margin: 0 50px 0 20px;
	}
}

@media only screen and (max-width: 1199px) {
	.header .item {
		margin-left: 30px;
	}

	.homeNews .lBox {
		width: 43.5%;
	}

	.homeNews .cBox {
		width: 56%;
	}

	.homeNews .rBox {
		width: 100%;
		margin-top: 30px;
	}

	.rnewsList {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	.rnewsList .item {
		width: 32%;
		margin-bottom: 0;
	}

	.actiList .h3 {
		height: 26px;
		-webkit-line-clamp: 1;
	}

	.actiList .h4 {
		margin-bottom: 0;
	}

	.homeEnterprise .swiper-slide {
		width: 28%;
		margin-right: 2%;
	}

	.homeEnterprise .swiper-slide-active {
		width: 40%;
	}

	.homeEnterprise .swiper-button-prev {
		left: 10px;
		box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
	}

	.homeEnterprise .swiper-button-next {
		right: 10px;
		box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
	}

	.footer .addrBox {
		width: 100%;
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 1024px) {
	.header .botBox {
		padding: 5px 0;
	}

	.header .nav {
		display: none;
	}

	.header .mobileNav {
		position: fixed;
		top: 110px;
		left: 0;
		width: 100%;
		height: calc(100vh - 110px);
		background-color: #fff;
		border-top: 1px solid #eee;
		display: none;
		overflow-y: auto;
	}

	.header .mobileNav::-webkit-scrollbar {
		display: none;
	}

	.header.active .mobileNav {
		top: 60px;
		height: calc(100vh - 60px);
	}

	.header .item>a {
		display: block;
		line-height: 50px;
	}

	.header .btnMenu {
		display: flex;
	}

	.header .item.active>a::before {
		display: none;
	}

	.header .item {
		padding: 0 5%;
		margin-left: 0;
	}

	.header .item .dropDown {
		position: relative;
		box-shadow: none;
	}

	.header .item .dropDown>a {
		text-align: left;
	}

	.lnewsList .item {
		padding: 10px 10px;
	}

	.actiList .item {
		margin-bottom: 30px;
	}

	.actiList .suspen {
		bottom: -75px;
	}

	.homePlan .item1 .btn {
		width: 80px;
	}

	.homePlan .item2 .btn {
		width: 90px;
	}

	.homePlan .item3 .btn {
		width: 80px;
	}

	.homePlan .item4 .btn {
		width: 80px;
	}

	.homePlan .item1 .popup {
		width: 150px;
	}

	.homePlan .item2 .popup {
		width: 150px;
	}

	.homePlan .item3 .popup {
		width: 150px;
	}

	.homePlan .item4 .popup {
		right: 10%;
		width: 150px;
	}

	.actiList .item {
		width: 50%;
	}

	.footer .shareBox {
		margin-top: 20px;
	}

	.footer .shareBox a:first-child {
		margin-left: 0;
	}
}

@media only screen and (max-width: 768px) {
	.homeNews .lBox {
		width: 100%;
		margin-bottom: 30px;
	}

	.homeNews .cBox {
		width: 100%;
	}

	.homeAbout .numberBox {
		font-size: 40px;
	}

	.homeAbout .name {
		font-size: 14px;
	}

	.homeAbout .item::before {
		height: 40px;
	}
}

@media only screen and (max-width: 580px) {
	.header.active {
		top: -30px;
	}

	.header .wrapTop {
		padding: 0;
	}

	.header .link {
		margin-left: 15px;
	}

	.header .searchBox {
		margin-left: 15px;
	}

	.header .iconLang {
		line-height: 30px;
	}

	.header .langBox {
		margin-left: 15px;
	}

	.header .iconLang img {
		width: 18px;
		margin-right: 5px;
	}

	.header .logo img {
		height: 40px;
	}

	.header.active .logo img {
		height: 40px;
	}

	.header .mobileNav {
		top: 50px;
		height: calc(100vh - 50px);
	}

	.header.active .mobileNav {
		top: 50px;
		height: calc(100vh - 50px);
	}

	.header .item {
		line-height: 50px;
	}

	.header.active .item {
		line-height: 50px;
	}

	.header .btnMenu>span {
		width: 34px;
		margin: 3px 0;
	}

	.header .btnMenu.on>span:last-child {
		margin-top: -5px;
	}

	.header .searchBox .dropDown {
		top: 35px;
		width: 400px;
	}

	.header .langBox .dropDown {
		top: 35px;
	}

	.main {
		padding-top: 50px;
	}

	.swiperBanner .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		margin: 0 5px !important;
	}

	.homeNews {
		padding: 40px 0 30px;
	}

	.homeMain .title .h1 {
		font-size: 20px;
	}

	.homeNews .title {
		margin-bottom: 30px;
	}

	.homeNews .h2 {
		font-size: 16px;
	}

	.homeNews .top {
		margin-bottom: 20px;
	}

	.swiperNews .h3 {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 10px;
	}

	.swiperNews .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.rnewsList .item {
		width: 100%;
		margin-bottom: 20px;
	}

	.actiList .item {
		margin-bottom: 20px;
	}

	.homeAbout {
		padding: 40px 0;
	}

	.homeAbout .title {
		margin-bottom: 30px;
	}

	.homeAbout .text {
		padding: 0;
	}

	.homeAbout .dataBox {
		margin-top: 30px;
	}

	.homeAbout .item {
		width: 50%;
		margin-bottom: 20px;
	}

	.homeAbout .item:nth-child(2)::before {
		display: none;
	}

	.homePlan {
		padding: 40px 0;
	}

	.homePlan .title {
		margin-bottom: 50px;
	}

	.homePlan .item1 .btn {
		width: 50px;
	}

	.homePlan .item2 .btn {
		left: 34.5%;
		width: 60px;
	}

	.homePlan .item3 .btn {
		width: 50px;
	}

	.homePlan .item4 .btn {
		width: 50px;
	}

	.homePlan .item1 .popup {
		top: -5%;
		width: 100px;
	}

	.homePlan .item2 .popup {
		top: 20%;
		width: 100px;
	}

	.homePlan .item3 .popup {
		top: 55%;
		width: 100px;
	}

	.homePlan .item4 .popup {
		right: 6%;
		width: 100px;
	}

	.homeEnterprise {
		padding: 40px 0;
	}

	.homeEnterprise .title {
		margin-bottom: 30px;
	}

	.homeEnterprise .swiper-slide {
		width: 100%;
	}

	.homeEnterprise .swiper-slide-active {
		width: 100%;
	}

	.homeEnterprise .suspen {
		top: 0;
		display: flex;
		flex-direction: column-reverse;
		padding: 0 20px 20px;
	}

	.homeEnterprise .text {
		display: block;
		font-size: 14px;
		line-height: 24px;
	}

	.homeEnterprise .more {
		display: block;
		font-size: 14px;
		line-height: 24px;
	}

	.footer .topBox {
		padding: 40px 0;
	}

	.footer .h1 {
		margin-bottom: 20px;
	}

	.footer .addrList .item {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	.footer .addrBox {
		margin-bottom: 30px;
	}

	.footer .codeList {
		width: 100%;
		margin-bottom: 20px;
	}

	.footer .codeList .name {
		font-size: 14px;
		margin-top: 10px;
	}

	.footer .info .text {
		width: 100%;
		margin-bottom: 0;
		margin-left: 0;
		font-size: 14px;
		line-height: 24px;
	}

	.footer .copyBox {
		justify-content: center;
	}

	.footer .logo {
		width: 90px;
	}

	.footer .copyBox .text {
		width: 100%;
		margin: 0;
		margin-top: 10px;
		line-height: 24px;
		text-align: center;
	}

	.footer .shareBox {
		width: 100%;
		justify-content: center;
		margin-top: 10px;
	}

	.footer .shareBox a {
		width: 30px;
	}

	.backTop {
		width: 40px;
	}
}

@media only screen and (max-width: 480px) {
	.header .searchBox .dropDown {
		width: 300px;
	}

	.header .searchBox .formBox {
		padding: 10px;
	}

	.actiList .item {
		width: 100%;
	}

	.actiList .suspen {
		bottom: 0;
	}

	.homePlan .item1 .popup {
		top: -17%;
	}

	.homePlan .item2 .popup {
		top: 10%;
	}

	.homePlan .item3 .popup {
		left: 50%;
	}

	.homePlan .item4 .popup {
		right: 0%;
	}

	.homeEnterprise .btnMore {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 380px) {
	.header .searchBox .dropDown {
		width: 250px;
	}
}

/* about */
.position {
	font-size: 14px;
	text-align: left;
	border-bottom: 1px solid #eeeeee;
	background-color: #fff;
    color: #999999;
    line-height: 60px
}

.position a {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 60px;
	color: #999999;
}

.position a:last-child {
	color: #2c68b6;
}

.navBox {
	font-size: 0;
	text-align: center;
}

.navBox a {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 48px;
	color: #666666;
	padding: 0 30px;
	margin: 0 45px;
	border-radius: 24px;
	transition: all .5s ease;
}

.navBox a:hover {
	color: #fff;
	background-color: #2c68b6;
}

.navBox a.active {
	position: relative;
	color: #fff;
	background-color: #2c68b6;
}

.navBox a.active.on {
	position: absolute;
	content: "";
	bottom: -10px;
	left: 50%;
	margin-left: -5px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #2c68b6;
}

.aboutBox .navBox {
	padding: 42px 0 10px;
}
.intbg{
    background-image: url("../images/img29.jpg")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img29.jpg*/;
    background-repeat: no-repeat;
    background-position: center 75px;
}
.intrBox {
	padding: 85px 0 85px 0;

}

.intrBox .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.intrBox .topBox .textBox {
	width: 51.562%;
}

.intrBox .topBox .text {
	font-size: 16px;
	line-height: 30px;
	color: #777e86;
    padding-top: 20px;

	text-align: justify;
}

.intrBox .videoBox {
	position: relative;
	width: 43.125%;
	font-size: 0;
}

.intrBox .videoBox::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.intrBox .btnPlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.aboutBox .title {
	font-size: 0;
}

.aboutBox .title .h1 {
	font-size: 24px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 18px;
}

.aboutBox .title .line {
	display: inline-block;
	vertical-align: top;
	width: 50px;
	height: 3px;
	background-color: #2c68b6;
}

.intrBox .centBox {
	padding: 100px 0 0;
	background-position: center center;
	background-size: cover;
}

.intrBox .centBox .listBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.intrBox .centBox .column {
	position: relative;
	text-align: center;
	background-position: center center;
	background-size: cover;
	cursor: pointer;
	max-width: 33.33%;
	width: 100%;
}

.intrBox .centBox .box {
	position: relative;
	padding: 60px 34px 0;
}

.intrBox .centBox .column::before {
	position: absolute;
	content: "";
	top: 140px;
	left: 72%;
	width: 80%;
	border: 1px dashed #858585;
}

.intrBox .centBox .column:last-child:before {
	display: none;
}

.intrBox .centBox .column.active .box {
	background-image: url("../images/img31.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img31.png*/;
}

.intrBox .centBox .icon {
	display: inline-block;
	border: 1px dashed #fff;
	font-size: 0;
	padding: 20px;
	border-radius: 50%;
}

.intrBox .centBox .line {
	border: 1px solid #fff;
	width: 110px;
	height: 110px;
	line-height: 108px;
	text-align: center;
	border-radius: 50%;
}

.intrBox .centBox .column.active .line {
	background-color: #fff;
}

.intrBox .centBox .icon2 {
	display: none;
}

.intrBox .centBox .column.active .icon1 {
	display: none;
}

.intrBox .centBox .column.active .icon2 {
	display: inline-block;
}

.intrBox .centBox .name {
	font-size: 26px;
	line-height: 30px;
	color: #ffffff;
	font-weight: bold;
	margin: 20px 0 0;
}

.intrBox .centBox .column.active .name {
	margin: 20px 0 45px;
}

.intrBox .centBox .text {
	font-size: 16px;
	line-height: 36px;
	height: 290px;
	color: #ffffff;
	text-align: left;
	opacity: 0;
}

.intrBox .centBox .column.active .text {
	opacity: 1;
}

.intrBox .centBox .item {
	position: relative;
	padding-left: 28px;
}

.intrBox .centBox .item::before {
	position: absolute;
	content: "";
	top: 13px;
	left: 0;
	width: 10px;
	height: 10px;
	border: 1px dashed #fff;
	border-radius: 50%;
}

.intrBox .botBox {
	display: flex;
	flex-wrap: wrap;
}

.intrBox .botBox .img {
	position: relative;
	width: 41.14%;
	background-position: center center;
	background-size: cover;
}

.intrBox .botBox .textBox {
	position: absolute;
	top: 50%;
	right: -90px;
	transform: translate(0, -50%);
	width: 620px;
	height: 614px;
	border: 2px solid #ffffff;
	padding: 85px;
	z-index: 2;
	display: flex;
	align-items: center;
}

.intrBox .botBox .textBox .h1 {
	font-size: 30px;
	line-height: 30px;
	color: #ffffff;
	font-weight: bold;
}

.intrBox .botBox .textBox .line {
	display: inline-block;
	width: 50px;
	height: 3px;
	background-color: #ffffff;
	margin: 20px 0 55px;
}

.intrBox .botBox .textBox .h2 {
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
}

.intrBox .botBox .swiperBox {
	position: relative;
	width: 58.86%;
	background-image: url("../images/img33.jpg")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img33.jpg*/;
	background-position: center center;
	background-size: cover;
	padding: 75px 0 100px 225px;
}

.intrBox .botBox .swiper-container {
	height: 1450px;
}

.intrBox .botBox .swiper-slide {
	padding-left: 270px;
	padding-top: 43px;
	padding-right: 20px;
}

.intrBox .botBox .swiper-slide::before {
	position: absolute;
	content: "";
	top: 0;
	left: 15px;
	width: 1px;
	height: 100%;
	background-color: #375b74;
}

.intrBox .botBox .swiper-slide::after {
	position: absolute;
	content: "";
	top: 58px;
	left: 30px;
	width: 220px;
	height: 2px;
	background-color: #375b74;
}

.intrBox .botBox .spot {
	position: absolute;
	content: "";
	top: 43px;
	left: 0;
	width: 30px;
	height: 30px;
	background-color: #f5f5f5;
	border-radius: 50%;
}

.intrBox .botBox .spot::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 15px;
	height: 15px;
	background-color: #f05a39;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.intrBox .botBox .swiperBox .h1 {
	font-size: 26px;
	line-height: 30px;
	color: #ffffff;
	font-weight: bold;
}

.intrBox .botBox .swiperBox .line {
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #888888;
	margin: 10px 0;
}

.intrBox .botBox .swiperBox .h2 {
	font-size: 18px;
	line-height: 24px;
	color: #aaaaaa;
}

.intrBox .botBox .swiper-button-next {
	width: 34px;
	height: 34px;
	background-image: url("../images/icon18.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon18.png*/;
	background-position: center center;
	background-size: cover;
	top: auto;
	right: 0;
	left: 223px;
	bottom: 66px;
}
.dynaDetailsBox .gain-box{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;}
.dynaDetailsBox .gain-left {
	width: 65.821%;
}
.dynaDetailsBox .gain-left .gain-list {
	margin-bottom: max(30px, 0.61rem);
}
.dynaDetailsBox .gain-right {
	width: 29.493%;
}
.dynaDetailsBox .gain-right .recommend-area{
	background:#fff;
	padding:20px 20px;
}
.dynaDetailsBox .gain-right .right-pic {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	margin-bottom: max(0.43rem, 20px);
}
.dynaDetailsBox .gain-right .right-pic:hover img {
	transform: scale(1.1);
}
.dynaDetailsBox .gain-right .right-pic::after {
	content: "";
	display: block;
	padding-top: 63.796%;
}
.dynaDetailsBox .gain-right .right-pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.6s ease;
}
.dynaDetailsBox .gain-right .recommend-area .r-title {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: max(0.24rem, 20px);
	color: #333333;
	line-height: 1;
	display: flex;
	align-items: center;
	padding-bottom: max(0.21rem, 15px);
	border-bottom: 1px solid #2c68b6;
	margin-bottom: max(0.25rem, 15px);
}
.dynaDetailsBox .gain-right .recommend-area .r-title::before {
	content: "";
	display: block;
	width: 7px;
	height: 27px;
	background: #2c68b6;
	margin-right: 10px;
}
.dynaDetailsBox .gain-right .recommend-area .recommend-list .recommend-item {
	display: block;
	width: 100%;
	padding-bottom: max(0.24rem, 15px);
	border-bottom: 1px solid #ccc;
	margin-bottom: max(0.25rem, 15px);
}
.dynaDetailsBox .gain-right .recommend-area .recommend-list .recommend-item:last-of-type {
	margin-bottom: 0;
}
.dynaDetailsBox .gain-right .recommend-area .recommend-list .recommend-item .recommend-title {
	font-weight: 400;
	font-size: max(0.18rem, 16px);
	color: #000;
	line-height: 1.45;
	width: fit-content;
	max-width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	transition: all 0.45s ease;
}
.dynaDetailsBox .gain-right .recommend-area .recommend-list .recommend-item .recommend-title:hover {
	color: #2c68b6;
}
.dynaDetailsBox .gain-right .recommend-area .recommend-list .recommend-item .recommend-time {
	font-family: Source Han Sans CN, sans-serif;
	font-weight: 300;
	font-size: max(0.14rem, 12px);
	color: #999999;
	line-height: 1;
	white-space: nowrap;
	margin-top: 6px;
}
.dynaDetailsBox .gain-right .recommend-area .recommend-list .recommend-item .recommend-desc {
	font-family: Source Han Sans CN, sans-serif;
	font-weight: 300;
	font-size: max(0.16rem, 14px);
	color: #999999;
	line-height: 1.625;
	margin-top: max(10px, 0.14rem);
	width: fit-content;
	max-width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	transition: all 0.45s ease;
}
.dynaDetailsBox .gain-right .recommend-area .recommend-list .recommend-item .recommend-desc:hover {
	color: #2c68b6;
}
.aboutDataBox {
	padding: 60px 0 110px;
}

.aboutDataBox .title {
	text-align: center;
	margin-bottom: 50px;
}

.aboutDataBox .listBox {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.aboutDataBox .item {
	position: relative;
	width: 25%;
	height: 225px;
	text-align: center;
	padding: 48px 50px 0;
}

.aboutDataBox .item::before {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	width: 1px;
	height: 80%;
	background-color: #e0e0e0;
}

.aboutDataBox .item::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 80%;
	height: 1px;
	background-color: #e0e0e0;
}

.aboutDataBox .item:nth-child(4)::before {
	display: none;
}

.aboutDataBox .item:nth-child(n + 5)::after {
	display: none;
}

.aboutDataBox .numberBox {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 80px;
	line-height: 1;
	color: #2c68b6;
	font-weight: bold;
}

.aboutDataBox .name {
	font-size: 18px;
	line-height: 30px;
	color: #666666;
	margin-top: 10px;
}

.memorabiliaBox {
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 125px 0 155px;
}

.memorabiliaBox .topBox {
	position: relative;
	margin-bottom: 70px;
}

.memorabiliaBox .topBox .column {
	display: none;
}

.memorabiliaBox .topBox .column.active {
	display: block;
}

.memorabiliaBox .view .box {
	display: flex;
	flex-wrap: wrap;
}

.memorabiliaBox .view .img {
	position: relative;
	width: 530px;
}

.memorabiliaBox .view .img::before {
	position: absolute;
	content: "";
	right: -10px;
	top: 50px;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-left: 10px solid #e1e2e3;
	border-bottom: 5px solid transparent;
}

.memorabiliaBox .view {
	position: absolute;
	top: 0;
	left: 39%;
	right: 0;
	padding-top: 20px;
	padding-bottom: 7%;
	border-bottom: 1px solid #e9e9e9;
}

.memorabiliaBox .view .text {
	display: none;
}

.memorabiliaBox .view .text:first-child {
	display: block;
}

.memorabiliaBox .view .date {
	font-size: 28px;
	line-height: 30px;
	color: #2c68b6;
	font-weight: bold;
	margin-bottom: 10px;
}

.memorabiliaBox .view .h2 {
	font-size: 18px;
	line-height: 30px;
	color: #222222;
}

.memorabiliaBox .preview {
	width: 100%;
}

.memorabiliaBox .preview .arrow-left,
.memorabiliaBox .preview .arrow-right {
	position: absolute;
	width: 38px;
	height: 38px;
	background-position: center center;
	background-size: cover;
}

.memorabiliaBox .preview .arrow-left {
	top: 35%;
	left: 39%;
	background-image: url("../images/icon19.jpg")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon19.jpg*/;
}

.memorabiliaBox .preview .arrow-left:hover {
	background-image: url("../images/icon19-1.jpg")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon19-1.jpg*/;
}

.memorabiliaBox .preview .arrow-right {
	top: 35%;
	left: calc(39% + 38px);
	background-image: url("../images/icon20.jpg")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon20.jpg*/;
}

.memorabiliaBox .preview .arrow-right:hover {
	background-image: url("../images/icon20-1.jpg")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon20-1.jpg*/;
}

.memorabiliaBox .preview .swiper-container {
	padding-top: 210px;
}

.memorabiliaBox .preview .swiper-wrapper {
	display: flex;
	align-items: flex-end;
}

.memorabiliaBox .preview .swiper-slide {
	will-change: transform;
	transform-origin: bottom;
}

.memorabiliaBox .preview .swiper-slide-active {
	margin: 0 calc(9.3% + 25px) 0 9.3% !important;
	z-index: 2;
	transform: scale3d(2, 2, 2);
}

.memorabiliaBox .preview .swiper-slide-active .wrapText {
	display: none;
}

.memorabiliaBox .preview .swiper-slide-active .textBox {
	background: none;
}

.memorabiliaBox .preview .textBox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: flex-end;
	padding: 13px 17px;
	font-size: 0;
}

.memorabiliaBox .preview .date {
	font-size: 18px;
	line-height: 30px;
	color: #ffffff;
}

.memorabiliaBox .preview .line {
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: 1px;
	background-color: #e9e9e9;
	margin: 8px 0 12px;
}

.memorabiliaBox .preview .text {
	font-size: 14px;
	line-height: 20px;
	color: #cccccc;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.memorabiliaBox .botBox .swiper-wrapper {
	display: flex;
	align-items: center;
}

.memorabiliaBox .botBox .swiper-slide {
	position: relative;
}

.memorabiliaBox .botBox .swiper-slide::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 100%;
	height: 2px;
	background-color: #e9e9e9;
	z-index: -1;
}

.memorabiliaBox .botBox .line {
	display: inline-block;
	padding: 10px;
	border: 1px dashed #d2d2d2;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
}

.memorabiliaBox .botBox .year {
	display: block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	font-size: 14px;
	color: #af9d9d;
	text-align: center;
	border-radius: 50%;
	background-color: #f0f0f0;
}

.memorabiliaBox .botBox .active .line {
	padding: 18px;
	border: 1px dashed #265aa5;
}

.memorabiliaBox .botBox .active .year {
	width: 90px;
	height: 90px;
	line-height: 90px;
	font-size: 24px;
	color: #ffffff;
	font-weight: bold;
	background-color: #2c68b6;
}

.teamBox {
	padding: 90px 0;
}

.teamBox .listBox {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.teamBox .column {
	position: relative;
	width: 30.92%;
	height: 198px;
	background-image: url("../images/img39.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img39.png*/;
	background-position: center center;
	background-size: cover;
	padding: 45px 20px 45px 45px;
	margin-right: 3.62%;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	border-radius: 20px;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;
	cursor: pointer;
}

.teamBox .column:nth-child(3n) {
	margin-right: 0;
}

.teamBox .icon {
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	border-radius: 50%;
	background-color: #d0b499;
	font-size: 0;
}

.teamBox .icon2 {
	display: none;
}

.teamBox .contBox {
	display: none;
	font-size: 18px;
	line-height: 30px;
	color: #ffffff;
	word-break: break-all;
}

.teamBox .color {
	color: #b2adad;
}

.teamBox .rBox {
	width: calc(100% - 90px);
	padding-left: 30px;
}

.teamBox .nameBox {
	margin-bottom: 8px;
}

.teamBox .name {
	font-size: 24px;
	line-height: 30px;
	color: #000000;
}

.teamBox .post {
	font-size: 18px;
	line-height: 30px;
	color: #888888;
}

.teamBox .column:hover {
	background-image: url("../images/img40.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img40.png*/;
}

.teamBox .column:hover .icon {
	background-color: #fff;
}

.teamBox .column:hover .icon1 {
	display: none;
}

.teamBox .column:hover .icon2 {
	display: inline-block;
}

.teamBox .column:hover .post {
	color: #eee;
}

.teamBox .column:hover .name {
	color: #fff;
	margin-right: 10px;
}

.teamBox .column:hover .contBox {
	display: block;
}

.contactBox {
	padding: 85px 0 0;
}

.contactBox .topBox {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #e8e8e8;
}

.contactBox .formBox {
	width: 50%;
	border-right: 1px solid #e8e8e8;
	padding-bottom: 65px;
}

.contactBox .form {
	padding: 0 68px 0 30px;
}

.contactBox .topBox .h1 {
	font-size: 20px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 55px;
}

.contactBox .inputBox {
	display: flex;
	padding: 13px 0;
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 35px;
}

.contactBox .topBox .name {
	width: 60px;
	font-size: 18px;
	line-height: 30px;
	color: #000000;
	margin-right: 80px;
}

.contactBox .input {
	background: none;
}

.contactBox .select {
	width: calc(100% - 140px);
	background: none;
	font-size: 18px;
	line-height: 30px;
	color: #a99f9f;
}

.contactBox .btn {
	width: 152px;
	height: 55px;
	font-size: 18px;
	line-height: 55px;
	color: #fffefe;
	text-align: center;
	background-color: #2c68b6;
	margin-top: 10px;
}

.contactBox .topBox .listBox {
	width: 50%;
	padding: 0 65px 0 55px;
}

.contactBox .topBox .item {
	display: flex;
	border-bottom: 1px solid #e8e8e8;
	padding: 0 40px 40px;
	margin-bottom: 25px;
}

.contactBox .item:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}

.contactBox .topBox .icon {
	width: 80px;
	height: 80px;
	line-height: 78px;
	text-align: center;
	border: 1px dashed #d4d4d4;
	border-radius: 50%;
}

.contactBox .topBox .textBox {
	width: calc(100% - 80px);
	padding-left: 25px;
}

.contactBox .h2 {
	font-size: 18px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 10px;
}

.contactBox .text {
	font-size: 16px;
	line-height: 30px;
	color: #333333;
}

.contactBox .color {
	color: #9f8c8c;
}

.contactBox .botBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 35px 0 65px;
}

.contactBox .botBox .h1 {
	font-size: 20px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 35px;
}

.contactBox .botBox .lBox {
	width: calc(100% - 300px);
}

.contactBox .addrBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contactBox .addrBox .column {
	width: 50%;
	display: flex;
	padding-right: 10%;
}

.contactBox .addrBox .h2 {
	font-size: 18px;
	line-height: 1;
	color: #3f6fb5;
	font-weight: bold;
	margin-bottom: 10px;
}

.contactBox .addrBox .text {
	font-size: 16px;
	line-height: 28px;
	color: #a2a2a2;
}

.contactBox .codeBox {
	width: 300px;
	display: flex;
	justify-content: space-between;
	text-align: center;
}

.contactBox .codeBox .name {
	display: block;
	font-size: 16px;
	color: #5f6163;
	line-height: 1;
	margin-top: 20px;
}

.contactBox .addrBox .icon {
	font-size: 0;
	width: 56px;
	height: 56px;
	line-height: 54px;
	text-align: center;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
}

.contactBox .addrBox .textBox {
	width: calc(100% - 56px);
	padding-left: 24px;
}

/* 媒体查询 */
/* about */
@media only screen and (max-width: 1500px) {
	.intrBox .botBox .textBox {
		right: -50px;
		width: 500px;
		height: 500px;
	}

	.intrBox .botBox .swiperBox {
		padding: 75px 0 100px 150px;
	}

	.intrBox .botBox .swiper-container {
		height: 1600px;
	}

	.intrBox .botBox .spot {
		top: 30px;
	}

	.intrBox .botBox .swiper-slide::after {
		top: 45px;
	}

	.intrBox .botBox .swiper-slide {
		height: 110px;
		padding-top: 30px;
		padding-left: 200px;
	}

	.intrBox .botBox .swiper-slide::after {
		width: 160px;
	}

	.intrBox .botBox .swiper-button-next {
		left: 148px;
	}

	.intrBox .centBox .column::before {
		width: 70%;
	}

	.teamBox .column {
		padding: 40px 20px;
	}
}

@media only screen and (max-width: 1440px) {
	.intrBox .centBox .column::before {
		width: 60%;
	}

	.teamBox .column {
		padding: 40px 20px;
	}

	.teamBox .rBox {
		width: calc(100% - 70px);
		padding-left: 20px;
	}

	.teamBox .icon {
		width: 70px;
		height: 70px;
		line-height: 70px;
	}

	.teamBox .icon img {
		width: 30px;
	}
}

@media only screen and (max-width: 1366px) {
	.intrBox .centBox .column::before {
		width: 50%;
	}

	.teamBox .column {
		height: 170px;
	}

	.teamBox .name {
		font-size: 20px;
	}

	.teamBox .post {
		font-size: 16px;
	}

	.teamBox .contBox {
		font-size: 16px;
		line-height: 24px;
	}

	.memorabiliaBox .preview .swiper-container {
		padding-top: 180px;
	}

	.memorabiliaBox .view {
		padding-bottom: 6%;
	}

	.memorabiliaBox .view .date {
		font-size: 20px;
	}

	.memorabiliaBox .view .h2 {
		font-size: 14px;
		line-height: 24px;
	}

	.memorabiliaBox .preview .arrow-left,
	.memorabiliaBox .preview .arrow-right {
		width: 30px;
		height: 30px;
	}

	.memorabiliaBox .preview .arrow-right {
		left: calc(39% + 30px);
	}
}

@media only screen and (max-width: 1280px) {
	.navBox a {
		line-height: 42px;
		margin: 0 30px;
	}

	.aboutBox .title .h1 {
		font-size: 20px;
	}

	.aboutBox .title .line {
		width: 40px;
		height: 2px;
	}

	.intrBox .topBox .text {
		font-size: 14px;
		line-height: 24px;
	}

	.intrBox .btnPlay {
		width: 60px;
	}

	.intrBox .centBox .icon {
		padding: 15px;
	}

	.intrBox .centBox .line {
		width: 90px;
		height: 90px;
		line-height: 88px;
	}

	.intrBox .centBox .name {
		font-size: 18px;
	}

	.intrBox .centBox .text {
		font-size: 14px;
		line-height: 30px;
		height: 250px;
	}

	.intrBox .centBox .item::before {
		top: 10px;
	}

	.intrBox .centBox .column.active .name {
		margin: 15px 0 30px;
	}

	.intrBox .botBox .textBox {
		width: 400px;
		height: 400px;
	}

	.intrBox .botBox .textBox .h1 {
		font-size: 20px;
	}

	.intrBox .botBox .textBox .line {
		width: 40px;
		height: 2px;
		margin: 10px 0 30px;
	}

	.intrBox .botBox .textBox .h2 {
		font-size: 16px;
	}

	.intrBox .botBox .spot {
		top: 35px;
		width: 22px;
		height: 22px;
	}

	.intrBox .botBox .spot::before {
		width: 10px;
		height: 10px;
	}

	.intrBox .botBox .swiper-slide::before {
		left: 11px;
	}

	.intrBox .botBox .swiperBox .h1 {
		font-size: 18px;
	}

	.intrBox .botBox .swiperBox .h2 {
		font-size: 16px;
	}

	.intrBox .botBox .swiperBox .line {
		margin: 5px 0;
	}

	.intrBox .botBox .swiper-button-next {
		left: 144px;
	}

	.intrBox .centBox .column::before {
		top: 120px;
		width: 60%;
	}

	.aboutDataBox .numberBox {
		font-size: 60px;
	}

	.aboutDataBox .name {
		font-size: 16px;
	}

	.aboutDataBox .item {
		height: 200px;
	}

	.contactBox .topBox .listBox {
		padding: 0 40px 0 30px;
	}

	.contactBox .form {
		padding: 0 40px 0 20px;
	}
}

@media only screen and (max-width: 1199px) {
	.navBox a.active::before {
		display: none;
	}

	.navBox .wrap {
		overflow-x: auto;
		white-space: nowrap;
	}

	.navBox .wrap::-webkit-scrollbar {
		display: none;
	}

	.intrBox .topBox {
		padding-bottom: 70px;
	}

	.intrBox .topBox .textBox {
		width: 100%;
	}

	.intrBox .topBox .text {
		padding-bottom: 50px;
	}

	.intrBox .videoBox {
		width: 100%;
	}

	.intrBox .centBox {
		padding: 100px 0;
	}

	.intrBox .centBox .column::before {
		width: 50%;
	}

	.intrBox .centBox .text {
		opacity: 1;
	}

	.intrBox .centBox .name {
		margin: 15px 0 30px;
	}

	.intrBox .centBox .column {
		width: 32%;
	}

	.intrBox .centBox .column .box {
		background-image: url("../images/img31.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img31.png*/;
		background-size: cover;
	}

	.intrBox .centBox .column .icon1 {
		display: none;
	}

	.intrBox .centBox .column .icon2 {
		display: inline-block;
	}

	.intrBox .centBox .column .line {
		background-color: #fff;
	}

	.intrBox .centBox .column::before {
		display: none;
	}

	.memorabiliaBox .preview {
		position: relative;
	}

	.teamBox .column {
		width: 47%;
		height: 190px;
		margin-right: 6%;
	}

	.teamBox .column:nth-child(3n) {
		margin-right: 6%;
	}

	.teamBox .column:nth-child(2n) {
		margin-right: 0;
	}

	.contactBox .addrBox .column {
		padding-right: 5%;
	}

	.contactBox .topBox .item {
		padding: 0 20px 20px;
	}

	.memorabiliaBox .preview .swiper-container {
		padding-top: 150px;
	}

	.memorabiliaBox .view {
		padding-bottom: 5%;
	}

	.memorabiliaBox .preview .arrow-left,
	.memorabiliaBox .preview .arrow-right {
		top: 38.5%;
	}
}

@media only screen and (max-width: 1024px) {
	.intrBox .centBox .column {
		max-width: 100%;
		width: 100%;
		margin-bottom: 20px;
	}

	.intrBox .centBox .box {
		padding: 60px 35px;
	}

	.intrBox .centBox .text {
		height: auto;
	}

	.intrBox .botBox .img {
		width: 100%;
	}

	.intrBox .botBox .textBox {
		position: relative;
		right: auto;
		top: auto;
		transform: translate(0, 0);
		width: auto;
		height: auto;
		border: none;
	}

	.intrBox .botBox .swiperBox {
		width: 100%;
	}

	.aboutDataBox .item {
		padding: 45px 30px 0;
	}

	.contactBox .formBox {
		width: 100%;
	}

	.contactBox .form {
		padding: 0;
	}

	.contactBox .topBox .listBox {
		width: 100%;
		padding: 0;
	}

	.contactBox .botBox {
		justify-content: center;
	}

	.contactBox .botBox .lBox {
		width: 100%;
		margin-bottom: 30px;
	}

	.contactBox .addrBox .column {
		padding: 0 3%;
	}
}

@media only screen and (max-width: 991px) {
	.memorabiliaBox .view .img {
		width: 400px;
	}

	.memorabiliaBox .view .text {
		width: calc(100% - 400px);
		padding-left: 30px;
	}

	.memorabiliaBox .preview .swiper-slide-active {
		margin: 0 25px 0 0 !important;
		transform: scale3d(1, 1, 1);
	}

	.memorabiliaBox .preview .swiper-slide-active .textBox {
		display: flex;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.memorabiliaBox .preview .swiper-slide-active .wrapText {
		display: block;
	}

	.memorabiliaBox .view {
		display: none;
	}

	.memorabiliaBox .preview .swiper-container {
		padding-top: 0;
	}

	.memorabiliaBox .preview .arrow-left,
	.memorabiliaBox .preview .arrow-right {
		top: 50%;
		margin-top: -15px;
		left: auto;
	}

	.memorabiliaBox .preview .arrow-left {
		left: 0;
	}

	.memorabiliaBox .preview .arrow-right {
		right: 0;
	}
}

@media only screen and (max-width: 768px) {
	.navBox a {
		margin: 0 20px;
	}

	.intrBox .botBox .swiperBox {
		padding: 75px 80px;
	}

	.intrBox .botBox .swiper-slide {
		padding-top: 20px;
		padding-left: 150px;
	}

	.intrBox .botBox .spot {
		top: 25px;
	}

	.intrBox .botBox .swiper-slide::after {
		top: 35px;
		width: 110px;
	}

	.intrBox .botBox .swiper-button-next {
		left: 74px;
		bottom: 43px;
	}

	.aboutDataBox .item {
		width: 33.33%;
	}

	.aboutDataBox .item:nth-child(3n):before {
		display: none;
	}

	.aboutDataBox .item:nth-child(4):before {
		display: block;
	}

	.aboutDataBox .item:nth-child(n + 5)::after {
		display: block;
	}

	.aboutDataBox .item:nth-child(7)::after {
		display: none;
	}

	.aboutDataBox .item:nth-child(7):before {
		display: none;
	}

	.memorabiliaBox .view .img::before {
		display: none;
	}

	.memorabiliaBox .view .img {
		width: 100%;
	}

	.memorabiliaBox .view .text {
		width: 100%;
		padding-left: 0;
	}

	.memorabiliaBox .botBox .active .year {
		width: 70px;
		height: 70px;
		line-height: 68px;
		font-size: 20px;
	}

	.memorabiliaBox {
		padding: 100px 0;
	}

	.teamBox .column {
		width: 100%;
		margin-right: 0 !important;
	}
}

@media only screen and (max-width: 580px) {
	.navBox {
		text-align: left;
	}

	.navBox a {
		line-height: 40px;
		padding: 0 15px;
		margin: 0 15px;
		border-radius: 20px;
	}

	.navBox a:first-child {
		margin-left: 0;
	}

	.navBox a:last-child {
		margin-right: 0;
	}

	.aboutBox .navBox {
		padding: 20px 0 0;
	}

	.intrBox {
		padding: 50px 0 0;
	}

	.intrBox .topBox .text {
		padding-bottom: 30px;
	}

	.intrBox .topBox {
		padding-bottom: 50px;
	}

	.intrBox .centBox {
		padding: 50px 0 20px;
	}

	.intrBox .botBox .textBox .line {
		margin: 10px 0 20px;
	}

	.intrBox .botBox .textBox {
		padding: 50px 5%;
	}

	.intrBox .botBox .swiperBox {
		padding: 50px 5% 70px;
	}

	.intrBox .botBox .swiper-button-next {
		bottom: 38px;
		left: 4%;
	}

	.intrBox .botBox .swiper-container {
		height: 900px;
	}

	.intrBox .botBox .swiperBox .h1 {
		font-size: 16px;
		line-height: 24px;
	}

	.intrBox .botBox .swiperBox .h2 {
		font-size: 14px;
        overflow: hidden;
        -webkit-line-clamp: 5;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
	}

	.intrBox .botBox .swiper-slide::after {
		top: 32px;
	}

	.intrBox .botBox .spot {
		top: 22px;
	}

	.aboutDataBox {
		padding: 50px 0 10px;
	}

	.aboutDataBox .title {
		margin-bottom: 30px;
	}

	.aboutDataBox .numberBox {
		font-size: 30px;
	}

	.aboutDataBox .name {
		font-size: 14px;
		line-height: 24px;
	}

	.aboutDataBox .item {
		height: 150px;
		padding: 30px 20px 0;
	}

	.memorabiliaBox .preview .swiper-slide {
		width: 49%;
	}

	.memorabiliaBox .botBox .active .line {
		padding: 10px;
	}

	.memorabiliaBox {
		padding: 50px 0;
	}

	.memorabiliaBox .view .date {
		font-size: 20px;
	}

	.memorabiliaBox .view .h2 {
		font-size: 16px;
	}

	.teamBox {
		padding: 50px 0 30px;
	}

	.teamBox .column {
		margin-bottom: 30px;
	}

	.contactBox {
		padding: 50px 0 0;
	}

	.contactBox .topBox .h1 {
		margin-bottom: 20px;
	}

	.contactBox .inputBox {
		padding: 10px 0;
		margin-bottom: 20px;
	}

	.contactBox .topBox .name {
		font-size: 16px;
		margin-right: 10px;
	}

	.contactBox .btn {
		width: 120px;
		height: 42px;
		line-height: 42px;
		font-size: 16px;
	}

	.contactBox .text {
		font-size: 14px;
		line-height: 24px;
	}

	.contactBox .formBox {
		padding-bottom: 50px;
	}

	.contactBox .botBox {
		padding: 35px 0 50px;
	}

	.contactBox .addrBox .column {
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}

	.contactBox .addrBox .text {
		font-size: 14px;
		line-height: 24px;
	}

	.contactBox .codeBox {
		max-width: 280px;
		width: 100%;
	}

	.contactBox .botBox .h1 {
		margin-bottom: 30px;
	}

	.contactBox .select {
		font-size: 16px;
	}
}

@media only screen and (max-width: 480px) {
	.position a {
		/*line-height: 40px;*/
	}
	.banner img{
		height:200px;
		object-fit: cover;
	}
	.banner .texts{
		display: none;
	}
	.navBox a {
		font-size: 14px;
		line-height: 36px;
		border-radius: 18px;
		margin: 0 5px;
	}
	.dynaDetailsBox .gain-box {
		display: flex;
		flex-direction: column;
	}
	.dynaDetailsBox .gain-right .recommend-area{
		background:#fff;
		padding:0px!important;
	}
	.gain-left,
	.gain-right{
		width:100%!important;
	}
	.intrBox {
		padding: 40px 0 0;
	}

	.aboutBox .title .line {
		margin-bottom: 20px;
	}

	.intrBox .btnPlay {
		width: 40px;
	}

	.intrBox .centBox .box {
		padding: 30px 15px;
	}

	.intrBox .centBox .line {
		width: 60px;
		height: 60px;
		line-height: 58px;
	}

	.intrBox .centBox .column .name {
		margin: 10px 0 20px !important;
	}

	.intrBox .botBox .swiper-slide::after {
		width: 50px;
	}

	.intrBox .botBox .swiper-slide {
		padding-left: 90px;
	}

	.intrBox .botBox .swiper-button-next {
		width: 30px;
		height: 30px;
	}

	.aboutDataBox .title .line {
		margin-bottom: 0;
	}

	.aboutDataBox .item {
		height: 130px;
		padding: 20px 10px 0;
	}

	.memorabiliaBox {
		padding: 40px 0;
	}

	.memorabiliaBox .view .date {
		font-size: 16px;
		margin-bottom: 0;
	}

	.memorabiliaBox .view .h2 {
		font-size: 14px;
		line-height: 24px;
	}

	.memorabiliaBox .view .text {
		padding-top: 10px;
	}

	.memorabiliaBox .topBox {
		margin-bottom: 30px;
	}

	.memorabiliaBox .botBox .year {
		width: 40px;
		height: 40px;
		line-height: 38px;
		font-size: 12px;
	}

	.memorabiliaBox .botBox .line {
		padding: 5px;
	}

	.memorabiliaBox .botBox .active .year {
		width: 50px;
		height: 50px;
		line-height: 48px;
		font-size: 16px;
	}

	.memorabiliaBox .botBox .active .line {
		padding: 5px;
	}

	.memorabiliaBox .preview .date {
		font-size: 16px;
	}

	.memorabiliaBox .preview .line {
		margin: 5px 0 10px;
	}

	.teamBox {
		padding: 40px 0 20px;
	}

	.teamBox .column {
		height: 170px;
		margin-bottom: 20px;
	}

	.teamBox .name {
		font-size: 18px;
		line-height: 24px;
	}

	.teamBox .post {
		font-size: 14px;
		line-height: 20px;
	}

	.teamBox .contBox {
		font-size: 14px;
		line-height: 20px;
	}

	.contactBox {
		padding: 30px 0 0;
	}

	.contactBox .inputBox {
		margin-bottom: 10px;
	}

	.contactBox .formBox {
		padding-bottom: 40px;
	}

	.contactBox .topBox .item {
		padding: 0 0 20px;
	}

	.contactBox .topBox .icon {
		width: 60px;
		height: 60px;
		line-height: 58px;
	}

	.contactBox .topBox .textBox {
		width: calc(100% - 60px);
	}

	.contactBox .botBox {
		padding: 40px 0;
	}

	.contactBox .h2 {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 5px;
	}

	.contactBox .botBox .h1 {
		margin-bottom: 20px;
	}

	.contactBox .topBox .h1 {
		margin-bottom: 10px;
	}

	.contactBox .addrBox .h2 {
		font-size: 16px;
	}

	.contactBox .addrBox .textBox {
		padding-left: 15px;
	}

	.contactBox .botBox .lBox {
		margin-bottom: 10px;
	}

	.contactBox .codeBox .name {
		font-size: 14px;
		margin-top: 10px;
	}
}

/* 创业计划 */
.planBox .navBox {
	padding: 45px 0 10px;
}

.setSailBox {
	padding: 60px 0 50px;
}

.planBox .title {
	font-size: 0;
	text-align: center;
}

.planBox .title .h1 {
	font-size: 32px;
	line-height: 1;
	color: #000000;
	font-weight: bold;
	margin-bottom: 14px;
}

.planBox .title .line {
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #2c68b6;
}

.setSailBox .wrap {
	padding: 0 100px;
}

.setSailBox .title {
	margin-bottom: 35px;
}
.setSailBox .text,
.setSailBox .text p,
.setSailBox .text span {
	font-size: 16px!important;
	line-height: 30px!important;
	color: #666666;
}

.setSailBox .box {
	padding: 70px 70px 105px 100px;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.setSailBox .h2 {
	font-size: 24px;
	line-height: 30px;
	color: #2c68b6;
	text-align: center;
	font-weight: bold;
	margin-bottom: 65px;
}

.setSailBox .column {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.setSailBox .column::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 24px;
	width: 1px;
	height: 200%;
	transform: translate(-50%, 0);
	background-color: #aaaaaa;
}

.setSailBox .column:last-child::before {
	display: none;
}

.setSailBox .box .line {
	padding: 5px;
	border: 1px dashed #2c68b6;
	border-radius: 50%;
	background-color: #fff;
	z-index: 0;
}

.setSailBox .number {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	font-size: 16px;
	color: #f8f8f8;
	text-align: center;
	font-style: normal;
	background-color: #2c68b6;
}

.setSailBox .text2 {
	width: calc(100% - 48px);
	padding-left: 20px;
	font-size: 18px;
	line-height: 48px;
	color: #333333;
}

.setSailBox .btnBox {
	text-align: center;
	margin-top: 30px;
}

.setSailBox .btn {
	display: inline-block;
	vertical-align: top;
	line-height: 55px;
	font-size: 18px;
	color: #fff;
	background-color: #2c68b6;
	padding: 0 27px 0 63px;
	border-radius: 27px;
	background-image: url("../images/icon27.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon27.png*/;
	background-repeat: no-repeat;
	background-position: 28px center;
}

/* 媒体查询 */
/* 创业计划 */
@media only screen and (max-width: 1500px) {
	.setSailBox .wrap {
		padding: 0;
	}
}

@media only screen and (max-width: 1280px) {
	.setSailBox .box {
		padding: 70px;
	}

	.planBox .title .h1 {
		font-size: 26px;
	}

	.setSailBox .text {
		font-size: 14px;
	}

	.setSailBox .h2 {
		font-size: 20px;
		margin-bottom: 50px;
	}

	.setSailBox .text2 {
		font-size: 16px;
		line-height: 30px;
	}

	.setSailBox .btn {
		font-size: 16px;
		line-height: 50px;
	}
}

@media only screen and (max-width: 768px) {
	.setSailBox .box {
		padding: 50px;
	}

	.setSailBox .h2 {
		margin-bottom: 30px;
	}

	.setSailBox .text {
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 580px) {
	.setSailBox {
		padding: 50px 0;
	}

	.planBox .title .h1 {
		font-size: 20px;
	}

	.setSailBox .title {
		margin-bottom: 20px;
	}

	.setSailBox .text {
		margin-bottom: 30px;
	}

	.setSailBox .box {
		padding: 30px;
	}

	.setSailBox .h2 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.setSailBox .column {
		margin-bottom: 30px;
	}

	.setSailBox .text2 {
		font-size: 14px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 480px) {
	.planBox .navBox {
		padding: 20px 0 0;
	}

	.setSailBox {
		padding: 30px 0 40px;
	}

	.setSailBox .box {
		padding: 20px 10px 30px;
	}

	.setSailBox .column {
		margin-bottom: 20px;
	}

	.setSailBox .btnBox {
		margin-top: 20px;
	}

	.setSailBox .btn {
		font-size: 14px;
		line-height: 40px;
		padding: 0 15px 0 40px;
		background-position: 15px center;
		background-size: 20px auto;
	}

	.setSailBox .text2 {
		width: calc(100% - 42px);
		padding-left: 10px;
	}

	.setSailBox .number {
		font-size: 14px;
		width: 30px;
		height: 30px;
		line-height: 30px;
	}

	.setSailBox .column::before {
		left: 21px;
	}
}

/* 创业大赛 */
.contestBox .navBox {
	padding: 40px 0 10px;
}

.contestBox .title {
	font-size: 0;
}

.contestBox .title .h1 {
	font-size: 24px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 18px;
}

.contestBox .title .line {
	display: inline-block;
	vertical-align: top;
	width: 50px;
	height: 3px;
	background-color: #2c68b6;
}

.aboutContBox {
	padding: 85px 0 205px;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
}

.aboutContBox .title {
	margin-bottom: 60px;
}

.aboutContBox .box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.aboutContBox .videoBox {
	position: relative;
	width: 593px;
}

.aboutContBox .videoBox::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.aboutContBox .btnPlay {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.aboutContBox .text {
	width: calc(100% - 593px);
	font-size: 16px;
	line-height: 30px;
	color: #777e86;
	padding-left: 60px;
	text-align: justify;
}

.contDataBox {
	padding: 75px 0 125px;
	background-position: center center;
	background-size: cover;
}

.contDataBox .title {
	margin-bottom: 155px;
}

.contDataBox .title .h1 {
	color: #decda3;
}

.contDataBox .title .line {
	background-color: #decda3;
}

.contDataBox .listBox {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.contDataBox .item {
	min-width: 20%;
	text-align: center;
	margin-bottom: 120px;
}

.contDataBox .top {
	font-size: 50px;
	line-height: 1;
	color: #ffffff;
	font-weight: bold;
}

.contDataBox .name {
	display: block;
	font-size: 18px;
	line-height: 30px;
	color: #9e9e9e;
	margin-top: 25px;
}

.contPartBox {
	padding: 75px 0 95px;
	background-color: #eff4fc;
}

.contPartBox .title {
	text-align: center;
	margin-bottom: 30px;
}

.contPartBox .text {
	font-size: 16px;
	line-height: 30px;
	color: #888888;
	text-align: center;
}

.contPartBox .listBox {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	margin-top: 100px;
}

.contPartBox .item {
	width: 380px;
	padding: 50px 55px;
	background-image: url("../images/img39.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img39.png*/;
	background-position: center center;
	border-radius: 20px;
	margin: 0 10px;
	text-align: center;
}



.contPartBox .icon {
	display: inline-block;
	width: 140px;
	height: 140px;
	font-size: 0;
	line-height: 140px;
	text-align: center;
	border-radius: 50%;
	background-color: #2c68b6;
}
.contPartBox .item:hover .icon{
	background: rgba(240, 90, 57);
}
.contPartBox .name {
	font-size: 20px;
	line-height: 30px;
	color: #15477b;
	font-weight: bold;
	margin: 23px 0 12px;
}

.contPartBox .line {
	display: inline-block;
	width: 38px;
	height: 2px;
	background-color: #2c68b6;
}

.contPartBox .text2 {
	font-size: 16px;
	line-height: 36px;
	color: #000;
}

.contPartBox .tips {
	font-size: 16px;
	line-height: 30px;
	color: #000000;
	margin-top: 55px;
	text-align: center;
}

.contPartBox .color {
	color: #888888;
}

.contPartBox .btnBox {
	text-align: center;
	margin-top: 60px;
}

.contPartBox .btn {
	display: inline-block;
	font-size: 18px;
	color: #ffffff;
	line-height: 55px;
	padding: 0 20px 0 63px;
	background-color: #2c68b6;
	border-radius: 27px;
	background-image: url("../images/icon27.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon27.png*/;
	background-repeat: no-repeat;
	background-position: 30px center;
}

.fieldBox {
	padding: 80px 0 200px;
	background-position: center center;
	background-size: cover;
}

.fieldBox .title {
	text-align: center;
	margin-bottom: 80px;
}

.fieldBox .title .h1 {
	color: #fff;
}

.fieldBox .title .line {
	background-color: #fff;
}

.fieldBox .listBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.fieldBox .item {
	text-align: center;
	cursor: pointer;
}

.fieldBox .icon {
	display: inline-block;
	width: 140px;
	height: 140px;
	line-height: 138px;
	text-align: center;
	border: 1px dashed #bfbfbf;
	border-radius: 50%;
	transition: all .5s ease;
}

.fieldBox .icon2 {
	display: none;
}

.fieldBox .item:hover .icon {
	background-color: #fff;
}

.fieldBox .item:hover .icon1 {
	display: none;
}

.fieldBox .item:hover .icon2 {
	display: inline-block;
}

.fieldBox .name {
	font-size: 20px;
	line-height: 30px;
	color: #eeeeee;
	margin-top: 23px;
}

.featureBox {
	padding: 85px 0 50px;
}

.featureBox .title {
	text-align: center;
	margin-bottom: 60px;
}

.featureBox .listBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.featureBox .item {
	width: 47.5%;
	height: 205px;
	background-image: url("../images/img39.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img39.png*/;
	background-position: center center;
	background-size: cover;
	padding: 30px 35px;
	margin-bottom: 40px;
	border-radius: 10px;
	transition: all 0.5s ease;
	display: flex;
	align-items: center;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.featureBox .item .line {
	padding: 12px;
	border: 1px dashed #a6a6a6;
	border-radius: 50%;
}

.featureBox .icon {
	display: inline-block;
	font-size: 0;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 50%;
	background-color: #2c68b6;
}

.featureBox .icon2 {
	display: none;
}

.featureBox .textBox {
	width: calc(100% - 126px);
	padding-left: 35px;
}

.featureBox .name {
	font-size: 24px;
	line-height: 30px;
	color: #2c68b6;
	font-weight: bold;
	margin-bottom: 10px;
}

.featureBox .text {
	font-size: 16px;
	line-height: 30px;
	color: #666666;
}

.featureBox .item:hover {
	background-image: url("../images/img40.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img40.png*/;
}

.featureBox .item:hover .icon {
	background-color: #ffffff;
}

.featureBox .item:hover .icon1 {
	display: none;
}

.featureBox .item:hover .icon2 {
	display: inline-block;
}

.featureBox .item:hover .name {
	color: #fff;
}

.featureBox .item:hover .text {
	color: #fff;
}

.faqBox {
	padding: 85px 0 95px;
}

.faqBox .title {
	text-align: center;
	margin-bottom: 45px;
}

.faqBox .form {
	display: flex;
	max-width: 568px;
	width: 100%;
	height: 46px;
	background-color: #fff;
	border-radius: 23px;
	margin: 0 auto;
	margin-bottom: 50px;
	padding: 0 20px;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

.faqBox .form .btn {
	font-size: 0;
	background: none;
	cursor: pointer;
}

.faqBox .inputText {
	width: calc(100% - 22px);
	font-size: 14px;
	color: #c8c9c9;
}

.faqBox .inputText::-webkit-input-placeholder {
	color: #c8c9c9;
}

.faqBox .listBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.faqBox .column {
	width: 47%;
	padding: 25px 30px;
	margin-bottom: 30px;
	background-color: #fff;
}

.faqBox .h2 {
	font-size: 16px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
	padding-left: 43px;
	background-image: url("../images/icon45.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon45.png*/;
	background-repeat: no-repeat;
	background-position: left 1px;
	margin-bottom: 15px;
}

.faqBox .text {
	font-size: 16px;
	line-height: 24px;
	height: 96px;
	color: #888888;
	padding-left: 43px;
	background-image: url("../images/icon46.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon46.png*/;
	background-repeat: no-repeat;
	background-position: left 1px;
}

.navPage {
	display: flex;
	align-items: center;
	justify-content: center;
}

.navPage a {
	width: 35px;
	height: 35px;
	line-height: 33px;
	font-size: 18px;
	color: #999999;
	text-align: center;
	margin: 0 7px;
	transition: all 0.5s ease;
}
.navPage li {
    width: 35px;
    height: 35px;
    line-height: 33px;
    font-size: 18px;
    color: #999999;
    text-align: center;
    border: 1px solid #bfbfbf;
    margin: 0 7px;
    transition: all 0.5s ease;
    float:left;
}
.navPage li.active {
	color: #fff;
	background-color: #2c68b6;
	border: 1px solid #2c68b6;
}

.navPage li:hover{
	color: #fff;
	background-color: #2c68b6;
	border: 1px solid #2c68b6;
}
.navPage li:hover a{
    color: #fff;
}
.faqBox .navPage {
	margin-top: 55px;
}

/* 媒体查询 */
/* 创业大赛 */
@media only screen and (max-width: 1280px) {
	.aboutContBox .videoBox {
		width: 400px;
	}

	.aboutContBox .text {
		width: calc(100% - 400px);
		padding-left: 40px;
		font-size: 14px;
		line-height: 24px;
	}

	.aboutContBox .btnPlay {
		width: 60px;
	}

	.contestBox .title .h1 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.aboutContBox .title {
		margin-bottom: 40px;
	}

	.aboutContBox {
		padding: 70px 0 150px;
	}

	.contDataBox {
		padding: 70px 0 90px;
	}

	.contDataBox .title {
		margin-bottom: 80px;
	}

	.contDataBox .top {
		font-size: 40px;
	}

	.contDataBox .name {
		font-size: 16px;
	}

	.contDataBox .item {
		margin-bottom: 80px;
	}

	.contPartBox .item {
		padding: 50px 30px;
	}

	.fieldBox {
		padding: 70px 0 150px;
	}

	.fieldBox .icon {
		width: 120px;
		height: 120px;
		line-height: 118px;
	}

	.fieldBox .name {
		font-size: 16px;
		line-height: 20px;
	}

	.featureBox .name {
		font-size: 18px;
		line-height: 24px;
	}

	.featureBox .text {
		font-size: 14px;
		line-height: 24px;
	}

	.featureBox .icon {
		width: 80px;
		height: 80px;
		line-height: 80px;
	}

	.featureBox .textBox {
		width: calc(100% - 106px);
		padding-left: 20px;
	}

	.featureBox .item {
		padding: 20px;
		height: 180px;
	}
}

@media only screen and (max-width: 1199px) {
	.contPartBox .listBox {
		justify-content: space-between;
	}

	.contPartBox .item {
		width: 45%;
		margin: 0 5px;
	}
}

@media only screen and (max-width: 1024px) {
	.aboutContBox .videoBox {
		width: 100%;
		margin-bottom: 30px;
	}

	.aboutContBox .text {
		width: 100%;
		padding: 0;
	}

	.contDataBox .item {
		width: 33.33%;
		margin-bottom: 50px;
	}

	.contPartBox .icon {
		width: 110px;
		height: 110px;
		line-height: 110px;
	}

	.fieldBox .item {
		width: 33.33%;
		margin-bottom: 40px;
	}

	.fieldBox {
		padding: 70px 0 80px;
	}

	.faqBox .column {
		width: 100%;
	}

	.faqBox .text {
		height: auto;
	}
}

@media only screen and (max-width: 991px) {
	.featureBox .item {
		width: 100%;
		height: auto;
	}
}

@media only screen and (max-width: 768px) {
	.aboutContBox {
		padding: 50px 0;
	}

	.contDataBox {
		padding: 50px 0 10px;
	}

	.contDataBox .title {
		margin-bottom: 50px;
	}

	.contDataBox .item {
		margin-bottom: 40px;
	}

	.contDataBox .top {
		font-size: 30px;
	}

	.contDataBox .name {
		font-size: 14px;
		line-height: 24px;
		margin-top: 20px;
	}

	.contPartBox {
		padding: 50px 0;
	}

	.contPartBox .listBox {
		margin-top: 50px;
	}

	.contPartBox .icon img {
		width: 40px;
	}

	.contPartBox .name {
		font-size: 16px;
		margin: 10px 0 5px;
	}

	.contPartBox .text2 {
		font-size: 14px;
		line-height: 24px;
	}

	.contPartBox .tips {
		font-size: 14px;
		line-height: 24px;
		margin-top: 30px;
	}

	.contPartBox .btnBox {
		margin-top: 30px;
	}

	.contPartBox .btn {
		line-height: 42px;
		font-size: 16px;
		padding: 0 10px 0 40px;
		background-size: 20px auto;
		background-position: 15px center;
	}

	.fieldBox {
		padding: 50px 0 20px;
	}

	.fieldBox .title {
		margin-bottom: 50px;
	}

	.fieldBox .icon {
		width: 100px;
		height: 100px;
		line-height: 98px;
	}

	.fieldBox .icon img {
		width: 40px;
	}

	.featureBox {
		padding: 50px 0 20px;
	}

	.featureBox .title {
		margin-bottom: 40px;
	}

	.featureBox .item {
		margin-bottom: 30px;
	}

	.faqBox {
		padding: 50px 0;
	}

	.faqBox .title {
		margin-bottom: 30px;
	}

	.faqBox .column {
		width: 100%;
	}

	.faqBox .form {
		margin-bottom: 30px;
	}

	.faqBox .navPage {
		margin-top: 10px;
	}
}

@media only screen and (max-width: 480px) {
	.contestBox .navBox {
		padding: 20px 0 0;
	}

	.contestBox .title .h1 {
		font-size: 18px;
	}

	.aboutContBox {
		padding: 40px 0;
	}

	.contestBox .title .line {
		width: 40px;
		height: 2px;
	}

	.aboutContBox .title {
		margin-bottom: 30px;
	}

	.aboutContBox .btnPlay {
		width: 50px;
	}

	.contDataBox {
		padding: 40px 0 10px;
	}

	.contDataBox .listBox {
		justify-content: center;
	}

	.contDataBox .item {
		width: 50%;
		margin-bottom: 30px;
	}

	.contDataBox .top {
		font-size: 24px;
	}

	.contDataBox .name {
		line-height: 20px;
		margin-top: 10px;
	}

	.contPartBox {
		padding: 40px 0;
	}

	.contPartBox .item {
		width: 100%;
		margin-bottom: 20px;
		padding: 30px 20px;
	}

	.contPartBox .btn {
		line-height: 40px;
		font-size: 14px;
	}

	.fieldBox {
		padding: 40px 0 10px;
	}

	.fieldBox .item {
		width: 50%;
	}

	.fieldBox .icon {
		width: 70px;
		height: 70px;
		line-height: 68px;
	}

	.fieldBox .name {
		font-size: 14px;
		margin-top: 10px;
	}

	.fieldBox .title {
		margin-bottom: 30px;
	}

	.contPartBox .text {
		font-size: 14px;
		line-height: 24px;
	}

	.contPartBox .listBox {
		margin-top: 30px;
		display: flex;
		flex-wrap: wrap;
	}

	.contDataBox .title {
		margin-bottom: 30px;
	}

	.contPartBox .icon {
		width: 90px;
		height: 90px;
		line-height: 90px;
	}

	.featureBox {
		padding: 40px 0 20px;
	}

	.featureBox .item {
		padding: 20px 10px;
		margin-bottom: 20px;
	}

	.featureBox .icon {
		width: 60px;
		height: 60px;
		line-height: 60px;
	}

	.featureBox .icon img {
		max-width: 80%;
		max-height: 80%;
	}

	.featureBox .item .line {
		padding: 8px;
	}

	.featureBox .textBox {
		width: calc(100% - 78px);
		padding-left: 10px;
	}

	.featureBox .name {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 5px;
	}

	.featureBox .title {
		margin-bottom: 30px;
	}

	.faqBox {
		padding: 40px 0;
	}

	.faqBox .column {
		padding: 20px 10px;
		margin-bottom: 20px;
	}

	.faqBox .text {
		font-size: 14px;
	}

	.navPage a {
		width: 30px;
		height: 30px;
		line-height: 28px;
		font-size: 14px;
		margin: 0 5px;
	}
}

/* 创业服务 */
.serviceBox .navBox {
	padding: 40px 0 10px;
}

.navBox2 {
	text-align: center;
	margin: 20px 0 60px;
}

.navBox2 .nav {
	max-width: 100%;
	display: inline-block;
	font-size: 0;
	line-height: 45px;
	background-color: #fff;
	border-radius: 27px;
	white-space: nowrap;
	overflow-x: auto;
}

.navBox2 .nav::-webkit-scrollbar {
	display: none;
}

.navBox2 a {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	color: #888888;
	margin: 0 40px;
}

.navBox2 a.active {
	color: #000000;
	font-weight: bold;
}

.serviceBox .title {
	text-align: center;
}

.serviceBox .title .h1 {
	font-size: 24px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
}

.matchingBox {
	padding-top: 85px;
}

.matchingBox .title .h1 {
	margin-bottom: 17px;
}

.matchingBox .text {
	font-size: 16px;
	line-height: 30px;
	color: #888888;
	text-align: center;
	margin-bottom: 70px;
}

.matchingBox .listBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.matchingBox .item {
	position: relative;
	width: 19.5%;
	cursor: pointer;
}

.matchingBox .suspen {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	padding: 150px 30px 0;
	transition: all 0.5s ease;
	text-align: center;
}

.matchingBox .line {
	display: inline-block;
	padding: 10px;
	border: 1px dashed #fff;
	border-radius: 50%;
}

.matchingBox .icon {
	display: inline-block;
	width: 84px;
	height: 84px;
	line-height: 82px;
	text-align: center;
	border-radius: 50%;
	transition: all 0.5s ease;
}
.matchingBox .icon1 {
	background-color: #fff;
	border-radius: 50%;
}
.matchingBox .icon2 {
	display: none;
}

.matchingBox .name {
	font-size: 30px;
	line-height: 1;
	color: #fff;
	font-weight: bold;
	margin: 30px 0 17px;
}

.matchingBox .text2 {
	font-size: 18px;
	line-height: 30px;
	color: #ebebeb;
	opacity: 0;
	transition: all 0.5s ease;
}

.matchingBox .item.active .suspen {
	padding-top: 90px;
	background-image: url("../images/img31.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/img31.png*/;
	background-position: center center;
	background-size: cover;
}

.matchingBox .item.active .icon {
	background-color: #ffffff;
}

.matchingBox .item.active .icon1 {
	display: none;
}

.matchingBox .item.active .icon2 {
	display: inline-block;
}

.matchingBox .item.active .text2 {
	opacity: 1;
}

.matchingBox .listBox2 {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}

.matchingBox .listBox2::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 100%;
	height: 2px;
	background-color: #e4e4e4;
}

.matchingBox .item2 {
	width: 20%;
	font-size: 0;
	text-align: center;
}

.matchingBox .round {
	display: inline-block;
	padding: 10px;
	border: 1px solid #f8f8f8;
	background-color: #f8f8f8;
	border-radius: 50%;
}

.matchingBox .dot {
	position: relative;
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #cccccc;
}

.matchingBox .item2.active .round {
	position: relative;
	border: 1px solid #2c68b6;
	background-color: #ffffff;
}

.matchingBox .item2.active .dot {
	background-color: #2c68b6;
}
.banner{
	position: relative;
}
.banner .texts{
	position: absolute;
	font-weight: bold;
	font-size: max(32px, 0.86rem);
	left: 15%;
	transform: translateX(-50%);
	top:50%;
	letter-spacing: 3px;
	color:#fff;
}
.policyBox {
	padding-bottom: 85px;
}

.policyBox .title {
	margin-bottom: 45px;
}

.policyBox .wrap {
	padding: 0 80px;
}

.policyBox .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #dfdfdf;
	padding: 22px 25px 22px 15px;
	border-top: 0;
}

.policyBox .item:first-child {
	border: 1px solid #dfdfdf;
}

.policyBox .h2 {
	width: calc(100% - 115px);
	font-size: 16px;
	line-height: 30px;
	color: #888888;
	padding-left: 38px;
	background-image: url("../images/icon52.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon52.png*/;
	background-repeat: no-repeat;
	background-position: left center;
	transition: all 0.5s ease;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.policyBox .time {
	width: 115px;
	font-size: 16px;
	line-height: 30px;
	color: #aaaaaa;
}

.policyBox .item:hover .h2 {
	background-image: url("../images/icon52-1.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon52-1.png*/;
	color: #2c68b6;
	font-weight: bold;
}

.policyBox .navPage {
	margin-top: 70px;
}

.policyDetails {
	padding: 65px 0 85px;
}

.policyDetails .title {
	margin-bottom: 60px;
}

.policyDetails .title .h1 {
	font-size: 28px;
	color: #000000;
	line-height: 36px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eeeeee;
}

.policyDetails .title .info {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 10px;
}

.policyDetails .title .s1 {
	font-size: 16px;
	line-height: 36px;
	color: #ada5a5;
	margin: 0 90px;
}

.policyDetails .text {
	font-size: 16px;
	line-height: 36px;
	color: #666666;
}

.policyDetails .h2 {
	font-size: 18px;
	line-height: 36px;
	color: #000000;
	font-weight: bold;
}

.policyDetails .h3 {
	font-size: 18px;
	color: #000;
}

.policyDetails .botBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 70px;
	margin-top: 30px;
	border-bottom: 1px solid #eeeeee;
}

.policyDetails .downBox {
	width: calc(100% - 170px);
}

.policyDetails .down {
	display: inline-block;
	max-width: 100%;
	font-size: 20px;
	line-height: 36px;
	color: #1555b5;
	text-decoration: underline;
	padding-right: 60px;
	background-image: url("../images/icon53.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon53.png*/;
	background-repeat: no-repeat;
	background-position: right center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.policyDetails .return {
	font-size: 18px;
	line-height: 48px;
	color: #4a4a4a;
	border: 1px solid #d2d2d2;
	border-radius: 10px;
	padding: 0 23px 0 64px;
	background-image: url("../images/icon54.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon54.png*/;
	background-repeat: no-repeat;
	background-position: 28px center;
}

.trainBox {
	padding-bottom: 70px;
}

.trainBox .title {
	margin-bottom: 65px;
}

.trainBox .listBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.trainBox .item {
	width: 47.85%;
	padding: 20px;
	background-color: #fff;
	display: flex;
	align-items: center;
	margin-bottom: 50px;
	transition: all 0.5s ease;
	flex-wrap: wrap;
}

.trainBox .img {
	width: 300px;
}

.trainBox .textBox {
	width: calc(100% - 300px);
	padding-left: 30px;
}

.trainBox .time {
	font-size: 16px;
	line-height: 30px;
	color: #999999;
}

.trainBox .h2 {
	font-size: 20px;
	line-height: 30px;
	color: #222222;
	font-weight: bold;
	transition: all 0.5s ease;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 8px 0 20px;
}

.trainBox .text {
	font-size: 16px;
	line-height: 30px;
	color: #888888;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.trainBox .details {
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #000000;
	padding-right: 30px;
	background-image: url("../images/icon55.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon55.png*/;
	background-repeat: no-repeat;
	background-position: right center;
	margin-top: 15px;
}

.trainBox .item:hover {
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.trainBox .item:hover .h2 {
	color: #2c68b6;
}

.researchBox {
	padding-bottom: 110px;
}

.researchBox .title {
	margin-bottom: 65px;
}

.researchBox .swiper-slide {
	width: 680px;
}

.researchBox .swiper-slide::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
}

.researchBox .swiper-slide-active::before {
	display: none;
}

.researchBox .swiper-slide-prev::before {
	background-color: rgba(0, 0, 0, 0.7);
}

.researchBox .swiper-slide-next::before {
	background-color: rgba(0, 0, 0, 0.7);
}

.researchBox .h2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	font-size: 18px;
	line-height: 60px;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 0 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	opacity: 0;
}

.researchBox .swiper-slide-active .h2 {
	opacity: 1;
}

.extensionBox {
	padding-bottom: 45px;
}

.extensionBox .title {
	margin-bottom: 60px;
}

.extensionBox .listBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.extensionBox .item {
	position: relative;
	width: 47.85%;
	padding: 20px;
	margin-bottom: 60px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.extensionBox .suspen {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background-color: rgba(0, 0, 0, 0.3);
}

.extensionBox .iconBox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.extensionBox .name {
	display: block;
	font-size: 32px;
	line-height: 1;
	color: #ffffff;
	margin-top: 20px;
}

.extenDetailsBox {
	padding: 55px 0;
}

.extenDetailsBox .title {
	margin-bottom: 50px;
}

.extenDetailsBox .title .h1 {
	font-size: 28px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
	padding-bottom: 50px;
	border-bottom: 1px solid #eeeeee;
}

.extenDetailsBox .text {
	font-size: 16px;
	line-height: 36px;
	color: #888888;
	padding: 0 60px;
}

.exhiBox {
	padding: 65px 0 155px;
}

.exhiBox .mapBox {
	position: relative;
}

.exhiBox .addr {
	position: absolute;
	padding: 17px 24px;
	border-radius: 10px;
	background-color: rgba(72, 101, 192, 0.8);
	transition: all .5s ease;
}

.exhiBox .addr .h1 {
	font-size: 32px;
	line-height: 1;
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 10px;
}

.exhiBox .addr .h2 {
	font-size: 21px;
	color: #fcbe33;
	line-height: 1;
	font-weight: bold;
	transition: all .5s ease;
}

.exhiBox .addr-1 {
	top: 12%;
	left: 27%;
}

.exhiBox .addr-2 {
	top: 45%;
	right: 26.5%;
}

.exhiBox .addr:hover {
	background-color: rgba(229, 151, 0, 0.8);
}

.exhiBox .addr:hover .h2 {
	color: #fff7e4;
}

.exhiBox .link-1 {
	position: absolute;
	top: 27%;
	left: 17%;
	width: 25%;
	height: 25%;
}

.exhiBox .link-2 {
	position: absolute;
	top: 40%;
	right: 10%;
	width: 20%;
	height: 45%;
}

.baseBox {
	padding-bottom: 80px;
}

.baseBox .title {
	font-size: 0;
	text-align: left;
	margin-bottom: 25px;
}

.baseBox .title .h1 {
	margin-bottom: 20px;
}

.baseBox .title .line {
	display: inline-block;
	vertical-align: top;
	width: 50px;
	height: 3px;
	background-color: #2c68b6;
}

.baseBox .text {
	font-size: 16px;
	line-height: 30px;
	color: #888888;
	margin-bottom: 40px;
}

.baseBox .box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 0;
}

.baseBox .lBox {
	width: 30.5%;
}

.baseBox .rBox {
	width: 67.85%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.baseBox .item {
	width: 48.84%;
}

.activityBox {
	padding: 115px 0 50px;
}

.activityBox .listBox {
	display: flex;
	flex-wrap: wrap;
}

.activityBox .column {
	position: relative;
	width: 31.42%;
	margin-right: 2.87%;
	margin-bottom: 40px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

.activityBox .column:nth-child(3n) {
	margin-right: 0;
}

.activityBox .suspen {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background-color: rgba(0, 0, 0, 0.4);
	text-align: center;
	padding: 50px 35px 0;
	transition: all 0.5s ease;
}

.activityBox .line {
	display: inline-block;
	padding: 12px;
	border: 1px dashed #fff;
	border-radius: 50%;
}

.activityBox .icon {
	display: inline-block;
	width: 78px;
	height: 78px;
	line-height: 78px;
	border-radius: 50%;
	font-size: 0;
	background-color: #e9e9f2;
}

.activityBox .h1 {
	font-size: 26px;
	line-height: 30px;
	color: #ffffff;
	margin: 26px 0 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.activityBox .text {
	font-size: 16px;
	line-height: 24px;
	color: #eeeeee;
	opacity: 0;
	transition: all 0.5s ease;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.activityBox .column:hover .suspen {
	padding-top: 20px;
	background-color: rgba(0, 0, 0, 0.6);
}

.activityBox .column:hover .text {
	opacity: 1;
}

/* 媒体查询 */
/* 创业服务 */
@media only screen and (max-width: 1500px) {
	.policyBox .wrap {
		padding: 0;
	}
}

@media only screen and (max-width: 1440px) {
	.matchingBox .suspen {
		padding: 100px 20px 0;
	}

	.matchingBox .item.active .suspen {
		padding-top: 80px;
	}

	.activityBox .suspen {
		padding-top: 30px;
	}

	.activityBox .icon {
		width: 60px;
		height: 60px;
		line-height: 60px;
	}

	.activityBox .line {
		padding: 8px;
	}

	.activityBox .column:hover .suspen {
		padding-top: 15px;
	}

	.activityBox .h1 {
		font-size: 20px;
	}
}

@media only screen and (max-width: 1280px) {
	.serviceBox .title .h1 {
		font-size: 20px;
	}

	.matchingBox .icon {
		width: 60px;
		height: 60px;
		line-height: 58px;
	}

	.matchingBox .icon img {
		width: 30px;
	}

	.matchingBox .name {
		font-size: 20px;
		margin: 20px 0 10px;
	}

	.matchingBox .text2 {
		font-size: 14px;
		line-height: 24px;
	}

	.matchingBox .round {
		padding: 5px;
	}

	.matchingBox .dot {
		width: 10px;
		height: 10px;
	}

	.trainBox .img {
		width: 250px;
	}

	.trainBox .textBox {
		width: calc(100% - 250px);
	}

	.trainBox .time {
		font-size: 14px;
	}

	.trainBox .h2 {
		font-size: 16px;
		line-height: 20px;
		margin: 5px 0 10px;
	}

	.trainBox .text {
		font-size: 14px;
		line-height: 24px;
	}

	.trainBox .details {
		font-size: 14px;
		line-height: 24px;
		margin-top: 10px;
	}

	.extensionBox .name {
		font-size: 24px;
	}

	.exhiBox .addr {
		padding: 15px 20px;
	}

	.exhiBox .addr .h1 {
		font-size: 24px;
	}

	.exhiBox .addr .h2 {
		font-size: 16px;
	}

	.activityBox .column {
		padding: 15px;
	}

	.activityBox .suspen {
		top: 15px;
		left: 15px;
		right: 15px;
		bottom: 15px;
	}

	.activityBox .h1 {
		margin: 15px 0;
	}
}

@media only screen and (max-width: 1199px) {
	.researchBox .swiper-slide {
		width: 580px;
	}

	.extenDetailsBox .text {
		padding: 0;
	}

	.activityBox .column {
		width: 48%;
		margin-right: 4%;
	}

	.activityBox .column:nth-child(2n) {
		margin-right: 0;
	}

	.activityBox .column:nth-child(3n) {
		margin-right: 4%;
	}

	.activityBox .suspen {
		padding-top: 70px;
	}

	.activityBox .column:hover .suspen {
		padding-top: 50px;
	}
}

@media only screen and (max-width: 1024px) {
	.matchingBox .listBox {
		justify-content: flex-start;
	}

	.matchingBox .item {
		width: 32%;
		margin-bottom: 30px;
		margin-right: 2%;
	}

	.matchingBox .item:nth-child(3n) {
		margin-right: 0;
	}

	.policyDetails .title .s1 {
		margin: 0 40px;
	}

	.trainBox .item {
		width: 48%;
		padding: 15px;
	}

	.trainBox .img {
		width: 200px;
	}

	.trainBox .textBox {
		width: calc(100% - 200px);
	}

	.trainBox .h2 {
		margin: 5px 0;
	}

	.trainBox .details {
		line-height: 20px;
		margin-top: 5px;
	}

	.researchBox .swiper-slide {
		width: 480px;
	}

	.exhiBox .addr .h1 {
		font-size: 20px;
	}

	.exhiBox .addr {
		padding: 10px 15px;
	}
}

@media only screen and (max-width: 991px) {
	.trainBox .item {
		width: 100%;
	}

	.trainBox .img {
		width: 250px;
	}

	.trainBox .textBox {
		width: calc(100% - 250px);
	}

	.activityBox .line {
		padding: 5px;
	}

	.activityBox .icon {
		width: 50px;
		height: 50px;
		line-height: 50px;
	}

	.activityBox .suspen {
		padding-top: 50px;
	}

	.activityBox .column:hover .suspen {
		padding-top: 30px;
	}

	.activityBox .h1 {
		margin: 10px 0;
	}
}

@media only screen and (max-width: 768px) {
	.policyDetails .title .s1 {
		font-size: 14px;
		margin: 0 20px;
	}

	.policyDetails .downBox {
		width: 100%;
		margin-bottom: 20px;
	}

	.researchBox .swiper-slide {
		width: 380px;
	}

	.extensionBox .item {
		padding: 10px;
	}

	.extensionBox .suspen {
		right: 10px;
		left: 10px;
		top: 10px;
		bottom: 10px;
	}

	.extensionBox .iconBox img {
		height: 40px;
	}

	.extensionBox .name {
		font-size: 20px;
		margin-top: 15px;
	}

	.exhiBox .addr-1 {
		top: 20%;
		left: 0;
	}

	.exhiBox .addr-2 {
		right: 0;
	}

	.exhiBox .link-1 {
		display: none;
	}

	.exhiBox .link-2 {
		display: none;
	}

	.activityBox .column {
		width: 100%;
		margin-right: 0 !important;
	}

	.activityBox .suspen {
		padding-top: 100px;
	}

	.activityBox .column:hover .suspen {
		padding-top: 80px;
	}
}

@media only screen and (max-width: 580px) {
	.navBox2 a {
		font-size: 14px;
		margin: 0 15px;
	}

	.matchingBox .line {
		padding: 5px;
	}

	.matchingBox .icon {
		width: 50px;
		height: 50px;
		line-height: 48px;
	}

	.matchingBox .suspen {
		padding: 60px 10px 0;
	}

	.matchingBox .item.active .suspen {
		padding-top: 40px;
	}

	.matchingBox {
		padding-bottom: 50px;
	}

	.policyBox .item {
		padding: 15px;
	}

	.policyBox .h2 {
		width: calc(100% - 105px);
		font-size: 14px;
		padding-left: 25px;
		background-size: 15px auto;
	}

	.policyBox .time {
		width: 105px;
		font-size: 14px;
	}

	.policyBox .navPage {
		margin-top: 40px;
	}

	.policyBox {
		padding-bottom: 50px;
	}

	.policyDetails {
		padding: 50px 0;
	}

	.policyDetails .title {
		margin-bottom: 40px;
	}

	.policyDetails .h2 {
		font-size: 16px;
		line-height: 30px;
	}

	.policyDetails .text {
		font-size: 14px;
		line-height: 30px;
	}

	.policyDetails .down {
		font-size: 16px;
		line-height: 30px;
		background-size: 24px auto;
		padding-right: 30px;
	}

	.policyDetails .return {
		font-size: 16px;
		line-height: 40px;
		padding: 0 15px 0 35px;
		background-size: 18px auto;
		background-position: 10px center;
	}

	.policyDetails .h3 {
		font-size: 16px;
	}

	.navBox2 {
		margin: 20px 0 40px;
	}

	.trainBox .title {
		margin-bottom: 40px;
	}

	.trainBox .item {
		margin-bottom: 30px;
	}

	.researchBox .title {
		margin-bottom: 40px;
	}

	.researchBox .h2 {
		font-size: 16px;
		line-height: 40px;
	}

	.researchBox {
		padding-bottom: 50px;
	}

	.extensionBox .item {
		width: 100%;
		margin-bottom: 30px;
	}

	.extensionBox .title {
		margin-bottom: 40px;
	}

	.extensionBox {
		padding-bottom: 20px;
	}

	.extenDetailsBox {
		padding: 50px 0;
	}

	.extenDetailsBox .title {
		margin-bottom: 30px;
	}

	.extenDetailsBox .title .h1 {
		padding-bottom: 30px;
	}

	.exhiBox .addr .h1 {
		font-size: 16px;
	}

	.exhiBox .addr .h2 {
		font-size: 14px;
	}

	.exhiBox {
		padding: 50px 0;
	}

	.baseBox .title .h1 {
		margin-bottom: 10px;
	}

	.baseBox .text {
		font-size: 14px;
	}

	.baseBox .box {
		justify-content: center;
	}

	.baseBox .lBox {
		width: 50%;
		margin-bottom: 20px;
	}

	.baseBox .rBox {
		width: 100%;
	}

	.baseBox .item {
		margin-bottom: 20px;
	}

	.baseBox {
		padding-bottom: 30px;
	}

	.activityBox {
		padding: 50px 0 20px;
	}

	.activityBox .column {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 480px) {
	.serviceBox .navBox {
		padding: 20px 0 0;
	}

	.navBox2 .nav {
		line-height: 40px;
	}

	.navBox2 {
		margin: 20px 0 30px;
	}

	.serviceBox .title .h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.matchingBox .text {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	.matchingBox .item {
		width: 49%;
		margin-bottom: 20px;
	}

	.matchingBox .item:nth-child(2n) {
		margin-right: 0;
	}

	.matchingBox .item:nth-child(3n) {
		margin-right: 2%;
	}

	.matchingBox {
		padding-bottom: 40px;
	}

	.matchingBox .listBox2 {
		margin-top: 10px;
	}

	.matchingBox .name {
		font-size: 18px;
		margin: 15px 0;
	}

	.policyBox .title {
		margin-bottom: 30px;
	}

	.policyBox .h2 {
		line-height: 24px;
	}

	.policyBox .time {
		line-height: 24px;
	}

	.policyBox .navPage {
		margin-top: 30px;
	}

	.policyBox {
		padding-bottom: 40px;
	}

	.policyDetails {
		padding: 40px 0;
	}

	.policyDetails .title .h1 {
		padding-bottom: 10px;
	}

	.policyDetails .title .s1 {
		line-height: 24px;
		margin: 0 5px;
	}

	.policyDetails .title {
		margin-bottom: 30px;
	}

	.policyDetails .h2 {
		font-size: 14px;
	}

	.policyDetails .h3 {
		font-size: 14px;
	}

	.policyDetails .botBox {
		padding-bottom: 30px;
	}

	.policyDetails .title .h1 {
		line-height: 30px;
	}

	.trainBox .title {
		margin-bottom: 30px;
	}

	.trainBox .item {
		padding: 10px;
		margin-bottom: 20px;
	}

	.trainBox .img {
		width: 100%;
	}

	.trainBox .textBox {
		width: 100%;
		padding: 10px;
	}

	.trainBox .time {
		line-height: 24px;
	}

	.trainBox {
		padding-bottom: 20px;
	}

	.researchBox .title {
		margin-bottom: 30px;
	}

	.researchBox {
		padding-bottom: 40px;
	}

	.extensionBox .title {
		margin-bottom: 30px;
	}

	.extensionBox .item {
		margin-bottom: 20px;
	}

	.extensionBox {
		padding-bottom: 20px;
	}

	.extensionBox .iconBox img {
		height: 34px;
	}

	.extensionBox .name {
		font-size: 16px;
	}

	.extenDetailsBox {
		padding: 40px 0;
	}

	.extenDetailsBox .title .h1 {
		padding-bottom: 15px;
	}

	.extenDetailsBox .title {
		margin-bottom: 20px;
	}

	.extenDetailsBox .text {
		font-size: 14px;
		line-height: 30px;
	}

	.exhiBox {
		padding: 40px 0;
	}

	.exhiBox .addr {
		padding: 5px;
	}

	.exhiBox .addr .h1 {
		font-size: 14px;
		margin-bottom: 5px;
	}

	.exhiBox .addr .h2 {
		font-size: 12px;
	}

	.baseBox .text {
		margin-bottom: 30px;
	}

	.baseBox {
		padding-bottom: 20px;
	}

	.activityBox .suspen {
		padding-top: 50px;
	}

	.activityBox .column:hover .suspen {
		padding-top: 30px;
	}

	.activityBox .column {
		margin-bottom: 20px;
	}

	.activityBox {
		padding: 40px 0 20px;
	}

	.activityBox .h1 {
		font-size: 18px;
		line-height: 20px;
	}

	.activityBox .text {
		font-size: 14px;
	}
}

/* news */
.dynaBox {
	padding: 40px 0 125px;
}

.dynaBox .topBox {
	padding-bottom: 18px;
	border-bottom: 1px solid #e9e9e9;
	margin-bottom: 50px;
	text-align: right;
}

.dynaBox .select {
	font-size: 16px;
	line-height: 30px;
	color: #b0b0b0;
	padding-right: 23px;
	background-image: url("../images/icon65.jpg")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon65.jpg*/;
	background-repeat: no-repeat;
	background-position: right center;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.dynaBox .select::-ms-expand {
	display: none;
}

.dynaBox .column a {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 30px;
	margin-bottom: 50px;
}

.dynaBox .img {
	width: 312px;
}

.dynaBox .textBox {
	width: calc(100% - 312px);
}

.dynaBox .date {
	font-size: 20px;
	line-height: 30px;
	color: #bbbbbb;
	font-weight: bold;
	transition: all 0.5s ease;
}

.dynaBox .h1 {
	font-size: 20px;
	line-height: 36px;
	color: #333333;
	font-weight: bold;
	transition: all 0.5s ease;
	margin: 5px 0 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dynaBox .text {
	font-size: 16px;
	line-height: 28px;
	color: #888888;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.dynaBox .details {
	display: inline-block;
	font-size: 16px;
	line-height: 36px;
	color: #333333;
	padding-right: 35px;
	background-image: url("../images/icon66.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon66.png*/;
	background-repeat: no-repeat;
	background-position: right center;
	transition: all 0.5s ease;
	margin-top: 15px;
}

.dynaBox .column:hover .h1 {
	color: #1053b2;
}

.dynaBox .column:hover .details {
	color: #1053b2;
	background-image: url("../images/icon66-1.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon66-1.png*/;
}

.dynaBox .navPage {
	margin-top: 50px;
}

.newsBox .navBox {
	padding: 40px 0 10px;
}

.dynaDetailsBox {
	padding: 70px 0 60px;
}

.dynaDetailsBox .title {
	text-align: center;
	margin-bottom: 60px;
}

.dynaDetailsBox .title .h1 {
	font-size: 28px;
	line-height: 36px;
	color: #000000;
	font-weight: bold;
	padding-bottom: 25px;
	border-bottom: 1px solid #eeeeee;
}

.dynaDetailsBox .title .info {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 10px;
}

.dynaDetailsBox .title .s1 {
	font-size: 16px;
	line-height: 36px;
	color: #ada5a5;
	margin: 0 90px;
}

.dynaDetailsBox .text,
.dynaDetailsBox .text p,
.dynaDetailsBox .text span {
	font-size: 16px!important;
	line-height: 30px!important;
	color: #000;
}

.upDown {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.upDown a {
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 36px;
	color: #000000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.upDown .s1 {
	width: 65px;
	color: #ada5a5;
}

.upDown .s2 {
	width: calc(100% - 65px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dynaDetailsBox .upDown {
	margin-top: 75px;
	padding-top: 45px;
	border-top: 1px solid #eeeeee;
}

.dynaDetailsBox .shareBox {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.dynaDetailsBox .shareBox .s1 {
	font-size: 16px;
	line-height: 36px;
	color: #000000;
}

.dynaDetailsBox .share {
	display: flex;
	align-items: center;
}

.dynaDetailsBox .share a {
	margin: 0 4px;
}

/* 媒体查询 */
/* news */
@media only screen and (max-width: 1280px) {
	.dynaBox .date {
		font-size: 18px;
	}

	.dynaBox .h1 {
		font-size: 18px;
		line-height: 30px;
	}

	.dynaBox .text {
		font-size: 14px;
	}

	.dynaBox .details {
		font-size: 14px;
		line-height: 30px;
	}

	.dynaDetailsBox .title .h1 {
		font-size: 20px;
		line-height: 30px;
	}

	.dynaDetailsBox .title .s1 {
		font-size: 14px;
		margin: 0 50px;
	}

	.dynaDetailsBox .text {
		font-size: 14px;
		line-height: 30px;
	}

	.upDown a {
		font-size: 14px;
		line-height: 30px;
	}

	.dynaDetailsBox .shareBox .s1 {
		font-size: 14px;
		line-height: 30px;
	}
}

@media only screen and (max-width: 768px) {
	.dynaBox .textBox {
		padding-left: 30px;
	}

	.dynaDetailsBox .title .s1 {
		margin: 0 20px;
	}
}

@media only screen and (max-width: 580px) {
	.newsBox .navBox {
		padding: 20px 0 0;
	}

	.dynaBox {
		padding: 40px 0;
	}

	.dynaBox .select {
		font-size: 14px;
	}

	.dynaBox .topBox {
		padding-bottom: 10px;
		margin-bottom: 30px;
	}

	.dynaBox .column a {
		padding-bottom: 0;
		margin-bottom: 30px;
	}

	.dynaBox .img {
		width: 100%;
	}

	.dynaBox .textBox {
		width: 100%;
		padding: 10px 0;
	}

	.dynaBox .navPage {
		margin-top: 10px;
	}

	.dynaDetailsBox {
		padding: 50px 0;
	}

	.dynaDetailsBox .title .h1 {
		padding-bottom: 10px;
	}

	.dynaDetailsBox .title .s1 {
		line-height: 24px;
	}

	.dynaDetailsBox .title {
		margin-bottom: 40px;
	}

	.dynaDetailsBox .upDown {
		margin-top: 40px;
		padding-top: 30px;
	}

	.upDown a {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	.dynaBox {
		padding: 30px 0 40px;
	}

	.dynaBox .date {
		font-size: 16px;
	}

	.dynaBox .h1 {
		font-size: 16px;
		margin: 0 0 5px;
	}

	.dynaBox .text {
		line-height: 24px;
	}

	.dynaBox .details {
		line-height: 24px;
		margin-top: 10px;
	}

	.dynaBox .navPage {
		margin-top: 0;
	}

	.dynaDetailsBox {
		padding: 30px 0 40px;
	}

	.dynaDetailsBox .title .h1 {
		font-size: 18px;
	}

	.dynaDetailsBox .title {
		margin-bottom: 20px;
	}

	.dynaDetailsBox .upDown {
		margin-top: 30px;
		padding-top: 20px;
	}
}

/* enterprise */
.enterpriseBox .navBox {
	padding: 40px 0 10px;
}

.settledBox {
	padding: 90px 0 110px;
}

.settledBox .listBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.settledBox .column {
	width: 48.57%;
	border: 1px solid #e4e4e4;
	transition: all 0.5s ease;
	margin-bottom: 30px;
}

.settledBox .column a {
	display: flex;
	align-items: center;
	padding: 10px;
    height:400px;
}

.settledBox .img {
	width: 212px;
	height: 212px;
	font-size: 0;
	line-height: 212px;
	text-align: center;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

.settledBox .img img {
	max-width: 100%;
	max-height: 100%;
}

.settledBox .textBox {
	width: 100%;
	padding-left: 38px;
}

.settledBox .h1 {
	font-size: 22px;
	line-height: 30px;
	color: #000000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: wrap;
	margin-bottom: 30px;
}

.settledBox .item {
	display: flex;
	font-size: 16px;
	line-height: 30px;
	color: #000000;
	padding-left: 40px;
	background-repeat: no-repeat;
	background-position: left center;
	margin-bottom: 7px;
}

.settledBox .item:last-child {
	margin-bottom: 0;
}

.settledBox .item1 {
	background-image: url("../images/icon72.png");
}

.settledBox .item2 {
	background-image: url("../images/icon73.png");
}

.settledBox .item3 {
	background-image: url("../images/icon74.png");
}

.settledBox .item4 {
	background-image: url("../images/icon75.png");
}
.settledBox .item5 {
    background-image: url("../images/icon76.png");
}


.settledBox .s1 {
	width: 80px;
	color: #000;
}

.settledBox .s2 {
	width: calc(100% - 80px);
	color: #888888;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.settledBox .s2 p,
.settledBox .s2 span{
        font-size: 16px!important;
        line-height: 30px!important;
        text-indent: 0px!important;
        white-space:wrap;
    }
.settledBox .column:hover {
	border: 1px solid #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.settledBox .navPage {
	margin-top: 50px;
}

.settledDetaBox {
	padding: 70px 0 100px;
}

.settledDetaBox .topBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.settledDetaBox .title {
	font-size: 0;
	margin-bottom: 60px;
}

.settledDetaBox .title .h1 {
	font-size: 28px;
	line-height: 36px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 20px;
}

.settledDetaBox .title .line {
	display: inline-block;
	vertical-align: top;
	width: 50px;
	height: 3px;
	background-color: #2c68b6;
}

.settledDetaBox .topBox .logo{
	max-width: 230px;
}

.settledDetaBox .box {
	display: flex;
	flex-wrap: wrap;
}

.settledDetaBox .lBox {
	width: 410px;
}

.settledDetaBox .rBox {
	width: calc(100% - 410px);
	padding-left: 60px;
}

.settledDetaBox .lBox .column {
	margin-bottom: 35px;
}

.settledDetaBox .h2 {
	font-size: 18px;
	line-height: 36px;
	color: #2c68b6;
	font-weight: bold;
	padding-left: 54px;
	background-repeat: no-repeat;
	background-position: 17px 7px;
}

.settledDetaBox .lBox .h2 {
	padding-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
	margin-bottom: 15px;
}

.settledDetaBox .lBox .column1 .h2 {
	background-image: url("../images/icon76.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon76.png*/;
}

.settledDetaBox .lBox .column2 .h2 {
	background-image: url("../images/icon77.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon77.png*/;
}

.settledDetaBox .lBox .text {
	font-size: 16px;
	line-height: 36px;
	color: #333333;
	padding-left: 54px;
}

.settledDetaBox .lBox .item {
	display: flex;
}

.settledDetaBox .lBox .s1 {
	width: 80px;
}

.settledDetaBox .lBox .s2 {
	width: calc(100% - 80px);
	color: #888888;
}

.settledDetaBox .rBox .h2 {
	margin-bottom: 15px;
}

.settledDetaBox .rBox .column {
	margin-bottom: 30px;
}

.settledDetaBox .rBox .column1 .h2 {
	background-image: url("../images/icon78.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon78.png*/;
}

.settledDetaBox .rBox .column2 .h2 {
	background-image: url("../images/icon79.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon79.png*/;
}

.settledDetaBox .rBox .column3 .h2 {
	background-image: url("../images/icon80.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon80.png*/;
}

.settledDetaBox .rBox .text {
	font-size: 16px;
	line-height: 30px;
	color: #888;
}

.settledDetaBox .rBox .column1 .text {
	padding: 20px 40px;
	border: 1px solid #eeeeee;
	font-size: 16px;
	line-height: 30px;
	color: #888888;
}

.settledDetaBox .rBox .column1 .h3 {
	font-size: 16px;
	line-height: 36px;
	color: #333333;
	font-weight: bold;
}

.settledDetaBox .rBox .column2 .listBox {
	border: 1px solid #eeeeee;
	padding: 23px 40px 48px;
}

.settledDetaBox .rBox .column2 .item {
	display: flex;
	align-items: center;
	padding: 14px 0 16px;
	border-bottom: 1px dashed #e1e1e1;
}

.settledDetaBox .rBox .column2 .icon {
	width: 50px;
	height: 50px;
	border: 1px dashed #caad8c;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
}

.settledDetaBox .rBox .iconName {
	display: flex;
	align-items: center;
}

.settledDetaBox .rBox .column2 .name {
	font-size: 16px;
	line-height: 36px;
	color: #333333;
	font-weight: bold;
	margin-left: 20px;
	white-space: nowrap;
}

.settledDetaBox .rBox .column2 .text2 {
	font-size: 16px;
	line-height: 36px;
	color: #888888;
	padding-left: 25px;
}

.settledDetaBox .rBox .column3 .text {
	padding: 20px 40px;
	border: 1px solid #eeeeee;
	font-size: 16px;
	line-height: 30px;
	color: #888888;
}

.settledDetaBox .btnBox {
	text-align: right;
	margin-top: 50px;
}

.settledDetaBox .return {
	display: inline-block;
	font-size: 18px;
	line-height: 48px;
	color: #4a4a4a;
	border: 1px solid #d2d2d2;
	border-radius: 10px;
	padding: 0 23px 0 64px;
	background-image: url("../images/icon54.png")/*tpa=https://hkust.ustbb.cn/Public/Home/images/icon54.png*/;
	background-repeat: no-repeat;
	background-position: 28px center;
}

/* 媒体查询 */
@media only screen and (max-width: 1280px) {
	.settledBox .img {
		width: 170px;
		height: 170px;
		line-height: 170px;
	}

	.settledBox .textBox {
		width: 100%;
		padding-left: 30px;
	}

	.settledBox .h1 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.settledBox .item {
		font-size: 14px;
		margin-bottom: 0;
	}

	.settledBox .s1 {
		width: 70px;
	}

	.settledBox .s2 {
		width: calc(100% - 70px);
	}

	.settledDetaBox .lBox {
		width: 310px;
	}

	.settledDetaBox .h2 {
		font-size: 16px;
		padding-left: 35px;
		background-position: 10px 9px;
		background-size: 20px auto;
	}

	.settledDetaBox .lBox .text {
		font-size: 14px;
		line-height: 24px;
		padding-left: 35px;
	}

	.settledDetaBox .rBox {
		width: calc(100% - 310px);
	}

	.settledDetaBox .rBox .column1 .text {
		font-size: 14px;
		line-height: 24px;
		padding: 20px 35px;
	}

	.settledDetaBox .rBox .column2 .listBox {
		padding: 20px 35px 40px;
	}

	.settledDetaBox .rBox .column2 .text2 {
		font-size: 14px;
		line-height: 24px;
	}

	.settledDetaBox .rBox .text {
		font-size: 14px;
		line-height: 30px;
	}

	.settledDetaBox .title .h1 {
		font-size: 20px;
		line-height: 30px;
	}

	.settledDetaBox .title .line {
		width: 40px;
		height: 2px;
	}

	.settledDetaBox .topBox img {
		width: 200px;
	}

	.settledDetaBox .rBox .column3 .text {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1024px) {
	.settledBox .column {
		width: 100%;
	}

	.settledDetaBox .lBox {
		width: 100%;
		margin-bottom: 30px;
	}

	.settledDetaBox .rBox {
		width: 100%;
		padding: 0;
	}
}

@media only screen and (max-width: 580px) {
	.enterpriseBox .navBox {
		padding: 40px 0 0;
	}

	.settledBox {
		padding: 50px 0;
	}

	.settledBox .navPage {
		margin-top: 10px;
	}

	.settledDetaBox .return {
		font-size: 16px;
		line-height: 40px;
		padding: 0 15px 0 35px;
		background-size: 18px auto;
		background-position: 10px center;
	}

	.settledDetaBox {
		padding: 50px 0;
	}

	.settledDetaBox .title .h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.settledDetaBox .topBox img {
		width: 150px;
	}

	.settledDetaBox .title {
		margin-bottom: 40px;
	}

	.settledDetaBox .h2 {
		line-height: 30px;
		background-size: 18px auto;
		background-position: 10px 7px;
	}

	.settledDetaBox .lBox .column {
		margin-bottom: 30px;
	}

	.settledDetaBox .btnBox {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 480px) {
	.settledBox {
		padding: 40px 0;
	}

	.settledBox .column {
		margin-bottom: 20px;
	}

	.settledBox .column a {
		padding: 10px;
	}

	.settledBox .img {
		width: 120px;
		height: 120px;
		line-height: 120px;
	}

	.settledBox .textBox {
		width: 100%;
		padding-left: 20px;
	}

	.settledBox .h1 {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 5px;
	}

	.settledBox .item {
		line-height: 24px;
		padding-left: 20px;
		background-size: 15px auto;
	}

	.settledDetaBox .title .h1 {
		width: 100%;
	}

	.settledDetaBox .title {
		margin-bottom: 30px;
	}

	.settledDetaBox .logo {
		margin-bottom: 30px;
	}

	.settledDetaBox .lBox .text {
		padding-left: 0;
	}

	.settledDetaBox .lBox .h2 {
		padding-bottom: 5px;
	}

	.settledDetaBox .lBox .column {
		margin-bottom: 20px;
	}

	.settledDetaBox .lBox {
		margin-bottom: 10px;
	}

	.settledDetaBox .rBox .column1 .text {
		padding: 10px 10px 20px;
	}

	.settledDetaBox .rBox .h2 {
		margin-bottom: 10px;
	}

	.settledDetaBox .rBox .column2 .listBox {
		padding: 5px 10px 20px;
	}

	.settledDetaBox .rBox .column2 .item {
		flex-wrap: wrap;
	}

	.settledDetaBox .rBox .column2 .text2 {
		width: 100%;
		padding: 0;
		margin-top: 10px;
	}

	.settledDetaBox .rBox .column3 .text {
		padding: 10px;
	}

	.settledDetaBox .rBox .column3 .text {
		line-height: 24px;
	}

	.settledDetaBox .btnBox {
		margin-top: 40px;
	}

	.settledDetaBox .return {
		font-size: 14px;
	}

	.settledDetaBox {
		padding: 40px 0;
	}
}

/* visit */
.basesBox {
	padding: 90px 0 190px;
	background-position: center center;
	background-size: cover;
}

.basesBox .wrap {
	padding: 0 115px;
}

.basesBox .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.basesBox .img {
	width: 420px;
}

.basesBox .textBox {
	width: calc(100% - 420px);
	padding-right: 50px;
}

.basesBox .box:nth-child(2n) {
	flex-direction: row-reverse;
}

.basesBox .box:nth-child(2n) .textBox {
	padding-right: 0;
	padding-left: 50px;
}

.visitBox .title {
	font-size: 0;
	margin-bottom: 40px;
}

.visitBox .title .h1 {
	font-size: 24px;
	line-height: 30px;
	color: #000000;
	font-weight: bold;
}

.visitBox .title .line {
	display: inline-block;
	vertical-align: top;
	width: 50px;
	height: 3px;
	background-color: #2c68b6;
	margin-top: 12px;
}

.basesBox .text {
	font-size: 16px;
	color: #888888;
	line-height: 30px;
	text-align: justify;
}

.trafficBox {
	padding: 27px 0 0;
}

.trafficBox .title {
	text-align: center;
}

/* 媒体查询 */
/* visit */
@media only screen and (max-width: 1680px) {
	.basesBox .wrap {
		padding: 0;
	}
}

@media only screen and (max-width: 1280px) {
	.visitBox .title .h1 {
		font-size: 20px;
	}

	.basesBox .text {
		font-size: 14px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 1024px) {
	.basesBox .img {
		width: 300px;
	}

	.basesBox .textBox {
		width: calc(100% - 300px);
	}
}

@media only screen and (max-width: 768px) {
	.basesBox .box {
		justify-content: center;
	}

	.basesBox .textBox {
		width: 100%;
		padding: 0;
		margin-bottom: 30px;
	}

	.basesBox .box:nth-child(2n) .textBox {
		padding: 0;
	}
}

@media only screen and (max-width: 580px) {
	.basesBox {
		padding: 50px 0;
	}

	.visitBox .title {
		margin-bottom: 30px;
	}

	.visitBox .title .h1 {
		font-size: 18px;
	}
}

@media only screen and (max-width: 480px) {
	.basesBox {
		padding: 40px 0 20px;
	}

	.visitBox .title {
		margin-bottom: 20px;
	}

	.basesBox .box {
		margin-bottom: 30px;
	}

	.trafficBox {
		padding: 0;
	}

	.visitBox .title .line {
		width: 40px;
		height: 2px;
		margin-top: 10px;
	}

	.basesBox .textBox {
		margin-bottom: 20px;
	}
}

/*搜索结果*/
.xsousuo {
	padding-top: 90px;
	padding-bottom: 80px;
}

.xsousuo .conwidth {}

.xsousuo .xssbox {
	padding-top: 85px;
	padding-left: 4%;
	padding-right: 4%;
	padding-bottom: 80px;
	background-color: #FFFFFF;
}

.xssbox .title {
	font-family: sy-Regular;
	color: #000000;
	font-size: 28px;
	padding-bottom: 35px;
	border-bottom: #e8e8e8 solid 1px;
}

.xssbox .title .t1 {
	color: #148fee;
}

.xsdiv {}

.xsdiv ul li {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: #eae5e5 solid 1px;
}

.xsdiv ul li a {
	display: inline-block;
	width: 100%;
}

.xsousuo .l-wrap {
	float: left;
	width: 150px;
}

.xsousuo .l-wrap img {
	width: 100%;
}

.xsousuo .r-wrap {
	float: left;
	width: -moz-calc(100% - 150px);
	width: -webkit-calc(100% - 150px);
	width: calc(100% - 150px);
	padding-left: 30px;
	box-sizing: border-box;
}

.xsdiv ul li a .xtop {
	margin-bottom: 10px;
	overflow: hidden;
	color: #222222;
	font-size: 20px;
	margin-right: 30px;
	margin-bottom: 5px;
}

.xsdiv ul li a:hover .xtop {
	color: #148fee;
}

.xsdiv ul li a .xmid {
	color: #999999;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 15px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.xsdiv ul li a .time {
	color: #444444;
	font-size: 16px;
}

@media screen and (max-width: 1440px) {
	.xssbox .title {
		font-size: 26px;
	}
}

@media screen and (max-width: 1024px) {
	.xsousuo {
		padding-bottom: 70px;
	}

	.xsousuo .xssbox {
		padding-top: 30px;
		padding-bottom: 50px;
		padding-left: 0;
		padding-right: 0;
	}

	.xssbox .title {
		font-size: 24px;
	}
}

@media screen and (max-width: 768px) {
	.xsousuo {
		padding-bottom: 60px;
	}

	.xsousuo .xssbox {
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.xssbox .title {
		font-size: 20px;
		padding-bottom: 25px;
	}

	.xsdiv ul li {
		padding: 25px 0px;
	}
}

@media screen and (max-width: 640px) {
	.xsousuo .xssbox {
		padding-top: 0px;
		padding-bottom: 30px;
	}

	.xssbox .title {
		font-size: 18px;
		padding-bottom: 20px;
	}

	.xsdiv ul li {
		padding: 20px 0px;
	}

	.xsdiv ul li a .xtop {
		font-size: 18px;
	}

	.xsdiv ul li a .time {
		font-size: 15px;
	}
}

@media screen and (max-width: 576px) {
	.xsousuo .xssbox {
		padding-top: 0;
	}

	.xsousuo .l-wrap {
		width: 100px;
	}

	.xsousuo .r-wrap {
		padding-left: 20px;
		width: -webkit-calc(100% - 100px);
		width: calc(100% - 100px);
	}

	.xsdiv ul li a .xtop {
		font-size: 17px;
	}

	.xsdiv ul li a .xmid {
		margin-bottom: 10px;
	}

	.xsdiv ul li a .time {
		font-size: 14px;
	}
}
