html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: none;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    /* transition: all 0.3s ease; */
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

/* main box */
.left {
    flex:1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./img/bg.jpg');
}
.right {
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* right detail */
.title{
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    color: #1D3832;
    text-align: center;
}
.qr-box{
    margin-top: 30px;
    max-width: 258px;
}
.qr-box img {
    display: block;
    width: 100%;
}

.intro-box{
    margin-top: 40px;
}

.intro{
    width: 290px;
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}
.intro:first-child{
    margin-top:0
}

.intro-img{
    width: 60px;
}
.intro-img img{
    display: block;
    width: 100%;
}

.intro-detail{
    width: 1px;
    flex:1;
    margin-left: 20px;
}

.intro-title{
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #1D3834;
}

.intro-text{
    margin-top: 5px;
    font-size: 12px;
    line-height: 17px;
    color: #959892;
    letter-spacing: 0;
}
.icp{
    display:block;
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding-top:20px;
    padding-bottom: 10px;
    text-decoration: none;
    color: #aaa;
    width: 50%;
    text-align: center;
}
.icp:hover {
    color: #666;
}

@media screen and (max-width: 900px) {
    .container {
        /* height: auto; */
        overflow: auto;
        display: block;
    }
    .left{
        width: 100%;
        height: 160px;
    }
    .right{
        width: 100%;
        padding: 40px 0;
    }
    .icp{
        position: relative;
        bottom: 0;
        width: 100%;
    }
}