/* banner start */
#homePage #headerBanner {
    background-image: url('../image/homePage/header_banner_pc.jpg');
    height: 550px;
}
#homePage #headerBanner div h1{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 35px;
}
#homePage #headerBanner div h1 span{
    font-size: 30px;
}
#homePage #headerBanner div p{
    font-size: 100%;
    line-height: 2;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    #homePage #headerBanner {
        text-shadow: 0 0 4px #fff;
        padding-bottom: 20%;
        background-image: url('../image/homePage/header_banner_sp.jpg');
        max-height: 400px;
    }
    #homePage #headerBanner div {
        text-align: center;
    }
    #homePage #headerBanner div p {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 1.5px;
    }
    #homePage #headerBanner div h1{
        font-size: 23px;
    }
    #homePage #headerBanner div h1 span{
        font-size: 18px;
    }
    #homePage #headerBanner div p{
        font-size: 14px;
        line-height: 2;
        letter-spacing: 1.5px;
    }
}
/* banner end */

/* banner_title start */
#homePage .banner_title{
    display: flex;
    align-items: center;
    overflow: hidden;
}
#homePage .banner_title a {
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 15px;
    overflow: hidden;
    width: 100%;
    gap: 10px;
}
#homePage .banner_title a::after{
    display: none;
}
#homePage .banner_title a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../institute/add/image/institute_banner.jpg') center center no-repeat;
    background-size: cover;
    transition: transform 0.3s ease;
    z-index: -1;
}
#homePage .banner_title a p,
#homePage .banner_title a strong{
    max-width: 1275px;
    width: 100%;
    margin-inline: auto;
}
#homePage .banner_title a p{
    font-size: 22px;
    font-weight: bold;
}
#homePage .banner_title a strong{
    font-size: 180%;
    color: #e60026;
}
@media screen and (max-width: 767px) {
    #homePage .banner_title a {
        padding-inline: 15px;
    }
    #homePage .banner_title a strong{
        font-size: 125%;
    }
    #homePage .banner_title a p{
        font-size: 16px;
    }
    #homePage .banner_title a p,
    #homePage .banner_title a strong{
        text-align: center;
    }
}
/* banner_title end */



/* 新闻 start */
#homePage #news h2 span{
    color: #575757;
}
#homePage #news p{
    text-align: right;
}
#homePage #news p a span{
    color: #575757;
    position: relative;
}
#homePage #news p a span:before{
    content: '';
    width: calc(100% - 15px);
    position: absolute;
    left: 0;
    bottom: 0;
}
#homePage #news p a:hover span:before{
    border-bottom: 1px solid #575757;
}
#homePage #news .pressList {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#homePage #news .pressList dl{
    display: flex;
    gap: 50px;
}
#homePage #news .pressList dl dt{
    min-width: 140px;
    font-size: 14px;
    padding-top: 2px;
}
#homePage #news .pressList dl dd ul li a{
    display: inline-block;
    font-size: 14px;
}
#homePage #news .pressList dl dd ul li a::after{
    content: '';
    padding-left: 9px;
    background-image: url('../image/icon/icon_arrow-ltr-red.png');
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: right center;
}
@media screen and (max-width: 767px){
    #homePage #news h2{
        font-size: 25px;
    }
    #homePage #news .pressList dl{
        flex-direction: column;
        gap: 10px;
    }
}
/* 新闻 end */


/* 各领域列表 start */
#homePage .fieldList ul{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#homePage .fieldList ul li{
    display: flex;
    background-color: #f2f2f2;
}
#homePage .fieldList ul li>*{
    width: 50%;
}
#homePage .fieldList ul li picture{
    aspect-ratio: 5/3;
    position: relative;
}
#homePage .fieldList ul li picture::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f2f2f2 transparent transparent;
    z-index: 5;
}
#homePage .fieldList ul li picture.negate::after{
    left: 0;
    right: auto;
    transform: rotate(180deg);
}
#homePage .fieldList ul li picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#homePage .fieldList ul li dl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
}
#homePage .fieldList ul li dl dt {
    margin-bottom: 15px;
}
#homePage .fieldList ul li dl dd:last-child {
    margin-top: 25px;
}
#homePage .fieldList ul li dl.order{
    order: -1;
}
#homePage .fieldList ul li dl dt{
    font-size: 25px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    #homePage .fieldList ul li{
        flex-direction: column;
        aspect-ratio: unset;
        max-height: none;
    }
    #homePage .fieldList ul li>*{
        width: 100%;
    }
    #homePage .fieldList ul li dl{
        padding: 30px 15px;
    }
    #homePage .fieldList ul li dl.order{
        order: 2;
    }
    #homePage .fieldList ul li dl{
        gap: 0;
    }
    #homePage .fieldList ul li dl dt{
        font-size: 18px;
    }
    #homePage .fieldList ul li dl dd{
        width: 100%;
        font-size: 14px;
    }
    #homePage .fieldList ul li picture.negate::after{
        /* display: none; */
        display: block;
        left: 50%;
        top: auto;
        bottom: -5px;
        transform: translateX(50%) rotate(90deg);
    }
    #homePage .fieldList ul li picture::after{
        display: block;
        right: 50%;
        top: auto;
        bottom: -5px;
        transform: translateX(50%) rotate(90deg);
    }
}