html,body{
    height: 100%;
    width: 100%;
}

.slide-vertical {
    height: 100%;
}
.slide-vertical.view {
    padding: 0;
    height: 100%;
}
.slide-vertical .vertical-wrapper {
    position: relative;
    height: 100%;
    font-size: 0;
}
.slide-vertical .slide-vertical-wrapper {
    height: 100%;
    overflow: hidden;
}
.slide-vertical .slide-vertical-wrapper .slide-page {
    /*display: inline-block;*/
    /*width: 100%;*/
    /*!*line-height: 200px;*!*/
    /*text-align: center;*/
    /*transform: translate3d(0, 0, 0);*/
    /*backface-visibility: hidden;*/
}
.slide-vertical .slide-vertical-wrapper .slide-page.page1 {
    background-color: #d6eadf;
}
.slide-vertical .slide-vertical-wrapper .slide-page.page2 {
    background-color: #dda789;
}
.slide-vertical .slide-vertical-wrapper .slide-page.page3 {
    background-color: #c3d899;
}
.slide-vertical .slide-vertical-wrapper .slide-page.page4 {
    background-color: #f2d4a7;
}
.slide-vertical .dots-wrapper {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}
.slide-vertical .dots-wrapper .dot {
    display: block;
    margin: 4px 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eee;
}
.slide-vertical .dots-wrapper .dot.active {
    height: 20px;
    border-radius: 5px;
}





/* SECTION HOME */
.slogan,
.introduce,
.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*text-align: center;*/
    /*width: 100%;*/
    height: 100%;
}

/* SECTION SLOGAN*/
.slogan {
    background: url("../img/bg_slogan.jpg") no-repeat center center/cover;
}

.slogan .slogan-content {
    font-size: 4rem;
}

.slogan .slogan-content h1 {
    margin: 1rem 0;
}

/* SECTION INTRODUCE*/
.introduce {
    background: url("../img/bg_introduce.jpg") no-repeat center center/cover;
}

.introduce .introduce-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.introduce .introduce_diagnosis {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.6);
    width: 50rem;
    transition: transform 0.3s ease-in-out; /* 动画过渡效果 */
}

.introduce .introduce_diagnosis:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.introduce .introduce_diagnosis .diagnosis_title {
    background: url("../img/introduce_diagnosis.jpg") no-repeat center center/cover;
    font-size: 2.2rem;
    line-height: 6rem;
    padding-left: 1rem;
}

.introduce .introduce_diagnosis .diagnosis_content {
    margin: 2rem 0.6rem;
    font-size: 1.4rem;
}

.introduce .introduce_diagnosis .diagnosis_content ul li {
    padding: 1rem;;
}

/* 添加蓝色小点标识 */
.introduce .introduce_diagnosis .bullet {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    background-color: rgba(19, 167, 161, 1);
    border-radius: 50%;
    margin-right: 1rem;
}

/* 了解更多按钮 */
.introduce .introduce_diagnosis .diagnosis_more {
    width: 12rem;
    height: 3rem;
    text-align: center;
    background-color: transparent;
    border: 1px solid rgba(19, 167, 161, 1);
    color: rgba(19, 167, 161, 1);
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    margin-left: 1rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
}

.introduce .introduce_diagnosis:hover .diagnosis_more {
    background-color: rgba(19, 167, 161, 0.5);
}

/* SECTION ABOUT */
.about {
    background: url("../img/bg_about.jpg") no-repeat center center/cover;
}
.about .about-title{
    font-size: 3rem;
    margin-bottom: 2rem;
}
.about .about-content{
    width: 60%;
    height: 25rem;
    background-color: rgba(201, 201, 201, 0.4);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.about .about-content .about-company{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20rem;
    height: 20rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}
.about .about-content .about-company img{
    height: 100%;
    width: 100%;
    padding: 2rem;

    position: relative;
}

.about .about-content .about-introduce{
    flex: 3;
    margin-left: 2rem;
}
.about .about-content h1{
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
}

.about .about-content p{
    font-size: 1.6rem;
    color: #333;
    margin: 1rem 0;
}
