/*轮播图*/
.carousel .carousel-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .layui-carousel-ind ul {
    background-color: transparent;
}

.carousel .layui-carousel-ind ul li {
    border-radius: 0;
    width: 34px;
    height: 3px;
    background-color: #fff;
}

.carousel .layui-carousel-ind ul .layui-this {
    background-color: #67BFC6;
}


/* 关于我们 */
.about-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us .about-us-title {
    width: 250px;
    height: 50px;
    border: 1px solid #000;
    margin: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us .about-us-title .top {
    width: 180px;
    height: 20px;
    text-align: center;
    background-color: #fff;
    transform: translateY(-70%);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;

}

.about-us .about-us-title .bottom {
    width: 160px;
    height: 20px;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    transform: translateY(50%);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;

}

.about-us .about-us-text {
    font-size: 18px;
    margin-bottom: 14px;
}

.about-us .about-us-desc {
    font-size: 16px;
    margin-bottom: 14px;

}


/* 广告 */
.ad {
    width: 100%;
    height: auto;
    margin: 45px 0;
}


/* app页面 */
.page-box {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 10px;
}

.page-box .page-item {
    flex-shrink: 0;
    margin-right: 136px;
    margin-bottom: 50px;
    position: relative;
}

.page-box .page-item:nth-of-type(3n) {
    margin-right: 0;
}

.page-box .page-item .phone-box {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.page-box .page-item .page-main {
    transform: scale(0.99);
}


/* 新闻中心 */
.news-box {
    padding-bottom: 50px;
}

.news-box .news-title {
    text-align: center;
    padding-bottom: 40px;
}


.news-box .news-title .top {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.news-box .news-title .bottom {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 2px;
}

.news-box .news-list {
    display: flex;
    flex-wrap: wrap;
}

.news-box .news-item {
    width: 565px;
    flex-shrink: 0;
    margin-right: 60px;
    margin-bottom: 50px;
    border-bottom: 4px solid #fff;

}

.news-box .news-item:hover {
    border-bottom: 4px solid #333;
}

.news-box .news-item:nth-of-type(2n) {
    margin-right: 0;
}


.news-box .news-item .news-img {
    width: 100%;
    min-height: 300px;
    background-color: #eee;
    border-radius: 16px;
}

.news-box .news-item .news-item-title {
    padding: 16px 0;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 2px;
}

.news-box .news-item .news-item-content {
    display: -webkit-box;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 20px;
    line-height: 30px;
    height: 95px;
}

.news-box .news-item .news-time {
    color: #999;
    margin-top: 20px;
    margin-bottom: 20px;
}