body{
    margin:0;
    padding:0;
}

.parent {
    height: 100%;
    width: 100%;
    position: fixed;
    text-align: center;
    background-size: 100% 100%;
    background: #aad8de;
}
.header{
    height: 100px;
    position: relative;
    text-align: left;
}
.title{
    font-size: 35px;
    font-weight: bold;
    line-height: 5px;
    position: absolute;
    top: 35px;
    padding-left: 5px;
}
.container{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 20px;
    width: 860px;
}
.row{
    height: 80px;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: row;
    width: 750px;
    margin: 0 auto;
}
.cell_left{
    width:75%;
}
.cell_right{
    width:25%;
}
.main_box {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 1px 5px 8px #888888;
    border-radius: 6px;
    height: 120px;
}
.url{
    height: 50px;
    width: 95%;
    border: 1px solid #ccc;
    margin-top: 15px;
    font-size: 16px;
    box-shadow: 0px 8px 20px 0px rgb(27 77 203 / 12%);
    border-radius: 5px;
    padding: 0px 10px;
}
.btnGo{
    height: 54px;
    width: 95%;
    background: #3D6FEF;
    box-shadow: 0px 8px 20px 0px rgb(27 77 203 / 12%);
    border-radius: 5px;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 15px;
    border: none;
    cursor:pointer;
}
.btnGo:hover{
    background: #0a5cc1;
}

.footer{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 20px;
    width: 860px;
    text-align:center;
}
.footer a{
    color:#000;
    text-decoration: none;
}

.tipinfo{
    display:none;
    padding: 5px 55px;
    text-align: left;
    position:relative;
}
.copybtn{
    width: 50px;
    height: 30px;
    color: #0d43cc;
    border: none;
    background: transparent;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    left: 350px;
    top: -1px;
}