#header {
    background: rgb(2, 109, 178, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    color: white;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

#header .logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

#header .logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    border-radius: 25px;
}

#header ul.fir-menu {
    display: flex;
    align-items: center;
}

#header ul.fir-menu>li {
    margin: 0 15px;
    position: relative;
}

#header ul.fir-menu>li>a {
    display: flex;
    align-items: center;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
}

#header ul.fir-menu>li>a::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 8px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    opacity: 0;
    transform: translateX(10px) translateY(10px);
    transition: all 0.3s ease;
}

#header ul.fir-menu>li>a::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    right: 0;
    bottom: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    opacity: 0;
    transform: translateX(-10px) translateY(-10px);
    transition: all 0.3s ease;
}

#header ul.fir-menu>li.active>a::before,
#header ul.fir-menu>li.active>a::after,
#header ul.fir-menu>li:hover>a::after,
#header ul.fir-menu>li:hover>a::before {
    opacity: 1;
    transform: translateX(0) translateY(0);
}


#header ul.fir-menu>li>a .iconfont {
    width: 12px;
    height: 12px;
    background-image: url(../images/8.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: 8px;
    transition: all 0.3s ease;
}

#header ul.fir-menu>li:hover>a .iconfont {
    background-image: url(./images/8.png);
}

#footer {
    padding-top: 30px;
    padding-bottom: 50px;
    background: rgb(2, 109, 178, 0.8);
    color: white;
    text-align: center;
}

#footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer ul a {
    font-size: 16px;
    display: inline-block;
    padding: 0 24px;
    color: inherit;
    transition: all 0.3s ease;
    border-right: 1px dashed #afafaf;
}

#footer ul li:last-child a {
    border-right: none;
}

#footer ul li a:hover {
    text-decoration: underline;
}

#footer .cop {
    line-height: 1.8;
    font-size: 16px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px dashed #afafaf;
}

.index-banner {
    margin-top: 90px;
    font-size: 0;
}

.index-banner .container {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.index-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.index-banner .layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: white;
}

.index-banner .layer h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.index-basic {
    background: rgb(255, 255, 255, 0.6);
    border-radius: 8px;
    margin: 20px 0;
    padding: 50px 30px;
}

.index-basic .desc {
    margin-top: 30px;
    display: flex;
}

.index-basic .desc .img {
    width: 25%;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0;
}

.index-basic .desc .txt {
    width: 75%;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 45px;
}

.index-basic .desc .txt p {
    margin-bottom: 15px;
}

.index-basic .desc .txt p:last-child {
    margin-bottom: 0;
}

.index-basic .info-all {
    display: flex;
    margin-top: 30px;
    font-size: 14px;
}

.index-basic .info-all .left {
    width: 50%;
    padding-right: 15px;
}

.index-basic .info-all .right {
    width: 50%;
    padding-left: 15px;
}

.index-basic .info-all .info {
    display: flex;
    line-height: 2.2;
    border-bottom: 1px dashed #afafaf;
    padding: 0 10px;
}

.index-basic .info-all .info span {
    display: block;
    width: 120px;
}

.index-basic .info-all .info p {
    display: block;
    width: calc(100% - 120px);
}

.index-about {
    background: rgb(255, 255, 255, 0.6);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 50px 30px;
}

.index-about .txt {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.index-about .txt p {
    margin-bottom: 15px;
}

.index-about .txt p:last-child {
    margin-bottom: 0;
}

.index-about .box-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.index-about .box-img img {
    width: calc(33.33% - 10px);
    height: 280px;
    border-radius: 8px;
    object-fit: cover;
}

.index-news {
    background: rgb(255, 255, 255, 0.6);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 50px 22px;
}

.index-news .all {
    display: flex;
    flex-wrap: wrap;
}

.index-news .item-all {
    box-sizing: border-box;
    width: calc(33.33% - 30px);
    margin: 0 8px;
    margin-top: 30px;
    border-radius: 8px;
}

.index-news .box-img {
    height: 320px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.index-news .box-img .layer {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--themeColor);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 0 0 8px 0;

}

.index-news .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-news .item-all:hover .box-img img {
    transform: scale(1.1);
}

.index-news a.item {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #e4e4e4;
}

.index-news a.item:last-child {
    border-bottom: none;
}

.index-news a.item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
    color: black;
    transition: all 0.4s ease;
}

.index-news a.item .txt {
    font-size: 16px;
    line-height: 1.6;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.page-director {
    background: rgb(255, 255, 255, 0.6);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 50px 30px;
}

.page-director .item-all {
    margin-top: 50px;
}

.page-director .item-all a.item {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(219, 219, 219);
}

.page-director .item-all a.item:last-child {
    padding-bottom: 0;
    border: none;
}

.page-director .item-all a.item .box-img {
    width: 280px;
    position: relative;
    height: 190px;
    overflow: hidden;
    border-radius: 8px;
}

.page-director .item-all a.item .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-director .item-all a.item:hover .box-img img {
    transform: scale(1.1);
}

.page-director .item-all a.item .box-img span {
    position: absolute;
    display: inline-flex;
    align-items: center;
    padding: 0 10px 0 6px;
    height: 20px;
    background: var(--themeColor);
    font-size: 12px;
    color: white;
    border-radius: 0 10px 10px 0;
    left: -3px;
    top: 14px;
    z-index: 10;
}

.page-director .item-all a.item .content {
    box-sizing: border-box;
    width: calc(100% - 280px);
    padding-left: 28px;
}

.page-director .item-all a.item .content h3 {
    font-size: 18px;
    margin-top: 15px;
    color: black;
    transition: all 0.3s ease;
}

.page-director .item-all a.item .content .description {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
}

.page-photo {
    background: rgb(255, 255, 255, 0.6);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 50px 30px;
}

.page-photo .index-title {
    margin-bottom: 50px;
}

.page-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-photo .item {
    display: block;
    position: relative;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 0;
}

.page-photo .item .layer {
    box-sizing: border-box;
    color: white;
    background: rgb(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-weight: normal;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(-100%);
    transition: all 0.5s ease;
}

.page-photo .item:hover .layer {
    transform: translateY(0);
}

.page-photo .item .layer {
    font-size: 20px;
    text-align: center;
    font-weight: normal;
}

.page-photo .box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: space-between;
}

.page-photo .box .item {
    width: calc(33.33% - 10px);
}