* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f6faf8;
  color: #333;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body.is-inner main {
  background: linear-gradient(180deg, #d9f0e9 0, #eef8f4 230px, #fff 460px);
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: 1200px;
  max-width: calc(100vw - 48px);
  min-width: 0;
  margin: 0 auto;
}

.home-grid,
.quick-zone,
.partner-zone {
  width: 80vw;
  min-width: 1200px;
}

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 7px rgba(0,0,0,.05);
  z-index: 50;
}

.header-inner {
  width: calc(100% - 64px);
  max-width: 1760px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  width: 340px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav-inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 78px;
  padding: 0;
  color: #1f2f2a;
  font-size: 20px;
}

.nav-inner a:hover,
.nav-inner a.active {
  color: #10a957;
  font-weight: 700;
}

.nav-inner a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 3px;
  background: #10a957;
}

.header-auth {
  flex: 0 0 auto;
  width: 84px;
  height: 44px;
  border-radius: 4px;
  background: #006b67;
  color: #fff;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.hero {
  position: relative;
  height: 460px;
  background: url("/pc/images/3d722db9158944c6a16c75f332b33f3d.png") center top / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,83,50,.42), rgba(0,83,50,.1) 52%, rgba(0,83,50,.02));
}

.hero-inner {
  position: relative;
  z-index: 1;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-inner p {
  margin: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}

#heroTitle {
  width: 900px;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.55;
  font-weight: 700;
}

#heroSummary {
  width: 680px;
  margin-bottom: 34px;
  font-size: 24px;
  line-height: 1.55;
}

.hero-search {
  width: 650px;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr 150px;
  overflow: hidden;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.hero-search input {
  min-width: 0;
  height: 60px;
  padding: 0 30px;
  border: 0;
  outline: none;
  color: #303133;
  font-size: 16px;
}

.hero-search button {
  border: 0;
  background: #007a76;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.hero-search button:hover {
  background: #079b4f;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 26px;
  justify-content: center;
  display: flex;
  gap: 8px;
}

.hero-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.hero-dots i.active {
  width: 34px;
  border-radius: 10px;
  background: #048741;
}

.module-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 0;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.module-strip a {
  min-height: 96px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
}

.module-strip a:hover {
  background: #f0fbf5;
}

.module-strip span {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #079b4f;
  color: #fff;
  text-align: center;
  line-height: 48px;
  font-size: 22px;
  font-weight: 700;
}

.module-strip b {
  align-self: end;
  color: #1f2f2a;
  font-size: 17px;
}

.module-strip em {
  align-self: start;
  color: #6f7f78;
  font-style: normal;
  font-size: 13px;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  gap: 42px;
  padding: 30px 0 28px;
}

.main-column {
  order: 1;
}

.side-column {
  order: 2;
}

.section-head,
.panel-title,
.section-title {
  height: 56px;
  display: flex;
  align-items: center;
  border-top: 5px solid #cfe8dc;
  background: #fff;
}

.section-head {
  margin-bottom: 18px;
}

.section-head a,
.panel-title a,
.section-title a {
  margin-left: auto;
  color: #10a957;
  font-size: 14px;
}

.tab-list {
  display: flex;
  align-items: stretch;
  height: 56px;
}

.tab-list button {
  position: relative;
  border: 0;
  background: #fff;
  color: #10a957;
  padding: 0 18px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.tab-list button i {
  margin-right: 8px;
  font-style: normal;
  font-size: 20px;
}

.tab-list button.active::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: #10a957;
}

.home-resource-content {
  min-height: 430px;
}

.germ-type-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 18px;
  color: #34443f;
  font-size: 15px;
}

.germ-type-tabs span {
  margin-right: 10px;
}

.germ-type-tabs button {
  min-width: 56px;
  height: 34px;
  padding: 0 18px;
  border: 1px solid #d7dee4;
  border-left: 0;
  background: #fff;
  color: #34443f;
  cursor: pointer;
}

.germ-type-tabs button:first-of-type {
  border-left: 1px solid #d7dee4;
  border-radius: 4px 0 0 4px;
}

.germ-type-tabs button:last-child {
  border-radius: 0 4px 4px 0;
}

.germ-type-tabs button.active {
  border-color: #409eff;
  background: #409eff;
  color: #fff;
}

.home-germ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-germ-card {
  position: relative;
  min-height: 446px;
  padding: 0 16px 16px;
  border: 1px solid #e4ece9;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .04);
}

.home-germ-card h3 {
  margin: 14px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e5ece9;
  color: #1f2f2a;
  font-size: 18px;
}

.home-germ-card p {
  width: 50%;
  display: inline-block;
  margin: 0 0 5px;
  color: #7a8985;
  font-size: 14px;
  vertical-align: top;
}

.home-germ-card p span {
  color: #657572;
}

.home-germ-card p b {
  color: #1f2f2a;
  font-weight: 400;
}

.home-germ-card p.wide {
  width: 100%;
  display: block;
}

.home-germ-carousel {
  position: relative;
  height: 260px;
  margin: 0 -16px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: #eef6f2;
}

.home-germ-carousel span {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}

.home-germ-carousel span.active {
  opacity: 1;
}

.home-germ-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-germ-carousel i {
  position: absolute;
  left: 10px;
  bottom: 8px;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(0, 0, 0, .52);
  color: #fff;
  font-style: normal;
  font-size: 12px;
}

.home-download-list,
.home-service-grid,
.home-service-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.home-service-news-list .news-card-prototype {
  min-height: 128px;
  padding: 18px 20px;
}

.home-download-card,
.home-service-grid a {
  min-height: 128px;
  padding: 18px 20px;
  border: 1px solid #e4ece9;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .04);
}

.home-download-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-download-list b,
.home-service-grid b {
  display: block;
  margin-bottom: 8px;
  color: #1f2f2a;
  font-size: 16px;
}

.home-download-files {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.home-download-files a {
  overflow: hidden;
  color: #007a76;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.home-download-list span,
.home-service-grid span {
  display: block;
  color: #667772;
}

.home-download-list em {
  margin-left: auto;
  color: #008a72;
  font-style: normal;
  white-space: nowrap;
  font-size: 13px;
}

.home-service-grid i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #e4f6ef;
  color: #008a72;
  font-style: normal;
  font-weight: 700;
}

.compact-news-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  min-height: 88px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid #e1e8e5;
  background: #fff;
}

.compact-news-item:first-child {
  padding-top: 0;
}

.home-info-list {
  margin-bottom: 16px;
  padding: 14px 18px 0;
  background: #fff;
}

.home-info-date {
  display: flex;
  width: 72px;
  height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #007a76;
  color: #fff;
}

.home-info-date b {
  font-size: 32px;
  line-height: 1;
}

.home-info-date em {
  margin-top: 3px;
  font-style: normal;
  font-size: 15px;
}

.home-info-row h3 {
  margin: 3px 0 7px;
  overflow: hidden;
  color: #273631;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 19px;
  line-height: 1.45;
}

.home-info-row p {
  height: 20px;
  margin: 0;
  overflow: hidden;
  color: #6d7d78;
  font-size: 13px;
  line-height: 20px;
}

.panel-tabs {
  padding-left: 0;
}

.side-info-tabs button {
  font-size: 18px;
  color: #65756f;
}

.side-info-tabs button.active {
  color: #008a72;
}

.feature-news {
  display: grid;
  grid-template-columns: 600px 1fr;
  height: 318px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #20b764, #0aa150);
  color: #fff;
  overflow: hidden;
}

.feature-news .pic {
  background: url("/pc/images/167fd7d115ad476abf7905c60fee0d48.png") center / cover no-repeat;
}

.feature-news .text {
  padding: 26px 32px;
}

.feature-news h3 {
  height: 84px;
  margin: 0 0 8px;
  overflow: hidden;
  font-size: 18px;
  line-height: 28px;
}

.feature-news p {
  height: 130px;
  margin: 0 0 13px;
  padding-top: 13px;
  border-top: 2px solid #fff;
  overflow: hidden;
  color: #fff;
  line-height: 26px;
}

.feature-news a {
  color: #fff;
  font-weight: 700;
}

.news-item {
  display: block;
  position: relative;
  min-height: 112px;
  padding: 15px 0;
  border-bottom: 1px dashed #9c9c9c;
  overflow: hidden;
}

.news-item:first-child {
  border-top: 1px dashed #9c9c9c;
}

.date-card {
  position: relative;
  z-index: 1;
  float: left;
  width: 87px;
  height: 84px;
  border-top: 3px solid #10a957;
  border-left: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
  text-align: center;
  background: #fff;
}

.date-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -5px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #10a957;
}

.date-card b {
  display: block;
  height: 42px;
  line-height: 42px;
  margin-top: 8px;
  color: #7e7e7e;
  font-size: 34px;
}

.date-card span {
  display: block;
  height: 31px;
  line-height: 31px;
  background: #10a957;
  color: #fff;
  font-size: 13px;
}

.news-item > span:last-child {
  display: block;
  margin-left: 107px;
}

.news-item h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 24px;
}

.news-item p {
  height: 50px;
  margin: 0;
  overflow: hidden;
  color: #015e2c;
  line-height: 25px;
}

.panel {
  background: #fff;
  margin-bottom: 25px;
  overflow: hidden;
}

.panel-title {
  padding: 0 18px;
  margin-bottom: 22px;
}

.panel-title h3,
.section-title h2 {
  position: relative;
  margin: 0;
  color: #10a957;
  font-size: 18px;
}

.panel-title h3::before,
.section-title h2::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 4px;
  background: #10a957;
}

.notice-row {
  display: block;
  min-height: 74px;
  margin: 0 25px 12px;
  overflow: hidden;
}

.notice-row .day {
  float: left;
  width: 74px;
  height: 62px;
  background: #048741;
  color: #fff;
  text-align: center;
}

.notice-row .day b {
  display: block;
  height: 30px;
  line-height: 30px;
  margin-top: 6px;
  font-size: 28px;
}

.notice-row .day span {
  display: block;
  height: 22px;
  line-height: 22px;
  font-size: 12px;
}

.notice-row h4 {
  height: 46px;
  margin: 0 0 0 90px;
  overflow: hidden;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
}

.service-panel {
  background: #fff;
}

.service-panel #serviceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  background: #10a957;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-weight: 700;
}

.service:nth-child(2n) {
  background: #14b665;
}

.service .icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-band {
  padding: 20px 0 34px;
  background: #fff;
}

.resource-grid {
  display: grid;
  grid-template-columns: 792px 380px;
  gap: 28px;
}

.section-title {
  padding: 0 0 0 0;
  margin-bottom: 18px;
}

.germplasm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.germ-card {
  min-height: 145px;
  padding: 18px;
  border-top: 4px solid #10a957;
  background: #f8fbfa;
  box-shadow: 0 8px 20px rgba(0,0,0,.035);
}

.germ-card h3 {
  margin: 0 0 8px;
  color: #222;
  font-size: 18px;
}

.germ-card p {
  margin: 4px 0;
  color: #236e50;
  font-size: 14px;
}

.research-list {
  background: #f6f9f7;
  padding: 0 22px;
}

.research-list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px dashed #9c9c9c;
  color: #222;
}

.research-list small {
  color: #10a957;
}

.quick-zone {
  display: block;
  width: 100%;
  padding: 58px 0;
  background: linear-gradient(rgba(255,255,255,.86), rgba(255,255,255,.92)), url("/pc/images/109bc8f8e1c841c29567407c6b7cf022.png") center / cover no-repeat;
}

.stats-title {
  margin: 0 auto 34px;
  color: #1f2f2a;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.stats {
  width: 1360px;
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px 24px;
}

.stat {
  position: relative;
  text-align: center;
  color: #576963;
}

.stat i {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(0, 122, 118, .13);
  color: #3a9e94;
  font-style: normal;
  font-size: 30px;
}

.stat i img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.stat b {
  display: block;
  color: #222;
  font-size: 38px;
  line-height: 1.1;
}

.stat b em {
  margin-left: 3px;
  color: #222;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #1f2f2a;
  font-size: 16px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-links a {
  height: 58px;
  background: #10a957;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.partner-zone {
  padding: 38px 0 58px;
  background: #fff;
}

.partner-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partner-home-grid a {
  min-height: 138px;
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  padding: 20px;
  border: 1px solid #e4ece9;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .045);
}

.partner-logo {
  grid-row: 1 / span 2;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-home-grid strong {
  display: block;
  align-self: end;
  color: #34443f;
  font-size: 17px;
}

.partner-home-grid em {
  display: block;
  height: 44px;
  margin-top: 8px;
  overflow: hidden;
  color: #778681;
  font-style: normal;
  font-size: 13px;
  line-height: 22px;
}

.footer {
  margin-top: auto;
  background: #008d48;
  color: #fff;
}

.footer-inner {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 34px;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer p {
  margin: 6px 0;
  color: #e9fff4;
}

.footer img {
  width: 360px;
  height: auto;
}

.hidden {
  display: none !important;
}

.list-page,
.detail-page,
.account-page {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  padding: 38px 0 78px;
}

body.is-germplasm-list .list-page {
  grid-template-columns: 1fr;
}

body.is-germplasm-list .left-menu,
body.is-prototype-list .left-menu,
body.is-about-page .left-menu {
  display: none;
}

body.is-germplasm-list .list-content,
body.is-prototype-list .list-content,
body.is-about-page .detail-content {
  box-shadow: none;
  background: transparent;
}

body.is-prototype-list .list-page,
body.is-about-page .detail-page {
  grid-template-columns: 1fr;
  padding-top: 0;
}

body.is-germplasm-list .list-content h2 {
  margin-left: 0;
  margin-right: 0;
}

body.is-germplasm-list .breadcrumb {
  margin-bottom: 0;
}

body.is-prototype-list .list-page {
  grid-template-columns: 1fr;
}

body.is-prototype-list .left-menu {
  display: none;
}

body.is-prototype-list .list-content {
  min-height: auto;
  padding-bottom: 0;
  background: transparent;
  box-shadow: none;
}

body.is-prototype-list .list-page {
  padding-bottom: 0;
}

body.is-prototype-list .list-content h2 {
  display: none;
}

body.is-germplasm-detail .detail-page {
  width: 1500px;
  max-width: calc(100vw - 48px);
  grid-template-columns: 1fr;
}

body.is-germplasm-detail .left-menu {
  display: none;
}

body.is-germplasm-detail .detail-content {
  box-shadow: 0 10px 30px rgba(2, 72, 48, .06);
}

body.is-article-detail .detail-page,
body.is-about-page .detail-page {
  grid-template-columns: 1fr;
}

body.is-article-detail .left-menu,
body.is-about-page .left-menu,
body.is-article-detail .detail-content > h1,
body.is-about-page .detail-content > h1,
body.is-article-detail .detail-content > .detail-meta,
body.is-about-page .detail-content > .detail-meta {
  display: none;
}

body.is-article-detail .detail-content,
body.is-about-page .detail-content {
  width: 900px;
  min-height: auto;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(2, 72, 48, .07);
}

body.is-about-page .detail-content {
  width: 900px;
}

.left-menu {
  background: #fff;
  box-shadow: 0 10px 28px rgba(2, 72, 48, .07);
}

.left-menu strong {
  display: block;
  height: 64px;
  line-height: 64px;
  padding: 0 30px;
  background: #10a957;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}

.left-menu a {
  display: block;
  height: 56px;
  line-height: 56px;
  padding: 0 30px;
  border-bottom: 1px solid #edf1ef;
  background: #fff;
  color: #333;
  font-size: 16px;
}

.left-menu a.active,
.left-menu a:hover {
  background: linear-gradient(90deg, #10a957, #19b779);
  color: #fff;
}

.breadcrumb {
  display: none;
}

.list-content,
.detail-content,
.account-content {
  min-width: 0;
  background: #fff;
  min-height: 620px;
  padding: 0 0 34px;
  box-shadow: 0 12px 32px rgba(2, 72, 48, .07);
}

.list-content h2,
.detail-content h1,
.account-content h2 {
  margin: 0 38px 20px;
  padding-top: 30px;
  color: #222;
  font-size: 26px;
  line-height: 1.35;
}

.list-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  margin: 0 38px 20px;
  padding: 18px 22px;
  border: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.055);
  transition: all .2s ease;
}

.list-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.085);
}

.list-row .thumb {
  height: 150px;
  background: url("/pc/images/167fd7d115ad476abf7905c60fee0d48.png") center / cover no-repeat;
}

.resource-thumb {
  position: relative;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0aa150, #20b764);
  color: #fff;
}

.resource-thumb::before,
.resource-thumb::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
}

.resource-thumb::before {
  width: 138px;
  height: 138px;
  right: -45px;
  bottom: -55px;
}

.resource-thumb::after {
  width: 84px;
  height: 84px;
  left: -26px;
  top: -28px;
}

.resource-thumb b {
  position: relative;
  z-index: 1;
  font-size: 28px;
  line-height: 1;
}

.resource-thumb em {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0;
  opacity: .9;
}

.germ-row h3 {
  color: #111;
}

.germ-search-box {
  margin: 0 0 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  box-shadow: none;
}

.germ-search-box .search-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
}

.germ-search-box .search-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
}

.germ-search-box .search-item span {
  color: #606266;
  font-size: 14px;
}

.germ-search-box input,
.germ-search-box select {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #dcdfe6;
  outline: none;
  background: #fff;
}

.germ-search-box select {
  color: #303133;
}

.multi-select {
  position: relative;
}

.multi-select-trigger {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0 34px 0 12px;
  border: 1px solid #dcdfe6;
  background: #fff;
  color: #606266;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multi-select-trigger::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 17px;
  border: 5px solid transparent;
  border-top-color: #909399;
}

.multi-select-panel {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: 44px;
  display: none;
  max-height: 220px;
  overflow-y: auto;
  padding: 8px 0;
  border: 1px solid #dcdfe6;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
}

.multi-select.open .multi-select-panel {
  display: block;
}

.multi-select-panel label {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  color: #606266;
  cursor: pointer;
}

.multi-select-panel label:hover {
  background: #f2faf6;
}

.multi-select-panel input {
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
}

.germ-search-box .search-actions {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #ebeef5;
}

.germ-search-box button,
.sort-bar button {
  height: 36px;
  margin-right: 10px;
  padding: 0 20px;
  border: 1px solid #079b4f;
  background: #fff;
  color: #079b4f;
  cursor: pointer;
}

.germ-search-box button:first-child,
.sort-bar button.active,
.sort-bar button:hover {
  background: #079b4f;
  color: #fff;
}

.germ-search-box .multi-select .multi-select-trigger,
.germ-search-box .multi-select .multi-select-trigger:first-child {
  margin-right: 0;
  border-color: #dcdfe6;
  background: #fff;
  color: #606266;
}

.applied-criteria {
  min-height: 0;
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid #d7efd8;
  border-radius: 6px;
  background: #f3fbf1;
  color: #303133;
  font-size: 14px;
}

.applied-criteria:empty {
  display: none;
}

.criteria-label {
  margin-right: 8px;
  color: #079b4f;
  font-weight: 700;
}

.applied-criteria .tag {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 3px 10px;
  border: 1px solid #b7e2cd;
  background: #f0fbf5;
  color: #079b4f;
}

.germ-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.germ-list-header strong {
  color: #303133;
  font-size: 18px;
}

.sort-bar {
  display: flex;
  align-items: center;
  color: #909399;
  font-size: 14px;
}

.germplasm-search-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 220px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  box-shadow: none;
  transition: all .2s ease;
}

.germplasm-search-card:hover {
  border-color: #2d8f58;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.germplasm-search-card .card-cover {
  width: 260px;
  height: 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e4e7ed;
  background: #f5f7fa;
  color: #909399;
  overflow: hidden;
}

.germplasm-search-card .card-cover span {
  font-size: 13px;
  font-weight: 400;
  padding: 0 18px;
  line-height: 1.6;
  text-align: center;
}

.germplasm-search-card .card-cover .no-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #8a96a3;
  background: linear-gradient(135deg, #f8fafc, #eef2f6);
}

.germplasm-search-card .card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.germplasm-search-card .card-cover em {
  margin-top: 10px;
  color: #606266;
  font-style: normal;
  font-size: 13px;
}

.germplasm-search-card .card-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
  align-content: start;
  padding: 20px;
}

.germplasm-search-card .card-field {
  min-width: 0;
  display: flex;
  align-items: baseline;
  font-size: 14px;
}

.germplasm-search-card .label {
  min-width: 90px;
  margin-right: 8px;
  color: #909399;
  flex-shrink: 0;
}

.germplasm-search-card .val {
  color: #303133;
  word-break: break-all;
}

.inner-banner {
  height: 160px;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: 0;
  margin-right: 0;
  transform: translateX(-50%);
  margin-bottom: 24px;
  padding: 46px 24px 0;
  background: url("/pc/images/3d722db9158944c6a16c75f332b33f3d.png") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

@media (max-width: 1200px) {
  .inner-banner {
    width: 100vw;
  }
}

.inner-banner h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.inner-banner p {
  margin: 0;
  opacity: .92;
}

.news-prototype-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
}

.news-cat {
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.055);
}

.news-cat strong {
  display: block;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ebeef5;
  color: #303133;
}

.news-cat a {
  display: block;
  padding: 10px 12px;
  color: #606266;
}

.news-cat a.active,
.news-cat a:hover {
  background: #ecf8f2;
  color: #079b4f;
  font-weight: 700;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-card-prototype {
  display: flex;
  min-height: 138px;
  padding: 20px;
  border-top: 4px solid #079b4f;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.055);
}

.news-card-prototype.border-olive {
  border-top-color: #a6935e;
}

.news-date {
  width: 78px;
  flex-shrink: 0;
  padding-right: 16px;
}

.news-date b,
.news-date em {
  display: block;
}

.news-date b {
  color: #303133;
  font-size: 20px;
}

.news-date em {
  color: #909399;
  font-style: normal;
  font-size: 12px;
}

.news-date i {
  display: block;
  height: 1px;
  margin-top: 8px;
  background: #e4e7ed;
}

.news-card-prototype h3 {
  margin: 0 0 8px;
  color: #303133;
  font-size: 15px;
  line-height: 1.45;
}

.news-card-prototype p {
  margin: 0;
  color: #606266;
  font-size: 13px;
  line-height: 1.55;
}

.news-row-list {
  display: grid;
  gap: 14px;
}

.news-row-prototype {
  display: flex;
  min-height: 108px;
  padding: 18px 20px;
  border-top: 4px solid #079b4f;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.055);
}

.news-row-prototype.border-olive {
  border-top-color: #a6935e;
}

.news-row-prototype h3 {
  margin: 0 0 8px;
  color: #303133;
  font-size: 16px;
  line-height: 1.45;
}

.news-row-prototype p {
  margin: 0;
  color: #606266;
  font-size: 14px;
  line-height: 1.65;
}

.pc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #606266;
}

.pc-pagination button {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #dcdfe6;
  background: #fff;
  color: #606266;
  cursor: pointer;
}

.pc-pagination button.active {
  border-color: #079b4f;
  background: #079b4f;
  color: #fff;
}

.pc-pagination button:disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}

.notice-prototype-list,
.download-prototype-list,
.research-prototype-list {
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.055);
}

.notice-prototype-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed #ebeef5;
}

.notice-prototype-row:last-child {
  border-bottom: 0;
}

.notice-prototype-row > span {
  width: 58px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #079b4f;
  color: #fff;
}

.notice-prototype-row b {
  font-size: 22px;
  line-height: 1;
}

.notice-prototype-row em {
  margin-top: 5px;
  font-style: normal;
  font-size: 12px;
}

.notice-prototype-row h3,
.research-prototype-row h3 {
  margin: 0 0 6px;
  color: #303133;
  font-size: 16px;
}

.notice-prototype-row p,
.research-prototype-row p {
  margin: 0;
  color: #909399;
  font-size: 13px;
}

.download-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 210px 1fr 150px 72px;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #ebeef5;
}

.download-row:last-child {
  border-bottom: 0;
}

.download-row .doc-title {
  overflow: hidden;
  color: #606266;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-row a {
  color: #079b4f;
}

.download-row em {
  color: #909399;
  font-style: normal;
  font-size: 13px;
}

.download-row button {
  height: 32px;
  border: 1px solid #079b4f;
  background: #fff;
  color: #079b4f;
}

.research-prototype-row {
  display: block;
  padding: 16px 0;
  border-bottom: 1px dashed #ebeef5;
}

.research-prototype-row:last-child {
  border-bottom: 0;
}

.research-prototype-row span {
  margin-left: 20px;
}

.partner-prototype-grid,
.service-prototype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-prototype-grid a,
.service-prototype-grid a {
  min-height: 124px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.055);
}

.partner-prototype-grid a {
  display: grid;
  grid-template-columns: 86px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 18px;
}

.partner-prototype-grid .partner-logo {
  grid-row: 1 / span 2;
  width: 86px;
  height: 86px;
}

.partner-prototype-grid b,
.service-prototype-grid b {
  color: #303133;
  font-size: 17px;
}

.partner-prototype-grid p,
.service-prototype-grid p {
  margin: 8px 0 0;
  color: #606266;
  line-height: 1.6;
}

.service-prototype-grid a {
  display: flex;
  gap: 14px;
}

.service-prototype-grid i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #079b4f;
  color: #fff;
  text-align: center;
  line-height: 42px;
  font-style: normal;
  font-size: 20px;
}

.list-row h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.list-row p {
  height: 52px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #667b76;
  line-height: 26px;
}

.list-row .meta,
.detail-meta {
  color: #999;
}

.list-row i {
  float: right;
  color: #999;
  font-style: normal;
}

.detail-meta {
  margin: 0 38px 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8eeee;
}

.detail-body {
  margin: 0 38px;
  color: #444;
  font-size: 16px;
}

body.is-article-detail .detail-body,
body.is-about-page .detail-body {
  margin: 0;
}

.detail-body table {
  width: 100%;
  border-collapse: collapse;
}

.detail-body td {
  border: 1px solid #e3ece8;
  padding: 12px 16px;
}

.detail-body td:first-child {
  background: #f2faf6;
  color: #245f49;
  font-weight: 700;
}

.germ-detail-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 32px;
  align-items: start;
  padding: 0 32px 34px;
}

.germ-detail-left {
  min-width: 0;
}

.germ-carousel {
  position: relative;
  height: 340px;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.germ-carousel > div {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fafafa;
  color: #909399;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.germ-carousel > div.active {
  position: relative;
  opacity: 1;
}

.germ-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.germ-carousel img + span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  margin: 0;
  padding: 7px 14px;
  border-radius: 3px;
  background: rgba(0, 0, 0, .58);
  color: #fff;
}

.germ-image-dots {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 14px;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 8px;
  background: transparent !important;
  opacity: 1 !important;
  pointer-events: auto;
}

.germ-image-dots i {
  width: 22px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
}

.germ-image-dots i.active {
  background: #079b4f;
}

.germ-carousel b {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.germ-carousel span {
  margin-top: 18px;
  font-size: 15px;
}

.apply-box {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  background: #fff;
}

.apply-box p {
  margin: 0 0 10px;
}

.apply-box span {
  color: #606266;
}

.apply-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0;
  flex-wrap: wrap;
}

.apply-line input {
  width: 120px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #dcdfe6;
}

.apply-line em {
  color: #606266;
  font-style: normal;
}

.apply-box button {
  width: 100%;
  height: 40px;
  border: 0;
  background: #079b4f;
  color: #fff;
  cursor: pointer;
}

#detailApplyMsg {
  min-height: 22px;
  margin-top: 10px;
  color: #079b4f;
  font-size: 14px;
}

#detailApplyMsg a {
  color: #079b4f;
  font-weight: 700;
}

.germ-detail-right {
  min-width: 0;
  padding: 20px;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  background: #fff;
}

.germ-detail-right h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #303133;
  font-size: 18px;
}

.germ-detail-right h3 i {
  width: 4px;
  height: 20px;
  background: #079b4f;
}

.detail-info-table {
  width: 100%;
  margin-bottom: 16px;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #e4e7ed;
  font-size: 14px;
}

.detail-info-table .field-label-col {
  width: 23%;
}

.detail-info-table .field-value-col {
  width: 27%;
}

.detail-info-table th,
.detail-info-table td {
  border: 1px solid #e4e7ed;
  height: 42px;
  padding: 0 12px;
  background: #fff;
  vertical-align: middle;
}

.detail-info-table th {
  height: 44px;
  background: #fff;
  color: #303133;
  text-align: center;
  font-weight: 700;
}

.detail-info-table .field-label {
  background: #f2faf6;
  color: #606266;
  text-align: right;
  font-weight: 400;
}

.detail-info-table tr td.field-label,
.detail-info-table tr td:nth-child(1),
.detail-info-table tr td:nth-child(3) {
  background: #f2faf6;
  color: #606266;
  text-align: right;
  font-weight: 400;
}

.detail-info-table .field-value {
  color: #303133;
}

.detail-info-table .image-value {
  height: 86px;
  padding: 8px 12px;
}

.detail-image-link {
  display: block;
  width: 100%;
  height: 70px;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f7fa;
}

.detail-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.detail-info-table .field-label span,
.detail-info-table .field-value span {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 42px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pc-tooltip {
  position: fixed;
  z-index: 9999;
  display: none;
  max-width: min(520px, calc(100vw - 24px));
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 4px;
  background: rgba(48, 49, 51, .96);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-all;
  pointer-events: none;
}

.pc-tooltip.show {
  display: block;
}

.float-tools {
  position: fixed;
  right: 18px;
  top: 285px;
  width: 76px;
  background: #cceee5;
  border: 1px solid rgba(0,141,112,.22);
  text-align: center;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.float-tools a,
.float-tools button {
  display: block;
  width: 100%;
  min-height: 66px;
  padding: 8px 8px 7px;
  border: 0;
  border-bottom: 1px solid rgba(0,141,112,.18);
  background: transparent;
  color: #087f67;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.float-tools span {
  display: block;
  width: 26px;
  height: 26px;
  line-height: 24px;
  margin: 0 auto 4px;
  border: 1px solid rgba(8,127,103,.35);
  border-radius: 50%;
  font-size: 15px;
}

.float-tools button {
  min-height: 34px;
  background: #1ea66d;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
}

.account-status {
  margin: 0 38px 20px;
  padding: 12px 16px;
  border-left: 4px solid #10a957;
  background: #eff8f3;
  color: #0b7e49;
}

.auth-page {
  min-height: calc(100vh - 238px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 20px;
  background: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.12)), url("/pc/images/login-building.jpg") center / cover no-repeat;
}

.auth-card {
  width: 440px;
  padding: 38px 40px 36px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  border-top: 4px solid #079b4f;
}

.reg-card {
  width: 520px;
}

.auth-card h2 {
  margin: 0 0 26px;
  color: #303133;
  font-size: 22px;
  text-align: center;
}

.login-tabs {
  display: flex;
  margin-bottom: 12px;
  border-bottom: 1px solid #e4e7ed;
}

.login-tabs button {
  flex: 1;
  height: 44px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: #fff;
  color: #909399;
  font-size: 15px;
  cursor: pointer;
}

.login-tabs button.active {
  border-bottom-color: #079b4f;
  color: #079b4f;
  font-weight: 700;
}

.auth-status {
  min-height: 22px;
  margin-bottom: 4px;
  color: #079b4f;
  font-size: 14px;
  text-align: center;
}

.auth-status:empty {
  display: none;
}

.wechat-placeholder {
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cdd8d3;
  background: #f8fbf9;
  color: #60706b;
}

.wechat-placeholder div {
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 8px solid #fff;
  background: repeating-linear-gradient(45deg, #0b7e6a 0 8px, #fff 8px 16px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  color: #fff;
  font-weight: 700;
}

.wechat-placeholder p {
  margin: 0;
}

#wechatMockLoginBtn {
  margin-top: 14px;
}

.auth-form input,
.auth-form select,
.inline-form input,
.inline-form select {
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
  padding: 0 13px;
  border: 1px solid #dcdfe6;
  outline: none;
}

.auth-form button,
.inline-form button {
  height: 44px;
  border: 0;
  background: #079b4f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.auth-form > button {
  width: 100%;
}

.form-link {
  display: block;
  margin: -2px 0 14px;
  color: #079b4f;
  font-size: 14px;
}

.auth-footer {
  margin-top: 22px;
  color: #909399;
  font-size: 14px;
  text-align: center;
}

.auth-footer a {
  color: #079b4f;
}

.code-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
}

.article-detail-box {
  padding: 32px;
  background: #fff;
}

.article-back {
  display: inline-block;
  height: 32px;
  line-height: 30px;
  margin-bottom: 20px;
  padding: 0 15px;
  border: 1px solid #dcdfe6;
  color: #606266;
  font-size: 14px;
}

.article-detail-box h2 {
  margin: 0 0 16px;
  color: #303133;
  font-size: 22px;
  line-height: 1.45;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebeef5;
  color: #909399;
  font-size: 14px;
}

.article-body {
  color: #303133;
  font-size: 15px;
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 12px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}

.module-detail-box {
  min-height: 360px;
}

.download-attachment-list {
  border: 1px solid #e4e7ed;
}

.download-attachment {
  display: grid;
  grid-template-columns: 1fr 86px;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid #ebeef5;
}

.download-attachment:last-child {
  border-bottom: 0;
}

.download-attachment b,
.download-attachment em {
  display: block;
}

.download-attachment b {
  color: #303133;
}

.download-attachment em {
  color: #909399;
  font-size: 13px;
  font-style: normal;
}

.download-attachment a,
.module-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  background: #079b4f;
  color: #fff;
}

.partner-detail-head,
.service-detail-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ebeef5;
}

.partner-logo,
.service-detail-head i {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #079b4f;
  font-weight: 700;
}

.partner-logo img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

.partner-detail-head .partner-logo img,
.partner-prototype-grid .partner-logo img,
.partner-home-grid .partner-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.service-detail-head i {
  border-radius: 50%;
  background: #079b4f;
  color: #fff;
  font-size: 36px;
  font-style: normal;
}

.partner-detail-head h2,
.service-detail-head h2 {
  margin: 0 0 8px;
  color: #303133;
  font-size: 24px;
}

.partner-detail-head p,
.service-detail-head p {
  margin: 0;
  color: #909399;
}

.module-detail-section {
  margin-bottom: 24px;
}

.module-detail-section h3 {
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 4px solid #079b4f;
  color: #303133;
  font-size: 18px;
}

.module-detail-section p {
  margin: 0;
  color: #606266;
  line-height: 1.9;
}

.module-detail-section ul {
  margin: 0;
  padding-left: 18px;
  color: #606266;
  line-height: 1.9;
}

.about-prototype .inner-banner {
  margin-bottom: 0;
}

.about-content-box {
  padding: 32px;
  background: #fff;
}

.about-content-box h2 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #079b4f;
  color: #303133;
  font-size: 20px;
}

.about-content-box h3 {
  margin: 24px 0 12px;
  color: #079b4f;
  font-size: 16px;
}

.about-content-box p,
.about-richtext {
  color: #606266;
  font-size: 15px;
  line-height: 1.9;
}

.about-content-box figure {
  margin: 20px 0;
  text-align: center;
}

.about-content-box img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.about-content-box figcaption {
  margin-top: 8px;
  color: #909399;
  font-size: 13px;
}

.about-contact {
  margin-top: 28px;
  padding: 20px 24px;
  background: #f5f7fa;
}

.about-contact b {
  display: block;
  margin-bottom: 12px;
  color: #303133;
}

.about-contact p {
  margin: 0 0 6px;
  font-size: 14px;
}

.reservation-list {
  margin-bottom: 16px;
  display: grid;
  gap: 14px;
}

.reservation-card {
  padding: 18px 20px;
  border: 1px solid #dbeee5;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

.reservation-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #d3e4dc;
}

.reservation-card-head h4 {
  margin: 0;
  color: #1f2d3d;
  font-size: 15px;
  font-weight: 400;
}

.reservation-card-head em {
  height: 24px;
  padding: 0 10px;
  background: #e7f5ee;
  color: #079b4f;
  font-size: 12px;
  font-style: normal;
  line-height: 24px;
}

.reservation-card-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 22px;
  padding: 14px 0;
}

.reservation-card-fields p {
  margin: 0;
  color: #303133;
  font-size: 12px;
  line-height: 1.5;
}

.reservation-card-fields span {
  color: #909399;
}

.reservation-card-fields i {
  color: #303133;
  font-style: normal;
}

.reservation-card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f2f5;
}

.reservation-card-actions label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #606266;
}

.reservation-card-actions input {
  width: 92px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid #dcdfe6;
}

.reservation-card-actions a,
.reservation-card-actions button {
  height: 34px;
  padding: 0 14px;
  border: 1px solid #079b4f;
  background: #fff;
  color: #079b4f;
  line-height: 32px;
  cursor: pointer;
}

.reservation-card-actions button {
  border-color: #dcdfe6;
  color: #606266;
}

.empty-line {
  margin: 0;
  padding: 14px;
  color: #909399;
}

.profile-page {
  padding: 32px 0 72px;
}

.profile-page .breadcrumb {
  margin-bottom: 18px;
}

.profile-notice {
  margin-bottom: 24px;
  padding: 15px 18px;
  border: 1px solid #f5dab1;
  border-radius: 6px;
  background: #fdf6ec;
  color: #606266;
}

.profile-notice strong {
  display: block;
  margin-bottom: 6px;
  color: #b5781f;
}

.profile-notice p {
  margin: 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
}

.profile-menu {
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.profile-menu a {
  display: block;
  height: 52px;
  line-height: 52px;
  padding: 0 22px;
  border-bottom: 1px solid #ebeef5;
  color: #606266;
}

.profile-menu a.active,
.profile-menu a:hover {
  background: #ecf8f2;
  color: #079b4f;
  font-weight: 700;
}

.profile-content {
  min-height: 620px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  box-shadow: none;
}

.profile-content h2,
.profile-section h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ebeef5;
  color: #303133;
}

.profile-panel > h2 {
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: 0;
}

.profile-panel > .account-status:empty {
  display: none;
}

.profile-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin-bottom: 22px;
}

.profile-info p,
.profile-account-row {
  margin: 0 0 14px;
}

.profile-info span,
.profile-account-row span {
  color: #909399;
}

.profile-info b,
.profile-account-row b {
  color: #303133;
}

.profile-account-row {
  grid-column: 1 / -1;
}

.profile-phone-btn {
  margin-left: 12px;
  border: 0;
  background: transparent;
  color: #079b4f;
  cursor: pointer;
}

.certification-box {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #ebeef5;
}

.certification-status {
  min-height: 24px;
  margin-bottom: 12px;
  color: #606266;
  font-size: 14px;
}

.certification-status b {
  color: #079b4f;
}

.certification-status p {
  margin: 8px 0 0;
  color: #f56c6c;
}

.certification-form {
  max-width: 520px;
}

.certification-form input {
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
  padding: 0 13px;
  border: 1px solid #dcdfe6;
  outline: none;
}

.cert-upload {
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 1px dashed #b7d9cb;
  background: #f6fbf9;
  color: #079b4f;
  cursor: pointer;
}

.cert-upload input {
  display: none;
}

.cert-upload-name {
  min-height: 22px;
  margin-bottom: 10px;
  color: #606266;
  font-size: 14px;
}

.cert-upload-name img {
  display: block;
  max-width: 220px;
  max-height: 140px;
  margin-top: 8px;
  border: 1px solid #e4e7ed;
  object-fit: contain;
}

.certification-form button {
  width: 100%;
  height: 44px;
  border: 0;
  background: #079b4f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.account-dialog {
  position: fixed;
  z-index: 6000;
  left: 0;
  right: 0;
  top: 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.account-dialog > div {
  min-width: 220px;
  max-width: 520px;
  padding: 13px 24px;
  background: rgba(0, 0, 0, .76);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

.account-dialog strong {
  font-weight: 400;
}

.profile-login-btn {
  display: inline-block;
  justify-self: start;
  width: auto;
  margin-top: 10px;
  padding: 9px 28px;
  background: #079b4f;
  color: #fff;
}

.modal-mask {
  position: fixed;
  z-index: 3200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .42);
}

.modal-card {
  position: relative;
  width: 460px;
  max-width: calc(100vw - 32px);
  padding: 28px 30px 30px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.modal-card h3 {
  margin: 0 0 20px;
  color: #303133;
  font-size: 20px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: transparent;
  color: #909399;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.phone-bind-form {
  display: block;
}

.phone-bind-message {
  min-height: 22px;
  margin: 4px 0 10px;
  color: #e5484d;
  font-size: 14px;
  line-height: 22px;
}

.profile-section {
  margin-top: 26px;
}

.profile-panel.profile-section {
  margin-top: 0;
}

.profile-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.profile-actions button,
.settings-box button {
  height: 36px;
  padding: 0 22px;
  border: 1px solid #079b4f;
  background: #079b4f;
  color: #fff;
  cursor: pointer;
}

.profile-actions button.plain {
  background: #fff;
  color: #079b4f;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr 140px 120px;
  gap: 12px;
  margin-bottom: 18px;
}

.quick-order-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ebeef5;
}

.contribution-tabs {
  display: flex;
  margin: 10px 0 22px;
  border-bottom: 1px solid #dcdfe6;
}

.contribution-tabs button {
  min-width: 128px;
  height: 50px;
  border: 1px solid #dcdfe6;
  border-bottom: 0;
  background: #fff;
  color: #303133;
  font-size: 16px;
  cursor: pointer;
}

.contribution-tabs button + button {
  border-left: 0;
}

.contribution-tabs button.active {
  color: #1683ff;
  background: #f7fbff;
}

.contribution-form {
  max-width: 100%;
}

.contribution-form.disabled .contribution-actions,
.contribution-form.disabled .contribution-item {
  display: none;
}

.contribution-org-row {
  display: grid;
  grid-template-columns: 120px minmax(300px, 600px) auto;
  align-items: center;
  gap: 22px;
  margin: 0 0 28px 48px;
}

.contribution-template-download {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #079b4f;
  border-radius: 4px;
  color: #079b4f;
  white-space: nowrap;
}

.contribution-org-row label {
  text-align: right;
  color: #303133;
  font-size: 15px;
}

.contribution-org-row input,
.contribution-item input {
  width: 100%;
  height: 48px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  padding: 0 20px;
  color: #303133;
  font-size: 14px;
  box-sizing: border-box;
}

.contribution-org-row input[readonly] {
  background: #f8fafc;
}

.contribution-cert-tip {
  margin: 0 0 28px 48px;
  padding: 18px 22px;
  border: 1px solid #f0d6a5;
  background: #fff8ea;
  color: #ad6b00;
  font-size: 14px;
}

.contribution-item {
  margin: 0 0 24px;
  padding: 28px 22px 34px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background: #fbfbfb;
}

.contribution-item h4 {
  margin: 0 0 18px;
  color: #101820;
  font-size: 18px;
}

.contribution-item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 28px;
}

.contribution-item-grid label {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.contribution-item-grid span {
  color: #303133;
  font-size: 15px;
  text-align: right;
}

.contribution-actions {
  display: flex;
  gap: 22px;
  margin: 24px 0 0 148px;
}

.contribution-actions button {
  height: 48px;
  min-width: 146px;
  border: 1px solid #00796b;
  border-radius: 4px;
  background: #00796b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.contribution-actions button.plain {
  background: #edfafa;
  color: #00796b;
  font-weight: 500;
}

.contribution-record-list {
  display: grid;
  gap: 24px;
}

.contribution-record-card {
  border: 1px solid #ebeef5;
  background: #fff;
  box-shadow: 0 4px 14px rgba(31, 45, 61, .04);
}

.contribution-record-head,
.contribution-record-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  color: #303133;
  font-size: 14px;
  background: #f8f8fd;
}

.contribution-record-head em {
  color: #606266;
  font-style: normal;
}

.contribution-record-head span {
  color: #079b4f;
}

.contribution-record-body {
  padding: 20px 22px 14px;
  border-top: 1px solid #f0f2f5;
}

.contribution-record-item {
  padding: 10px 0;
}

.contribution-record-item h4 {
  margin: 0 0 6px;
  color: #303133;
  font-size: 15px;
  font-weight: 500;
}

.contribution-record-item p {
  margin: 0;
  color: #909399;
  font-size: 14px;
}

.contribution-record-foot {
  gap: 18px;
  justify-content: space-between;
  background: #fff;
  border-top: 1px solid #ebeef5;
}

.contribution-record-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  white-space: nowrap;
}

.contribution-record-actions span,
.contribution-record-actions button {
  display: inline-flex !important;
  align-items: center;
}

.contribution-record-foot button {
  height: 30px;
  padding: 0 12px;
  border: 1px solid #00796b;
  border-radius: 3px;
  background: #fff;
  color: #00796b;
  cursor: pointer;
}

.contribution-cert-status.done {
  padding: 4px 10px;
  border-radius: 4px;
  background: #f0f9eb;
  color: #67c23a;
}

.contribution-cert-status.pending {
  padding: 4px 10px;
  border-radius: 4px;
  background: #fff7e8;
  color: #e6a23c;
}

.contribution-reject {
  margin: 16px 22px 0;
  padding: 14px 16px;
  background: #fff1f1;
  color: #7a2c2c;
}

.contribution-reject p {
  margin: 4px 0;
}

.contribution-cert-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, .45);
}

.contribution-cert-card {
  position: relative;
  width: min(900px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  padding: 34px 30px 24px;
  background: #fff;
  box-sizing: border-box;
}

.contribution-cert-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #606266;
  font-size: 28px;
  cursor: pointer;
}

.contribution-cert-preview {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 50px;
  box-sizing: border-box;
  color: #333;
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f0e8 100%);
  border: 3px double #8b7355;
}

.contribution-cert-preview h2 {
  margin: 0 0 8px;
  color: #5d4e37;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 8px;
  text-align: center;
}

.contribution-cert-preview .cert-subtitle {
  margin: 0 0 28px;
  color: #8b7355;
  font-size: 16px;
  text-align: center;
}

.contribution-cert-preview h3 {
  margin: 0 0 10px;
  color: #5d4e37;
  font-size: 15px;
}

.contribution-cert-preview section {
  margin-bottom: 20px;
}

.contribution-cert-preview table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.contribution-cert-preview th,
.contribution-cert-preview td {
  padding: 8px 12px;
  text-align: left;
  border: 1px solid #c4a574;
}

.contribution-cert-preview th {
  background: #ebe3d5;
}

.contribution-cert-stamp {
  margin-top: 40px;
  text-align: right;
}

.contribution-cert-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.contribution-cert-actions button {
  height: 36px;
  padding: 0 22px;
  border: 1px solid #00796b;
  background: #00796b;
  color: #fff;
  cursor: pointer;
}

.contribution-cert-actions button + button {
  background: #fff;
  color: #00796b;
}

.record-card {
  margin-bottom: 14px;
  border: 1px solid #e4e7ed;
  background: #fff;
}

.record-card > div:first-child {
  display: grid;
  grid-template-columns: 1fr 120px 180px;
  gap: 12px;
  padding: 12px 14px;
  background: #f8fbfa;
}

.record-card b,
.record-card span,
.record-card em {
  display: block;
}

.record-card span {
  color: #079b4f;
}

.record-card em {
  color: #909399;
  font-style: normal;
}

.record-card ul {
  margin: 0;
  padding: 0 14px 10px;
  list-style: none;
}

.record-card li {
  display: grid;
  grid-template-columns: 1fr 160px 70px;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px dashed #d3e4dc;
}

.record-card li strong {
  color: #079b4f;
  text-align: right;
}

.order-status-tabs {
  display: flex;
  margin-bottom: 22px;
  border-bottom: 1px solid #dcdfe6;
}

.order-status-tabs button {
  min-width: 128px;
  height: 50px;
  border: 1px solid #dcdfe6;
  border-bottom: 0;
  background: #fff;
  color: #303133;
  font-size: 16px;
  cursor: pointer;
}

.order-status-tabs button.active {
  color: #1683ff;
  background: #f7fbff;
}

.order-status-tabs em {
  margin-left: 6px;
  color: #909399;
  font-style: normal;
  font-size: 13px;
}

.order-list {
  display: grid;
  gap: 22px;
}

.order-card {
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: #f5f7fa;
  color: #34495e;
}

.order-card-head b {
  font-weight: 500;
}

.order-card-head em {
  color: #606266;
  font-style: normal;
}

.order-item-list {
  padding: 16px 18px;
}

.order-item-list.compact {
  padding: 18px 24px;
  border-top: 1px solid #ebeef5;
}

.order-germ-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid #ebeef5;
}

.order-germ-row.compact {
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  border-top: 0;
}

.order-germ-row.compact h4 {
  margin: 0 0 3px;
  font-size: 16px;
  font-weight: 500;
}

.order-germ-row.compact p {
  color: #7b8794;
  font-size: 14px;
}

.order-germ-row.compact .order-quantity-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 12px;
}

.order-quantity-summary span {
  display: flex;
  min-height: 54px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-left: 1px solid #ebeef5;
  box-sizing: border-box;
}

.order-quantity-summary em {
  color: #909399;
  font-size: 13px;
}

.order-quantity-summary b {
  color: #303133;
  font-size: 15px;
  font-weight: 500;
}

.order-germ-row:first-child {
  border-top: 0;
}

.order-germ-row h4 {
  margin: 0 0 6px;
  color: #303133;
  font-size: 16px;
}

.order-germ-row p {
  margin: 0;
  color: #909399;
}

.order-germ-row > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
}

.order-germ-row span {
  color: #303133;
  font-size: 14px;
}

.order-germ-row em {
  color: #909399;
  font-style: normal;
}

.order-card-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid #ebeef5;
}

.order-card-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  min-width: 0;
  gap: 10px;
}

.order-card-summary.completed {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.order-card-metric,
.order-card-statuses > span {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  background: #f8fafc;
  box-sizing: border-box;
}

.order-card-metric em {
  color: #909399;
  font-style: normal;
  font-size: 13px;
}

.order-card-metric b {
  color: #079b4f;
  font-size: 16px;
  font-weight: 600;
}

.order-card-statuses {
  display: contents;
}

.order-card-statuses > span {
  color: #909399;
  font-size: 13px;
}

.order-card-statuses b {
  color: #303133;
  font-weight: 500;
}

.order-detail-modal {
  width: 1080px;
  max-width: calc(100vw - 48px);
}

.order-detail-section {
  margin-top: 22px;
}

.order-detail-section h4 {
  margin: 0 0 12px;
  color: #303133;
  font-size: 18px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.order-detail-grid p {
  margin: 0;
  color: #606266;
}

.order-detail-grid span {
  display: inline-block;
  min-width: 110px;
  color: #909399;
}

.order-detail-grid b {
  color: #303133;
  font-weight: 400;
}

.order-detail-grid .feedback-upload-row {
  grid-column: 1 / -1;
}

.order-detail-grid .feedback-upload-row b {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.feedback-save-btn {
  height: 34px;
  padding: 0 14px;
  border: 1px solid #079b4f;
  border-radius: 4px;
  background: #079b4f;
  color: #fff;
  cursor: pointer;
}

.order-detail-grid a {
  color: #00796b;
}

.proof-upload {
  display: flex;
  width: 220px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px dashed #b7d9cb;
  background: #f6fbf9;
  color: #079b4f;
  cursor: pointer;
}

.proof-upload.compact {
  width: 136px;
  height: 34px;
  margin-top: 0;
}

.proof-upload input {
  display: none;
}

.proof-upload-status {
  min-height: 22px;
  margin-top: 8px;
  color: #606266;
  font-size: 14px;
}

.feedback-upload-row .proof-upload-status {
  margin-top: 0;
}

.order-status-tag {
  padding: 4px 10px;
  border-radius: 4px;
  font-style: normal;
}

.order-status-tag.pending {
  background: #fff7e8;
  color: #e6a23c;
}

.order-status-tag.done {
  background: #f0f9eb;
  color: #67c23a;
}

.order-status-tag.reject {
  background: #fef0f0;
  color: #f56c6c;
}

.feedback-download-btn {
  display: inline-flex;
  height: 36px;
  min-width: 96px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid #079b4f;
  border-radius: 4px;
  color: #079b4f;
  box-sizing: border-box;
}

.order-detail-table {
  min-width: 1480px;
  width: 100%;
  border-collapse: collapse;
}

.order-detail-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.order-detail-table th,
.order-detail-table td {
  padding: 12px 14px;
  border: 1px solid #e4e7ed;
  text-align: left;
}

.order-detail-table th {
  background: #f8fafc;
  color: #606266;
}

.order-germ-detail-link {
  color: #00796b;
  white-space: nowrap;
}

.order-germ-detail-link.disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}

.order-detail-actions {
  margin-top: 28px;
  text-align: right;
}

.order-detail-actions button {
  height: 42px;
  padding: 0 30px;
  border: 1px solid #00796b;
  border-radius: 4px;
  background: #fff;
  color: #00796b;
  cursor: pointer;
}

.order-card-foot i {
  padding: 3px 10px;
  border-radius: 4px;
  font-style: normal;
}

@media (max-width: 900px) {
  .order-germ-row.compact {
    grid-template-columns: 1fr;
  }

  .order-germ-row.compact .order-quantity-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-quantity-summary span:first-child {
    border-left: 0;
  }

  .order-card-summary {
    grid-template-columns: 1fr 1fr;
  }

  .order-card-summary.completed {
    grid-template-columns: 1fr 1fr;
  }
}

.order-card-foot i.pending {
  background: #fff7e8;
  color: #e6a23c;
}

.order-card-foot i.done {
  background: #f0f9eb;
  color: #67c23a;
}

.order-card-foot i.reject {
  background: #fef0f0;
  color: #f56c6c;
}

.order-card-foot button {
  height: 34px;
  padding: 0 16px;
  border: 1px solid #079b4f;
  background: #fff;
  color: #079b4f;
  cursor: pointer;
}

.settings-box {
  padding: 18px;
  border: 1px solid #e4e7ed;
  background: #f8fbfa;
}

.settings-box p {
  margin: 0 0 14px;
  color: #606266;
}

#myOrders p,
#myContributions p {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px dashed #d3e4dc;
}

#myOrders b,
#myOrders span,
#myOrders em,
#myContributions b,
#myContributions span,
#myContributions em {
  display: block;
}

#myOrders span,
#myContributions span {
  color: #079b4f;
}

#myOrders em,
#myContributions em {
  color: #909399;
  font-style: normal;
}

@media (max-width: 900px) {
  .wrap {
    width: auto;
    min-width: 0;
    margin: 0 15px;
  }

  .topbar {
    display: none;
  }

  .brand-row {
    height: 72px;
  }

  .logo {
    width: 280px;
    height: auto;
  }

  .nav-inner {
    justify-content: flex-start;
    overflow: auto;
  }

  .nav-inner a {
    padding: 0 18px;
    white-space: nowrap;
  }

  .hero {
    height: auto;
  }

  .hero-inner {
    width: auto;
    height: auto;
    min-height: 260px;
    margin: 0 15px;
    padding: 30px 0 52px;
  }

  .hero-inner p,
  .hero-search {
    width: 100%;
  }

  #heroTitle {
    font-size: 24px;
  }

  #heroSummary {
    font-size: 18px;
  }

  .hero-search {
    grid-template-columns: 1fr 88px;
  }

  .module-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .home-grid,
  .quick-zone,
  .partner-zone,
  .resource-grid,
  .list-page,
  .detail-page,
  .account-page {
    display: block;
    width: auto;
    min-width: 0;
  }

  .feature-news {
    display: block;
    height: auto;
  }

  .feature-news .pic {
    height: 190px;
  }

  .germplasm-grid,
  .stats,
  .home-download-list,
  .home-service-news-list {
    grid-template-columns: 1fr;
  }

  .side-column,
  .resource-grid > div + div {
    margin-top: 24px;
  }

  .list-row {
    display: block;
  }

  .list-row .thumb {
    margin-bottom: 16px;
  }

  .germplasm-search-card {
    grid-template-columns: 1fr;
  }

  .germplasm-search-card .card-cover {
    width: 100%;
    height: 220px;
    border-right: 0;
    border-bottom: 1px solid #e4e7ed;
  }

  .account-grid,
  .account-records {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }

  .contribution-org-row,
  .contribution-actions {
    margin-left: 0;
  }

  .contribution-org-row,
  .contribution-item-grid,
  .contribution-item-grid label {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contribution-org-row label,
  .contribution-item-grid span {
    text-align: left;
  }

  .contribution-record-head,
  .contribution-record-foot {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contribution-record-head em {
    display: inline;
    margin-top: 8px;
  }

  .contribution-record-actions {
    flex-wrap: wrap;
  }

  .footer-inner {
    display: block;
    padding: 28px 0;
  }

  .footer img {
    display: none;
  }
}
