html,
body {
  background-color: #F8F9FA;
}

.page-section {
  margin-bottom: 30px;
}
.page-section .main {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header,
.page-footer {
  background-color: #007E37;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 14px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.nav-list .item {
  margin-right: 20px;
  color: #fff;
  white-space: nowrap;
  padding: 10px;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.about .right {
  white-space: pre-line;
  min-width: 160px;
  margin-left: 10px;
}

.site-header {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}
.site-header .left .logo img {
  height: 60px;
}
.site-header .left .title {
  margin-left: 16px;
}
.site-header .right {
  margin-left: 16px;
}
.site-header .right .search-input {
  display: flex;
  align-items: center;
  border-radius: 24px 24px 24px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}
.site-header .right .search-input input {
  background-color: transparent;
  border: unset;
  padding-left: 16px;
  color: #fff;
}
.site-header .right .search-input input ::-moz-placeholder {
  color: #fff;
}
.site-header .right .search-input input ::placeholder {
  color: #fff;
}
.site-header .right .search-input .btn {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px 24px 24px 24px;
  border: unset;
  margin: 2px;
}
.site-header .right .search-input .btn img {
  width: 19px;
  padding: 2px 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
  flex-wrap: wrap;
}
.site-nav .item {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  margin-bottom: 8px;
  position: relative;
  color: #fff;
  white-space: nowrap;
}
.site-nav .item a {
  color: #fff;
  padding: 12px;
}
.site-nav .item .children {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #00ac4b;
  z-index: 999999;
  width: 160px;
  font-size: 16px;
}
.site-nav .item .children a {
  display: block;
  line-height: 1.2;
}
.site-nav .item:hover .children {
  display: block;
}
.site-nav .item.current {
  border-color: #fff;
}

.index-slide {
  position: relative;
}
.index-slide .slide-bg {
  background-image: url("/assets/addons/tenderagent/images/index-slide-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.index-slide .main {
  height: 320px;
  position: relative;
}
.index-slide .slide-main {
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.site-panel {
  background-color: #fff;
}
.site-panel > .header {
  padding: 20px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-panel > .header .left {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.site-panel > .header .left .title {
  color: #007E37;
  font-size: 20px;
  position: relative;
  padding-left: 12px;
}
.site-panel > .header .left .title::before {
  content: " ";
  background-color: #007E37;
  display: inline-block;
  width: 3px;
  height: 80%;
  position: absolute;
  left: 0;
  top: 10%;
}
.site-panel > .header .left .plus {
  color: #999999;
  font-size: 14px;
  margin-left: 12px;
}
.site-panel > .header .left .plus i {
  font-size: 14px;
}
.site-panel .body {
  padding: 10px 20px;
  min-height: 244px;
}
.site-panel .body .post-list .post-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-panel .body .post-list .post-item .title {
  margin-left: 12px;
  line-height: 48px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-panel .body .post-list .post-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: calc((100% - 6px) / 2);
  background-color: #007E37;
  border-radius: 6px;
}
.site-panel .body .post-list .post-item:not(:last-child) {
  border-bottom: 1px dotted #D2D2D2;
}
.site-panel .body .post-list .post-item .time {
  color: #999999;
  font-size: 16px;
  white-space: nowrap;
}

.tag-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.tag-list .tag-item {
  color: #999999;
  font-size: 14px;
  line-height: 16px;
  border-radius: 20px;
  border: 1px solid #D2D2D2;
  margin-left: 16px;
  padding: 3px 9px;
}
.tag-list .tag-item.current {
  background-color: #007E37;
  border-color: #007E37;
  color: #fff;
}

.login-item {
  margin-bottom: 12px;
  display: block;
}
.login-item button {
  width: 100%;
  border-radius: 4px 4px 4px 4px;
  background: rgba(0, 126, 55, 0.02);
  border: 1px solid #007E37;
}
.login-item button.current {
  background-color: #007E37;
}
.login-item button.current .main .info .title {
  color: #fff;
}
.login-item button.current .main .info .desc {
  color: rgba(255, 255, 255, 0.6);
}
.login-item button .main {
  width: 80%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 10px;
}
.login-item button .main img {
  width: 40px;
  height: 40px;
}
.login-item button .main .info {
  margin-left: 8px;
}
.login-item button .main .info .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: #007E37;
}
.login-item button .main .info .desc {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 126, 55, 0.6);
  line-height: 16px;
}

.login-jump {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #007E37;
  text-align: center;
}
.login-jump img {
  width: 24px;
  height: 24px;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #007E37;
  margin: 12px 0;
}
.page-nav img {
  width: 20px;
  height: 20px;
}
.page-nav .item {
  margin: 3px;
}

.plan-menu {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.plan-menu .header {
  text-align: center;
  background: #007E37;
  font-size: 26px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 80px;
}
.plan-menu .body {
  min-height: 300px;
  margin-top: 18px;
}
.plan-menu .body .item {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 38px;
  padding: 0 18px;
  position: relative;
  display: block;
}
.plan-menu .body .item.current {
  color: #007E37;
}
.plan-menu .body .item.current::before {
  content: " ";
  display: inline-block;
  width: 3px;
  background-color: #007E37;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.post-container .title {
  text-align: center;
  font-size: 20px;
}
.post-container .info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-container .info .item {
  margin: 16px 30px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 16px;
  white-space: nowrap;
}
.post-container .content {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  font-family: Source Han Serif CN-Regular, Source Han Serif CN;
  white-space: pre-line;
  word-wrap: break-word;
}