
/** 1. Basic
*******************************************************************/

html
{
    font-size: 14px !important;
}

body
{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: normal;

    color: #fff;
    background: #000;

    -webkit-font-smoothing: antialiased;
}

html body .privacy-contain{
    margin: 5px 400px 0 400px;
    text-align: right;
}

@media (max-width:1400px)
{
    html
    {
        font-size: 9px !important;
    }

    html body .privacy-contain{
        margin: 5px 200px 0 200px;
        text-align: right;
    }
}

@media (max-width:1200px)
{
    html
    {
        font-size: 9px !important;
    }

    html body .privacy-contain{
        margin: 5px 100px 0 100px;
        text-align: right;
    }
}

@media (max-width:800px)
{
    html
    {
        font-size: 9px !important;
    }

    html body .privacy-contain{
        margin: 5px 20px 0 20px;
        text-align: right;
    }
}

@media (max-width:700px)
{
    html
    {
        font-size: 8px !important;
    }

    html body .privacy-contain{
        margin: 5px 20px 0 20px;
        text-align: right;
    }
}

@media (max-width:600px)
{
    html
    {
        font-size: 7px !important;
    }

    html body .privacy-contain{
        margin: 5px 20px 0 20px;
        text-align: right;
    }
}

@media (max-width:500px)
{
    html
    {
        font-size: 6px !important;
    }

    html body .privacy-contain{
        margin: 5px 20px 0 20px;
        text-align: right;
    }
}

.hero .container-fluid1
{
	position: fixed;
	text-align: center;
	bottom: 85px;
	width: 100%;
	vertical-align: middle;
}

.hero .front-content
{
	position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .front-content .footer
{
    position: fixed;
    bottom: 5px;
	height: 40px;
    width: 100%;
	vertical-align: middle;
    text-align: center;

}

.image1{
		margin:0 30px;
	}

.flex-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*不论 right-float 高度 永远贴在最右边 高度居中*/
.right-float{
    width: 150px;
    background: white;
    border-radius: 10px 0   0 10px;
    position: fixed;
    right: 0;
    top: 50%; /* 使元素在左右方向上位于父元素的中心位置 */
    transform: translateY(-50%); /* 将元素自身的中心定位到父元素的中心 */"
}
.right-float img{
    width: 100%;
    height: 100%;
}
.img-box{
    padding: 5%;
}


.right-float .btn{
    background: #08ade9;
    width: 90%;
    height: 30px;
    margin:5px;
    border-radius: 5px;
}

.right-float-switch{
    position: absolute;
    width: 30px;
    height: 30px;
    background: #08ade9;
    cursor: pointer;
    left: -30px;
    transform: translateY(-50%); /* 将元素自身的中心定位到父元素的中心 */"
    top: 50%;
}

/* 收缩状态的样式 */
.right-float.collapsed {
    width: 0px; /* 或者任何你希望的收缩宽度 */
    transition: width 0.5s; /* 平滑过渡动画 */
}

/* 非收缩状态的样式 */
.right-float {
    transition: width 0.5s; /* 平滑过渡动画 */
}