/* 分类标题样式 */
.yang-ctitle{
    /* background-color: red; */
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.yang-p1-title span{
    padding: 5px;
    font-size: 14px;
}

.yang-p2-title{
    color: blue;
    font-size: 14px;
    margin-top: 20px;
}

.yang-p3-title{
    color: blue;
    font-size: 12px;
}

/* 个人简历 */
.yang-personal-resume{
    position: fixed;
    z-index: 9999;
    bottom: 116px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid white;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yang-personal-resume a:link{
    text-decoration: none;
}

/* 案例演示 */
.yang-demo-presentation{
    position: fixed;
    z-index: 9999;
    bottom: 186px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid white;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yang-demo-presentation a:link{
    text-decoration: none;
}


/* 网站标头 */
.yang-web-head{
    position: fixed;
    text-align: center;
    width: 100%;
    background-color: #f2f2f2;
}
.yang-web-head-shadow{
    height: 80px;
}
.yang-shadow{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yang-shadow p{
    text-align: center;
    font-size: 14px;
    color: #34a853;
    
}

/* 网站标题 */
.yang-web-title{
    font-size: medium;
}
/* 网站头注释说明 */
.yang-web-head p:nth-child(2){
    font-size: 10px;
    text-align: center;
    color: blueviolet;
}
/* 程序清单 */
.yang-web-head p:nth-child(3){
    /* width: 100%; */
    font-size: medium;
    color: blueviolet;
    text-align: center;
}
.yang-web-head p:nth-child(3) span{
    font-size: 10px;
    text-align: center;
    color: blueviolet;
}
.yang-hidden-title{
    font-size: 12px;
    color: #34a853;
}


/* 主体容器样式 */
section{
    /* padding-bottom: 24px; */
    padding-bottom: 1px;
}
.yang-section-div{
    padding: 10px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    /* margin-bottom: 10px; */
    border: 1px solid black;
    border-radius: 10px;
    /* background-color: white; */
    /* text-align: center; */
}

/* 主体内容链接样式 */
.yang-container a:link{
    font-size: 12px;
    color: #34a853;
    /* text-decoration: none; */
}

/* 文字跑马灯 */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
  }
   
  .marquee p {
    font-size: 14px;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
  }
   
  @keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }