@charset "UTF-8";
.top .head_1 .myLine {
  height: 155px;
  display: flex;
  align-items: center;
  border-top: 0;
}

.top .head_1 .myLine .bigTitle {
  font-family: DelaGothic;
  font-size: 42px;
  /* line-height: 57.6px; */
  margin-left: 42px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 44px;
  height: 100%;
}

.top .head_1 .myLine .bigTitle::after {
  padding-right: 44px;
}

.top .head_1 .myLine .bigTitle:hover ~ .myNav {
  display: block;
}

.top .head_1 .myLine .myNav {
  transform: rotate(-10.53deg);
  margin-top: -3%;
  display: none;
}

.top .head_1 .myLine .myNav:hover {
  display: block;
}

.top .head_1 .myLine .myNav .item {
  font-family: Lexend Exa;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: block;
}

.top .head_1 .myLine .myNav .item:not(:last-child) {
  margin-bottom: 22px;
}

.top .head_2 .myLine {
  display: flex;
  justify-content: flex-end;
}

.top .head_2 .myLine .selects {
  display: flex;
  align-items: center;
  height: 102px;
}

.top .head_2 .myLine .selects .item {
  margin-right: 27px;
  width: 140px;
  height: 48px;
  font-family: Lexend Exa;
  font-size: 18px;
  font-weight: 600;
  border: 3px solid var(--theme-color);
  border-radius: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}

.top .head_2 .myLine .selects .item:last-child {
  margin-right: 31px;
}

.top .head_2 .myLine .selects .active {
  background-color: var(--theme-color);
}

.top .head_2 .myLine:first-child {
  border-top: 0;
}

.myBigContent {
  height: calc(100vh - 136px);
  width: 96%;
  margin: auto;
  display: flex;
}

.myBigContent .left {
  flex: 1;
  transition: all 0.8s;
  display: flex;
  flex-direction: column;
}

.myBigContent .left .mySmallContent {
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-track-color: transparent;
}

.myBigContent .left .mySmallContent::-webkit-scrollbar {
  width: 20px;
  background-color: transparent;
}

.myBigContent .left .mySmallContent::-webkit-scrollbar-track {
  background-color: transparent;
  /* 轨道背景颜色 */
  border-right: 3px solid var(--theme-color);
}

.myBigContent .left .mySmallContent::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  /* 滑块背景颜色 */
  border-radius: 0;
  /* 滑块圆角 */
}

.myBigContent .left .mySmallContent .List .myLine {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

.myBigContent .left .mySmallContent .List .myLine:first-child {
  border-top: 0;
}

.myBigContent .left .mySmallContent .List .myLine .text {
  margin-left: 57px;
  font-family: Lexend Exa;
  font-size: 24px;
  font-weight: 400;
  line-height: 37.5px;
}

.myBigContent .left .mySmallContent .List .myLine .text .removeIcon {
  display: none;
}

.myBigContent .left .mySmallContent .List .myLine .textRemove {
  position: relative;
  /* color: var(--theme-color); */
}

.myBigContent .left .mySmallContent .List .myLine .textRemove .removeIcon {
  position: absolute;
  width: 100%;
  height: 48px;
  overflow: hidden;
  display: flex;
  left: 0;
  top: 128%;
  transform: translateY(-50%);
}

.myBigContent .left .mySmallContent .List .myLine .textRemove .removeIcon svg {
  flex-shrink: 0;
}

.myBigContent .left .mySmallContent .List .myLine .textRemove .removeIcon svg path {
  stroke: var(--theme-color);
}

.myBigContent .left .mySmallContent .List .myLine .textRemove .removeIcon svg:not(:last-child) {
  margin-right: 10px;
}

.myBigContent .right {
  flex: 1;
  max-width: 0vw;
  transition: all 0.8s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.myBigContent .right .item {
  max-height: 161px;
  transition: all 0.8s;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.myBigContent .right .item .close {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding-left: 28px;
  align-items: center;
  border-bottom: 3px solid var(--theme-color);
  cursor: pointer;
}

.myBigContent .right .item .close .icon {
  width: 42px;
  height: 78px;
}

.myBigContent .right .item .close .icon path {
  stroke: var(--theme-color);
}

.myBigContent .right .item .scroll {
  flex: 1;
  height: fit-content;
  position: relative;
}

.myBigContent .right .item .scroll .gif {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* 初始完全可见 */
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.myBigContent .right .item .img {
  width: 100%;
  display: block;
  height: auto;
  /* border: 4px solid var(--theme-color); */
  box-sizing: border-box;
  position: static;
}

.myBigContent .right .item .content {
  width: 84.01%;
  margin: auto;
}

.myBigContent .right .item .content .title_1 {
  margin-top: 34px;
  font-family: DelaGothic;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  z-index: 9;
}

.myBigContent .right .item .content .title_2 {
  max-width: 300px;
  font-family: DelaGothic;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.myBigContent .right .item .content .line {
  border-bottom: 5px solid var(--theme-color);
  margin-bottom: 34px;
  margin-top: 28px;
  width: 372px;
}

.myBigContent .right .item .content .text {
  font-family: Lexend Exa;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 34px;
}

.myBigContent .right .active {
  max-height: 100%;
  flex: 1;
}

.myBigContent .right .active .scroll {
  overflow-y: scroll;
  overflow-x: hidden;
}

.myBigContent .right .active .scroll::-webkit-scrollbar {
  background-color: transparent;
  width: 8px;
}

.myBigContent .right .active .scroll::-webkit-scrollbar-track {
  background-color: transparent;
  /* 轨道背景颜色 */
}

.myBigContent .right .active .scroll::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  /* 滑块背景颜色 */
  border-radius: 5px;
  /* 滑块圆角 */
}

.myBigContent .right_active {
  max-width: 50%;
  border-right: 3px solid var(--theme-color);
}

@media (max-width: 1024px) {
  .myHeader .myLine {
    height: 78px;
  }
  .myHeader .myLine .myCol:first-child .text {
    padding-left: 37px;
    font-size: 20px;
  }
  .myHeader .myLine .myCol:last-child .active .text {
    right: 37.5px;
  }
  .myHeader .myLine .myCol:last-child .item {
    min-width: 43px;
  }
  .myHeader .myLine .myCol:last-child .item .img {
    height: 165px;
    margin-top: -23px;
  }
  .myHeader .myLine .myCol:last-child .item .text {
    font-size: 14px;
  }
  .top .head_1 .myLine {
    height: 100px;
  }
  .top .head_1 .myLine .bigTitle {
    font-size: 28px;
  }
  .top .head_1 .myLine .selects {
    height: 78px;
  }
  .top .head_1 .myLine .selects .item {
    width: 100px;
    height: 40px;
    font-size: 14px;
    margin-right: 15px;
  }
  .myBigContent {
    height: calc(100vh - 78px);
  }
  .myBigContent .left .mySmallContent .List .myLine {
    height: fit-content;
  }
  .myBigContent .left .mySmallContent .List .myLine .text {
    margin-left: 30px;
    font-size: 14px;
    line-height: 2.1;
    padding: 10px 0;
  }
  .myBigContent .left .mySmallContent::-webkit-scrollbar {
    display: none;
  }
  .myBigContent .right .item .content .title_1 {
    font-size: 20px;
  }
  .myBigContent .right .item .content .title_2 {
    font-size: 14px;
  }
  .myBigContent .right .item .content .line {
    border-bottom: 3px solid var(--theme-color);
    margin-bottom: 25px;
    margin-top: 20px;
    width: 35%;
  }
  .myBigContent .right .item .content .text {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
