@charset "UTF-8";
@import './init.css';
@import './weather.css';
@import '../iconfont/iconfont.css';
.header-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgb(255, 255, 255);
}
.header-container .header {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: rgb(248, 248, 248);
}
.header-container .header .head {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  height: 40px;
}
.header-container .header .head .left {
  display: flex;
  height: 100%;
}
.header-container .header .head .left .welcome {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.header-container .header .head .left .wechat {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 100%;
  line-height: 1;
  margin-left: 5px;
}
.header-container .header .head .left .wechat:hover .wechat-box {
  display: block;
}
.header-container .header .head .left .wechat .item-wechat {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}
.header-container .header .head .left .wechat .item-wechat:hover {
  background-color: rgb(240, 240, 240);
}
.header-container .header .head .left .wechat .item-wechat::before {
  content: "\e614";
  font-family: iconfont;
  font-size: 19px;
  margin-right: 3px;
}
.header-container .header .head .left .wechat .wechat-box {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  padding-top: 10px;
  z-index: 10;
}
.header-container .header .head .left .wechat .wechat-box .content {
  display: flex;
  flex-direction: column;
  width: 300px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.header-container .header .head .left .wechat .wechat-box .content .title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  background-color: rgb(1, 185, 102);
}
.header-container .header .head .left .wechat .wechat-box .content .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0 30px;
  background-color: rgb(255, 255, 255);
}
.header-container .header .head .left .wechat .wechat-box .content .box .item-text {
  font-size: 12px;
  color: rgb(102, 102, 102);
  margin-bottom: 8px;
}
.header-container .header .head .left .wechat .wechat-box .content .box .item-label {
  font-size: 18px;
  font-weight: 600;
  color: rgb(56, 56, 56);
}
.header-container .header .head .left .wechat .wechat-box .content .box .item-iamge {
  width: 200px;
  padding: 10px 0;
}
.header-container .header .head .left .wechat .wechat-box .content .box .item-info {
  font-size: 12px;
  color: rgb(102, 102, 102);
}
.header-container .header .head .left .app {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 100%;
  line-height: 1;
  margin-left: 5px;
}
.header-container .header .head .left .app:hover .app-box {
  display: block;
}
.header-container .header .head .left .app .item-app {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}
.header-container .header .head .left .app .item-app:hover {
  background-color: rgb(240, 240, 240);
}
.header-container .header .head .left .app .item-app::before {
  content: "\e8b9";
  font-family: iconfont;
  font-size: 16px;
  margin-right: 3px;
}
.header-container .header .head .left .app .app-box {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 35px;
  left: 0;
  padding-top: 10px;
  z-index: 10;
}
.header-container .header .head .left .app .app-box .content {
  width: 300px;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.header-container .header .head .left .app .app-box .content .title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  background-color: rgb(47, 164, 254);
}
.header-container .header .head .left .app .app-box .content .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0 30px;
  background-color: rgb(255, 255, 255);
}
.header-container .header .head .left .app .app-box .content .box .item-text {
  font-size: 12px;
  color: rgb(102, 102, 102);
  margin-bottom: 8px;
}
.header-container .header .head .left .app .app-box .content .box .item-label {
  font-size: 18px;
  font-weight: 600;
  color: rgb(56, 56, 56);
}
.header-container .header .head .left .app .app-box .content .box .item-iamge {
  width: 200px;
  padding: 10px 0;
}
.header-container .header .head .left .app .app-box .content .box .item-button {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 20px;
  border-radius: 20px;
  font-size: 12px;
  color: rgb(238, 238, 238);
  background-color: rgb(56, 56, 56);
}
.header-container .header .head .left .app .app-box .content .box .item-button:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(47, 164, 254);
}
.header-container .header .head .right {
  display: flex;
  align-items: center;
  line-height: 1;
}
.header-container .header .head .right .item-link {
  position: relative;
}
.header-container .header .head .right .item-link:hover::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(42, 42, 48);
}
.header-container .header .head .right .item-link:not(:first-child) {
  margin-left: 30px;
}
.header-container .header .head .right .item-link:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 1px;
  left: -16px;
  width: 1px;
  height: 12px;
  border-left: 1px solid rgb(202, 202, 208);
}
.header-container .adver {
  display: flex;
  justify-content: center;
  width: 100%;
}
.header-container .adver .adv {
  width: 1200px;
}
.header-container .siteser {
  display: flex;
  justify-content: center;
  width: 100%;
}
.header-container .siteser .sites {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  height: 80px;
}
.header-container .siteser .sites .left {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-container .siteser .sites .left .logo .item-logo {
  height: 50px;
}
.header-container .siteser .sites .left .search {
  display: inline-flex;
  align-items: center;
  width: 450px;
  height: 42px;
  margin-left: 50px;
  padding: 0 0 0 25px;
  border-radius: 42px;
  border: 1px solid rgb(222, 222, 228);
  background-color: rgb(255, 255, 255);
}
.header-container .siteser .sites .left .search .item-input {
  flex: 1;
  height: 100%;
  padding: 0 0 1px 0;
}
.header-container .siteser .sites .left .search .item-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  cursor: pointer;
}
.header-container .siteser .sites .left .search .item-button:hover::before {
  color: rgb(255, 149, 1);
}
.header-container .siteser .sites .left .search .item-button::before {
  content: "\e649";
  font-size: 20px;
  color: rgb(136, 136, 136);
  font-family: iconfont;
}
.header-container .siteser .sites .right {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-container .siteser .sites .right .adv {
  width: 330px;
  height: 55px;
}
.header-container .siteser .sites .right .adv .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header-container .siteser .sites .right .adv .link img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-container .navier {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: rgb(1, 130, 72);
}
.header-container .navier .navi {
  display: flex;
  width: 1200px;
  height: 45px;
}
.header-container .navier .navi .item-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 25px;
}
.header-container .navier .navi .item-link.active {
  background-color: rgb(1, 185, 102);
}
.header-container .navier .navi .item-link.active .link:hover::after {
  border-bottom: 0 solid rgb(255, 255, 255);
}
.header-container .navier .navi .item-link .link {
  position: relative;
  font-size: 18px;
  color: rgb(255, 255, 255);
}
.header-container .navier .navi .item-link .link:hover::after {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.header-container .navier .navi .item-link .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 0 solid rgb(255, 255, 255);
}
.header-container .leveler {
  display: flex;
  justify-content: center;
  width: 100%;
  box-shadow: 0px 2px 3px rgb(221, 221, 221);
  background-color: rgb(255, 255, 255);
}
.header-container .leveler .level {
  display: flex;
  align-items: center;
  width: 1200px;
  height: 45px;
}
.header-container .leveler .level .item-link {
  display: flex;
  position: relative;
}
.header-container .leveler .level .item-link:not(:first-child) {
  margin-left: 50px;
}
.header-container .leveler .level .item-link:not(:first-child)::before {
  content: "\e67c";
  position: absolute;
  top: 3px;
  left: -32px;
  font-size: 15px;
  font-family: iconfont;
  color: rgb(142, 142, 148);
}
.header-container .leveler .level .item-link .link {
  position: relative;
  font-size: 14px;
  color: rgb(102, 102, 108);
}
.header-container .leveler .level .item-link .link:not(:first-child) {
  margin-left: 20px;
}
.header-container .leveler .level .item-link .link:hover::after {
  border-bottom: 1px solid rgb(122, 122, 128);
}
.header-container .leveler .level .item-link .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 0 solid rgb(82, 82, 88);
}

.push-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 15px 0 0;
}
.push-container .push-wrapper {
  display: flex;
  flex-direction: column;
  width: 1200px;
}
.push-container .push-wrapper .slide-headline {
  display: flex;
  justify-content: space-between;
}
.push-container .push-wrapper .slide-headline .slide {
  position: relative;
  width: 625px;
  height: 340px;
  overflow: hidden;
}
.push-container .push-wrapper .slide-headline .slide .slide-push {
  position: relative;
  width: 625px;
  height: 340px;
  background-color: rgb(255, 255, 255);
}
.push-container .push-wrapper .slide-headline .slide .slide-push .photo {
  width: 625px;
  height: 340px;
  overflow: hidden;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .photo li {
  width: 625px;
  height: 340px;
  display: none;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .photo li img {
  width: 625px;
  height: auto;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .title {
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  z-index: 2;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .title li {
  position: absolute;
  width: 625px;
  height: 40px;
  line-height: 40px;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .title li a {
  display: block;
  max-width: 450px;
  font-size: 15px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 0 0 0 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .tab {
  display: inline-flex;
  position: absolute;
  right: 10px;
  bottom: 14px;
  line-height: 0px;
  z-index: 2;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .tab i {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  cursor: pointer;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .tab i:not(:first-child) {
  margin-left: 5px;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .tab i.on a {
  background: rgb(27, 166, 233);
}
.push-container .push-wrapper .slide-headline .slide .slide-push .tab i a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  z-index: 2;
}
.push-container .push-wrapper .slide-headline .slide .slide-push .tab i a:hover {
  background: rgb(27, 166, 233);
}
.push-container .push-wrapper .slide-headline .slide .slide-push .tab i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  background: rgb(204, 204, 204);
  z-index: 1;
}
.push-container .push-wrapper .slide-headline .headline {
  width: 560px;
  height: 340px;
  padding: 12px 20px 0;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.push-container .push-wrapper .slide-headline .headline .list {
  display: flex;
  flex-direction: column;
}
.push-container .push-wrapper .slide-headline .headline .list .list-item {
  display: flex;
  flex-direction: column;
}
.push-container .push-wrapper .slide-headline .headline .list .list-item:not(:first-child) {
  margin: 15px 0 0;
  padding: 15px 0 0;
  border-top: 1px dashed rgb(222, 222, 228);
}
.push-container .push-wrapper .slide-headline .headline .list .list-item .item-title {
  padding: 0 0 2px;
  font-size: 22px;
  font-weight: 600;
  color: rgb(31, 148, 210);
  text-align: center;
  margin-bottom: 3px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.push-container .push-wrapper .slide-headline .headline .list .list-item .item-title .link {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: rgb(31, 148, 210);
}
.push-container .push-wrapper .slide-headline .headline .list .list-item .item-title .link:hover::after {
  border-bottom: 2px solid rgb(31, 148, 210);
}
.push-container .push-wrapper .slide-headline .headline .list .list-item .item-title .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-bottom: 0 solid rgb(31, 148, 210);
}
.push-container .push-wrapper .slide-headline .headline .list .list-item .item-desc {
  line-height: 25px;
  font-size: 16px;
  color: rgb(132, 132, 138);
  text-indent: 2em;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.push-container .push-wrapper .push-main {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.push-container .push-wrapper .push-main .main-left {
  display: flex;
  flex-direction: column;
  width: 855px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-title {
  display: flex;
  align-items: center;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-title .title {
  display: inline-flex;
  align-items: center;
  font-size: 25px;
  color: rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-title .title::before {
  content: "\e61f";
  font-size: 55px;
  font-family: iconfont;
  color: rgb(23, 176, 248);
  margin-right: 5px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-title .title-en {
  position: relative;
  font-size: 25px;
  color: rgb(82, 82, 88);
  margin-left: 30px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-title .title-en::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -16px;
  width: 3px;
  height: 20px;
  border-left: 3px solid rgb(23, 176, 248);
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather-load {
  display: inline-flex;
  align-items: center;
  height: 30px;
  font-size: 12px;
  color: rgb(136, 136, 136);
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather-load::before {
  content: "正在加载天气...";
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather {
  display: flex;
  align-items: center;
  height: 30px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather.hide {
  display: none;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather .item-icon {
  display: inline-flex;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather .item-text {
  display: inline-flex;
  margin-left: 10px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather .item-text .text {
  position: relative;
  font-size: 16px;
  font-weight: 600;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather .item-text .text:last-child {
  margin-left: 20px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather .item-text .text:last-child::before {
  content: "~";
  position: absolute;
  top: -2px;
  left: -15px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .weather .item-label {
  display: inline-flex;
  font-size: 12px;
  margin-left: 10px;
}
.push-container .push-wrapper .push-main .main-left .push-theme-title .item-date .date {
  font-size: 12px;
  font-weight: 600;
}
.push-container .push-wrapper .push-main .main-left .push-theme {
  display: flex;
  flex-direction: column;
  background-color: rgb(248, 248, 248);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-item:nth-child(2n) {
  background: rgb(255, 255, 255);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-content {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-content .title-link {
  font-size: 18px;
  font-weight: 600;
  color: rgb(52, 52, 58);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-content .title-link:hover {
  text-decoration: underline;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-content .image-list {
  display: flex;
  margin: 20px 0 15px -15px;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-content .image-list .img-link {
  display: inline-flex;
  align-items: center;
  justify-items: center;
  width: calc(33.3333% - 15px);
  height: 150px;
  margin-left: 15px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-content .image-list .img-link .image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left {
  display: inline-flex;
  align-items: center;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .author {
  display: inline-flex;
  align-items: center;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .author::before {
  content: "文 /";
  font-size: 12px;
  color: rgb(52, 52, 58);
  margin-right: 3px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .author .link {
  position: relative;
  font-size: 12px;
  color: rgb(52, 52, 58);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .author .link:hover::after {
  border-bottom: 1px solid rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .author .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 0 solid rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .date {
  font-size: 12px;
  color: rgb(52, 52, 58);
  margin-left: 5px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .label {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .label::before {
  content: "\e6a8";
  position: relative;
  top: 1px;
  font-family: iconfont;
  font-size: 20px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .label .link {
  position: relative;
  font-size: 12px;
  color: rgb(52, 52, 58);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .label .link:hover::after {
  border-bottom: 1px solid rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-left .label .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 0 solid rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-right {
  display: inline-flex;
  align-items: center;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-right .view {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: rgb(152, 152, 158);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-right .view::before {
  content: "\e6a3";
  font-family: iconfont;
  font-size: 18px;
  margin-right: 3px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-right .disc {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: rgb(152, 152, 158);
  margin-left: 10px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-more .item-info .info-right .disc::before {
  content: "\e60b";
  position: relative;
  top: 1px;
  font-family: iconfont;
  font-size: 14px;
  margin-right: 3px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing {
  display: flex;
  padding: 20px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-left {
  margin-right: 20px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-left .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 140px;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-left .link .item-image {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 595px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-content {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-content .title-link {
  font-size: 18px;
  font-weight: 600;
  color: rgb(52, 52, 58);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-content .title-link:hover {
  text-decoration: underline;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-content .desc-link {
  line-height: 25px;
  font-size: 14px;
  color: rgb(122, 122, 128);
  margin-top: 12px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-content .desc-link:hover {
  text-decoration: underline;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left {
  display: inline-flex;
  align-items: center;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .author {
  display: inline-flex;
  align-items: center;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .author::before {
  content: "文 /";
  font-size: 12px;
  color: rgb(52, 52, 58);
  margin-right: 3px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .author .link {
  position: relative;
  font-size: 12px;
  color: rgb(52, 52, 58);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .author .link:hover::after {
  border-bottom: 1px solid rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .author .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 0 solid rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .date {
  font-size: 12px;
  color: rgb(52, 52, 58);
  margin-left: 5px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .label {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .label::before {
  content: "\e6a8";
  position: relative;
  top: 1px;
  font-family: iconfont;
  font-size: 20px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .label .link {
  position: relative;
  font-size: 12px;
  color: rgb(52, 52, 58);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .label .link:hover::after {
  border-bottom: 1px solid rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-left .label .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 0 solid rgb(82, 82, 88);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-right {
  display: inline-flex;
  align-items: center;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-right .view {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: rgb(152, 152, 158);
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-right .view::before {
  content: "\e6a3";
  font-family: iconfont;
  font-size: 18px;
  margin-right: 3px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-right .disc {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: rgb(152, 152, 158);
  margin-left: 10px;
}
.push-container .push-wrapper .push-main .main-left .push-theme .theme-sing .theme-right .item-info .info-right .disc::before {
  content: "\e60b";
  position: relative;
  top: 1px;
  font-family: iconfont;
  font-size: 14px;
  margin-right: 3px;
}
.push-container .push-wrapper .push-main .main-left .theme-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  border-top: 1px solid rgb(232, 232, 238);
  background-color: rgb(248, 248, 248);
}
.push-container .push-wrapper .push-main .main-left .theme-more-button .item-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgb(225, 225, 225);
  transition: all 0.15s;
}
.push-container .push-wrapper .push-main .main-left .theme-more-button .item-button:hover {
  background-color: rgb(255, 255, 255);
}
.push-container .push-wrapper .push-main .main-right {
  width: 330px;
}
.push-container .push-wrapper .push-main .main-right .handy {
  position: relative;
  width: 330px;
  height: auto;
  background-color: rgb(248, 248, 248);
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-right .handy::before {
  content: "";
  position: absolute;
  top: 23px;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgb(203, 203, 203);
  z-index: 20;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 330px;
  height: 45px;
  z-index: 21;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .title {
  height: 45px;
  line-height: 45px;
  font-size: 18px;
  padding-left: 15px;
  padding-right: 10px;
  background-color: rgb(248, 248, 248);
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .title::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 21px;
  background-color: rgb(44, 112, 193);
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .title em {
  font-weight: normal;
  color: rgb(44, 112, 193);
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .tab {
  display: inline-flex;
  align-items: center;
  height: 45px;
  font-size: 0px;
  padding: 0 10px;
  background-color: rgb(248, 248, 248);
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .tab i {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .tab i:not(:first-child) {
  margin-left: 5px;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .tab i.on a {
  background: rgb(44, 112, 193);
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .tab i a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 2;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .tab i a:hover {
  background: rgb(44, 112, 193);
}
.push-container .push-wrapper .push-main .main-right .handy .handy-title .tab i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(204, 204, 204);
  z-index: 1;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-content {
  width: 330px;
  height: 180px;
  padding: 5px;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-content .handy-item {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  line-height: 1;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-content .handy-item .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 80px;
  text-align: center;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-content .handy-item .link:hover {
  border-radius: 5px;
  background-color: rgb(248, 248, 248);
}
.push-container .push-wrapper .push-main .main-right .handy .handy-content .handy-item .link img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.push-container .push-wrapper .push-main .main-right .handy .handy-content .handy-item .link p {
  width: 100%;
  font-size: 14px;
  color: rgb(106, 106, 106);
  margin-top: 8px;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-right .adv {
  position: relative;
  width: 330px;
  height: 180px;
  background-color: rgb(255, 255, 255);
  margin-top: 15px;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-right .adv::after {
  content: "广告";
  position: absolute;
  right: 2px;
  bottom: 2px;
  line-height: 1;
  font-size: 12px;
  color: rgb(204, 204, 204);
  padding: 2px 5px;
  background-color: rgba(0, 0, 0, 0.4);
}
.push-container .push-wrapper .push-main .main-right .adv .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 180px;
}
.push-container .push-wrapper .push-main .main-right .adv .link .image {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.push-container .push-wrapper .push-main .main-right .exposure {
  position: relative;
  width: 330px;
  height: auto;
  margin-top: 15px;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-title {
  display: flex;
  width: 330px;
  height: 55px;
  background: rgb(255, 255, 255);
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-title .link {
  width: 165px;
  height: 54px;
  line-height: 54px;
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid rgb(213, 213, 213);
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-title .link:first-child.active {
  line-height: 51px;
  color: rgb(42, 113, 193);
  border-top: 2px solid rgb(42, 113, 193);
  border-right: 1px solid rgb(213, 213, 213);
  border-bottom: none;
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-title .link:last-child.active {
  line-height: 51px;
  color: rgb(42, 113, 193);
  border-top: 2px solid rgb(255, 66, 0);
  border-left: 1px solid rgb(213, 213, 213);
  border-bottom: none;
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-content {
  width: 330px;
  height: auto;
  padding: 15px 20px 5px;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-content.hide {
  display: none;
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-content.show {
  display: block;
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-content .link {
  display: block;
  position: relative;
  font-size: 16px;
  color: rgb(52, 52, 58);
  padding: 0 0 15px 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-content .link:hover .text {
  position: relative;
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-content .link:hover .text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(142, 142, 148);
}
.push-container .push-wrapper .push-main .main-right .exposure .exposure-content .link::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgb(23, 180, 159);
}
.push-container .push-wrapper .push-main .main-right .activity {
  width: 330px;
  height: auto;
  margin-top: 15px;
}
.push-container .push-wrapper .push-main .main-right .activity.fixed {
  position: fixed;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container {
  position: relative;
  width: 330px;
  height: auto;
  overflow: hidden;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .item-title {
  width: 330px;
  height: 45px;
  line-height: 45px;
  text-align: center;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .item-title::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 330px;
  height: 1px;
  border-bottom: 1px dashed rgb(203, 203, 203);
  z-index: 1;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .item-title .title {
  position: relative;
  font-size: 18px;
  padding: 0 15px;
  background-color: rgb(242, 242, 242);
  z-index: 2;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .activity-content {
  width: 330px;
  height: auto;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .activity-content .activity-box {
  display: flex;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .activity-content .activity-box .activity-item {
  width: 330px;
  height: auto;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .activity-content .activity-box .activity-item .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 100px;
  margin-bottom: 10px;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .activity-content .activity-box .activity-item .link:last-child {
  margin-bottom: 0;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .activity-content .activity-box .activity-item .link .image {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 35px;
  background-color: rgb(255, 255, 255);
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .tab i {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 5px;
  cursor: pointer;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .tab i:not(:first-child) {
  margin-left: 5px;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .tab i.on a {
  background: rgb(42, 113, 193);
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .tab i a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 5px;
  border-radius: 3px;
  z-index: 2;
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .tab i a:hover {
  background: rgb(42, 113, 193);
}
.push-container .push-wrapper .push-main .main-right .activity .activity-container .tab i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 5px;
  border-radius: 3px;
  background: rgb(204, 204, 204);
  z-index: 1;
}

.module-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.module-container .module-wrapper {
  width: 1200px;
  height: auto;
}
.module-container .module-wrapper .module-house {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.module-container .module-wrapper .module-house .house-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.module-container .module-wrapper .module-house .house-title .left {
  display: flex;
  align-items: center;
}
.module-container .module-wrapper .module-house .house-title .left .title {
  position: relative;
  padding-left: 15px;
}
.module-container .module-wrapper .module-house .house-title .left .title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: 22px;
  background-color: rgb(26, 163, 231);
}
.module-container .module-wrapper .module-house .house-title .left .title .link {
  font-size: 26px;
  font-weight: 600;
  color: rgb(102, 102, 102);
}
.module-container .module-wrapper .module-house .house-title .left .title .link em {
  font-weight: normal;
  color: rgb(26, 163, 231);
}
.module-container .module-wrapper .module-house .house-title .left .nav {
  display: flex;
  margin-left: 35px;
}
.module-container .module-wrapper .module-house .house-title .left .nav .link {
  position: relative;
  font-size: 16px;
  color: rgb(102, 102, 108);
}
.module-container .module-wrapper .module-house .house-title .left .nav .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(142, 142, 148);
}
.module-container .module-wrapper .module-house .house-title .left .nav .link:not(:first-child) {
  margin-left: 30px;
}
.module-container .module-wrapper .module-house .house-title .left .nav .link:not(:first-child)::before {
  content: "/";
  position: absolute;
  top: 0;
  left: -18px;
  color: rgb(192, 192, 198);
}
.module-container .module-wrapper .module-house .house-title .right {
  display: flex;
  align-items: center;
}
.module-container .module-wrapper .module-house .house-title .right .item-text {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.module-container .module-wrapper .module-house .house-title .right .item-text em {
  color: rgb(26, 163, 231);
  margin: 0 5px;
}
.module-container .module-wrapper .module-house .house-title .right .item-link {
  display: flex;
  margin-left: 15px;
}
.module-container .module-wrapper .module-house .house-title .right .item-link .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 38px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  border-radius: 38px;
  background-color: rgb(27, 164, 232);
}
.module-container .module-wrapper .module-house .house-title .right .item-link .link:not(:first-child) {
  margin-left: 10px;
}
.module-container .module-wrapper .module-house .house-content {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.module-container .module-wrapper .module-house .house-content .house-left {
  width: 885px;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news {
  display: flex;
  justify-content: space-between;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide {
  position: relative;
  width: 345px;
  height: 300px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .photo {
  width: 345px;
  height: 300px;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .photo li {
  width: 345px;
  height: 300px;
  display: none;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .photo li img {
  width: 345px;
  height: auto;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .title {
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  z-index: 2;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .title li {
  position: absolute;
  width: 345px;
  height: 40px;
  line-height: 40px;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .title li a {
  display: block;
  width: 345px;
  font-size: 15px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 0 0 0 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .tab {
  display: inline-flex;
  position: absolute;
  right: 10px;
  bottom: 50px;
  line-height: 0px;
  z-index: 2;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .tab i {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  cursor: pointer;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .tab i:not(:first-child) {
  margin-left: 5px;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .tab i.on a {
  background: rgb(27, 166, 233);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .tab i a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  z-index: 2;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .tab i a:hover {
  background: rgb(27, 166, 233);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-slide .tab i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  background: rgb(204, 204, 204);
  z-index: 1;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news {
  width: 525px;
  height: 300px;
  padding: 20px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline .title-link {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline .title-link:hover .text {
  position: relative;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline .title-link:hover .text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid rgb(52, 52, 58);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline .nav {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline .nav .link {
  position: relative;
  font-size: 12px;
  color: rgb(152, 152, 158);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline .nav .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(142, 142, 148);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline .nav .link:not(:first-child) {
  margin-left: 15px;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .headline .nav .link:not(:first-child)::before {
  content: "|";
  position: absolute;
  top: -1px;
  left: -9px;
  font-size: 12px;
  color: rgb(192, 192, 198);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 15px;
       column-gap: 15px;
  line-height: 1;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px dashed rgb(202, 202, 208);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .news-list .link {
  display: block;
  position: relative;
  font-size: 16px;
  color: rgb(82, 82, 88);
  padding: 0 0 22px 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .news-list .link:hover .text {
  position: relative;
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .news-list .link:hover .text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(142, 142, 148);
}
.module-container .module-wrapper .module-house .house-content .house-left .slide-news .house-news .news-list .link::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: rgb(245, 124, 97);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend {
  margin-top: 15px;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property {
  width: 885px;
  height: 180px;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  -moz-column-gap: 15px;
       column-gap: 15px;
  line-height: 1;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box {
  display: flex;
  flex-direction: column;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .link {
  display: flex;
  position: relative;
  width: 165px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .link:hover .title {
  background-color: rgba(27, 164, 232, 0.8);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .link .photo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 145px;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .link .photo .image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .link .title {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 165px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 0 10px;
  background-color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .price-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 165px;
  height: 35px;
  line-height: 1;
  padding: 0 10px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .price-area .price {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .price-area .price em {
  font-size: 16px;
  color: rgb(248, 124, 98);
  margin-right: 3px;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .property .property-item .item-box .price-area .area {
  font-size: 14px;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  margin-top: 10px;
  padding: 0 20px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .tab {
  display: inline-flex;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .tab i {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  cursor: pointer;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .tab i:not(:first-child) {
  margin-left: 5px;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .tab i.on a {
  background: rgb(27, 166, 233);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .tab i a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  z-index: 2;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .tab i a:hover {
  background: rgb(27, 166, 233);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .tab i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  background: rgb(204, 204, 204);
  z-index: 1;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .features-list {
  display: flex;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .features-list .link {
  position: relative;
  font-size: 14px;
  color: rgb(102, 102, 108);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .features-list .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(142, 142, 148);
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .features-list .link:not(:first-child) {
  margin-left: 20px;
}
.module-container .module-wrapper .module-house .house-content .house-left .recommend .features .features-list .link:not(:first-child)::before {
  content: "|";
  position: absolute;
  top: 1px;
  left: -11px;
  font-size: 12px;
  color: rgb(192, 192, 198);
}
.module-container .module-wrapper .module-house .house-content .house-right {
  width: 300px;
  height: auto;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house {
  position: relative;
  width: 300px;
  height: auto;
  background-color: rgb(248, 248, 248);
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house::before {
  content: "";
  position: absolute;
  top: 23px;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgb(203, 203, 203);
  z-index: 20;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 300px;
  height: 45px;
  z-index: 21;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .title {
  display: inline-flex;
  align-items: center;
  height: 45px;
  font-size: 18px;
  padding: 0 10px 0 15px;
  background-color: rgb(248, 248, 248);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .title::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 21px;
  background-color: rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box {
  display: inline-flex;
  align-items: center;
  height: 45px;
  padding: 0 10px 0 0;
  background-color: rgb(248, 248, 248);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .tab {
  display: inline-flex;
  padding: 0 10px;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .tab i {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .tab i:not(:first-child) {
  margin-left: 5px;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .tab i.on a {
  background: rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .tab i a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 2;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .tab i a:hover {
  background: rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .tab i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(204, 204, 204);
  z-index: 1;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .link {
  position: relative;
  font-size: 12px;
  color: rgb(142, 142, 148);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .link:hover {
  color: rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-title .tab-box .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-content {
  width: 300px;
  height: 175px;
  padding: 10px 15px;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-content .two-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-content .two-box .two-item {
  height: 100%;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-content .two-box .two-item .link-price {
  display: flex;
  justify-content: space-between;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-content .two-box .two-item .link-price:not(:last-child) {
  margin-bottom: 15px;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-content .two-box .two-item .link-price .link {
  flex: 1;
  position: relative;
  font-size: 14px;
  color: rgb(82, 82, 88);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-content .two-box .two-item .link-price .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(102, 102, 108);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-content .two-box .two-item .link-price .price {
  flex: 0 0 auto;
  font-size: 14px;
  color: rgb(248, 124, 98);
  margin-left: 20px;
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-button {
  display: flex;
  justify-content: space-between;
  width: 300px;
  height: 50px;
  padding-top: 10px;
  background-color: rgb(242, 242, 242);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-button .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 40px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-align: center;
  background-color: rgb(27, 164, 232);
}
.module-container .module-wrapper .module-house .house-content .house-right .two-house .two-house-button .link.ask {
  background-color: rgb(248, 124, 98);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house {
  position: relative;
  width: 300px;
  height: auto;
  margin-top: 15px;
  background-color: rgb(248, 248, 248);
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house::before {
  content: "";
  position: absolute;
  top: 23px;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgb(203, 203, 203);
  z-index: 20;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 300px;
  height: 45px;
  z-index: 21;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .title {
  display: inline-flex;
  align-items: center;
  height: 45px;
  font-size: 18px;
  padding: 0 10px 0 15px;
  background-color: rgb(248, 248, 248);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .title::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 21px;
  background-color: rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box {
  display: inline-flex;
  align-items: center;
  height: 45px;
  padding: 0 10px 0 0;
  background-color: rgb(248, 248, 248);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .tab {
  display: inline-flex;
  padding: 0 10px;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .tab i {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .tab i:not(:first-child) {
  margin-left: 5px;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .tab i.on a {
  background: rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .tab i a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 2;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .tab i a:hover {
  background: rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .tab i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(204, 204, 204);
  z-index: 1;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .link {
  position: relative;
  font-size: 12px;
  color: rgb(142, 142, 148);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .link:hover {
  color: rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-title .tab-box .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(44, 112, 193);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-content {
  width: 300px;
  height: 175px;
  padding: 10px 15px;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-content .rent-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-content .rent-box .rent-item {
  height: 100%;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-content .rent-box .rent-item .link-price {
  display: flex;
  justify-content: space-between;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-content .rent-box .rent-item .link-price:not(:last-child) {
  margin-bottom: 15px;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-content .rent-box .rent-item .link-price .link {
  flex: 1;
  position: relative;
  font-size: 14px;
  color: rgb(82, 82, 88);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-content .rent-box .rent-item .link-price .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(102, 102, 108);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-content .rent-box .rent-item .link-price .price {
  flex: 0 0 auto;
  font-size: 14px;
  color: rgb(248, 124, 98);
  margin-left: 20px;
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-button {
  width: 300px;
  height: 50px;
  padding-top: 10px;
  background-color: rgb(242, 242, 242);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-button .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 40px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-align: center;
  background-color: rgb(27, 164, 232);
}
.module-container .module-wrapper .module-house .house-content .house-right .rent-house .rent-house-button .link.ask {
  background-color: rgb(248, 124, 98);
}
.module-container .module-wrapper .module-job {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.module-container .module-wrapper .module-job .job-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.module-container .module-wrapper .module-job .job-title .left {
  display: flex;
  align-items: center;
}
.module-container .module-wrapper .module-job .job-title .left .title {
  position: relative;
  padding-left: 15px;
}
.module-container .module-wrapper .module-job .job-title .left .title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: 22px;
  background-color: rgb(98, 172, 1);
}
.module-container .module-wrapper .module-job .job-title .left .title .link {
  font-size: 26px;
  font-weight: 600;
  color: rgb(102, 102, 102);
}
.module-container .module-wrapper .module-job .job-title .left .title .link em {
  font-weight: normal;
  color: rgb(98, 172, 1);
}
.module-container .module-wrapper .module-job .job-title .left .nav {
  display: flex;
  margin-left: 35px;
}
.module-container .module-wrapper .module-job .job-title .left .nav .link {
  position: relative;
  font-size: 16px;
  color: rgb(102, 102, 108);
}
.module-container .module-wrapper .module-job .job-title .left .nav .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(142, 142, 148);
}
.module-container .module-wrapper .module-job .job-title .left .nav .link:not(:first-child) {
  margin-left: 30px;
}
.module-container .module-wrapper .module-job .job-title .left .nav .link:not(:first-child)::before {
  content: "/";
  position: absolute;
  top: 0;
  left: -18px;
  color: rgb(192, 192, 198);
}
.module-container .module-wrapper .module-job .job-title .right {
  display: flex;
  align-items: center;
  line-height: 1;
}
.module-container .module-wrapper .module-job .job-title .right .item-text {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.module-container .module-wrapper .module-job .job-title .right .item-text em {
  color: rgb(98, 172, 1);
}
.module-container .module-wrapper .module-job .job-title .right .item-link {
  display: flex;
  margin-left: 15px;
}
.module-container .module-wrapper .module-job .job-title .right .item-link .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 38px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  border-radius: 38px;
  background-color: rgb(98, 172, 1);
}
.module-container .module-wrapper .module-job .job-title .right .item-link .link:not(:first-child) {
  margin-left: 10px;
}
.module-container .module-wrapper .module-job .job-title .right .item-link .link.resume {
  background-color: rgb(255, 168, 0);
}
.module-container .module-wrapper .module-job .job-content {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.module-container .module-wrapper .module-job .job-content .job-left {
  width: 750px;
  height: 665px;
}
.module-container .module-wrapper .module-job .job-content .job-left .company {
  width: 100%;
  height: 580px;
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  line-height: 1;
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 70px;
  padding: 10px 15px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-link {
  display: inline-block;
  width: 210px;
  height: 28px;
  font-size: 16px;
  color: rgb(52, 52, 58);
  padding-bottom: 1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-link:hover {
  text-decoration: underline;
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-list {
  display: inline-block;
  position: relative;
  width: 210px;
  padding-left: 30px;
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-list::before {
  content: "聘：";
  position: absolute;
  left: 0;
  font-size: 14px;
  color: rgb(99, 173, 2);
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-list .link {
  float: left;
  font-size: 14px;
  color: rgb(152, 152, 158);
  margin-right: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-list .link:last-child {
  margin-right: 0;
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-list .link:nth-last-child(1):first-child {
  width: 100%;
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-list .link:nth-last-child(2):first-child {
  max-width: calc(50% - 6px);
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-list .link:nth-last-child(2):first-child ~ .link {
  max-width: calc(50% - 6px);
}
.module-container .module-wrapper .module-job .job-content .job-left .company .company-box .company-item .job-list .link:hover {
  text-decoration: underline;
}
.module-container .module-wrapper .module-job .job-content .job-left .adv {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 15px;
       column-gap: 15px;
  width: 100%;
  line-height: 1;
  margin-top: 15px;
}
.module-container .module-wrapper .module-job .job-content .job-left .adv .adv-item {
  position: relative;
  width: 100%;
  height: 70px;
  padding: 5px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-job .job-content .job-left .adv .adv-item::after {
  content: "广告";
  position: absolute;
  right: 2px;
  bottom: 2px;
  line-height: 1;
  font-size: 12px;
  color: rgb(204, 204, 204);
  padding: 2px 5px;
  background-color: rgba(0, 0, 0, 0.4);
}
.module-container .module-wrapper .module-job .job-content .job-left .adv .adv-item .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.module-container .module-wrapper .module-job .job-content .job-left .adv .adv-item .link img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-container .module-wrapper .module-job .job-content .job-right {
  width: 435px;
  height: 665px;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume {
  position: relative;
  width: 435px;
  height: auto;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content {
  width: 435px;
  height: auto;
  overflow: hidden;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  width: 435px;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link {
  display: block;
  width: 210px;
  height: 195px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link:hover .resume-info {
  color: rgb(6, 87, 178);
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link .resume-photo {
  position: relative;
  width: 210px;
  height: 110px;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link .resume-photo .photo-bg {
  display: inline-flex;
  width: 210px;
  height: 85px;
  overflow: hidden;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link .resume-photo .photo-bg img {
  width: 210px;
  height: 195px;
  margin-top: -110px;
  filter: url(blur.svg#blur);
  -moz-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false);
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link .resume-photo .photo {
  display: inline-flex;
  position: absolute;
  top: 20px;
  left: 60px;
  width: 90px;
  height: 90px;
  text-align: center;
  padding: 3px;
  border-radius: 45px;
  background: rgb(255, 255, 255);
  overflow: hidden;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link .resume-photo .photo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link .resume-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 210px;
  height: 85px;
  padding-top: 18px;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link .resume-info .name {
  font-size: 18px;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-content .resume-list .resume-link .resume-info .info {
  font-size: 14px;
  margin-top: 8px;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  margin-top: 10px;
  padding: 0 20px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .tab {
  display: inline-flex;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .tab i {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 12px;
  cursor: pointer;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .tab i:not(:first-child) {
  margin-left: 5px;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .tab i.on a {
  background: rgb(98, 172, 1);
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .tab i a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  z-index: 2;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .tab i a:hover {
  background: rgb(98, 172, 1);
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .tab i span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  background: rgb(204, 204, 204);
  z-index: 1;
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .link {
  position: relative;
  font-size: 14px;
  color: rgb(102, 102, 108);
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .link:hover {
  color: rgb(98, 172, 1);
}
.module-container .module-wrapper .module-job .job-content .job-right .resume .resume-tab .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(44, 112, 193);
}
.module-container .module-wrapper .module-class {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.module-container .module-wrapper .module-class .class-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.module-container .module-wrapper .module-class .class-title .left {
  display: flex;
  align-items: center;
}
.module-container .module-wrapper .module-class .class-title .left .title {
  position: relative;
  padding-left: 15px;
}
.module-container .module-wrapper .module-class .class-title .left .title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: 22px;
  background-color: rgb(255, 102, 0);
}
.module-container .module-wrapper .module-class .class-title .left .title .link {
  font-size: 26px;
  font-weight: 600;
  color: rgb(102, 102, 102);
}
.module-container .module-wrapper .module-class .class-title .left .title .link em {
  font-weight: normal;
  color: rgb(255, 102, 0);
}
.module-container .module-wrapper .module-class .class-title .left .nav {
  display: flex;
  margin-left: 35px;
}
.module-container .module-wrapper .module-class .class-title .left .nav .link {
  position: relative;
  font-size: 16px;
  color: rgb(102, 102, 108);
}
.module-container .module-wrapper .module-class .class-title .left .nav .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(142, 142, 148);
}
.module-container .module-wrapper .module-class .class-title .left .nav .link:not(:first-child) {
  margin-left: 30px;
}
.module-container .module-wrapper .module-class .class-title .left .nav .link:not(:first-child)::before {
  content: "/";
  position: absolute;
  top: 0;
  left: -18px;
  color: rgb(192, 192, 198);
}
.module-container .module-wrapper .module-class .class-title .right {
  display: flex;
  align-items: center;
}
.module-container .module-wrapper .module-class .class-title .right .item-text {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.module-container .module-wrapper .module-class .class-title .right .item-text em {
  color: rgb(255, 102, 0);
  margin: 0 5px;
}
.module-container .module-wrapper .module-class .class-title .right .item-link {
  display: flex;
  margin-left: 15px;
}
.module-container .module-wrapper .module-class .class-title .right .item-link .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 38px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  border-radius: 38px;
  background-color: rgb(255, 102, 0);
}
.module-container .module-wrapper .module-class .class-title .right .item-link .link:not(:first-child) {
  margin-left: 10px;
}
.module-container .module-wrapper .module-class .class-content {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.module-container .module-wrapper .module-class .class-content .class-left {
  width: 325px;
  height: 385px;
}
.module-container .module-wrapper .module-class .class-content .class-left .class-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  line-height: 1;
}
.module-container .module-wrapper .module-class .class-content .class-left .class-type .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 35px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-class .class-content .class-left .class-type .link:hover .text {
  position: relative;
}
.module-container .module-wrapper .module-class .class-content .class-left .class-type .link:hover .text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(62, 62, 68);
}
.module-container .module-wrapper .module-class .class-content .class-right {
  width: 860px;
  height: 385px;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-photo {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  height: 220px;
  line-height: 1;
  padding: 15px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-class .class-content .class-right .class-photo .class-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-photo .class-link:hover .text em {
  position: relative;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-photo .class-link:hover .text em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(52, 52, 58);
}
.module-container .module-wrapper .module-class .class-content .class-right .class-photo .class-link .photo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-photo .class-link .photo .image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-photo .class-link .text {
  display: inline-block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv {
  display: flex;
  justify-content: space-between;
  height: 150px;
  margin-top: 15px;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .class-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 10px;
  width: 565px;
  height: 150px;
  line-height: 1;
  padding: 15px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .class-list .link {
  display: block;
  position: relative;
  font-size: 14px;
  color: rgb(82, 82, 88);
  padding: 0 0 0 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .class-list .link:hover .text {
  position: relative;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .class-list .link:hover .text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(142, 142, 148);
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .class-list .link::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: rgb(229, 229, 229);
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .adv {
  position: relative;
  width: 280px;
  height: 150px;
  background-color: rgb(255, 255, 255);
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .adv::after {
  content: "广告";
  position: absolute;
  right: 2px;
  bottom: 2px;
  line-height: 1;
  font-size: 12px;
  color: rgb(204, 204, 204);
  padding: 2px 5px;
  background-color: rgba(0, 0, 0, 0.4);
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .adv .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.module-container .module-wrapper .module-class .class-content .class-right .class-list-adv .adv .link img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-container .module-wrapper .module-love {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.module-container .module-wrapper .module-love .love-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  line-height: 1;
}
.module-container .module-wrapper .module-love .love-title .left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.module-container .module-wrapper .module-love .love-title .left .item-link {
  display: inline-flex;
}
.module-container .module-wrapper .module-love .love-title .left .item-link .item-image {
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-container .module-wrapper .module-love .love-title .left .item-text {
  font-size: 14px;
  color: rgb(152, 152, 158);
  margin-left: 15px;
}
.module-container .module-wrapper .module-love .love-title .left .item-text em {
  color: rgb(234, 97, 132);
  margin: 0 5px;
}
.module-container .module-wrapper .module-love .love-title .left .item-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 38px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  margin-left: 15px;
  border-radius: 38px;
  background-color: rgb(234, 97, 132);
}
.module-container .module-wrapper .module-love .love-title .center {
  flex: 1;
  display: flex;
  position: relative;
}
.module-container .module-wrapper .module-love .love-title .center::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted rgb(182, 182, 188);
  z-index: 10;
}
.module-container .module-wrapper .module-love .love-title .right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.module-container .module-wrapper .module-love .love-title .right .link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  padding: 0 25px;
  border-radius: 38px;
  background-color: rgb(27, 164, 232);
}
.module-container .module-wrapper .module-love .love-title .right .link.red {
  background-color: rgb(245, 67, 67);
}
.module-container .module-wrapper .module-love .love-title .right .link:not(:first-child) {
  margin-left: 10px;
}
.module-container .module-wrapper .module-love .love-content {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  -moz-column-gap: 15px;
       column-gap: 15px;
  width: 100%;
  line-height: 1;
  margin-top: 15px;
}
.module-container .module-wrapper .module-love .love-content .love-item {
  width: 100%;
  height: 280px;
  text-align: center;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.module-container .module-wrapper .module-love .love-content .love-item .item-link {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
}
.module-container .module-wrapper .module-love .love-content .love-item .item-link:hover .text {
  color: rgb(255, 255, 255);
  background-color: rgba(250, 100, 140, 0.5);
}
.module-container .module-wrapper .module-love .love-content .love-item .item-link:hover .text em:not(:first-child)::before {
  border-left: 1px solid rgb(255, 255, 255);
}
.module-container .module-wrapper .module-love .love-content .love-item .item-link .image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-container .module-wrapper .module-love .love-content .love-item .item-link .text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.8);
}
.module-container .module-wrapper .module-love .love-content .love-item .item-link .text em:not(:first-child) {
  position: relative;
  margin-left: 25px;
}
.module-container .module-wrapper .module-love .love-content .love-item .item-link .text em:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 1px;
  height: 14px;
  border-left: 1px solid rgb(142, 142, 148);
}
.module-container .module-wrapper .module-love .love-content .love-item .item-text {
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: rgb(156, 165, 178);
}
.module-container .module-wrapper .module-love .love-content .love-item .item-text.boy::before {
  content: "\e7c8";
  font-size: 20px;
  margin-right: 3px;
  vertical-align: -2px;
}
.module-container .module-wrapper .module-love .love-content .love-item .item-text.girl::before {
  content: "\e7c9";
  font-size: 20px;
  margin-right: 3px;
  vertical-align: -2px;
}
.module-container .module-wrapper .module-app {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.module-container .module-wrapper .module-app .app-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.module-container .module-wrapper .module-app .app-title .left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.module-container .module-wrapper .module-app .app-title .left .item-link {
  display: inline-flex;
}
.module-container .module-wrapper .module-app .app-title .left .item-link .item-image {
  height: 83px;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-container .module-wrapper .module-app .app-title .left .item-text {
  font-size: 14px;
  color: rgb(152, 152, 158);
  margin-left: 15px;
}
.module-container .module-wrapper .module-app .app-title .left .item-text em {
  color: rgb(255, 102, 0);
  margin-left: 5px;
}
.module-container .module-wrapper .module-app .app-title .center {
  flex: 1;
  display: flex;
  position: relative;
}
.module-container .module-wrapper .module-app .app-title .center::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted rgb(182, 182, 188);
  z-index: 10;
}
.module-container .module-wrapper .module-app .app-title .right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.module-container .module-wrapper .module-app .app-title .right .prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgb(213, 213, 213);
  border: 1px solid rgb(213, 213, 213);
  border-right: none;
}
.module-container .module-wrapper .module-app .app-title .right .prev:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(213, 213, 213);
}
.module-container .module-wrapper .module-app .app-title .right .prev.prevStop {
  color: rgb(235, 235, 235);
  background-color: rgb(213, 213, 213);
}
.module-container .module-wrapper .module-app .app-title .right .prev::before {
  content: "\e604";
  font-size: 30px;
  font-family: iconfont;
}
.module-container .module-wrapper .module-app .app-title .right .next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgb(213, 213, 213);
  border: 1px solid rgb(213, 213, 213);
  border-left: none;
}
.module-container .module-wrapper .module-app .app-title .right .next:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(213, 213, 213);
}
.module-container .module-wrapper .module-app .app-title .right .next.nextStop {
  color: rgb(235, 235, 235);
  background-color: rgb(213, 213, 213);
}
.module-container .module-wrapper .module-app .app-title .right .next::before {
  content: "\e66e";
  font-size: 30px;
  font-family: iconfont;
}
.module-container .module-wrapper .module-app .app-title .right .more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  color: rgb(213, 213, 213);
  border: 1px solid rgb(213, 213, 213);
}
.module-container .module-wrapper .module-app .app-title .right .more:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(213, 213, 213);
}
.module-container .module-wrapper .module-app .app-title .right .more::before {
  content: "\e61c";
  font-size: 30px;
  font-family: iconfont;
}
.module-container .module-wrapper .module-app .app-content {
  display: flex;
  width: 1200px;
  height: 280px;
  margin-top: 15px;
  overflow: hidden;
}
.module-container .module-wrapper .module-app .app-content .app-item {
  width: 185px;
  height: 280px;
  text-align: center;
  margin-right: 18px;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.module-container .module-wrapper .module-app .app-content .app-item .photo-link {
  position: relative;
  display: block;
  height: 235px;
}
.module-container .module-wrapper .module-app .app-content .app-item .photo-link:hover .text {
  background-color: rgba(65, 103, 131, 0.5);
}
.module-container .module-wrapper .module-app .app-content .app-item .photo-link .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  padding: 0 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
.module-container .module-wrapper .module-app .app-content .app-item .info {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}
.module-container .module-wrapper .module-app .app-content .app-item .info em {
  font-size: 14px;
  color: rgb(171, 179, 190);
}
.module-container .module-wrapper .module-app .app-content .app-item .info em:not(:first-child) {
  margin-left: 8px;
}
.module-container .module-wrapper .module-app .app-content .app-item .info em:nth-child(1)::before {
  content: "\e6a3";
  font-size: 20px;
  vertical-align: -2px;
  padding-left: 3px;
}
.module-container .module-wrapper .module-app .app-content .app-item .info em:nth-child(2)::before {
  content: "\e62a";
  font-size: 16px;
  padding-left: 3px;
}
.module-container .module-wrapper .module-app .app-content .app-item .info em:nth-child(3)::before {
  content: "\e60b";
  font-size: 16px;
  vertical-align: -1px;
  padding-left: 3px;
}
.module-container .module-wrapper .module-link {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.module-container .module-wrapper .module-link .link-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  line-height: 1;
}
.module-container .module-wrapper .module-link .link-title .left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.module-container .module-wrapper .module-link .link-title .left .item-text {
  font-size: 18px;
}
.module-container .module-wrapper .module-link .link-title .center {
  flex: 1;
  display: flex;
  position: relative;
}
.module-container .module-wrapper .module-link .link-title .center::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted rgb(182, 182, 188);
  z-index: 10;
}
.module-container .module-wrapper .module-link .link-title .right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.module-container .module-wrapper .module-link .link-title .right .item-text {
  font-size: 12px;
  color: rgb(49, 126, 216);
}
.module-container .module-wrapper .module-link .link-content {
  line-height: 1;
  margin-top: 10px;
}
.module-container .module-wrapper .module-link .link-content .link-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 10px;
}
.module-container .module-wrapper .module-link .link-content .link-list .link {
  position: relative;
  font-size: 14px;
  color: rgb(52, 52, 58);
  margin: 0 20px 10px 0;
}
.module-container .module-wrapper .module-link .link-content .link-list .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(82, 82, 88);
}
.module-container .module-wrapper .module-link .link-content .union-list {
  display: flex;
  margin-bottom: 20px;
  padding: 10px 0;
  border-radius: 10px;
  overflow: hidden;
}
.module-container .module-wrapper .module-link .link-content .union-list .left {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 600;
  margin-right: 10px;
  padding: 15px 0 0;
}
.module-container .module-wrapper .module-link .link-content .union-list .right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 15px 20px 5px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.02);
}
.module-container .module-wrapper .module-link .link-content .union-list .right::after {
  content: "";
  position: absolute;
  top: 17px;
  left: -12px;
  border: 6px solid transparent;
  border-right-color: rgb(232, 232, 238);
}
.module-container .module-wrapper .module-link .link-content .union-list .right .link {
  position: relative;
  font-size: 14px;
  color: rgb(52, 52, 58);
  margin: 0 20px 10px 0;
}
.module-container .module-wrapper .module-link .link-content .union-list .right .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(82, 82, 88);
}

.footer-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.footer-container .footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background-color: rgb(1, 130, 72);
}
.footer-container .footer-nav .naver {
  display: flex;
  justify-content: center;
  width: 1200px;
}
.footer-container .footer-nav .naver .link {
  position: relative;
  font-size: 14px;
  color: rgb(255, 255, 255);
}
.footer-container .footer-nav .naver .link:not(:first-child) {
  margin-left: 30px;
}
.footer-container .footer-nav .naver .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.footer-container .footer-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 1200px;
  line-height: 1;
  padding: 20px 0;
}
.footer-container .footer-wrapper p {
  font-size: 14px;
  color: rgb(52, 52, 58);
}
.footer-container .footer-wrapper p:not(:first-child) {
  margin-top: 10px;
}
.footer-container .footer-wrapper .bad {
  display: flex;
  color: rgb(31, 148, 219);
  margin: 15px 0;
}
.footer-container .footer-wrapper .bad .link {
  position: relative;
  font-size: 14px;
  color: rgb(31, 148, 219);
  margin-right: 10px;
}
.footer-container .footer-wrapper .bad .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(31, 148, 219);
}
.footer-container .footer-wrapper .bad .text:not(:last-child) {
  margin-right: 10px;
}
.footer-container .footer-wrapper .bad .text .link {
  margin-right: 0;
}
.footer-container .footer-wrapper .beian {
  display: flex;
  align-items: center;
  line-height: 1;
  color: rgb(52, 52, 58);
}
.footer-container .footer-wrapper .beian .link {
  position: relative;
  font-size: 14px;
  color: rgb(52, 52, 58);
}
.footer-container .footer-wrapper .beian .link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(52, 52, 58);
}
.footer-container .footer-wrapper .beian .item-text {
  display: inline-flex;
  align-items: center;
  margin: 0 15px;
}
.footer-container .footer-wrapper .beian .item-text img {
  height: 16px;
  margin-right: 3px;
}

.service-float {
  position: fixed;
  bottom: 65px;
  right: calc((100% - 1200px) / 2 - 90px);
  z-index: 90;
}
.service-float .service-container {
  width: 72px;
  height: auto;
  border: 1px solid rgb(230, 230, 230);
  background-color: rgb(255, 255, 255);
}
.service-float .service-container .service {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-align: center;
  cursor: pointer;
}
.service-float .service-container .service:hover .title {
  color: rgb(6, 87, 178);
}
.service-float .service-container .service:hover .float-service {
  display: block;
}
.service-float .service-container .service .title {
  position: relative;
  display: block;
  font-size: 12px;
  padding: 14px 0;
}
.service-float .service-container .service .title::before {
  content: "\e60d";
  display: block;
  font-size: 26px;
  font-family: iconfont;
  padding-bottom: 1px;
}
.service-float .service-container .service .title::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 1px;
  width: 50px;
  height: 1px;
  border-bottom: 1px solid rgb(238, 238, 238);
}
.service-float .service-container .service .float-service {
  display: none;
  position: absolute;
  top: 0px;
  right: 100%;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  padding-right: 10px;
  cursor: default;
}
.service-float .service-container .service .float-service .float-service-content {
  position: relative;
  font-size: 0;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px 0px;
  box-sizing: border-box;
  background: rgb(255, 255, 255);
}
.service-float .service-container .service .float-service .float-service-content p {
  font-size: 12px;
  padding-top: 4px;
  padding-left: 2px;
  color: rgb(4, 95, 184);
}
.service-float .service-container .service .float-service .float-service-content .arrow {
  position: absolute;
  bottom: 55px;
  right: -5px;
  width: 8px;
  height: 8px;
  font-size: 0px;
  border-top: 1px solid rgb(234, 240, 238);
  border-right: 1px solid rgb(234, 240, 238);
  background: rgb(255, 255, 255);
  transform: rotate(45deg);
  overflow: hidden;
}
.service-float .service-container .app {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-align: center;
  cursor: pointer;
}
.service-float .service-container .app:hover .title {
  color: rgb(6, 87, 178);
}
.service-float .service-container .app:hover .float-app {
  display: block;
}
.service-float .service-container .app .title {
  position: relative;
  display: block;
  font-size: 12px;
  padding: 14px 0;
}
.service-float .service-container .app .title::before {
  content: "\e62e";
  display: block;
  font-size: 24px;
  font-family: iconfont;
  padding-bottom: 1px;
}
.service-float .service-container .app .title::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -1px;
  width: 50px;
  height: 1px;
  border-bottom: 1px solid rgb(238, 238, 238);
}
.service-float .service-container .app .float-app {
  display: none;
  position: absolute;
  top: -68px;
  right: 100%;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  padding-right: 10px;
  cursor: default;
}
.service-float .service-container .app .float-app .float-app-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px 0px;
  background: rgb(255, 255, 255);
}
.service-float .service-container .app .float-app .float-app-content img {
  width: 120px;
  height: 120px;
}
.service-float .service-container .app .float-app .float-app-content p {
  font-size: 14px;
  padding-top: 4px;
  padding-left: 2px;
  color: rgb(132, 132, 138);
}
.service-float .service-container .app .float-app .float-app-content p:last-of-type {
  color: rgb(6, 87, 178);
}
.service-float .service-container .app .float-app .float-app-content .arrow {
  position: absolute;
  bottom: 100px;
  right: -5px;
  width: 8px;
  height: 8px;
  font-size: 0px;
  border-top: 1px solid rgb(234, 240, 238);
  border-right: 1px solid rgb(234, 240, 238);
  background: rgb(255, 255, 255);
  transform: rotate(45deg);
  overflow: hidden;
}
.service-float .service-container .wechat {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-align: center;
  cursor: pointer;
}
.service-float .service-container .wechat:hover .title {
  color: rgb(6, 87, 178);
}
.service-float .service-container .wechat:hover .float-wechat {
  display: block;
}
.service-float .service-container .wechat .title {
  position: relative;
  display: block;
  font-size: 12px;
  padding: 14px 0;
}
.service-float .service-container .wechat .title::before {
  content: "\e614";
  display: block;
  font-size: 28px;
  font-family: iconfont;
}
.service-float .service-container .wechat .float-wechat {
  display: none;
  position: absolute;
  top: -75px;
  right: 100%;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  padding-right: 10px;
  cursor: default;
}
.service-float .service-container .wechat .float-wechat .float-wechat-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px 0px;
  background: rgb(255, 255, 255);
}
.service-float .service-container .wechat .float-wechat .float-wechat-content img {
  width: 120px;
  height: 120px;
}
.service-float .service-container .wechat .float-wechat .float-wechat-content p {
  font-size: 14px;
  padding-top: 4px;
  padding-left: 2px;
  color: rgb(132, 132, 138);
}
.service-float .service-container .wechat .float-wechat .float-wechat-content p:last-of-type {
  color: rgb(1, 185, 102);
}
.service-float .service-container .wechat .float-wechat .float-wechat-content .arrow {
  position: absolute;
  bottom: 100px;
  right: -5px;
  width: 8px;
  height: 8px;
  font-size: 0px;
  border-top: 1px solid rgb(234, 240, 238);
  border-right: 1px solid rgb(234, 240, 238);
  background: rgb(255, 255, 255);
  transform: rotate(45deg);
  overflow: hidden;
}
.service-float .float-top {
  width: 72px;
  height: auto;
  margin-top: 10px;
  border: 1px solid rgb(230, 230, 230);
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
}
.service-float .float-top.show {
  display: block;
}
.service-float .float-top.hide {
  display: none;
}
.service-float .float-top a {
  display: block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}
.service-float .float-top a:hover span {
  color: rgb(6, 87, 178);
}
.service-float .float-top span::before {
  content: "\f0f0";
  font-size: 26px;
}

.adv-down {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.adv-down .adv-item {
  position: relative;
  width: 1200px;
  height: auto;
  margin-top: 10px;
}
.adv-down .adv-item .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  color: rgb(255, 255, 255);
  padding: 3px 10px;
  border-radius: 3px;
  background-color: rgb(0, 0, 0);
  cursor: default;
  z-index: 2;
}
.adv-down .adv-item .adv {
  display: block;
  position: relative;
  width: 1200px;
  height: auto;
}
.adv-down .adv-item .adv::after {
  content: "广告";
  position: absolute;
  right: 2px;
  bottom: 2px;
  line-height: 1;
  font-size: 12px;
  color: rgb(204, 204, 204);
  padding: 2px 5px;
  background-color: rgba(0, 0, 0, 0.4);
}
.adv-down .adv-item .adv img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.adv-banner {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.adv-banner.top {
  margin-top: 10px;
}
.adv-banner.top .adv:last-child {
  margin-bottom: 0;
}
.adv-banner .adv {
  display: block;
  position: relative;
  width: 1200px;
  height: auto;
  margin-bottom: 10px;
}
.adv-banner .adv::after {
  content: "广告";
  position: absolute;
  right: 2px;
  bottom: 2px;
  line-height: 1;
  font-size: 12px;
  color: rgb(204, 204, 204);
  padding: 2px 5px;
  background-color: rgba(0, 0, 0, 0.4);
}
.adv-banner .adv img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=index.css.map */