.banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 1200px;
}

.banner > img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
}

.banner .swiper {
    width: 100%;
    height: 550px;
}

.banner .swiper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 90%;
}

.text-overlay h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.line-overlay {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: auto;
    z-index: 10;
}

.line-overlay>img {
    width: 100%;
    height: auto;
}

.card-container {
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}

.card {
    display: block;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 365px;
    height: 200px;
    box-sizing: border-box;
    text-decoration: none;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card:nth-child(n+1) {
    box-shadow: 0px 22px 29px 0px rgba(68, 165, 51, 0.1);
}

.card:nth-child(2n+2) {
    box-shadow: 0px 22px 29px 0px rgba(249, 208, 0, 0.1);
}

.card:nth-child(3n+3) {
    box-shadow: 0px 22px 29px 0px rgba(0, 108, 186, 0.1);
}

.card img {
    height: 40px;
}

.card h2 {
    font-size: 16px;
    color: #545A62;
    margin: 16px 0;
    line-height: normal;
}

.card p {
    font-size: 14px;
    color: #545A62;
    line-height: normal;
    text-align: left;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.card2 {
    height: 215px;
    padding: 0;
    box-sizing: border-box;
}

.card2 img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.card2 h2 {
    padding: 0 15px;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
}

.card2 p {
    padding: 0 15px;
    box-sizing: border-box;
}

.grid-container {
    display: block;
    text-align: center;
    margin-top: 74px;
    margin-bottom: 78px;
}

.grid-container h1 {
    font-size: 30px;
    color: #4C4C4C;
    margin: 0 0 34px;
    letter-spacing: 2px;
    font-weight: normal;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 216px;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.item:hover img {
    transform: scale(1.1);
}

.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    box-sizing: border-box;
    color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 2;
}

.content h2 {
    font-size: 16px;
    font-weight: 900;
    margin: 0;
    line-height: normal;
}

.content p {
    font-size: 14px;
    line-height: normal;
    margin: 10px 0;
}

.content button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
    font-size: 12px;
}

.content button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.content-container {
    display: block;
    margin-top: 78px;
}

.content-container h1 {
    font-size: 30px;
    color: #4C4C4C;
    margin: 0 0 34px;
    letter-spacing: 2px;
    text-align: center;
    font-weight: normal;
}

.content-section {
    display: flex;
    gap: 20px;
}

.text-block {
    background-color: #3498db;
    color: #fff;
    padding: 20px;
    flex: 0 0 380px;
    height: 631px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s;
}

.text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    z-index: 1;
}

.text-block h2 {
    font-size: 28px;
    font-weight: 900;
    margin: 25px 0;
    line-height: normal;
}

.text-block p {
    font-size: 16px;
    line-height: 30px;
    margin: 10px 0;
}

.text-block-bottom {
    margin-bottom: 60px;
}

.text-block-bottom h2 {
    font-size: 18px;
    line-height: normal;
}

.text-block-bottom p {
    font-size: 14px;
}

.text-block-top, .text-block-bottom {
    position: relative;
    z-index: 2;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.image-item {
    text-align: left;
    text-decoration: none;
}

.image-item .image-wrap {
    width: 100%;
    height: 215px;
    border-radius: 5px;
    margin-bottom: 12px;
    overflow: hidden;
}

.image-item .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.image-item h3 {
    font-size: 14px;
    font-weight: 900;
    color: #545A62;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.3s;
    line-height: normal;
}

.image-item p {
    font-size: 14px;
    font-weight: 350;
    line-height: 25px;
    color: #5E646C;
    margin: 10px 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.image-item:hover h3,
.image-item:hover p {
    color: rgb(62, 151, 243);
}

.image-item:hover .image-wrap img {
    transform: scale(1.1);
}

.container-wrap {
    background-image: url('../image/news-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 69px;
    min-width: 1200px;
}

.news-container {
    display: block;
    margin-bottom: 80px;
}

.news-container h1 {
    font-size: 30px;
    color: #fff;
    margin: 55px 0 30px;
    letter-spacing: 2px;
    text-align: center;
    font-weight: normal;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #FFFFFF;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 10px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px 10px 24px;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    transition: background-color 0.3s;
}

.news-item:hover {
    background-color: #f5f5f5;
    border-radius: 10px;
}

.news-item::after {
    content: '';
    display: block;
    width: auto;
    height: 1px;
    background-color: #f0f0f0;
    position: absolute;
    left: 25px;
    right: 25px;
    top: 0;
}

.news-item:nth-child(-n + 2)::after {
    display: none;
}

.news-item img {
    width: 145px;
    height: 145px;
    border-radius: 10px;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-content-title {
    display: flex;
}

.news-content-title-text {
    flex: 1;
    min-height: 48px;
}

.news-content h2 {
    font-size: 16px;
    font-weight: bold;
    color: #3D3D3D;
    margin: 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: normal;
    word-break: break-all;
}

.news-content .date {
    font-size: 14px;
    color: #006CBA;
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.news-content p {
    margin: 34px 0 0;
    font-size: 14px;
    line-height: normal;
    color: #696969;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item:hover .news-content h2,
.news-item:hover .news-content p {
    color: rgb(62, 151, 243);
}

._3d-container {
    width: 100%;
    position: relative;
}

._3d {
    width: 100%;
    height: 515px;
    display: block;
    text-decoration: none;
}

._3d > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

._3d-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

._3d-content img {
    width: 175px;
    height: 120px;
    display: block;
    margin: 0 auto;
}

._3d-content p {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 12px 0 0;
    text-align: center;
}

.more {
    text-align: center;
    margin-top: 40px;
    font-size: 0;
}

.more a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    box-sizing: border-box;
    background: rgba(62, 151, 243, 1);
    color: #FFFFFF;
    font-size: 14px;
    border-radius: 6px;
}