.course__project #section__part__2 section.mod,
.course__project #section__part__4 section.mod {
  background-color: #F5F5F5;
}
/* 项目介绍 */
.course__project .intro .content {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  /* align-items: stretch; */
}

.course__project .intro .content-item {
  width: 304px;
  height: 290px;
  background-color: var(--bg-default-color);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: justify;
}

.course__project .intro .content-item .head {
  width: 100%;
  height: 45px;
  font-size: 16px;
  line-height: 16px;
  color: var(--bg-default-color);
  background-color: var(--theme-primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.course__project .intro .content-item .detail {
  flex: 1;
  padding: 25px 0 30px;
  font-size: 16px;
  line-height: 24px;
  color: var(--mod-text-sub);
  
}

.course__project .intro .content-item .detail .text{
  height: 192px;
  padding: 0 30px;
  overflow-y: auto;
}

.course__project .intro .content-item .item {
  padding-left: 10px;
  position: relative;
}

.course__project .intro .content-item .item::before {
  top: calc(12px - 4px);
  left: -5px;
}

.course__project .intro .content-item .item:not(:last-child) {
  margin-bottom: 15px;
}

/* 适合人群 */
.course__project .people .content {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  /* align-items: stretch; */
}

.course__project .people .content-item {
  width: 227px;
  height: 282px;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow:  0 6px 20px rgba(0, 0, 0, 0.1);
  color: var(--bg-default-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.course__project .people .content-item:not(:last-child) {
  margin-right: 30px;
}

.course__project .people .content-item .slot__top {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-color: var(--bg-light-color);
  overflow: hidden;
}
.course__project .people .content-item:nth-child(1) {
  background-color: #7176EE;
}
.course__project .people .content-item:nth-child(2) {
  background-color: #3C66B7;
}
.course__project .people .content-item:nth-child(3) {
  background-color: #68B8DA;
}
.course__project .people .content-item:nth-child(4) {
  background-color: #F28A83;
}

.course__project .people .content-item .logo {
  width: 135px;
  height: 135px;
}


.course__project .people .content-item .title {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  margin: 20px 0 10px;
}

.course__project .people .content-item .desc {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

/* 背提理由 */
.course__project .reason .content {
  width: 100%;
  height: 226px;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.course__project .reason .content .track-box {
  position: relative;
  width: 178px;
  height: 178px;
  /* border: 1px solid black; */
  /* transform: rotate(45deg); */
  border-radius: 50%;
}

.course__project .reason .apply,
.course__project .reason .accu {
  width: 482px;
  height: 226px;
  position: absolute;
  padding: 14px 20px 26px;
  top: calc(-40px + 20px);
  /* transform: rotate(-45deg); */
}

.course__project .reason .apply {
  left: calc(-482px + 89px - 20px);
}

.course__project .reason .accu {
  right: calc(-482px + 89px - 20px);
}

.course__project .reason .apply .content-item,
.course__project .reason .accu .content-item {
  width: 442px;
  height: 180px;
  padding: 30px;
  position: relative;
  z-index: 2;
  left: -20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}


.course__project .reason .apply .content-item {
  padding-right: 40px;
}

.course__project .reason .accu .content-item {
  left: 20px;
  padding-left: 50px;
  padding-right: 10px;
}

.course__project .reason #apply-bg,
.course__project .reason #accu-bg {
  width: 482px;
  height: 226px;
  top: 0;
  position: absolute;
  z-index: 1;
}

.course__project .reason .apply #apply-bg {
  left: -20px;
}

.course__project .reason .accu #accu-bg {
  right: -20px;
}

.course__project .reason .dot-bar {
  position: absolute;
  width: 178px;
  height: 178px;
  top: 15px;
  left: calc(50% - 89px);
  z-index: 2;
}

.course__project .reason .dot-bar .main {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-color: var(--theme-primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(50% - 46px);
  left: calc(50% - 46px);
}

.course__project .reason .dot-bar .main img {
  width: 46px;
  height: 34px;
}

.course__project .reason .dot-bar #sub-line {
  position: absolute;
  width: 130px;
  height: 130px;
  top: calc(50% - 65px);
  left: calc(50% - 65px);
  z-index: 2;
  transform: rotate(30deg);
}

.course__project .reason .title {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.course__project .reason .detail {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  line-height: 20px;
}

.course__project .reason .detail .text-blue {
  color: var(--theme-primary-color);
  font-weight: bold;
}

.course__project .reason .accu .detail {
  color: var(--mod-text-sub);
}

.course__project .reason .detail-item {
  position: relative;
  padding-left: 16px;
}

.course__project .reason .detail-item::before {
  position: absolute;
  content: ' ';
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.course__project .reason .apply .detail-item::before {
  background-image: url(https://info.compassedu.hk/pc/img/course/logo-reason-1.png);
}

.course__project .reason .accu .detail-item::before {
  width: 9px;
  height: 9px;
  background-image: url(https://info.compassedu.hk/pc/img/course/logo-reason-2.png);
}

/* 遇到问题 */
.course__project .question .content {
  width: 100%;
  margin-top: 30px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.course__project .question .content-item {
  width: 165px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.course__project .question .content-item .logo {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course__project .question .content-item:nth-child(1) .logo,
.course__project .question .content-item:nth-child(3) .logo {
  background-color: #F0F4F8;
}

.course__project .question .content-item:nth-child(2) .logo,
.course__project .question .content-item:nth-child(4) .logo {
  background-color: #EFF0F6;
}

.course__project .question .content-item .logo img {
  width: 78px;
  height: 78px;
}

.course__project .question .content-item .title {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.course__project .question .content-item .desc {
  line-height: 20px;
  text-align: justify;
}

/* 解决方案 */
.course__project .solution .content {
  margin-top: 30px;
  width: 100%;
}

.course__project .solution .content .main-desc {
  width: 100%;
  text-align: center;
  color: var(--mod-text-sub);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

.course__project .solution .detail {
  height: 270px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.course__project .solution .content-item {
  width: 227px;
  height: 253px;
  overflow: hidden;
  margin: 0 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-default-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.course__project .solution .content-item:nth-child(3),
.course__project .solution .content-item:nth-child(4) {
  position: absolute;
  z-index: 1;
  bottom: 0;
  height: 221px;
  margin: 0 45px;
}

.course__project .solution .content-item:nth-child(3) {
  left: 0;
}

.course__project .solution .content-item:nth-child(4) {
  right: 0;
}

.course__project .solution .content-item .title {
  position: relative;
  width: 100%;
  height: 56px;
  background-color: var(--theme-primary-color);
  color: var(--bg-default-color);
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  font-weight: bold;
}

.course__project .solution .content-item:nth-child(1) .title::before {
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  border-top: 27px solid #FFC42D;
  border-left: 31.5px solid #FFC42D;
  border-bottom: 27px solid transparent;
  border-right: 31.5px solid transparent;
}

.course__project .solution .content-item:nth-child(1) .title::after {
  position: absolute;
  content: ' ';
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  background-size: 100% 100%;
  background-image: url(https://info.compassedu.hk/mobile/course/icon-solution.png);
  background-repeat: no-repeat;
}

.course__project .solution .content-item .desc {
  position: relative;
  width: 100%;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  flex: 1;
}

.course__project .solution .content-item .desc .text {
  position: relative;
  z-index: 2;
}

.course__project .solution .content-item .desc::after {
  position: absolute;
  content: ' ';
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.course__project .solution .content-item:nth-child(1) .desc::after {
  background-image: url(https://info.compassedu.hk/pc/img/course/solution-1-1.png);
  width: 112px;
  height: 112px;
  right: 17px;
  bottom: -29px;
}
.course__project .solution .content-item:nth-child(2) .desc::after {
  background-image: url(https://info.compassedu.hk/pc/img/course/solution-1-2.png);
  width: 138px;
  height: 138px;
  right: -3px;
  bottom: -28px;
}
.course__project .solution .content-item:nth-child(3) .desc::after {
  background-image: url(https://info.compassedu.hk/pc/img/course/solution-1-3.png);
  width: 134px;
  height: 134px;
  right: 17px;
  bottom: -46px;
}
.course__project .solution .content-item:nth-child(4) .desc::after {
  background-image: url(https://info.compassedu.hk/pc/img/course/solution-1-4.png);
  width: 97px;
  height: 97px;
  right: 9px;
  bottom: -21px;
}

/* 课程安排 */
.course__project .schedule .content {
  margin-top: 15px;
}

.course__project .schedule .content-item {
  width: 100%;
  padding-left: 38px;
  padding-top: 15px;
  position: relative;
}

.course__project .schedule .content-item:first-child .head::after {
  position: absolute;
  content: ' ';
  bottom: 0;
  left: -29px;
  width: 1px;
  height: 50%;
  background-color: var(--mod-text-sub2);
  transform: scaleX(0.5);
}

.course__project .schedule .content-item:not(:first-child):not(:last-child)::after {
  position: absolute;
  content: ' ';
  top: 15px;
  left: 9px;
  width: 1px;
  height: calc(100% + 15px);
  background-color: var(--mod-text-sub2);
  transform: scaleX(0.5);
}

.course__project .schedule .content-item:not(:last-child) .detail::after {
  position: absolute;
  content: ' ';
  top: 0;
  left: -29px;
  width: 1px;
  height: calc(100% + 15px);
  background-color: var(--mod-text-sub2);
  transform: scaleX(0.5);
}


.course__project .schedule .content-item .head {
  width: 100%;
  height: 45px;
  border-radius: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(24, 144, 255, 0.1);
  padding: 0 10px;
  font-size: 16px;
  line-height: 16px;
  position: relative;
}

.course__project .schedule .content-item .head::before {
  position: absolute;
  content: ' ';
  top: calc(50% - 9px);
  left: -39px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--theme-primary-color);
  background-color: var(--bg-default-color);
  z-index: 2;
}

.course__project .schedule .content-item .head .sort {
  width: 26px;
  height: 26px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: var(--theme-primary-color);
  color: var(--bg-default-color);
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course__project .schedule .content-item .head .mod {
  color: var(--theme-primary-color);
  font-weight: bold;
}

.course__project .schedule .content-item .detail {
  padding-top: 15px;
  padding-left: 35px;
  position: relative;
}

.course__project .schedule .content-item .detail .item {
  position: relative;
  list-style-type: none;
  color: var(--mod-text-sub);
  font-size: 14px;
  line-height: 22px;
  /* text-align: justify; */
}

.course__project .schedule .content-item .detail .item::before {
  position: absolute;
  content: ' ';
  top: 8px;
  left: -14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--mod-text-sub);
}
