.topbar {
  box-shadow: 0 2px 20px -16px #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: white;
}
.topbar_container {
  width: 1200px;
  padding: 1rem 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar_logo {
  font-size: larger;
}
.topbar_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.topbar_user {
  color: #FFE300;
}
.topbar_menu {
  margin-left: 1rem;
  font-weight: bolder;
}

.header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3rem;
}
.header.bg_1 {
  background-image: url("../image/banner_1.png");
  padding-bottom: 50rem;
}
.header.bg_2 {
  background-image: url("../image/banner_2.png");
  padding-bottom: 40rem;
}
.header.bg_3 {
  background-image: url("../image/banner_3.png");
  padding-bottom: 40rem;
}
.header.bg_4 {
  background-image: url("../image/banner_4.png");
  padding-bottom: 40rem;
}
.header.bg_5 {
  background-image: url("../image/banner_5.png");
  padding-bottom: 40rem;
}
.header.bg_6 {
  background-image: url("../image/banner_6.png");
  padding-bottom: 40rem;
}
.header_container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo {
  box-sizing: border-box;
  height: 8rem;
  font-size: 3rem;
  background-color: #FFE300;
  font-weight: bolder;
  padding-left: 3rem;
  padding-right: 2rem;
  display: flex;
  align-items: center;
}
.header_menu {
  display: flex;
}
.header_menu_item {
  width: 8rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFE300;
  color: black;
  margin-left: 0.25rem;
}
.header_menu_item.active {
  background-color: #272727;
  color: white;
}
.header_menu_icon {
  max-width: 4rem;
  max-height: 4rem;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
}

.search {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.search_container {
  box-sizing: border-box;
  width: 1200px;
  margin: 0 auto;
  background-image: url("../images/bg_search.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem;
}
.search_logo {
  box-sizing: border-box;
  font-size: 3rem;
  font-weight: bolder;
  display: flex;
  align-items: center;
  color: white;
}
.search_field {
  flex: 1;
  background-color: white;
  display: flex;
  margin-left: 2rem;
  border-radius: 2rem;
  font-size: larger;
}
.search_input {
  flex: 1;
  border: none;
  background-color: transparent;
  padding: 1rem 2rem;
}
.search_input:focus {
  outline: none;
}
.search_button {
  border: none;
  background-color: #FFE300;
  color: black;
  padding: 0 1rem;
  border-radius: 2rem;
  min-width: 110px;
  font-weight: bolder;
  cursor: pointer;
}
.search_button:focus {
  outline: none;
}

.copyright {
  background-color: #01C9C7;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.section_header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section_header_left {
  display: flex;
  align-items: baseline;
}
.section_title {
  border-left: 8px solid #FFE300;
  font-size: 2rem;
  font-weight: bolder;
  padding-left: 1rem;
  margin-right: 1rem;
}
.section_tab {
  display: flex;
  align-items: center;
}
.section_tab_item {
  padding: 0 0.5rem;
  color: #888888;
  cursor: pointer;
}
.section_extra {
  display: flex;
  align-items: center;
}
.section_extra_item {
  cursor: pointer;
}
.section_extra .color {
  color: #FFE300;
}
.section_extra .spliter {
  margin: 0 0.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination_number {
  display: flex;
}
.pagination_number_item {
  box-sizing: border-box;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #BABABA;
  cursor: pointer;
  margin: 0 0.25rem;
}
.pagination_number_item.active {
  background-color: #272727;
}
.pagination_field {
  color: #BABABA;
  margin: 0 1rem;
}
.pagination_field_input {
  border: 1px solid;
  text-align: center;
  width: 3rem;
  box-sizing: border-box;
}
.pagination_field_input:focus {
  outline: none;
}
.pagination_button {
  padding: 0.5rem 1rem;
  background-color: #FFE300;
  color: #3C3C3C;
  cursor: pointer;
}

.page_home .section_title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
.page_home .section_title_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page_home .section_title_header {
  font-size: 2rem;
}
.page_home .section_title_hr {
  width: 60%;
  margin: 0.5rem auto;
  border-bottom: 2px solid;
}
.page_home .section_title_small {
  font-size: smaller;
}
.page_home .container {
  width: 1200px;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.page_home .service_menu_container {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.page_home .service_menu_item {
  flex: 1;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FF6767;
  color: white;
  margin: 0 0.5rem;
  cursor: pointer;
  position: relative;
  width: 20%;
  box-sizing: border-box;
}
.page_home .service_menu_item::after {
  display: none;
  content: " ";
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  height: 1rem;
  background-color: #FF6767;
}
.page_home .service_menu_item.active::after {
  display: block;
}
.page_home .service_menu_item.nth_0 {
  background-color: #FF6767;
}
.page_home .service_menu_item.nth_0::after {
  background-color: #FF6767;
}
.page_home .service_menu_item.nth_1 {
  background-color: #EC7559;
}
.page_home .service_menu_item.nth_1::after {
  background-color: #EC7559;
}
.page_home .service_menu_item.nth_2 {
  background-color: #00CBCB;
}
.page_home .service_menu_item.nth_2::after {
  background-color: #00CBCB;
}
.page_home .service_menu_item.nth_3 {
  background-color: #9F9F9F;
}
.page_home .service_menu_item.nth_3::after {
  background-color: #9F9F9F;
}
.page_home .service_menu_item.nth_4 {
  background-color: #FFCC6B;
}
.page_home .service_menu_item.nth_4::after {
  background-color: #FFCC6B;
}
.page_home .service_menu_row {
  display: flex;
  justify-content: space-between;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.page_home .service_menu_image {
  margin-bottom: 1rem;
}
.page_home .service_menu_name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.page_home .service_menu_desc {
  text-align: center;
}
.page_home .service_menu_en {
  text-align: center;
  font-size: smaller;
}
.page_home .tab_content {
  display: none;
}
.page_home .tab_content.active {
  display: block;
}
.page_home .section1 .list {
  width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}
.page_home .section1 .list_row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.page_home .section1 .list_item {
  flex: 0 0 25%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.page_home .section1 .goods {
  display: flex;
  flex-direction: column;
}
.page_home .section1 .goods_image {
  width: 100%;
  height: auto;
}
.page_home .section1 .goods_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
.page_home .section1 .goods_price {
  font-size: 1.75rem;
  color: #FFC000;
}
.page_home .section1 .goods_desc {
  margin-top: 0.5rem;
  font-size: smaller;
}
.page_home .section2 .row {
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex-wrap: wrap;
}
.page_home .section2 .col {
  flex: 1;
  padding-left: 1rem;
  padding-right: 1rem;
}
.page_home .section2 .news_top {
  position: relative;
}
.page_home .section2 .news_top_desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.28);
  padding: 0.5rem;
  color: white;
}
.page_home .section2 .news_list {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page_home .section2 .news_item {
  padding: 0.5rem;
  flex: 0 0 33.3333%;
  display: flex;
  cursor: pointer;
}
.page_home .section2 .news_item:hover {
  background-color: #F1F3F6;
}
.page_home .section2 .news_item_left {
  margin-right: 0.5rem;
}
.page_home .section2 .news_item_right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page_home .section2 .news_image {
  width: 10rem;
  height: auto;
}
.page_home .section2 .news_title {
  font-weight: bolder;
  font-size: larger;
  margin-bottom: 0.5rem;
}
.page_home .section3 .row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.page_home .section3 .col {
  flex: 0 0 25%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}
.page_home .section3 .act {
  display: flex;
  flex-wrap: wrap;
  height: calc((300px - 1rem) / 0.7914438503);
}
.page_home .section3 .act_item {
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  flex-direction: column;
  color: white;
  height: 100%;
  box-sizing: border-box;
}
.page_home .section3 .act_bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.page_home .section3 .act_image {
  width: 100%;
  height: auto;
}
.page_home .section3 .act_title {
  font-weight: bolder;
  font-size: larger;
  margin-bottom: 1rem;
}
.page_home .section3 .act_desc {
  margin-bottom: 1rem;
  text-align: right;
}
.page_home .section3 .act_button {
  border: 2px solid;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
}
.page_home .section4 .row {
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex-wrap: wrap;
}
.page_home .section4 .col {
  flex: 0 0 25%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
}
.page_home .section4 .course {
  display: flex;
  flex-direction: column;
}
.page_home .section4 .course_image {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}
.page_home .section4 .course_body {
  padding: 0.5rem;
}
.page_home .section4 .course_title {
  font-weight: bolder;
  font-size: larger;
  margin-bottom: 0.5rem;
}
.page_home .section4 .course_field {
  color: #999999;
}
.page_home .section5 .row {
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex-wrap: wrap;
}
.page_home .section5 .col {
  flex: 0 0 25%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 5rem;
}
.page_home .section5 .org {
  display: flex;
  flex-direction: column;
}
.page_home .section5 .org_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.page_home .section5 .org_avatar {
  width: 4rem;
  height: auto;
  margin-left: 1rem;
}
.page_home .section5 .org_image {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}
.page_home .section5 .org_title {
  font-size: larger;
  margin-bottom: 0.5rem;
}
.page_home .section5 .org_tag {
  color: #999999;
  font-size: smaller;
}
.page_home .section5 .org_address {
  text-align: right;
}
.page_home .footer {
  background-color: #01C9C7;
  color: white;
  padding-top: 2rem;
}
.page_home .footer_container {
  padding: 6rem 0;
  background-image: url("../images/footer.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate(-50%, 0);
  position: relative;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page_home .footer_main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.page_home .footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
.page_home .footer_logo {
  font-size: 2.8rem;
  padding: 0 2rem;
  font-weight: bolder;
}
.page_home .footer_desc {
  font-size: smaller;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_home .footer_phone {
  margin: 2rem 0;
  font-size: larger;
}
.page_home .footer_phone_image {
  width: 2rem;
  height: auto;
  margin-right: 0.5rem;
}
.page_home .footer_row {
  display: flex;
}
.page_home .footer_item {
  flex: 0 0 33.3333%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_home .footer_icon {
  flex: 0 0 3rem;
  box-sizing: border-box;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.82);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
}
.page_home .footer_icon_image {
  max-width: 1.5rem;
  max-height: 1.5rem;
  width: auto;
  height: auto;
}