/**
/* BY：逍遥
/* Time：2021.5.26
/* QQ：372176195
**/

* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-size: 14px;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #9e9e9e;
    background: -webkit-linear-gradient(left top, #9e9e9e, #607d8b);
    background: -o-linear-gradient(bottom right, #9e9e9e, #607d8b);
    background: -moz-linear-gradient(bottom right, #9e9e9e, #607d8b);
    background: linear-gradient(to bottom right, #9e9e9e, #607d8b);
}

#use-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.use-text {
    position: absolute;
    width: 80%;
    left: 50%;
    top: 260px;
    text-align: center;
    color: #fff;
    transform: translateX(-50%);
}

.use-text p:nth-child(1) {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.use-text p:nth-child(2) {
    margin-left: 300px;
    margin-top: 15px;
    font-size: 16px;
    letter-spacing: 2px;
}

.use-text p:nth-child(2)::before {
    display: inline-block;
    content: "";
    width: 30px;
    height: 1px;
    margin-bottom: 5px;
    margin-right: 5px;
    text-align: center;
    background-color: #fff;
}

@media screen and (max-width: 768px) {
	.use-text p:nth-child(1) {
        text-align: left;
    }
	.use-text p:nth-child(2) {
        text-align: right;
        margin-left: 0;
    }
}
