@charset "UTF-8";
/* 全局变量 */
:root {
  --primary-color: #e24d6f;
  --primary-color-rgb: 226, 77, 111;
  --white-color: #fff;

  --round-full: 9999px;
  --box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  --box-shadow-light: 0 1px 6px rgba(0, 0, 0, 0.06);
  --linear-btn: linear-gradient(90deg, #e65a7b, #da4d86, #cf428f, #bf329d, #b327a7, #a71bb1);

  --theme-xhc-bg: #c1d8ff;
  --theme-xhc-title: #2f59d2;
  --theme-solo-bg: #ffe9dc;
  --theme-solo-title: #eb4048;

  --theme-dance-bg: #fee2b2;
  --theme-dance-title: #ff9000;
  --theme-recite-bg: #bbf2fa;
  --theme-recite-title: #199cae;
  --theme-instrument-bg: #d9f6cc;
  --theme-instrument-title: #059669;

  --theme-drama-bg: #fedef5;
  --theme-drama-title: #ff38ad;
  --theme-chorus-bg: #d8c9f6;
  --theme-chorus-title: #5b38b4;
  --theme-review-bg: #219319;
}

html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: 100%;
}
#wrapper {
  width: 100%;
  min-width: 1240px;
  display: flex;
  flex-direction: column;
}
.wp {
  width: 1200px;
  margin: 0 auto;
}
.full-bg {
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  /* background: url(../../assets/images/page-bg-lt.png), url(../../assets/images/page-bg.png);
  background-size:
    20% auto,
    100% 100%;
  background-position:
    5% 5%,
    right bottom;
  background-repeat: no-repeat; */
  background: url(../../assets/images/page-bg.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.full-bg.scroll-mode {
  background: url(../../assets/images/page-bg.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.full-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(135deg, #13c19e, #16b2a4, #1a98b0, #1e80ba, #2267c5, #2651cf); */
  z-index: -1;
}
.bg-placeholder {
  width: 20%;
  position: absolute;
  top: 2.5%;
  left: 4%;
}
/* @media screen and (max-width: 1240px) {
  .bg-placeholder {
    left: 20px;
  }
} */

.pic img {
  width: 100%;
  height: auto;
  display: block;
}
.m-auto {
  margin: 0 auto;
}
#wrapper .mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-45 {
  margin-top: 45px;
}
.text-underline {
  text-decoration: underline;
}
.text-center {
  text-align: center;
}
.cursor-pointer {
  cursor: pointer;
}
.overflow-hidden {
  overflow: hidden;
}
.bold {
  font-weight: bold;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.space-between {
  justify-content: space-between;
}
/* 1.首页开始=================================== */
.wp-content {
  width: 100%;
  margin: 0 auto 0;
  /* background-color: lightblue; */
  padding-bottom: 100px;
}
.home-header-wrapper {
  width: 100%;
  position: relative;
  /* background-color: lightblue; */
}
.home-header-wrapper .bg-placeholder {
  /* border: 1px solid var(--white-color); */
  top: 17.5%;
}
.home-header {
  width: 780px;
}
#nav-render {
  width: 100%;
  height: 50px;
  margin-top: 20px;
  /* background-color: var(--primary-color); */
}
.nav-list {
  width: 100%;
  /* margin-top: 5%; */
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.nav-list .nav-item {
  /* width: 15%; */
  flex: 1;
  max-width: 15%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: var(--white-color);
  font-size: 15px;
  border-radius: var(--round-full);
  cursor: pointer;
  border: 1px dashed var(--white-color);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    font-weight 0.3s ease;
}
.nav-list .nav-item:hover,
.nav-list .nav-item.active {
  background-color: var(--white-color);
  color: var(--primary-color);
  font-weight: bold;
}

.nav-list .nav-item.dropdown {
  position: relative;
}
.nav-list .nav-item.dropdown::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid var(--white-color);
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-list .nav-item.dropdown:hover::after {
  opacity: 1;
}
.nav-list .nav-item.dropdown .a-dropdown {
  /* display: none; */
  /* background-color: orange; */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 15px);
  width: auto;
  min-width: 100%;
  height: auto;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.nav-list .nav-item.dropdown:hover .a-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0px);
}
.nav-list .nav-item.dropdown .a-dropdown .dropdown-item {
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: var(--primary-color);
  font-size: 15px;
  border-radius: var(--round-full);
  cursor: pointer;
  border: 1px dashed var(--primary-color);
  background-color: var(--white-color);
  white-space: nowrap;
  padding: 0 30px;
  font-weight: bold;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.nav-list .nav-item.dropdown .a-dropdown .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.pub-content {
  width: 100%;
  margin: 5% auto 0;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.home-content {
  width: 100%;
  padding: 35px 0px;
  display: flex;
  --divider-width: 2px;
}
.dyz-divider {
  width: var(--divider-width);
  background-color: #eee;
}
/* 登录 */
.login-content {
  width: calc(60% - var(--divider-width) / 2);
  padding: 30px 140px 10px;
  /* background-color: palegoldenrod; */
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.section-title .tips {
  margin: 0 10px;
  letter-spacing: 2px;
  font-size: 23px;
}

.section-title .circle {
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.dyz-form {
  margin-top: 45px;
}

.dyz-form-item {
  width: 100%;
  margin-bottom: 25px;
}

.dyz-form-item input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  font-size: 19px;
  color: #333333;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #eeeeee;
}
.dyz-form-item input::placeholder {
  color: #333333;
  font-size: 17px;
}
.submit-btn {
  width: 100%;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-size: 20px;
  color: var(--white-color);
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 2px;
  margin-top: 40px;
  background-image: linear-gradient(to right, #e65a7b, #da4d86, #cf428f, #bf329d, #b327a7, #a71bb1);
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background-image: linear-gradient(to right, #a71bb1, #b327a7, #bf329d, #cf428f, #da4d86, #e65a7b);
}

.login-footer .footer-item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  justify-content: space-between;
  color: #333333;
  font-size: 16px;
}
.login-footer .footer-item:last-child {
  margin-bottom: 0;
}
.login-footer .footer-item .forget-pwd {
  color: #7f7f7f;
}
/* 官方账号 */
.sub-content {
  width: calc(40% - var(--divider-width) / 2);
  padding-top: 15px;
  /* background-color: lightcoral; */
}

.sub-img {
  width: 142px;
}

.sub-ewm {
  width: 240px;
  margin: 45px auto 0;
}

.sub-tips {
  width: 63%;
  color: #999999;
  font-size: 13px;
  text-align: justify;
  margin: 30px auto 0;
  line-height: 22px;
}

.dyz-footer {
  width: 100%;
  margin-top: auto;
  /* background-color: orange; */
  /* position: absolute;
  left: 0;
  bottom: 0%;
  z-index: 10; */
  padding-bottom: 50px;
}

.dyz-footer p {
  font-size: 16px;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--white-color);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.dyz-footer p a {
  display: inline-block;
}

/* 1.首页结束=================================== */
/* 2.日程安排开始=================================== */
.schedule-content {
  width: 100%;
  padding: 40px 30px 20px;
}
.schedule-list {
  width: 100%;
  margin-top: 20px;
}
.schedule-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule-item .schedule-category {
  width: 20%;
  height: 55px;
  /* text-align: center; */
  line-height: 1;
  font-size: 17px;
  font-weight: bold;
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 8px;
  /* letter-spacing: 1px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.schedule-item .schedule-category .tips {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.schedule-item .schedule-info {
  width: calc(80% - 40px);
  /* padding: 40px 10px 30px; */
  padding: 30px 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.schedule-item .schedule-info:hover {
  background-color: #f7f7f7;
  cursor: pointer;
}
.schedule-item:last-child .schedule-info {
  border-bottom: none;
}
.schedule-info .schedule-details {
  width: calc(100% - 130px);
  display: flex;
  align-items: center;
  padding-right: 50px;
  font-size: 14px;
  /* margin-bottom: 10px; */
  font-weight: 500;
  color: #333;
  line-height: 24px;
}
.schedule-details .schedule-time {
  width: 42%;
  padding-right: 20px;
  /* background-color: lightcoral; */
}
.dyz-schedule-row {
  display: flex;
  margin-bottom: 3px;
}
.dyz-schedule-label {
  width: auto;
  flex-shrink: 0;
}
.schedule-details .schedule-location {
  width: 65%;
  /* background-color: palevioletred; */
}

.schedule-info .schedule-btn {
  width: 130px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white-color);
  background: var(--linear-btn);
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.schedule-info .schedule-btn:not(.disabled):hover {
  opacity: 0.85;
}
.schedule-info .schedule-btn.disabled {
  /* cursor: not-allowed; */
  /* pointer-events: none; */
  background: #a5a5a5;
}
/* 2.日程安排结束=================================== */
/*3.抽签结果开始=================================== */
.drawResult-content {
  width: 100%;
  padding: 40px 50px 60px;
}
.dyz-query-item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 40px;
}
.dyz-query-item:last-child {
  margin-bottom: 0;
}
.dzy-query-label {
  width: 66px;
  text-align-last: justify;
  flex-shrink: 0;
  font-size: 15px;
  color: #666666;
  font-weight: bold;
  /* background-color: orange; */
}
.dzy-query-list {
  display: flex;
  gap: 18px;
}
.dzy-query-list span {
  min-width: 100px;
  height: 35px;
  line-height: 35px;
  color: #666666;
  background-color: #f2f2f2;
  border-radius: var(--round-full);
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: bold;
  padding: 0 20px;
  /* transition: background-color 0.3s ease; */
}
.dzy-query-list span:hover {
  background-color: #e7e7e7;
}
.dzy-query-list span.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.dyz-tips {
  font-size: 15px;
  color: #686868;
  text-align: center;
  letter-spacing: 1px;
}
.list-content {
  border: 1px solid #cccccc;
}

.list-content li {
  padding: 16px 0;
  color: #686868;
  font-size: 15px;
  text-align: center;
  display: flex;
  align-items: center;
}

.list-content li span {
  max-width: 80%;
}

/* 表头样式 */
.list-content .th {
  background-color: #f6f6f6;
  font-size: 15px;
  color: #686868;
  font-weight: bold;
}
/* 序号列 */
.list-content li .show-num {
  width: 15%;
}
/* 节目名称 */
.list-content li .show-name {
  width: 35%;
}
.list-content li .show-name em {
  display: inline-block;
  width: 85%;
  text-align: left;
  line-height: 20px;
  font-style: normal;
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}
/* 学校名称 */
.list-content li .show-school {
  width: 35%;
}
.list-content li .show-school em {
  display: inline-block;
  width: 65%;
  text-align: left;
  line-height: 20px;
  font-style: normal;
}
/* 成绩列 */
.list-content li .show-score {
  width: 15%;
}
/* 成绩样式 */
.has-score {
  color: #dc5257;
  font-weight: bold;
}
/*奇数背景变色 */
.list-content li:not(:first-child):nth-child(odd) {
  background-color: #fafafa;
}
.list-content li:not(:first-child):nth-child(even) {
  padding: 20px 0;
}

/* 未出成绩 不显示成绩列 */
.list-content.draw-table li .show-score {
  display: none;
}
.list-content.draw-table li .show-num {
  width: 16%;
}
.list-content.draw-table li .show-name {
  width: 42%;
}
.list-content.draw-table li .show-school {
  width: 42%;
}

/*3.抽签结果结束=================================== */
/* 4.展演直播开始=================================== */
.live-content {
  width: 100%;
  padding: 40px 70px 90px;
}
.dyz-live-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-bottom: 40px;
}
.dyz-live-row:last-child {
  margin-bottom: 0;
}
.dyz-live-col {
  aspect-ratio: 2.34/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  padding: 40px 30px 0;
  cursor: pointer;
  background-repeat: no-repeat;
}

.dyz-live-row.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.dyz-live-row.grid-cols-3 .dyz-live-col {
  aspect-ratio: 3/2;
}
.dyz-live-title {
  font-size: 36px;
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.dyz-live-status-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* background-color: palegoldenrod; */
}
.dyz-live-status {
  width: 125px;
  line-height: 1;
  padding: 9px 0;
  text-align: center;
  font-size: 15px;
  /* margin: 0 auto; */
  font-weight: bold;
  letter-spacing: 1px;
}

.dyz-live-status.review {
  padding: 10px 0;
  background-color: var(--theme-review-bg);
  color: var(--white-color);
}
.not-live .dyz-live-status:not(.review) {
  border-width: 1px;
  border-style: dotted;
}
.living .dyz-live-status:not(.review) {
  color: var(--white-color);
}
/* 
暂未展演 not-live
即将直播、直播中、回顾 living
*/
/*小合唱或表演唱 */
.theme-xhc {
  background-color: var(--theme-xhc-bg);
  background-image: url("../images/theme-bg-xhc.png");
  background-size: auto 90%;
  background-position: 20% 100%;
}
.theme-xhc .dyz-live-title {
  color: var(--theme-xhc-title);
}
.theme-xhc.not-live .dyz-live-status:not(.review) {
  color: var(--theme-xhc-title);
  border-color: var(--theme-xhc-title);
}
.theme-xhc.living .dyz-live-status:not(.review) {
  background-color: var(--theme-xhc-title);
}
/* 个人表演 */
.theme-solo {
  background-color: var(--theme-solo-bg);
  background-image: url("../images/theme-bg-solo.png");
  background-size: auto 80%;
  background-position: 15% 50%;
}
.theme-solo .dyz-live-title {
  color: var(--theme-solo-title);
}
.theme-solo.not-live .dyz-live-status:not(.review) {
  color: var(--theme-solo-title);
  border-color: var(--theme-solo-title);
}
.theme-solo.living .dyz-live-status:not(.review) {
  background-color: var(--theme-solo-title);
}
/* 舞蹈 */
.theme-dance {
  background-color: var(--theme-dance-bg);
  background-image: url("../images/theme-bg-dance.png");
  background-size: auto 120%;
  background-position: 75% 48%;
}
.theme-dance .dyz-live-title {
  color: var(--theme-dance-title);
}
.theme-dance.not-live .dyz-live-status:not(.review) {
  color: var(--theme-dance-title);
  border-color: var(--theme-dance-title);
}
.theme-dance.living .dyz-live-status:not(.review) {
  color: var(--white-color);
  background-color: var(--theme-dance-title);
}
/* 朗诵 */
.theme-recite {
  background-color: var(--theme-recite-bg);
  background-image: url("../images/theme-bg-recite.png");
  background-size: auto 107%;
  background-position: 50% -15%;
}
.theme-recite .dyz-live-title {
  color: var(--theme-recite-title);
}
.theme-recite.not-live .dyz-live-status:not(.review) {
  color: var(--theme-recite-title);
  border-color: var(--theme-recite-title);
}
.theme-recite.living .dyz-live-status:not(.review) {
  color: var(--white-color);
  background-color: var(--theme-recite-title);
}
/* 器乐 */
.theme-instrument {
  background-color: var(--theme-instrument-bg);
  background-image: url("../images/theme-bg-instrument.png");
  background-size: 80% auto;
  background-position: 50% 75%;
}
.theme-instrument .dyz-live-title {
  color: var(--theme-instrument-title);
}
.theme-instrument.not-live .dyz-live-status:not(.review) {
  color: var(--theme-instrument-title);
  border-color: var(--theme-instrument-title);
}
.theme-instrument.living .dyz-live-status:not(.review) {
  color: var(--white-color);
  background-color: var(--theme-instrument-title);
}
/* 戏剧 */
.theme-drama {
  background-color: var(--theme-drama-bg);
  background-image: url("../images/theme-bg-drama.png");
  background-size: auto 100%;
  background-position: 50% 50%;
}
.theme-drama .dyz-live-title {
  color: var(--theme-drama-title);
}
.theme-drama.not-live .dyz-live-status:not(.review) {
  color: var(--theme-drama-title);
  border-color: var(--theme-drama-title);
}
.theme-drama.living .dyz-live-status:not(.review) {
  color: var(--white-color);
  background-color: var(--theme-drama-title);
}
/* 合唱 */
.theme-chorus {
  background-color: var(--theme-chorus-bg);
  background-image: url("../images/theme-bg-chorus.png");
  background-size: 36% auto;
  background-position: 50% 50%;
}
.theme-chorus .dyz-live-title {
  color: var(--theme-chorus-title);
}
.theme-chorus.not-live .dyz-live-status:not(.review) {
  color: var(--theme-chorus-title);
  border-color: var(--theme-chorus-title);
}
.theme-chorus.living .dyz-live-status:not(.review) {
  color: var(--white-color);
  background-color: var(--theme-chorus-title);
}
/* 4.展演直播结束=================================== */
/* 5.资讯公告开始=================================== */
.notice-content {
  padding: 40px 50px;
}

.notice-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 22px;
}

.notice-left {
  width: 24%;
  aspect-ratio: 16 / 9;
  background-color: var(--primary-color);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.notice-left .notice-date {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 19px;
  line-height: 1;
}

.notice-date span.day {
  font-size: 30px;
  margin-bottom: 10px;
}
.notice-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.notice-img img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  transition: transform 0.735s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.notice-img img:hover {
  transform: scale(1.1);
}

.notice-right {
  width: calc(76% - 30px);
  padding: 15px 22px 10px 20px;
  background-color: #f7f7f7;
  transition: background-color 0.3s ease-in-out;
  flex-shrink: 0;
}
.notice-right:hover {
  background-color: #fef6f8;
}
.notice-right h3 {
  width: 100%;
  font-size: 16px;
  line-height: 23px;
  /* font-weight: bold; */
}
.notice-right .notice-desc {
  height: 44px;
  line-height: 22px;
  font-size: 14px;
  margin-top: 20px;
  color: #999999;
}
.notice-right .notice-time {
  color: #999999;
  font-size: 14px;
  margin-top: 20px;
}
/* 5.资讯公告结束=================================== */
/* 6.通知详情开始=================================== */
.notice-detail-content {
  padding: 50px 60px 40px;
}
.article-title {
  text-align: center;
  line-height: 25px;
  font-size: 21px;
  font-weight: 500;
}
.article-meta {
  color: #939393;
  font-size: 15px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.render-content {
  margin-top: 30px;
}
.render-content p {
  text-indent: 2em;
  font-size: 15px;
  color: #383838;
  line-height: 26px;
  margin-bottom: 10px;
  text-align: justify;
}
.render-content img {
  max-width: 100%;
  display: block;
  margin: 20px auto;
}
/* 6.通知详情结束=================================== */
