@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1000px) {
  body {
    background-color: #f1f1f1;
    margin-bottom: 51px;
  }
}

a {
  text-decoration: none;
}

.m_show {
  display: none;
}
@media (max-width: 1000px) {
  .m_show {
    display: block;
  }
}

.gotop {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 80px;
  background-color: #5fb04f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 24px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4666666667);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.4666666667);
  border-radius: 100%;
  font-weight: 900;
  color: #FFF;
  z-index: 999;
}
.gotop span {
  position: relative;
  top: 2px;
}
.gotop:focus, .gotop:hover {
  color: #fff;
  text-decoration: none;
}

.page_title {
  text-align: center;
  position: relative;
}
.page_title::after {
  content: "";
  display: block;
  width: 75px;
  height: 4px;
  background-color: #4A9F38;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.index_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.index_table tr {
  margin-bottom: 10px;
}
.index_table tr th {
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
}
.index_table tr th.th_left {
  text-align: left;
}
.index_table tr td {
  text-align: center;
  padding: 12px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #266818;
}
.index_table tr td:first-child {
  border-left: 1px solid #eee;
  border-radius: 12px 0 0 12px;
}
.index_table tr td:last-child {
  border-right: 1px solid #eee;
  border-radius: 0 12px 12px 0;
}
.index_table tr td.write_td, .index_table tr td.adds_td {
  text-align: left;
}
.index_table tr td.adds_td span {
  display: block;
}
.index_table tr td .write_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index_table tr td .write_item .write_title {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  text-align: left;
}
.index_table tr td .write_item .write_more {
  padding: 4px 24px;
  background-color: rgb(14, 154, 89);
  border-radius: 200px;
  display: block;
  color: #fff;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.index_table tr td .write_item .write_more::after {
  content: ">";
  display: inline-block;
  margin-left: 5px;
  position: relative;
  left: 10px;
}
.index_table tr td .write_item .write_more:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.index_table tr td .view_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index_table tr td .view_num {
  color: #999;
  width: 50%;
  text-align: left;
}
.index_table tr td .view_num .glyphicon {
  color: #999;
  margin-right: 10px;
}
.index_table tr td .msg_num {
  width: 50%;
  color: #999;
  text-align: left;
  padding: 0 0 0 5px;
}
.index_table tr td .msg_num .glyphicon {
  color: #999;
  margin-right: 10px;
}
.index_table tr td.m_td_title {
  display: none;
}
.index_table tr td.adddate_td span {
  margin: 0;
  display: block;
}
.index_table tr td.view_td {
  min-width: 120px;
}
.index_table tr:nth-child(odd) td {
  background-color: #f1f1f1;
}
.index_table tr:hover td {
  background-color: #e8fae4;
}
@media (max-width: 1000px) {
  .index_table tr:hover td {
    background-color: transparent;
  }
}
@media (max-width: 1000px) {
  .index_table thead {
    display: none;
  }
  .index_table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    border-radius: 12px;
    padding: 12px;
  }
  .index_table tr:nth-child(odd) td {
    background-color: #fff;
  }
  .index_table tr td {
    font-size: 14px;
    width: 50%;
    padding: 6px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .index_table tr td:first-child, .index_table tr td.date_td, .index_table tr td.ceryear_td {
    display: none;
  }
  .index_table tr td.write_td {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index_table tr td.write_td .write {
    width: 100%;
  }
  .index_table tr td.write_td .write .write_more {
    white-space: nowrap;
  }
  .index_table tr td.adddate_td, .index_table tr td.adds_td {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    white-space: nowrap;
  }
  .index_table tr td.adddate_td span, .index_table tr td.adds_td span {
    margin-right: 5px;
  }
  .index_table tr td.adddate_td br, .index_table tr td.adds_td br {
    display: none;
  }
  .index_table tr td.type_td {
    width: 25%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .index_table tr td.name_td {
    width: 25%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .index_table tr td.view_td {
    min-width: 0;
  }
  .index_table tr td.view_td .view_item {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .index_table tr td.view_td .view_item .view_num {
    padding: 0;
    margin-right: 10px;
  }
  .index_table tr td:last-child {
    border: 0;
    border-radius: 0;
    color: #aaa;
    font-size: 12px;
  }
  .index_table tr td.order_0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .index_table tr td.order_1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .index_table tr td.order_2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .index_table tr td.order_3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .index_table tr td.order_4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .index_table tr td.order_5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .index_table tr td.order_6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .index_table tr td.order_7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .index_table tr td.order_8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .index_table tr td.order_9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .index_table tr td.order_10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
.container::after, .container::before {
  display: none;
}

.m_none {
  display: unset;
}
@media (max-width: 1000px) {
  .m_none {
    display: none;
  }
}

header {
  background: -webkit-gradient(linear, left top, right top, from(#00A657), to(#74c065));
  background: linear-gradient(90deg, #00A657, #74c065);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 0 0 #dbdbdb;
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 0 0 #dbdbdb;
}
@media (max-width: 1000px) {
  header {
    position: fixed;
    z-index: 99;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  header .container {
    width: auto;
    margin: 0 110px 0 180px;
  }
}
header .header {
  width: 100%;
  position: relative;
  padding: 10px 0;
}
header .header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  header .header .container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
header .header .hanberger {
  display: none;
}
@media (max-width: 1000px) {
  header .header .hanberger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }
  header .header .hanberger .bar {
    width: 25px;
    height: 2px;
    background: #fff;
    -webkit-box-shadow: 0 -8px 0 #fff, 0 8px 0 #fff;
            box-shadow: 0 -8px 0 #fff, 0 8px 0 #fff;
  }
}
header .header .logout {
  color: #fff;
  font-weight: 600;
}
header .header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}
header .header .logo a {
  color: inherit;
  text-decoration: none;
}
header .header .logo a:hover, header .header .logo a:focus {
  color: inherit;
}
header .header .logo img {
  height: 65px;
  margin-right: 10px;
}
header .header .logo span {
  color: #FFF100;
}
@media (max-width: 1000px) {
  header .header .logo {
    font-size: 22px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header .header .logo img {
    height: 32px;
    margin-right: 5px;
  }
}
@media (max-width: 1000px) and (max-width: 350px) {
  header .header .logo {
    font-size: 17px;
  }
}
header .header ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
header .header ul li {
  padding: 4px 12px;
  color: #fff;
}
header .header ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
header .header .header-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
header .header .header-link ul {
  margin-bottom: 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header .header-link ul li {
  padding: 4px 5px;
  color: #fff;
}
header .header .header-link img {
  width: 35px;
}
header .header .header-link::after {
  position: absolute;
  width: 120%;
  left: -20px;
  height: 100%;
  background-color: #fff;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  z-index: -1;
}
@media (max-width: 1000px) {
  header .header .header-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 4px 5px;
    background: -webkit-gradient(linear, left top, right top, from(#00A657), to(#74c065));
    background: linear-gradient(90deg, #00A657, #74c065);
  }
  header .header .header-link ul li.lineaddf {
    display: none;
  }
}
header .header .lineaddf {
  position: relative;
  padding: 0px 30px;
  margin-left: 10px;
}
header .header .lineaddf .addf {
  width: auto;
  height: 65px;
  position: relative;
  z-index: 1;
}
header .header .lineaddf span {
  display: none;
}
header .header .lineaddf::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% + 21px);
  top: -10px;
  left: 0;
  z-index: 0;
  background-color: #fff;
}
@media (max-width: 1000px) {
  header .header .lineaddf {
    position: fixed;
    bottom: 11px;
    left: 5px;
    z-index: 2;
    padding: 0px 10px;
  }
  header .header .lineaddf span {
    display: inline-block;
    margin-left: 15px;
    color: #fff;
    position: relative;
    top: 4px;
  }
}
@media (max-width: 1000px) and (max-width: 340px) {
  header .header .lineaddf span {
    display: none;
  }
}
@media (max-width: 1000px) {
  header .header .lineaddf .addf {
    top: 5px;
    height: 40px;
  }
  header .header .lineaddf::after {
    top: 0px;
    width: calc(100% - 75px);
    height: calc(100% + 11px);
  }
}
@media (max-width: 1000px) and (max-width: 340px) {
  header .header .lineaddf::after {
    width: 100%;
  }
}
header .hader_bottom ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
header .hader_bottom ul li {
  padding: 16px 16px 0;
  color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .hader_bottom ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
header .hader_bottom ul li::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#007b40), to(#5fb04f));
  background: linear-gradient(90deg, #007b40, #5fb04f);
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
}
header .hader_bottom ul li:hover a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .hader_bottom ul li:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}
@media (max-width: 1200px) {
  header .hader_bottom ul li {
    padding: 4px;
    white-space: nowrap;
  }
}
@media (max-width: 1000px) {
  header .hader_bottom {
    position: fixed;
    top: 50px;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: -webkit-gradient(linear, left top, right top, from(#00A657), to(#74c065));
    background: linear-gradient(90deg, #00A657, #74c065);
    transition: 0.3s;
  }
  header .hader_bottom ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .hader_bottom ul li {
    padding: 20px;
    border-bottom: 1px solid #74c065;
  }
  header .hader_bottom ul li:last-child {
    border-bottom: 0px solid #74c065;
  }
  header .hader_bottom ul li::after {
    width: 0%;
    height: 100%;
    right: 0;
    left: auto;
    bottom: 0;
    z-index: -1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: -webkit-gradient(linear, left top, right top, from(#007b40), to(#5fb04f));
    background: linear-gradient(90deg, #007b40, #5fb04f);
  }
  header .hader_bottom ul li:hover a {
    -webkit-transform: unset;
            transform: unset;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .hader_bottom ul li:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    bottom: 0;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  header .hader_bottom.act {
    width: 80vw;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.page_wrapper {
  min-height: calc(100vh - 219px);
  padding: 50px 0 0;
}
@media (max-width: 1000px) {
  .page_wrapper {
    min-height: calc(100vh - 143px);
  }
}
.page_wrapper .m_search_btn {
  display: none;
}
@media (max-width: 1000px) {
  .page_wrapper .m_search_btn {
    text-align: center;
    display: block;
    border-radius: 4px;
    border: 1px solid #eee;
    padding: 12px;
  }
}
.page_wrapper .top_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_wrapper .top_info .the_list_edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0 15px 15px;
  width: 40%;
  font-size: 18px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.page_wrapper .top_info .the_list_edit .btn {
  width: 49%;
  margin: 0 0.5%;
}
.page_wrapper .top_info .the_list_edit .btn i {
  margin-right: 8px;
}
@media (max-width: 1000px) {
  .page_wrapper .top_info .the_list_edit {
    padding: 0;
  }
}
.page_wrapper .top_info .search-bar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  overflow: hidden;
}
.page_wrapper .top_info .search-bar .search_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f1f1f1;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  margin-right: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page_wrapper .top_info .search-bar .search_info i {
  margin-left: 5px;
}
@media (max-width: 1000px) {
  .page_wrapper .top_info .search-bar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page_wrapper .top_info .search-bar .search_info {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    margin-bottom: 10px;
  }
  .page_wrapper .top_info .search-bar .search_info i {
    display: block;
  }
  .page_wrapper .top_info .search-bar .search_btn, .page_wrapper .top_info .search-bar .search_clean {
    width: 23%;
    margin: 0 0.5%;
  }
}
@media (max-width: 400px) {
  .page_wrapper .top_info .search-bar i {
    display: none;
  }
}
.page_wrapper .top_info .search-bar input[type=text] {
  padding: 7px 12px;
  min-width: 200px;
  width: 98%;
  background: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page_wrapper .top_info .search-bar .search_select {
  padding: 6px 0px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 1%;
  width: 17%;
  border-radius: 0;
  border: 0;
  border-right: 1px solid #c0c0c0;
  background: none;
  min-width: 76px;
}
.page_wrapper .top_info .search-bar button {
  padding: 6px 5px;
  margin: 0 4px;
  border-radius: 4px;
  min-width: 65px;
  width: 8%;
}
.page_wrapper .top_info .search-bar button i {
  margin-right: 5px;
}
@media (max-width: 1000px) {
  .page_wrapper .top_info .search-bar {
    margin: 12px 0;
  }
  .page_wrapper .top_info .search-bar input[type=text] {
    padding: 7px 5px;
    min-width: auto;
    font-size: 17px;
    width: 48%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.page_wrapper .top_info .btn {
  margin-right: 1%;
  width: 48%;
}
@media (max-width: 1000px) {
  .page_wrapper .top_info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page_wrapper .top_info .search-bar {
    width: 100%;
  }
  .page_wrapper .top_info .the_list_edit {
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .page_wrapper .container {
    width: auto;
    margin: 0 60px;
  }
}
.page_wrapper .page-tab-fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page_wrapper .page-tab-fixed p {
  margin: 0;
  margin-right: 10px;
  color: #999;
}
.page_wrapper .page-tab-fixed .page-tab {
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_wrapper .page-tab-fixed .page-tab a {
  display: inline-block;
  padding: 7px;
  margin-right: 5px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  text-align: center;
  -webkit-box-shadow: 0 0 5px #d7d7d7;
          box-shadow: 0 0 5px #d7d7d7;
  text-decoration: none;
  color: #000;
}
.page_wrapper .page-tab-fixed .page-tab a:hover {
  background-color: #daf8d4;
}
.page_wrapper .page-tab-fixed .page-tab a.nowpage {
  color: #fff;
  background-color: #4A9F38;
}
@media (max-width: 1000px) {
  .page_wrapper .page-tab-fixed .page-tab {
    margin: 10px 0;
  }
}

footer {
  background-color: #333140;
  padding-top: 1%;
}
footer ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px;
}
footer ul li {
  border-right: 1px solid #999;
  padding: 0px 12px;
}
footer ul li a {
  color: #fff;
}
footer ul li a:hover {
  color: #fff;
  text-decoration: none;
}
footer ul li:last-child {
  border: 0;
}
@media (max-width: 1000px) {
  footer ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 12px;
  }
  footer ul li {
    border: 0;
    border-bottom: 1px solid #999;
    padding: 4px 4px;
  }
  footer ul li:last-child {
    display: none;
  }
}
@media (max-width: 340px) {
  footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .copyright {
  color: #999;
  padding: 0 0 12px 0;
  text-align: center;
}

.login_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 400px;
  margin: auto;
  padding-top: 50px;
}
@media (max-width: 1000px) {
  .login_area {
    padding-top: 30px;
  }
}
.login_area .account_box, .login_area .password_box {
  position: relative;
}
.login_area .account_box input[type=text], .login_area .account_box input[type=password], .login_area .password_box input[type=text], .login_area .password_box input[type=password] {
  padding: 12px 50px 12px 40px;
  margin-bottom: 20px;
  width: 100%;
  font-size: 17px;
}
.login_area .account_box span, .login_area .password_box span {
  position: absolute;
  left: 10px;
  top: 10px;
}
.login_area .account_box span img, .login_area .password_box span img {
  width: 20px;
  position: relative;
  top: -2px;
}
.login_area .account_box .show_psw, .login_area .password_box .show_psw {
  position: absolute;
  right: 10px;
  top: 10px;
}
.login_area input[type=text], .login_area input[type=password] {
  padding: 12px 20px;
  margin-bottom: 20px;
}
.login_area .login_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.login_area .login_btn {
  padding: 12px;
  background: -webkit-gradient(linear, left top, right top, from(#00A657), to(#74c065));
  background: linear-gradient(90deg, #00A657, #74c065);
  color: #fff;
  border: 1px solid #4A9F38;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
}
.login_area .login_btn span {
  position: relative;
  z-index: 1;
}
.login_area .login_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  left: 0%;
  top: 0%;
  background: -webkit-gradient(linear, left top, right top, from(#007b40), to(transparent));
  background: linear-gradient(90deg, #007b40, transparent);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 0;
}
.login_area .login_btn:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.login_area .login_btn:hover::after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.login_area .signup_text {
  margin-top: 20px;
  padding: 12px;
  text-align: center;
  background: #eee;
}
.login_area .signup_text p {
  margin: 0;
}
@media (max-width: 1000px) {
  .login_area .signup_text {
    background: #fff;
  }
}

.sign_area {
  max-width: 900px;
  margin: auto;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 50px;
}
@media (max-width: 1000px) {
  .sign_area {
    padding-top: 30px;
  }
}
.sign_area .sign_item {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
}
.sign_area .sign_item span {
  margin-bottom: 5px;
}
.sign_area .sign_item input[type=text], .sign_area .sign_item input[type=password] {
  padding: 12px 5px;
  margin-bottom: 20px;
  font-size: 16px;
}
.sign_area .sign_item select {
  padding: 9px 5px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}
.sign_area .sign_item:nth-child(odd) {
  margin-right: 1%;
}
@media (max-width: 1000px) {
  .sign_area .sign_item {
    width: 100%;
    margin-right: 0;
  }
  .sign_area .sign_item:nth-child(odd) {
    margin-right: 0;
  }
}
.sign_area .sign_btnbox {
  margin-top: 20px;
  width: 100%;
}
.sign_area .sign_btnbox .signup_btn {
  padding: 12px;
  background: -webkit-gradient(linear, left top, right top, from(#00A657), to(#74c065));
  background: linear-gradient(90deg, #00A657, #74c065);
  color: #fff;
  border: 1px solid #4A9F38;
  width: 50%;
  position: relative;
}
.sign_area .sign_btnbox .signup_btn span {
  position: relative;
  z-index: 1;
}
.sign_area .sign_btnbox .signup_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  left: 0%;
  top: 0%;
  background: -webkit-gradient(linear, left top, right top, from(#007b40), to(transparent));
  background: linear-gradient(90deg, #007b40, transparent);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 0;
}
.sign_area .sign_btnbox .signup_btn:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.sign_area .sign_btnbox .signup_btn:hover::after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.cert_other {
  text-align: center;
}
.cert_other .bar {
  position: relative;
}
.cert_other .bar span {
  margin: auto;
  color: #999;
  z-index: 1;
  background-color: #fff;
  padding: 20px;
}
.cert_other .bar::after {
  content: "";
  width: 100%;
  height: 1px;
  max-width: 900px;
  background-color: #999;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.cert_other .cert_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 40px;
}
.cert_other .cert_box .cert_item {
  width: 50px;
  position: relative;
  margin: 0 10px;
}
.cert_other .cert_box .cert_item a img {
  width: 100%;
}
.cert_other .cert_box .cert_item.act::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.cert_other .cert_box .cert_item.act::after {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  content: "已認證";
  font-size: 12px;
  border-radius: 200px;
  background-color: #00A657;
  color: #fff;
  padding: 0 2px;
  border: 1px solid #fff;
}

.gomsg {
  background-color: #f6f7f6;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
}
.gomsg .gomsg_title {
  display: block;
  padding-bottom: 10px;
}
.gomsg .gomsg_title a {
  color: #266818;
  font-size: 18px;
  text-decoration: none;
}
.gomsg .gomsg_box {
  border-top: 1px solid #888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gomsg .gomsg_box .tip {
  width: 100%;
  color: red;
  margin: 5px 0;
}
.gomsg .gomsg_box input[type=text] {
  width: 78%;
  margin-right: 2%;
}
.gomsg .gomsg_box .gomsg_btn {
  padding: 12px;
  background: -webkit-gradient(linear, left top, right top, from(#00A657), to(#74c065));
  background: linear-gradient(90deg, #00A657, #74c065);
  color: #fff;
  border: 1px solid #4A9F38;
  width: 20%;
  position: relative;
}
.gomsg .gomsg_box .gomsg_btn span {
  position: relative;
  z-index: 1;
}
.gomsg .gomsg_box .gomsg_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  left: 0%;
  top: 0%;
  background: -webkit-gradient(linear, left top, right top, from(#007b40), to(transparent));
  background: linear-gradient(90deg, #007b40, transparent);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 0;
}
.gomsg .gomsg_box .gomsg_btn:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.gomsg .gomsg_box .gomsg_btn:hover::after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.message_info {
  background-color: #f6f7f6;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
}
.message_info .message_title {
  display: block;
  padding-bottom: 10px;
}
.message_info .message_title a {
  color: #266818;
  font-size: 18px;
  text-decoration: none;
}
.message_info .message_ul {
  list-style: none;
}
.message_info .message_ul li {
  background-color: rgba(194, 194, 194, 0.301);
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 4px;
}
.message_info .message_ul li .message_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.message_info .message_ul li .message_box .msg_text {
  width: 100%;
  border-top: 1px solid #266818;
}
.message_info .message_ul li .message_box .msg_name {
  font-weight: 600;
  padding-bottom: 10px;
}
.message_info .message_ul li .message_box .msg_date {
  color: #888;
  font-size: 12px;
}
/*# sourceMappingURL=style.css.map */