/*刷新页面动画初始*/
.ksh {
    height: 100%;
    padding: 15px;
    background: url(../images/data08.png) no-repeat #061537;
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: -2;
}

.head_top {
    position: relative;
}

.head_top img {
    width: 100%;
    height: 34px;
    margin: auto;
    /*border: 2px solid red;*/
}

/* 加载旋转动画 */
#load {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../images/data08.png) no-repeat #061537;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 999
}

#load .load_img {
    position: absolute;
    left: calc(50% - 182px);
    top: calc(50% - 182px);
}

.load_img img {
    position: absolute;
    left: 0;
    top: 0;
}

/*jzxz1和jzxz2，xz1和xz2都是实现刷新循环动态动画*/
.load_img .jzxz1 {
    animation: xz1 8s infinite linear;
}
@keyframes xz1 {
    from {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.load_img .jzxz2 {
    animation: xz2 7s infinite linear;
}
@keyframes xz2 {
    from {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-180deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
.clear {
    clear: both;
}

#centremap {
    position: absolute;
    width: 100%;
    height: 700px;
}
/*主体部分*/
.visual {
    height: 700px;
    padding-top: 10px;
    /*border: 2px solid red;*/
}
.visual_box1{ /*装按钮的盒子*/
    position: relative;
    z-index: 999;
    float: right;
    height: 50px;
    width: 25%;
    /*border: 2px solid red;*/
}
.visual_box1_button{ /*按钮*/
    float: right;
    width: 50%;
    height: 100%;
    /*border: 2px solid white;*/
    font-size: 35px;
    /*text-align: center;*/
}
.visual_centre{ /*装按钮的盒子*/
    position: relative;
    z-index: 999;
    /*float: right;*/
    margin-left: 1235px;
    margin-top: 80px;
    height: 50px;
    width: 13%;
    /*border: 2px solid red;*/
}
.visual_centre_button{ /*按钮*/
    float: right;
    /*margin-left: 500px;*/
    width: 100%;
    height: 100%;
    /*border: 2px solid white;*/
    font-size: 35px;
    /*text-align: center;*/
}
/*.transparent-button {*/
/*    background-color: transparent;*/
/*    color: #00d8ff;*/
/*    font-size: 33px; !* 设置按钮文字大小 *!*/
/*    padding-left: 20px;*/
/*    padding-top: 150px;*/
/*}*/
.transparent-button {
    appearance: none;
    background-color: #1380bd;
    border: 0.125em solid #1A1A1A;
    border-radius: 25px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    outline: none;
    padding: 10px 29px 10px 29px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
}
.transparent-button:disabled {
    pointer-events: none;
}
.transparent-button:hover {
    color: #fff;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.transparent-button:active {
    box-shadow: none;
    transform: translateY(0);
}

