.page-wrap {
  padding: 0 10vw;
}
.page-title {
  margin: 24px 0 32px 0;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  position: relative;
}
.page-title:after {
  content: " ";
  display: block;
  position: absolute;
  width: 20px;
  height: 4px;
  background: #ff6b00;
  bottom: -16px;
  left: 0;
}
body {
  font-family: "Microsoft YaHei UI";
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
.hover-able {
  cursor: pointer;
}
.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-container .top-nav {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10vw;
  box-sizing: border-box;
}
.page-container .top-nav .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-container .top-nav .left .page-icon {
  margin-right: 14px;
  width: 36px;
  height: 36px;
}
.page-container .top-nav .left .page-name,
.page-container .top-nav .left .page-mini-name {
  font-weight: 700;
}
.page-container .top-nav .left .page-mini-name {
  display: none;
}
@media (max-width: 580px) {
.page-container .top-nav .left .page-name {
    display: none;
}
.page-container .top-nav .left .page-mini-name {
    display: inline-block;
}
}
.page-container .top-nav .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* 当屏幕宽度小于600像素时应用的样式 */
}
.page-container .top-nav .right .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.page-container .top-nav .right .nav-wrap .nav-item {
  color: #ffffff;
  text-align: center;
  font-family: "Microsoft YaHei UI";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  height: 60px;
  line-height: 60px;
  font-weight: normal;
}
.page-container .top-nav .right .nav-wrap .nav-item.active {
  font-weight: 700;
}
.page-container .top-nav .right .nav-wrap .nav-item.active:after {
  content: " ";
  display: block;
  position: absolute;
  width: calc(100% - 10px);
  height: 4px;
  background: #ff6b00;
  bottom: 4px;
  left: 5px;
}
.page-container .top-nav .right .nav-wrap .nav-item .dropdown-menu {
  position: absolute;
  top: 55px;
  left: 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  line-height: 18px;
}
.page-container .top-nav .right .nav-wrap .nav-item .dropdown-menu .dropdown-item {
  width: -moz-fit-content;
  width: fit-content;
  word-break: keep-all;
  color: #666666;
  font-size: 12px;
  padding: 8px 16px;
  cursor: pointer;
  min-width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.page-container .top-nav .right .nav-wrap .nav-item .dropdown-menu .dropdown-item:hover {
  background: #f5f5f5;
}
.page-container .top-nav .right .mini-nav-icon {
  display: none;
  font-size: 25px;
}
.page-container .top-nav .right .mini-nav-list {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
}
@media (max-width: 1000px) {
.page-container .top-nav .right .nav-wrap {
    display: none;
}
.page-container .top-nav .right .mini-nav-icon {
    display: block;
    margin: 0 -5vw 0 5vw;
}
.page-container .top-nav .right .mini-nav-list {
    display: block;
}
}
.page-container .top-nav .right .login {
  border-radius: 4px;
  border: 1px solid #ffffff;
  width: 100px;
  height: 32px;
  margin-left: 32px;
  color: #ffffff;
  text-align: center;
  font-family: "Microsoft YaHei UI";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  cursor: pointer;
}
.page-container .top-nav.dark {
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.page-container .top-nav.dark .right .nav-wrap .nav-item {
  color: #ffffff;
}
.page-container .top-nav.light {
  position: sticky;
  background: #ffffff;
  border-bottom: 1px solid #f4f4f4;
  color: #666666;
}
.page-container .top-nav.light .right .nav-wrap .nav-item {
  color: #666666;
}
.page-container .top-nav.light .right .login {
  border-color: #666666;
  color: #666666;
}
.page-container .page-view {
  flex: 1;
}
.page-footer {
  height: -moz-fit-content;
  height: fit-content;
  background: #f7f7f7;
  padding: 0 10vw;
}
.page-footer .support {
  display: flex;
  border-bottom: 1px solid #eeeeee;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 0;
  gap: 20px 8vw;
  flex-wrap: wrap;
}
.page-footer .thanks,
.page-footer .link {
  display: flex;
  align-items: center;
}
.page-footer .name {
  color: #999999;
  font-family: "Microsoft YaHei UI";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 50px;
  text-align: left;
}
.page-footer .list {
  height: -moz-fit-content;
  height: fit-content;
  font-size: 0;
}
.page-footer .icon {
  width: auto;
  height: 28px;
  margin-right: 15px;
}
.page-footer .web-copyright {
  padding: 18px 0 24px 0;
}
.page-footer .web-copyright a {
  color: #999999;
  margin-left: 10px;
}
.page-footer .web-copyright a:hover {
  text-decoration: underline;
}
.ant-menu-light .ant-menu-item-selected {
  background-color: #fff3eb;
}
.ant-menu-light .ant-menu-submenu-selected > .ant-menu-submenu-title,
.ant-menu-light .ant-menu-item-selected {
  color: #ff6b00;
}

body[data-v-a645ce74] {
  font-family: "Microsoft YaHei UI";
  text-align: center;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
}
.cmo-container .cmo-banner[data-v-a645ce74] {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #000000;
  font-size: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.cmo-container .cmo-banner .decorate[data-v-a645ce74] {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 118, 19, 0) 0%, #ff6b00 100%);
  opacity: 0.5;
}
.cmo-container .event-wrap[data-v-a645ce74] {
  position: relative;
  padding: 32px 10vw;
}
.cmo-container .event-wrap[data-v-a645ce74]:nth-child(even) {
  background: #f7f7f7;
}
.cmo-container .event-wrap[data-v-a645ce74]:nth-child(odd) {
  background: #ffffff;
}
.cmo-container .event-wrap .event-action[data-v-a645ce74] {
  display: inline-flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #eeeeee;
  position: absolute;
  top: 44px;
  right: 10vw;
  z-index: 5;
  color: #999999;
  text-align: right;
  font-family: "Microsoft YaHei UI";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
.cmo-container .event-wrap .event-title[data-v-a645ce74] {
  color: #333333;
  font-family: "Microsoft YaHei UI";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 36px;
  position: relative;
  text-align: left;
}
.cmo-container .event-wrap .event-title[data-v-a645ce74]:after {
  content: " ";
  display: block;
  position: absolute;
  width: 20px;
  height: 4px;
  background: #ff6b00;
  bottom: -16px;
  left: 0;
}
.cmo-container .event-wrap .event-inner[data-v-a645ce74] {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.cmo-container .event-wrap .event-inner .event-item[data-v-a645ce74] {
  border-radius: 4px;
  background: rgba(238, 238, 238, 0.5);
  display: flex;
  cursor: pointer;
}
.cmo-container .event-wrap .event-inner .event-item .item-time[data-v-a645ce74] {
  width: 118px;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  color: #ff6b00;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
.cmo-container .event-wrap .event-inner .event-item .item-time[data-v-a645ce74]:after {
  content: " ";
  display: block;
  position: absolute;
  width: 1px;
  height: 18px;
  background: #dddddd;
  bottom: 20px;
  right: 0;
}
.cmo-container .event-wrap .event-inner .event-item .item-time .date[data-v-a645ce74] {
  color: #ff6b00;
  font-family: "Microsoft YaHei UI";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.cmo-container .event-wrap .event-inner .event-item .item-time .month[data-v-a645ce74] {
  margin-top: 11px;
  color: #999999;
  font-family: "Microsoft YaHei UI";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}
.cmo-container .event-wrap .event-inner .event-item .item-inner[data-v-a645ce74] {
  width: calc(100% - 86px);
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}
.cmo-container .event-wrap .event-inner .event-item .item-inner .item-title[data-v-a645ce74] {
  width: calc(100% - 40px);
  color: #333333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cmo-container .event-wrap .event-inner .event-item .item-inner .item-explain[data-v-a645ce74] {
  width: calc(100% - 40px);
  margin-top: 12px;
  color: #999999;
  font-family: "Microsoft YaHei UI";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cmo-container .event-wrap .empty[data-v-a645ce74] {
  color: #999999;
}
.cmo-banner .banner[data-v-a645ce74] {
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* 当屏幕宽度小于1100像素时应用的样式 */
@media (max-width: 1000px) {
.cmo-banner .img-banner[data-v-a645ce74] {
    width: auto;
    height: 180px;
}
[data-v-a645ce74] .slick-slide {
    width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
}
.event-item[data-v-a645ce74] {
    width: 80vw;
    min-height: 58px;
    height: -moz-fit-content;
    height: fit-content;
}
}
/* 当屏幕宽度大于1100像素时应用的样式 */
@media (min-width: 1000px) {
[data-v-a645ce74] .slick-slide {
    width: 100vw;
    height: 400px;
}
.cmo-banner .img-banner[data-v-a645ce74] {
    width: auto !important;
    height: 400px;
}
.event-item[data-v-a645ce74] {
    width: calc(50vw - 20px - 10vw);
    height: 58px;
}
}
.ant-carousel[data-v-a645ce74] {
  width: 100%;
  font-size: 0;
}

