header .header-top {
  width: 100%;
  height: 1.6rem;
  padding: 0 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-top .logo {
  height: 0.8rem;
}

header .header-top .search {
  width: 2.4rem;
  height: 0.5rem;
  background: #fafafa url("../img/search.png") no-repeat;
  background-size: 0.4rem 0.4rem;
  background-position: calc(100% - 0.24rem) center;
  border: 2px solid #cecece;
  border-radius: 0.24rem;
  padding-left: 0.24rem;
  padding-right: 0.8rem;
  font-size: 0.24rem;
  box-sizing: border-box;
}

header .menus {
  width: 100%;
  height: 0.6rem;
  padding: 0 0.9rem;
  background-color: #02513a;
  display: flex;
  justify-content: space-between;
}

header .menus .menu-item {
  position: relative;
  font-size: 0.22rem;
  height: 100%;
}

header .menus .menu-item > a {
  display: inline-block;
  margin-top: 0.06rem;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  width: 1.4rem;
  color: #fff;
}

header .menus .menu-item .submenu {
  position: absolute;
  top: 100%;
  padding: 0.08rem;
  background-color: #fff;
  box-shadow: 0 0 2px 1px #025e3a;
  display: none;
}

header .menus .menu-item:hover {
  border-bottom: 3px solid #caffcf;
}

header .menus .menu-item:hover > a {
  background-color: #25ce36;
  box-sizing: border-box;
  border-radius: 0.04rem 0.04rem 0 0;
}

header .menus .menu-item:hover .submenu {
  display: block;
}

header .menus .menu-item:hover .submenu .submenu-item {
  display: inline-block;
  width: 100%;
  padding: 0.04rem;
  white-space: nowrap;
}

header .menus .menu-item:hover .submenu .submenu-item > a {
  font-size: 0.18rem;
  color: #333;
  text-align: center;
}

header .menus .menu-item:hover .submenu .submenu-item:hover {
  background-color: #25ce36;
}

header .menus .menu-item:hover .submenu .submenu-item:hover > a {
  color: #fff;
}

footer {
  width: 100%;
  height: 1.6rem;
  background-color: #101010;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

footer > div {
  width: 45%;
  position: relative;
}

footer > div p {
  color: #fff;
  font-size: 0.16rem;
}

footer > div:last-child {
  margin-left: 1rem;
  padding-left: 1rem;
}

footer > div:last-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1rem;
  background: linear-gradient(rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
}

.main .banner {
  width: 100%;
  height: 4.7rem;
}

.main .banner img {
  width: 100%;
  height: 4.7rem;
}

.main .association {
  width: 100%;
  height: 2rem;
  padding: 0 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .association .block {
  width: 50%;
  display: flex;
  align-items: center;
}

.main .association .block:first-child {
  margin-right: 0.6rem;
}

.main .association .block .logo {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f3fcf4;
}

.main .association .block .logo img {
  width: 0.74rem;
  height: 0.74rem;
  margin-top: 0.14rem;
}

.main .association .block .logo span {
  font-size: 0.24rem;
  color: #333;
  margin-top: 0.1rem;
  font-weight: bold;
}

.main .association .block .brief {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 0.24rem;
}

.main .association .block .brief p {
  height: 1rem;
  line-height: 1, 6;
  font-size: 0.16rem;
  color: #333;
}

.main .association .block .brief a {
  color: #00694a;
  font-size: 0.16rem;
  text-decoration: underline;
  margin-top: 0.1rem;
}

.main .field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.12rem 0.9rem;
}

.main .field.gray {
  background-color: #f8f8f8;
}

.main .field > div {
  width: 50%;
}

.main .field > div:first-child {
  margin-right: 0.6rem;
}

.main .news .title {
  width: 100%;
  padding: 0.3rem 0 0.24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .news .title .title-name {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  padding-left: 0.14rem;
  position: relative;
}

.main .news .title .title-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.16rem;
  background: #00694a;
  border-radius: 0.02rem;
}

.main .news .title .more {
  width: 0.9rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  font-size: 0.16rem;
  color: #00694a;
  background: #e5ede6;
  border-radius: 0.16rem;
}

.main .news .news-item {
  width: 100%;
  height: 0.46rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5ede6;
}

.main .news .news-item span {
  font-size: 0.16rem;
}

.main .news .news-item .brief {
  margin-right: 0.24rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main .news .news-item .date {
  flex-shrink: 0;
  color: #999;
}

.main .notice .title {
  width: 100%;
  padding: 0.3rem 0 0.24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .notice .title .title-name {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  padding-left: 0.14rem;
  position: relative;
}

.main .notice .title .title-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.16rem;
  background: #00694a;
  border-radius: 0.02rem;
}

.main .notice .title .more {
  width: 0.9rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  font-size: 0.16rem;
  color: #00694a;
  background: #e5ede6;
  border-radius: 0.16rem;
}

.main .notice .notice-item {
  width: 100%;
  height: 0.46rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .notice .notice-item span {
  font-size: 0.16rem;
}

.main .notice .notice-item .date {
  flex-shrink: 0;
}

.main .notice .notice-item .date .day {
  display: inline-block;
  width: 0.32rem;
  height: 0.32rem;
  line-height: 0.32rem;
  color: #fff;
  background-color: #00694a;
  text-align: center;
  margin-left: 0.08rem;
}

.main .notice .notice-item .brief {
  flex: 1;
  margin-left: 0.24rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main .alumni .title {
  width: 100%;
  padding: 0.3rem 0 0.24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .alumni .title .title-name {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  padding-left: 0.14rem;
  position: relative;
}

.main .alumni .title .title-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.16rem;
  background: #00694a;
  border-radius: 0.02rem;
}

.main .alumni .title .more {
  width: 0.9rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  font-size: 0.16rem;
  color: #00694a;
  background: #e5ede6;
  border-radius: 0.16rem;
}

.main .alumni .alumni-item {
  height: 0.36rem;
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  border: 1px solid #999;
  border-radius: 0.08rem;
  margin-bottom: 0.11rem;
}

.main .alumni .alumni-item .date > span {
  display: block;
}

.main .alumni .alumni-item .date > span:first-child {
  font-size: 0.12rem;
  color: #333;
}

.main .alumni .alumni-item .date > span:last-child {
  font-size: 0.14rem;
  color: #333;
  font-weight: bold;
}

.main .alumni .alumni-item .brief {
  font-size: 0.16rem;
  color: #333;
/*  font-weight: bold;*/
  margin-left: 0.14rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main .alumni .alumni-item:hover {
  background-color: #e5ede6;
  border-color: #00694a;
  position: relative;
}

.main .alumni .alumni-item:hover::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.2rem;
  height: 0.16rem;
  background-color: #00694a;
  border-radius: 0 0 0 0.4rem;
}

.main .alumni .alumni-item:hover .date span {
  color: #00694a;
}

.main .alumni .alumni-item:hover .brief {
  color: #00694a;
}

.main .donation .title {
  width: 100%;
  padding: 0.3rem 0 0.24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .donation .title .title-name {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  padding-left: 0.14rem;
  position: relative;
}

.main .donation .title .title-name span {
  color: #666;
  font-size: 0.18rem;
  cursor: pointer;
}

.main .donation .title .title-name span.active {
  font-size: 0.24rem;
  color: #00694a;
}

.main .donation .title .title-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.16rem;
  background: #00694a;
  border-radius: 0.02rem;
}

.main .donation .title .more {
  width: 0.9rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  font-size: 0.16rem;
  color: #00694a;
  background: #e5ede6;
  border-radius: 0.16rem;
}

.main .donation .donation-info .head {
  width: 100%;
  height: 0.5rem;
  display: flex;
  align-items: center;
  background: #e4e4e4;
  position: relative;
  z-index: 10;
}

.main .donation .donation-info .head span {
  font-size: 0.16rem;
  color: #333;
  font-weight: bold;
  flex-shrink: 0;
  padding-left: 0.16rem;
}

.main .donation .donation-info .head span:first-child {
  width: 45%;
  padding-left: 0.24rem;
}

.main .donation .donation-info .head span:nth-child(2) {
  width: 35%;
}

.main .donation .donation-info .head span:last-child {
  width: 20%;
}

.main .donation .donation-info .scroll {
  height: 3rem;
  position: relative;
  overflow: hidden;
}

.main .donation .donation-info .scroll .line {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  display: flex;
  align-items: center;
}

.main .donation .donation-info .scroll .line span {
  font-size: 0.16rem;
  color: #333;
  flex-shrink: 0;
  padding-left: 0.16rem;
}

.main .donation .donation-info .scroll .line span.primary {
  color: #00694a;
  font-weight: bold;
}

.main .donation .donation-info .scroll .line span:first-child {
  width: 45%;
  padding-left: 0.24rem;
}

.main .donation .donation-info .scroll .line span:nth-child(2) {
  width: 35%;
}

.main .donation .donation-info .scroll .line span:last-child {
  width: 20%;
}

.main .donation .donation-account {
  display: none;
  width: 100%;
  height: 3.5rem;
  border: 1px solid #00694a;
  border-radius: 0.08rem;
  background: #f3fcf4;
  padding: 0.24rem;
}

.main .donation .donation-account p {
  font-size: 0.18rem;
  color: #333;
  margin-bottom: 0.08rem;
}

.main .service {
  height: 2.2rem;
  background-color: #f8f8f8;
  padding: 0 0.9rem;
  display: flex;
  align-items: center;
}

.main .service .service-left {
  flex: 1;
}

.main .service .service-left .title {
  width: 100%;
  padding: 0.3rem 0 0.24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .service .service-left .title .title-name {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  padding-left: 0.14rem;
  position: relative;
}

.main .service .service-left .title .title-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.16rem;
  background: #00694a;
  border-radius: 0.02rem;
}

.main .service .service-left .title .more {
  width: 0.9rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  font-size: 0.16rem;
  color: #00694a;
  background: #e5ede6;
  border-radius: 0.16rem;
}

.main .service .service-left .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .service .service-left .body .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main .service .service-left .body .service-item img {
  width: 0.6rem;
  height: 0.6rem;
}

.main .service .service-left .body .service-item span {
  font-size: 0.2rem;
  color: #333;
  margin-top: 0.16rem;
}

.main .service .service-right {
  margin-left: 0.8rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main .service .service-right img {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.1rem;
}

.main .service .service-right p {
  font-size: 0.16rem;
  color: #333;
}
