/* CSS Document */
.solarLifeArea .lifeList .lifeItem .TxtBox, .solarLifeArea .lifeList .lifeItem .Img, .solarLifeArea .lifeList .lifeItem .item {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loop-text {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-text {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.mainArea {
  padding: 0;
}

.textEditor.infoBox {
  color: #616161;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.875;
  text-align: center;
}

.titleBox .titleTw {
  color: #1ec89e;
}
.titleBox .titleTw span {
  padding-bottom: 0;
  border-bottom-color: #1ec89e;
}
.titleBox .titleEn {
  color: #424242;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 15px;
}

.learningArea {
  padding-top: 66px;
  padding-bottom: 100px;
}
@media (max-width: 1180px) {
  .learningArea {
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .learningArea {
    padding-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .learningArea {
    padding-top: 0;
  }
}
.learningArea .titleBox {
  margin-bottom: 20px;
}
.learningArea .learningList .learningItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.learningArea .learningList .learningItem .Img {
  width: 52.308%;
}
.learningArea .learningList .learningItem .Img img {
  height: 405px;
  -o-object-fit: cover;
     object-fit: cover;
}
.learningArea .learningList .learningItem .Txt {
  width: 47.692%;
  padding-left: 120px;
}
.learningArea .learningList .learningItem .Txt .text {
  color: #616161;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.875;
}
.learningArea .learningList .learningItem .btnBox {
  padding-top: 70px;
}
.learningArea .learningList .learningItem .btnBox .btn_cis {
  color: #616161;
  background-image: none;
  background-color: #ffffff;
  border: 1px solid rgba(97, 97, 97, 0.5);
  letter-spacing: 1.3px;
}
.learningArea .learningList .learningItem .btnBox .btn_cis:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background-image: linear-gradient(41deg, rgb(0, 23, 197), rgb(0, 201, 151), rgb(0, 201, 151), rgb(0, 23, 197));
  background-size: 300% 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.learningArea .learningList .learningItem .btnBox .btn_cis .txt {
  position: relative;
  z-index: 2;
}
.learningArea .learningList .learningItem .btnBox .btn_cis .arrow svg {
  color: #616161;
}
@media (min-width: 1025px) {
  .learningArea .learningList .learningItem .btnBox .btn_cis:hover {
    border-color: transparent;
  }
  .learningArea .learningList .learningItem .btnBox .btn_cis:hover:after {
    color: #ffffff;
    background-position: 100% 0;
    opacity: 1;
  }
  .learningArea .learningList .learningItem .btnBox .btn_cis:hover .txt {
    color: #ffffff;
  }
  .learningArea .learningList .learningItem .btnBox .btn_cis:hover .arrow svg {
    color: #ffffff;
  }
}
@media (max-width: 1180px) {
  .learningArea .learningList .learningItem .Txt {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .learningArea .learningList .learningItem .Txt {
    padding-left: 30px;
  }
  .learningArea .learningList .learningItem .btnBox {
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .learningArea .learningList .learningItem .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .learningArea .learningList .learningItem .Img,
.learningArea .learningList .learningItem .Txt {
    width: 100%;
  }
  .learningArea .learningList .learningItem .Img {
    padding-bottom: 30px;
  }
  .learningArea .learningList .learningItem .Img img {
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
  .learningArea .learningList .learningItem .Txt {
    padding-left: 0;
  }
}

.salaryArea {
  overflow: hidden;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .salaryArea {
    padding-bottom: 50px;
  }
}
.salaryArea .instructionsBox {
  padding: 70px 20px 76px;
  background: rgb(0, 201, 151);
  background: linear-gradient(-139deg, rgb(0, 201, 151) 42%, rgb(0, 23, 197) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00c997",endColorstr="#0017c5",GradientType=1);
}
.salaryArea .instructionsBox .titleBox {
  margin-bottom: 22px;
}
.salaryArea .instructionsBox .titleBox .titleTw,
.salaryArea .instructionsBox .titleBox .titleEn {
  color: #ffffff;
}
.salaryArea .instructionsBox .titleBox .titleTw span {
  border-bottom-color: #ffffff;
}
.salaryArea .instructionsBox .infoBox {
  color: #ffffff;
}
@media (max-width: 768px) {
  .salaryArea .instructionsBox {
    padding: 40px 20px 46px;
  }
}
.salaryArea .salaryBox .salaryGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.salaryArea .salaryBox .salaryGroup .ImgBox {
  width: 43.09%;
}
.salaryArea .salaryBox .salaryGroup .ImgBox img {
  width: 100%;
}
.salaryArea .salaryBox .salaryGroup .TxtBox {
  width: 56.91%;
}
.salaryArea .salaryBox .salaryGroup:nth-child(odd) .TxtBox {
  padding-left: 44px;
  padding-right: 44px;
}
.salaryArea .salaryBox .salaryGroup:nth-child(even) .ImgBox {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.salaryArea .salaryBox .salaryGroup:nth-child(even) .TxtBox {
  padding-left: 130px;
  padding-right: 75px;
}
@media (max-width: 1640px) {
  .salaryArea .salaryBox .salaryGroup .ImgBox {
    width: 700px;
  }
  .salaryArea .salaryBox .salaryGroup .TxtBox {
    width: calc(100% - 700px);
  }
  .salaryArea .salaryBox .salaryGroup:nth-child(even) .TxtBox {
    margin-right: 0;
    margin-left: auto;
    padding-left: 44px;
    padding-right: 44px;
  }
}
@media (max-width: 1366px) {
  .salaryArea .salaryBox .salaryGroup .ImgBox {
    width: 600px;
  }
  .salaryArea .salaryBox .salaryGroup .ImgBox img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 450px;
  }
  .salaryArea .salaryBox .salaryGroup .TxtBox {
    width: calc(100% - 600px);
  }
}
@media (max-width: 1280px) {
  .salaryArea .salaryBox .salaryGroup .ImgBox,
.salaryArea .salaryBox .salaryGroup .TxtBox {
    width: 50%;
  }
  .salaryArea .salaryBox .salaryGroup:nth-child(odd) .TxtBox {
    padding-left: 20px;
    padding-right: 20px;
  }
  .salaryArea .salaryBox .salaryGroup:nth-child(even) .TxtBox {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1180px) {
  .salaryArea .salaryBox .salaryGroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .salaryArea .salaryBox .salaryGroup .ImgBox,
.salaryArea .salaryBox .salaryGroup .TxtBox {
    width: 100%;
  }
  .salaryArea .salaryBox .salaryGroup .ImgBox img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
  .salaryArea .salaryBox .salaryGroup .TxtBox {
    padding: 40px 20px;
  }
  .salaryArea .salaryBox .salaryGroup:nth-child(even) .ImgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.salaryArea .salaryBox .titleBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 60px;
}
.salaryArea .salaryBox .titleBar .number {
  width: 64px;
  height: 64px;
  display: block;
  line-height: 68px;
  color: #ffffff;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  border-radius: 50%;
  background-color: #0017c5;
  text-align: center;
}
.salaryArea .salaryBox .titleBar .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
}
.salaryArea .salaryBox .titleBar .title .titleTw {
  color: #2a2a2a;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.salaryArea .salaryBox .titleBar .title .titleEn {
  color: #484848;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  padding-top: 3px;
}
@media (max-width: 600px) {
  .salaryArea .salaryBox .titleBar .number {
    width: 50px;
    height: 50px;
    line-height: 52px;
    font-size: 25px;
  }
  .salaryArea .salaryBox .titleBar .title .titleTw {
    font-size: 25px;
  }
  .salaryArea .salaryBox .titleBar .title .titleEn {
    font-size: 16px;
  }
}
.salaryArea .salaryBox .salaryList {
  position: relative;
  margin-left: -20px;
  max-width: 900px;
  overflow: hidden;
}
@media (min-width: 1801px) {
  .salaryArea .salaryBox .salaryList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.salaryArea .salaryBox .salaryList:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  width: calc(100% - 40px);
  height: 2px;
  margin: auto;
  content: "";
  background-color: #0017c5;
  z-index: -1;
}
.salaryArea .salaryBox .salaryList .salaryItem {
  text-align: center;
}
@media (min-width: 1801px) {
  .salaryArea .salaryBox .salaryList .salaryItem {
    width: 20%;
    max-width: 180px;
    min-width: 180px;
  }
}
@media (max-width: 1800px) {
  .salaryArea .salaryBox .salaryList .salaryItem {
    padding: 0 20px;
  }
}
.salaryArea .salaryBox .salaryList .salaryItem .Img {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 9.5px 0.5px rgba(4, 0, 0, 0.11);
          box-shadow: 0px 2px 9.5px 0.5px rgba(4, 0, 0, 0.11);
}
.salaryArea .salaryBox .salaryList .salaryItem .Img a {
  display: block;
  border-radius: 50%;
}
@media (min-width: 1025px) {
  .salaryArea .salaryBox .salaryList .salaryItem .Img a:hover {
    background-color: rgba(0, 0, 0, 0.07);
  }
}
.salaryArea .salaryBox .salaryList .salaryItem .Txt .title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.9px;
  line-height: 1.33;
  padding-top: 25px;
}
.salaryArea .salaryBox .salaryList .salaryItem .Txt .title a {
  color: #2a2a2a;
}
@media (min-width: 1025px) {
  .salaryArea .salaryBox .salaryList .salaryItem .Txt .title a:hover {
    color: #1ec89e;
  }
}
@media (max-width: 1800px) {
  .salaryArea .salaryBox .salaryList {
    max-width: 785px;
    margin-right: -20px;
  }
  .salaryArea .salaryBox .salaryList > .salaryItem {
    float: left;
    width: 25%;
  }
  .salaryArea .salaryBox .salaryList > .salaryItem:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (min-width: 1181px) and (max-width: 1440px) {
  .salaryArea .salaryBox .salaryList > .salaryItem {
    width: 33.3333333333%;
  }
  .salaryArea .salaryBox .salaryList > .salaryItem:nth-child(4) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 1440px) {
  .salaryArea .salaryBox .salaryList {
    max-width: 100%;
  }
}
@media (max-width: 1180px) {
  .salaryArea .salaryBox .salaryList {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .salaryArea .salaryBox .salaryList > .salaryItem {
    width: 33.3333333333%;
  }
  .salaryArea .salaryBox .salaryList > .salaryItem:nth-child(4) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 537px) {
  .salaryArea .salaryBox .salaryList > .salaryItem {
    width: 50%;
  }
  .salaryArea .salaryBox .salaryList > .salaryItem:nth-child(3) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 375px) {
  .salaryArea .salaryBox .salaryList > .salaryItem {
    width: 100%;
  }
  .salaryArea .salaryBox .salaryList > .salaryItem:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}

.solarLifeArea {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
  background-image: url(../images/hr/life_bgLt.png), url(../images/hr/life_bgRt.png);
  background-repeat: no-repeat;
  background-position: left bottom, right 82px;
}
@media (max-width: 768px) {
  .solarLifeArea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.solarLifeArea .life_deco {
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  -webkit-animation: loop-text 30s infinite linear;
          animation: loop-text 30s infinite linear;
  z-index: 1;
  pointer-events: none;
}
.solarLifeArea .life_deco p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 287px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  padding-left: 10px;
  margin-left: -10px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .solarLifeArea .life_deco {
    display: none;
  }
}
.solarLifeArea .class_m_Box {
  padding-bottom: 44px;
  position: relative;
  z-index: 1;
}
.solarLifeArea .class_m_Box .class_m_Link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.solarLifeArea .class_m_Box .class_m_Link li {
  padding: 0 16.5px;
}
.solarLifeArea .class_m_Box .class_m_Link li.current a {
  color: #ffffff;
  border: 0;
  background: rgb(0, 201, 151);
  background: linear-gradient(38deg, rgb(0, 201, 151) 20%, rgb(0, 23, 197) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00c997",endColorstr="#0017c5",GradientType=1);
}
.solarLifeArea .class_m_Box .class_m_Link li a {
  color: #00c997;
  width: 75px;
  height: 75px;
  font-size: 60px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 2px solid #00c997;
  padding-bottom: 3px;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .solarLifeArea .class_m_Box .class_m_Link li a:hover {
    color: #ffffff;
    border: 0;
    background: rgb(0, 201, 151);
    background: linear-gradient(38deg, rgb(0, 201, 151) 20%, rgb(0, 23, 197) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00c997",endColorstr="#0017c5",GradientType=1);
  }
}
@media (max-width: 768px) {
  .solarLifeArea .class_m_Box .class_m_Link {
    margin: 0 -10px;
  }
  .solarLifeArea .class_m_Box .class_m_Link li {
    padding: 0 10px;
  }
  .solarLifeArea .class_m_Box .class_m_Link li a {
    width: 60px;
    height: 60px;
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .solarLifeArea .class_m_Box .class_m_Link {
    margin: 0 -8px;
  }
  .solarLifeArea .class_m_Box .class_m_Link li {
    padding: 0 8px;
  }
  .solarLifeArea .class_m_Box .class_m_Link li a {
    width: 50px;
    height: 50px;
    font-size: 40px;
  }
}
@media (max-width: 375px) {
  .solarLifeArea .class_m_Box {
    padding-bottom: 30px;
  }
  .solarLifeArea .class_m_Box .class_m_Link {
    margin: 0 -6px;
  }
  .solarLifeArea .class_m_Box .class_m_Link li {
    padding: 0 6px;
  }
  .solarLifeArea .class_m_Box .class_m_Link li a {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}
.solarLifeArea .lifeBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 160px;
  position: relative;
  z-index: 1;
}
.solarLifeArea .lifeBox .leftBox {
  width: 58.847%;
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .solarLifeArea .lifeBox .leftBox:after {
    position: absolute;
    left: -28px;
    bottom: -28px;
    content: "";
    width: 263px;
    height: 263px;
    background-color: #00c997;
    z-index: -1;
  }
  .solarLifeArea .lifeBox .leftBox .boxImg .TxtBox {
    display: none;
  }
}
.solarLifeArea .lifeBox .leftBox .boxTxt {
  max-width: 555px;
  position: absolute;
  right: -205px;
  bottom: -160px;
}
.solarLifeArea .lifeBox .leftBox .boxTxt .Img {
  display: none;
}
.solarLifeArea .lifeBox .rightBox {
  width: 41.153%;
}
.solarLifeArea .lifeBox .rightBox .boxRtImg .TxtBox {
  display: none;
}
.solarLifeArea .lifeBox .arrowBox {
  position: absolute;
  left: -100px;
  right: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: -80px auto 0;
  z-index: 5;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.solarLifeArea .lifeBox .arrowBox .arrow {
  width: 47px;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #1ec89e;
  cursor: pointer;
  pointer-events: auto;
}
.solarLifeArea .lifeBox .arrowBox .arrow.arrowPrev {
  left: 0;
}
.solarLifeArea .lifeBox .arrowBox .arrow.arrowNext {
  right: 0;
}
.solarLifeArea .lifeBox .arrowBox .arrow svg {
  width: 9px;
  height: 17px;
}
@media (max-width: 1536px) {
  .solarLifeArea .lifeBox .arrowBox {
    left: -23.5px;
    right: -23.5px;
  }
}
@media (max-width: 1366px) {
  .solarLifeArea .lifeBox .arrowBox {
    left: 0px;
    right: 0px;
  }
}
@media (max-width: 768px) {
  .solarLifeArea .lifeBox .arrowBox {
    margin-top: 0;
    top: calc(50% - 220px);
    -webkit-transform: none;
            transform: none;
  }
  .solarLifeArea .lifeBox .arrowBox .arrow {
    background-color: transparent;
  }
  .solarLifeArea .lifeBox .arrowBox .arrow svg {
    color: #1ec89e;
  }
}
@media (max-width: 1366px) {
  .solarLifeArea .lifeBox {
    padding: 0 23.5px 160px;
  }
  .solarLifeArea .lifeBox .leftBox .boxTxt {
    max-width: 500px;
  }
  .solarLifeArea .lifeBox .leftBox .boxTxt .lifeList .lifeItem .TxtBox {
    padding: 28px 40px;
  }
}
@media (max-width: 992px) {
  .solarLifeArea .lifeBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .solarLifeArea .lifeBox .leftBox {
    width: 100%;
  }
  .solarLifeArea .lifeBox .leftBox .boxTxt {
    right: 30px;
  }
  .solarLifeArea .lifeBox .rightBox {
    display: none;
  }
}
@media (max-width: 768px) {
  .solarLifeArea .lifeBox {
    padding-bottom: 0;
    padding: 0;
  }
  .solarLifeArea .lifeBox .leftBox .boxImg .lifeList .lifeItem .TxtBox {
    padding: 20px;
  }
  .solarLifeArea .lifeBox .leftBox .boxTxt {
    display: none;
  }
}
.solarLifeArea .lifeList > .lifeItem:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.solarLifeArea .lifeList .lifeItem .item {
  position: relative;
}
.solarLifeArea .lifeList .lifeItem .Img img {
  width: 100%;
}
.solarLifeArea .lifeList .lifeItem .TxtBox {
  padding: 28px 67px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 8.55px 0.45px rgba(4, 0, 0, 0.05);
          box-shadow: 0px 2px 8.55px 0.45px rgba(4, 0, 0, 0.05);
}
.solarLifeArea .lifeList .lifeItem .TxtBox .Txt .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.solarLifeArea .lifeList .lifeItem .TxtBox .Txt .title a {
  color: #1ec89e;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1.5px;
  display: inline-block;
  border-bottom: 2px solid #1ec89e;
}
.solarLifeArea .lifeList .lifeItem .TxtBox .Txt .subtitle {
  color: #424242;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-top: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.solarLifeArea .lifeList .lifeItem .TxtBox .Txt .text {
  color: #616161;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.875;
  margin-top: 20px;
  height: 90px;
}
@media (max-width: 768px) {
  .solarLifeArea .lifeList .lifeItem .TxtBox .Txt .title a {
    font-size: 25px;
  }
  .solarLifeArea .lifeList .lifeItem .TxtBox .Txt .subtitle {
    font-size: 18px;
  }
  .solarLifeArea .lifeList .lifeItem .TxtBox .Txt .text {
    font-size: 15px;
    height: 113px;
  }
}
.solarLifeArea .lifeList .lifeItem .TxtBox .bottomBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 36px;
}
.solarLifeArea .lifeList .lifeItem .TxtBox .bottomBox .btnBox {
  width: 285px;
  padding-top: 0;
}
.solarLifeArea .lifeList .lifeItem .TxtBox .bottomBox .pagingInfo {
  text-align: right;
  color: #a39d9d;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.solarLifeArea .lifeList .lifeItem .TxtBox .bottomBox .pagingInfo .num:last-child {
  font-size: 35px;
}
.solarLifeArea .lifeList .lifeItem .TxtBox .bottomBox .pagingInfo .slash {
  padding-left: 5px;
  padding-right: 7px;
}
@media (max-width: 768px) {
  .solarLifeArea .lifeList .lifeItem .TxtBox .bottomBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 20px;
  }
  .solarLifeArea .lifeList .lifeItem .TxtBox .bottomBox .btnBox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
  .solarLifeArea .lifeList .lifeItem .TxtBox .bottomBox .pagingInfo {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.recruitingArea {
  padding-top: 88px;
  padding-bottom: 115px;
}
@media (max-width: 992px) {
  .recruitingArea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.recruitingArea .recruitingList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -13.5px;
  padding-top: 50px;
}
.recruitingArea .recruitingList .recruitingItem {
  width: 33.3333333333%;
  padding: 0 13.5px;
}
.recruitingArea .recruitingList .recruitingItem a {
  display: block;
  position: relative;
}
.recruitingArea .recruitingList .recruitingItem .Img img {
  width: 100%;
}
.recruitingArea .recruitingList .recruitingItem .Txt {
  position: absolute;
  left: 25px;
  bottom: 18px;
  z-index: 2;
}
.recruitingArea .recruitingList .recruitingItem .Txt .title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
  display: inline-block;
}
.recruitingArea .recruitingList .recruitingItem .Txt .arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #00c997;
  display: inline-block;
  position: relative;
  vertical-align: -2px;
  margin-left: 10px;
}
.recruitingArea .recruitingList .recruitingItem .Txt .arrow:before, .recruitingArea .recruitingList .recruitingItem .Txt .arrow:after {
  position: absolute;
  right: 8px;
  content: "";
  width: 2px;
  height: 6px;
  background-color: #ffffff;
}
.recruitingArea .recruitingList .recruitingItem .Txt .arrow:before {
  top: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.recruitingArea .recruitingList .recruitingItem .Txt .arrow:after {
  bottom: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 992px) {
  .recruitingArea .recruitingList {
    margin: 0;
  }
  .recruitingArea .recruitingList .recruitingItem {
    width: 100%;
    padding: 0 0 20px;
  }
}
@media (max-width: 480px) {
  .recruitingArea .recruitingList .recruitingItem .Txt {
    left: 15px;
    bottom: 15px;
  }
  .recruitingArea .recruitingList .recruitingItem .Txt .title {
    font-size: 18px;
  }
}