.container {
    padding: 0;
}

.row {
    margin: 0;
}

.col {
    padding: 0;
}

@media screen and (max-width: 576px) {
    body .container {
        width: 100% !important;
    }
}

@media screen and (min-width: 576px) {
    body .container {
        width: 100% !important;
    }
}

@media screen and (min-width: 768px) {
    body .container {
        max-width: 768px;
    }
}

@media screen and (min-width: 992px) {
    body .container {
        max-width: 992px;
    }
}


@media screen and (min-width: 1200px) {
    body .container {
        max-width: 1200px;
    }
}



/* 返回顶部css */
.back-to-top-btn {
    position: fixed;
    right: 30px;
    bottom: 60px;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.back-to-top-btn .iconfont {
    font-size: 16px !important;
}


/* title的基本样式 */
.container .title .span {
    width: 80px;
    height: 4px;
    border-radius: 4px;
    background-color: #e3e3e3;
    margin-top: 5px;
}

.container .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}


/* 右侧的留言模块 */
.ggh-advice-common-view {
    position: fixed;
    right: 0;
    /* top: 450px; */
    z-index: 1000;
    background-color: var(--main-color);
    width: 40px;
    height: auto;
    display: flex;
    justify-content: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.ggh-advice-common-view .content {
    width: 40px;
    height: auto;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    color: white;
    padding: 10px 0;
}

.ggh-advice-common-view .content .iconfont {
    font-size: 20px !important;
}

.ggh-advice-common-view .content div {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}


/* 动画效果 */
/* .rotateA {
    transition: all 0.5s;
}

.ggh-common-contact-phone-view .content .iconfont.website_base_component_close.rotateB {
    transform: rotate(45deg);
    transition: all 0.5s;
}
.ggh-common-contact-phone-view .content .iconfont.website_base_component_close.rotateC {
    transform: rotate(-0deg);
    transition: all 0.5s;
} */

@media screen and (max-width: 576px) {
    .back-to-top-btn {
        width: 40px;
        height: 40px;
    }
    .container .title {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 576px) {

    .back-to-top-btn {
        width: 40px;
        height: 40px;
    }
    .container .title {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .back-to-top-btn {
        width: 40px;
        height: 40px;
    }
    .container .title {
        margin-bottom: 25px;
    }
}


@media screen and (min-width: 992px) {
    .back-to-top-btn {
        width: 56px;
        height: 56px;
    }
    .container .title {
        margin-bottom: 35px;
    }

}

@media screen and (min-width: 1200px) {
    .back-to-top-btn {
        width: 56px;
        height: 56px;
    }
    .container .title {
        margin-bottom: 30px;
    }
}