/*************************************  banner *************************************/

.banner {
    position: relative;
    padding-top: 60px;
/*    margin-bottom: 30px;*/
}
.banner .bigLeftArrowWhite,
.banner .bigRightArrowWhite {
     cursor: pointer;
    position: absolute;
    width: 41px;
    height: 100%;
    top: 0%;
    background-size: 11px 62px;
    background-position: center calc(50% + 31px); /* 正确写法 */
    z-index: 10;
    background-repeat: no-repeat;
}
.banner .bigLeftArrowWhite {
    left: 0px;
    background-image: url(../img/icons/bigLeftArrowWhiteM.svg);
}
.banner .bigRightArrowWhite {
    right: 0px;
    background-image: url(../img/icons/bigRightArrowWhiteM.svg);
}
.banner .bigLeftArrowWhite:hover,
.banner .bigRightArrowWhite:hover {
    opacity: 0.7;
}
.banner div img {
    width: 100%;
}


/*************************************  titleArea *************************************/

.titleArea {
    padding-top: 40px;
    /*    border:1px solid red;*/
    background-color: #fff;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .2));
}

.titleArea .interstingTags {
    background-color: #FAF8F5;
    margin-bottom: 0px;
    margin-bottom: 15px;
}





/*************************************  articles *************************************/

.articles {
    margin-bottom: 60px;
}

.articles .oneArticle {
    margin-bottom: 15px;
}

.articles .oneArticle.small {
    margin-bottom: 30px;
}

.articles .oneArticle.hidden {
    display: none;
}

.articles .oneArticle a .imgArea {
    /*
    background-image: url(../img/oneService/idea1.jpg);
    background-size: cover;
    height: 214px;
*/
}


.articles .oneArticle a .imgArea .vip {
    width: 49px;
    height: auto;
    position: absolute;
    left: 15px;
    top: 0px;
}


.articles .oneArticle a:hover .imgArea {
    opacity: 0.7;
}

.articles .oneArticle .textArea {
    padding: 15px;
    background-color: #fff;
    position: relative;
}


.articles .oneArticle .textArea a .tag {
    font-size: 14px;
    color: #727272;
    margin-bottom: 5px;
}

.articles .oneArticle .textArea a:hover .tag {
    opacity: 0.7;
}

.articles .oneArticle .textArea a .myTitle {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0px;
    line-height: 1.5;
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

    /*    border:1px solid red;*/
    min-height: 65px;
}

.articles .oneArticle.small .textArea a .myTitle {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 0px;
}

.articles .oneArticle .textArea a:hover .myTitle {
    opacity: 0.7;
}

.articles .oneArticle .textArea .view {
    font-size: 14px;
    color: #727272;
    margin-bottom: 0px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

    /*    border:1px solid red;*/
    height: 50px;
}

.articles .oneArticle .textArea a .flag {
    position: absolute;
    right: 15px;
    top: -6px;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, .2));
    z-index: 1;
}

.articles .oneArticle .textArea a:hover .flag {
    opacity: 0.7;
}



.articles .oneArticle hr {
    margin-top: 0px;
    margin-bottom: 0px;

}


.articles .oneArticle .textArea .kind {
    color: #727272;
    /*    padding-left: 10px;*/
}

.articles .oneArticle .textArea .kind:before {
    float: left;
    margin-right: 7px;
    margin-top: -2px;
    /*    margin-left: 7px;*/
}

.articles .oneArticle .textArea .red:before {
    content: url(../img/icons/reddot.svg);
}

.articles .oneArticle .textArea .green:before {
    content: url(../img/icons/greendot.svg);
}


/*************************************  marquee *************************************/
.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
    font-size: 0px;
  display: inline-block;
  white-space: nowrap;
  animation: marquee 400s linear infinite;
}

.marquee-content img {
  display: inline-block;
  height: 242px; /* 調整圖片高度 */
  margin-right: 0px; /* 調整圖片間距 */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}




/*************************************  team *************************************/



.team {
    background-color: #fff;
}

.team .imgArea {
    height: 250px;
    background-image: url(../img/course/temp2.jpg);
    background-size: cover;
    background-position: center center;
}


.team .textArea {
    text-align: left;
    padding: 30px;
}