@charset "utf-8";
@import url(./default.css);
#page1{
    width: 100%;
    height: 100%;
}
#page2{
    width: 100%;
    height: 100%;
}
.Info{
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 100px;
    overflow: hidden;
    position: fixed;
    bottom: 7%;
    left: 3%;
    z-index: 9999;
    font-size: 20px;
    text-align: center;
    line-height: 80px;
    color: #000;
    cursor: pointer;
    box-shadow: 0px 0px 10px #00000029;
}

.detail{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 160px;
    /* max-width: 87vw; */
    z-index: 9999;
}
.detailwrap{
    font-size: 12px;
    width: 350px;
    height: 180px;
    max-width: 87vw;
    padding: 0 15px;
    position: fixed;
    bottom: 0;left: 0;
    flex-direction: column;
    line-height: 25px;
    display: flex;
    align-items: center;
    z-index: 9998;
    background-color: rgba(255,255,255,1.0);
    justify-content: center;
    text-transform: none;
    box-sizing: border-box;
}
.detail a{
    color: #000;
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    text-align: right;
    font-size: 0.9em;
}
.infoclose{
    display: inline-block;
    position: absolute;
    top: -39%;
    right: -13%;
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 100px;
    z-index: 9999;
    background-color: #474747;
    text-align: center;
    font-size: 14px;
    color: #fff !important;
    padding-left: 5px;
    cursor: pointer;
}
.infoclose::before{
    content:'';
    display: block;
    width: 80%;
    margin: 0 auto;
    height: 1px;
    position: absolute;
    bottom: 33%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;

}
.infoclose::after{
    content:'';
    display: block;
    position: absolute;
   top: 50%;
   left: 6px;
   transform: translate(0,-50%);
   width: 12px;
   height: 12px;
   background: url('/images/common/open01.png') no-repeat center;
}

@media(max-width:768px){
    .Info{
        bottom: 1%;
        left: 1%;
        width: 50px;
        height: 50px;
        font-size: 14px;
        line-height: 50px;
    }
    .detail{
        display: none;
        /* position: static;
        width: 100%; */
        position: absolute;
        width: 86%;
        max-width: 300px;
        height: 130px;
    }
    .detailwrap{
        font-size: 12px;
        line-height: 19px;
        width: 100%;
        height: 130px;
        padding: 0 30px 0 20px;
        position: static;
    }

}