/* RULES
* Colors: #2681f6, #171819, #f4f6f9, 8b8b8c
*/

/*-------------------------------------------- 
    General Styles 
--------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

html,
body {
  color: #171819;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  font-family: "Raleway", PingFangSC-Regular, PingFang SC, "Microsoft Yahei",
    "微软雅黑", sans-serif;
  background-color: #f4f6f9;
}

span,
a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
  outline: 0;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

/*-------------------------------------------- 
      Header 
  --------------------------------------------*/

header {
  background: #ffffff;
}

header .topbar {
  background: #f8f8f8;
}

header .topbar-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 32px;
  line-height: 32px;
  font-size: 12px;
}

header .welcome {
  padding: 0 0 0 4px;
  color: #8b8b8c;
}

header .shortcuts {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

header .shortcuts .item {
  margin: 0 10px;
  color: #2681f6;
}

header .shortcuts .item.divider {
  margin: 0;
}

header .shortcuts .item a {
  display: flex;
  align-items: center;
  color: #2681f6;
}

header .shortcuts .item img {
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}

header .brand {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
}

header .brand .logo {
  width: 250px;
  height: 70px;
  margin: 0 90px 0 0;
}

header .brand .logo img {
  width: 250px;
  height: 70px;
}

header .search {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-flow: row nowrap;
  min-width: 0;
}

header .search input {
  flex-grow: 1;
  height: 46px;
  padding: 0 20px;
  background: #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(38, 129, 246, 0.5);
  border: 1px solid #2681f6;
  font-size: 16px;
}

header .search .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 46px;
  background: #2681f6;
  border: 1px solid #2681f6;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

header .search .search-btn img {
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
}

header .search .suggestions {
  position: absolute;
  top: 46px;
  left: 0;
  display: none;
  width: calc(100% - 128px);
  padding: 6px 0 0;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.1);
  border: 1px solid #dcdcdc;
  z-index: 1000;
}

header .search .suggestions.active {
  display: block;
}

header .search .suggestions .item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 5px 20px;
  font-size: 14px;
  color: #363636;
  cursor: pointer;
}

header .search .suggestions .item:hover {
  background: #f7f7f7;
}

header .search .suggestions .item a {
  width: 100%;
}

header .search .suggestions .item b {
  color: #777777;
  margin: 0 5px;
}

header .search .suggestions .item b span {
  color: #000;
}

header .search .suggestions .item span {
  color: #000;
  font-weight: bolder;
}

header .search .suggestions .close {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  line-height: 20px;
  padding: 5px 20px;
  border-top: 1px solid #f7f7f7;
  font-size: 14px;
  color: #777777;
  cursor: pointer;
}

header .search .suggestions .close:hover {
  font-weight: bold;
}

header .menus {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

header .menus .menu-fixed {
  position: relative;
  display: flex;
  align-items: center;
  width: 275px;
  height: 36px;
  line-height: 36px;
  padding: 0 30px;
  margin: 0 50px 0 0;
  background: #2681f6;
  color: #ffffff;
  font-size: 18px;
}

header .menus .menu-fixed .icon {
  display: flex;
  align-items: center;
  width: 64px;
}

header .menus .menu-fixed .icon img {
  width: 32px;
  height: 32px;
}

header .menus .menu-items {
  display: flex;
  flex-flow: row nowrap;
}

header .menus .menu-items .menu-item {
  height: 36px;
  line-height: 36px;
  padding: 0 8px;
  margin: 0 25px 0 0;
  border-bottom: 2px solid transparent;
  font-size: 18px;
  font-weight: bold;
}

header .menus .menu-items .menu-item:hover,
header .menus .menu-items .menu-item.active {
  border-bottom: 2px solid #2681f6;
  color: #2681f6;
}

/*-------------------------------------------- 
      Sub Menus 
  --------------------------------------------*/

.sub-menus {
  position: absolute;
  top: 36px;
  left: 0;
  display: none;
  flex-flow: row nowrap;
  align-items: flex-start;
}

header .menus .menu-fixed:hover .sub-menus {
  display: flex;
}

.sub-menus .sub-menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  width: 275px;
  height: 504px;
  background: #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(127, 129, 127, 0.5);
  z-index: 200;
}

.sub-menus .sub-menu .category {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 42px;
  line-height: 42px;
  padding: 0 18px 0 26px;
  font-size: 14px;
  cursor: pointer;
  overflow: hidden;
}

.sub-menus .sub-menu .category .title {
  width: 64px;
  color: #171819;
}

.sub-menus .sub-menu .category .list {
  flex-grow: 1;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.sub-menus .sub-menu .category .list .item {
  margin: 0 14px 0 0;
  color: #171819;
  opacity: 0.8;
}

.sub-menus .sub-menu .category .arrow {
  width: 20px;
  height: 20px;
  background: transparent url("../images/icons/icon-right.png") center center
    no-repeat;
  background-size: 20px 20px;
}

.sub-menus .sub-menu .category:hover {
  background: #ececec;
}

.sub-menus .sub-menu .category:hover .title {
  color: #2681f6;
  font-weight: bold;
}

.sub-menus .sub-menu .category:hover .list .item {
  color: #171819;
}

.sub-menus .sub-menu .category:hover .list .item:hover {
  font-weight: bold;
}

.sub-menus .sub-menu .category:hover .arrow {
  background: transparent url("../images/icons/icon-right-active.png") center
    center no-repeat;
  background-size: 20px 20px;
}

.sub-menus .sub-menu .category .contents {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  flex-flow: column nowrap;
  justify-content: flex-start;
  width: 925px;
  height: auto;
  min-height: 100%;
  line-height: 20px;
  padding: 22px 20px 0 20px;
  background: #ffffff;
  box-shadow: 2px 1px 2px 0px rgba(127, 129, 127, 0.5);
  font-size: 14px;
  z-index: 1000;
}

.sub-menus .sub-menu .category:hover .contents {
  display: flex;
}

.sub-menus .sub-menu .category:hover .contents .title {
  margin: 0 0 18px;
  font-weight: bold;
  color: #363636;
}

.sub-menus .sub-menu .category:hover .contents .list {
  flex-grow: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  padding: 0;
  margin: 0 0 4px;
}

.sub-menus .sub-menu .category:hover .contents .list .subtitle {
  display: block;
  width: 120px;
  min-width: 120px;
  color: #363636;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sub-menus .sub-menu .category:hover .contents .list .subtitle:hover {
  font-weight: bold;
}

.sub-menus .sub-menu .category:hover .contents .list .items {
  flex-grow: 1;
  display: flex;
  flex-flow: row wrap;
  min-width: 0;
  width: 100%;
}

.sub-menus .sub-menu .category:hover .contents .list .items .item {
  margin: 0 16px 14px 0;
  color: #363636;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
}

.sub-menus .sub-menu .category:hover .contents .list .items .item:hover {
  font-weight: bold;
}

/*-------------------------------------------- 
      Footer 
  --------------------------------------------*/

footer {
  margin: 45px 0 0;
  background: #ffffff;
}

footer .list {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  padding: 44px 0 54px;
}

footer .list .blocks {
  display: flex;
  flex-flow: row nowrap;
}

footer .list .blocks .block {
  margin: 0 54px 0 0;
}

footer .list .blocks .block .block-title {
  margin: 0 0 24px;
  font-weight: bold;
}

footer .list .blocks .block .block-items a {
  line-height: 24px;
  font-size: 12px;
  color: #8b8b8c;
}

footer .list .blocks .block .block-items a:hover {
  font-weight: bold;
}

footer .service {
  flex-grow: 1;
  min-width: 0;
  padding: 0 0 0 20px;
  color: #8b8b8c;
}

footer .service .tip {
  line-height: 24px;
  margin: 0 0 6px;
  font-size: 12px;
}

footer .service .tel {
  font-size: 26px;
}

footer .qr {
  display: flex;
  flex-flow: row nowrap;
}

footer .qr .item {
  margin: 0 0 0 30px;
  text-align: center;
}

footer .qr .item img {
  width: 90px;
  height: 90px;
}

footer .qr .item .tip {
  line-height: 24px;
  font-size: 12px;
  color: #8b8b8c;
}

footer .copyright {
  padding: 22px 0 32px;
  font-size: 12px;
  color: #8b8b8c;
  text-align: center;
}

/*-------------------------------------------- 
  Side Fixed Menu 
--------------------------------------------*/

.side-fixed {
  position: fixed;
  top: calc(70% - 85px);
  right: 0;
  z-index: 100;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
}

.side-fixed .item {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 10px;
  margin: 0 0 1px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  background: #000000;
  opacity: 0.8;
  word-break: break-all;
  text-align: center;
  cursor: pointer;
  transition: width 0.3s ease;
}

.side-fixed .item.top {
  display: none;
}

.side-fixed .item.top.show {
  display: block;
}

.side-fixed .item .icon {
  width: 30px;
  height: 30px;
}

.side-fixed .item .qrcode {
  position: absolute;
  right: 51px;
  bottom: 0;
  display: none;
  width: 152px;
  height: 152px;
  box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.04);
  opacity: 1;
}

.side-fixed .item .text {
  display: none;
  line-height: 30px;
  margin: 0 0 0 11px;
  color: #efefef;
  font-size: 14px;
  overflow: hidden;
}

.side-fixed .item:hover {
  min-width: 50px;
  right: 0;
  background: #2681f6;
  transition: width 0.3s ease;
}

.side-fixed .phone:hover {
  width: 167px;
}

.side-fixed .qq:hover {
  width: 118px;
}

.side-fixed .item:hover .text {
  display: block;
}

.side-fixed .qr:hover .qrcode {
  display: block;
}

.side-fixed .top:hover {
  padding: 5px;
  transition: none;
}

.side-fixed .top:hover .icon {
  display: none;
}

.side-fixed .top:hover .text {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 40px;
  line-height: 20px;
  margin: 0;
  text-align: center;
}

/*-------------------------------------------- 
      Pagination
  --------------------------------------------*/

.pagination {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.pagination a,
.pagination span {
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 4px;
  margin: 0 4px;
  background: #ffffff;
  text-align: center;
  font-size: 14px;
}

.pagination a:hover {
  color: #2681f6;
}

.pagination span.current {
  background: #2681f6;
  color: #ffffff;
}

.pagination span.disabled {
  color: #9c9c9c;
}

.empty {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
  height: 140px;
  padding: 20px 0;
  background: #ffffff;
}

.empty .empty-tip {
  width: 90px;
  height: 90px;
}

.empty .text {
  line-height: 32px;
  font-size: 14px;
  color: #9c9c9c;
}

/*-------------------------------------------- 
      Side List
  --------------------------------------------*/

.section {
  width: 100%;
  margin: 0 0 20px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.04);
}

.section .section-title {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  border-bottom: 1px solid #dedede;
  color: #2681f6;
}

.section .section-title .text {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-weight: bold;
}

.section .section-title .text img {
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
}

.section .section-title .more {
  font-size: 12px;
}

.section .section-title .more:hover {
  font-weight: bold;
}

/*-------------------------------------------- 
    Side - Review List
--------------------------------------------*/

.section .review-list {
  padding: 0 30px;
}

.section .review-list .item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 12px 0 13px;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}

.section .review-list .item:last-child {
  border-bottom: 1px solid transparent;
}

.section .review-list .item:hover {
  font-weight: bold;
}

.section .review-list .item .info .name {
  margin: 0 0 2px;
  font-size: 14px;
}

.section .review-list .item .info .tip {
  color: #9c9c9c;
  font-size: 12px;
}

.section .review-list .item .price {
  color: #2681f6;
  font-size: 14px;
}

/*-------------------------------------------- 
      Side - Hot List
  --------------------------------------------*/

.section .hot-list {
  padding: 0 30px 15px;
}

.section .hot-list .item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
  cursor: pointer;
}

.section .hot-list .item:last-child {
  border-bottom: 1px solid transparent;
}

.section .hot-list .item:hover {
  font-weight: bold;
}

.section .hot-list .item img {
  width: auto;
  height: 16px;
}

/*-------------------------------------------- 
      Side - Hot List
  --------------------------------------------*/

.section .school-list {
  /*padding: 0 30px 15px;*/
}

.section .school-list .item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
  cursor: pointer;
}

.section .school-list .item:last-child {
  border-bottom: 1px solid transparent;
}

.section .school-list .item:hover {
  background: #f7f7f7;
}

.section .school-list .item .icon {
  width: 36px;
  height: 36px;
  margin: 0 10px 0 0;
}

.section .school-list .item .info {
  flex-grow: 1;
  min-width: 0;
}

.section .school-list .item .info .title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 14px;
}

.section .school-list .item .info .title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section .school-list .item .info .title .vip {
  height: 12px;
  width: auto;
  margin: 0 0 0 4px;
}

.section .school-list .item .info .title .verify {
  height: 16px;
  width: auto;
  margin: 0 0 0 4px;
}

.section .school-list .item .info .tip {
  font-size: 12px;
  color: #9c9c9c;
}

.section .school-list .item .info .tip .count {
  color: #2681f6;
}

.section .school-list .item .link {
  width: auto;
  height: 16px;
}

.section .timeline {
  display: flex;
  flex-flow: column nowrap;
}

.section .timeline .timeline-item {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  padding: 0 0 20px;
}

.section .timeline .timeline-item:hover {
  font-weight: bold;
}

.section .timeline .timeline-item .icon {
  width: 14px;
  height: 14px;
  margin: 0 10px 0 0;
}

.section .timeline .timeline-item .icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 1px;
  height: 100%;
  background: #ececec;
  z-index: 5;
}

.section .timeline .timeline-item:last-child .icon::after {
  content: "";
  height: 0;
  width: 0;
  background: transparent;
}

.section .timeline .timeline-item .icon img {
  position: absolute;
  top: 3px;
  width: 14px;
  height: 14px;
  z-index: 10;
}

.section .timeline .timeline-item .info .name {
  margin: 0 0 8px;
  font-size: 14px;
  cursor: pointer;
}

.section .timeline .timeline-item .info .time {
  font-size: 12px;
  color: #9c9c9c;
}

.new-notice {
  padding: 30px 20px 10px;
}

.new-notice .section-title {
  padding: 0;
  margin: 0 0 18px;
  border: none;
}

.new-notice .section-title .text {
  color: #171819;
}

.adv {
  position: relative;
  margin: 0 0 20px;
  cursor: pointer;
}

.adv img {
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.04);
}

.adv img:hover {
  box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.2);
}

.ranks .rank {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  margin: 0 0 14px;
}

.ranks .rank:hover {
  font-weight: bold;
}

.ranks .rank .icon {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin: 0 14px 0 0;
  text-align: center;
}

.ranks .rank .icon img {
  position: relative;
  top: 2px;
  height: auto;
  width: 20px;
}

.ranks .rank .icon .rank-index {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #ececec;
  font-size: 12px;
  color: #9c9c9c;
  text-align: center;
}

.ranks .rank .name {
  flex-grow: 1;
  min-width: 0;
  line-height: 22px;
  font-size: 14px;
}

.layui-layer-msg-success {
  border-color: #00ba9b !important;
  color: #00ba9b;
}

.layui-layer-msg-warning {
  border-color: #f39b12 !important;
  color: #f39b12;
}

.layui-layer-msg-error {
  border-color: #e85445 !important;
  color: #e85445;
}

.layui-form-item {
  margin-bottom: 30px !important;
}
