@charset "utf-8";

html {
    font-size: 62.5%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    word-break: break-all;
    word-wrap: break-word;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

em,
i {
    font-style: normal
}

label,
input,
select,
img,
button {
    vertical-align: middle
}

img,
input,
button,
textarea {
    border: 0;
}

ol,
ul {
    list-style: none
}

button {
    cursor: pointer;
}

input,
button,
textarea,
select {
    background: transparent;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

a,
li,
input,
button,
section,
span,
div {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #737785;
}

a {
    text-decoration: none;
    display: block;
    color: #383838
}

:focus {
    outline: 0
}

/*  */
html {
    background-color: #F2F5F9;
}
.banner-top{
    width: 100%;
    background-color: #00798C;
    padding: 20px 0;
    border-radius: 0 0 10px 10px;
}
.subtitle{
    text-align: center;
    height: 20px;
    display: flex;
    justify-content: space-between;
    padding:0 20px;
    align-items: center;
}
.subtitle span{
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: block;
    line-height: 20px;
}
.serp-body{
    box-sizing: border-box;
    border-radius: 20px;
    overflow-y: scroll;
    position: absolute;
    bottom: 20px;
    padding: 0 20px 0 20px;
    width: 100%;
}
.content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.content .content-left img {
    width: 50px;
    height: 50px;
    vertical-align: bottom;
    border-radius: 10px;

}

.content .content-right {
    margin-left:10px;
}

.poi-info-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.poi-title{
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.poi-name {
    font-family: "PingFangSC-Semibold";
    font-size: 16px;
    color: #20667F;
    letter-spacing: 0;
    line-height:20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.control-btn{
    display: flex;
    flex-direction: column;
}
.poi-addr{
    font-size: 16px;
    white-space: pre-wrap;
}
.poi-dz{
    font-size: 14px;
    margin-right: 4px;
    /* font-weight: bold; */
}
.poi-not-addr{
    width: 82px;
    text-align: center;
    font-size: 12px;
    white-space: pre-wrap;
}
.control-btn .a-btn{
    padding: 2px 4px;
    font-size: 14px;
    background-color: #00798C;
    color: white;
    margin-bottom: 10px;
    font-weight: bold;
    border-radius: 2px;
    width: 40px;
    text-align: center;
}
.control-btn .a-btn:nth-of-type(2){
    margin-bottom: 0;
}
.serp-body li {
    /* margin: 0px 20px 0px 20px; */
    background-color: white;
    padding: 20px 10px 20px 10px;
    border-radius: 20px;
    box-sizing: border-box;
}
/* 弹出窗口 */
.mask{
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(58,68,84,0.7);
    top: 0;
    display: none;
}
.pop-up{
    position: absolute;
    width: 80%;
    height: 40%;
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 20px;
    background-color: white;
    top: 50%;
    padding: 0 20px;
    box-sizing: border-box;
    left: 50%;
    transform: translate(-50%,-50%);
}
.pop-up .close-pop{
    text-align: right;
    padding: 20px 20px;
    font-size: 16px;
    float: right;
    /* font-family: "宋体"; */
    /* font-weight: bold; */
    box-sizing: border-box;
}
.pop-up h3{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
}
.pop-up .navigation-method{
    display: flex;
    margin: 8px 0 ;
    background-color: #00798C;
    color: white;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 20px;
    align-items: center;
    width: 100%;
}
.pop-up .navigation-method img{
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.pop-up .navigation-method span{
    width: 100%;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}