

.mouseHands{
    cursor:pointer;
}
.textUnderline{
    text-decoration: underline;
}

.pcbdmap{
	display: block;
	}
.sjbdmap{
	display: none;
}

.disJusCen{
    display: flex;
    text-align: center;
    justify-content: center;
}

.qiTaQuXiao{
    margin-top: 8px;
    width: 20px;
    height: 20px;
}

/* 购票及参观须知： */
.contentP3 {
    width: 100%;
    margin: 1.5em auto;
}

    .contentP3 .ptitle {
        font-weight: 600;
        font-size: 16px;
        color: #000000;
    }


    .contentP3 p {
        font-size: 14px;
        line-height: 2em;
    }

.onlineService {
    position: fixed;
    bottom: 120px;
    right: 20px;
}

  .onlineService .divOne{
        background: #fff;
         border-radius: 50%;
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    }
    .onlineService img {
        width: 90px;
        height: 90px;
    }

     .onlineService .text {
        letter-spacing: 2px;
            background: #fff;
          margin-top: -8px;
            line-height: 30px;
            height: 30px;
            font-size: 13px;
            text-align: center;
            border-radius: 30px;
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
        }

    .popupWidth {
            width: 50%;
            height: 500px;
        }


         /* 步骤条css */
        .steps ul {
            width: 800px;
            list-style: none;
            /* 取消默认样式 */
            display: flex;
            /* 使用flex */
            counter-reset: steps;
        }

        .steps_div {
            width: 800px;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .steps_a9 {
            width: 25%;
            text-align: center;
            color: #a90000
        }

        .steps_99 {
            width: 25%;
            text-align: center;
            color: #999999
        }

        .steps ul li {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            position: relative;
            align-items: center;
        }

            .steps ul li::before {
                width: 0.5rem;
                /* 步骤圆的宽 */
                height: 0.5rem;
                /* 步骤圆的高 */
                background: #d9d9d9;
                /* 里面的小圆 */
                box-shadow: 0 0 0 0.3rem #d9d9d9, 0 0 0 0.3rem transparent;
                /* 两层投影 改变投影颜色就可以实现步骤的不同状态 这里默认未完成状态 */
                border-radius: 50%;
                /* 设置形状为原型 */
                margin: 0.9rem;
                /* 没有设置margin的话，会位置不正确，因为投影不占用位置，而这里投影确实需要占用，所以手动给margin */
                display: block;
                /* 需要设置为块级 不然不生效*/
                counter-increment: steps;
                /* 使 steps 自增 */
                content: counter(steps);
                /* 修改content的内容为steps的值 */
                /* 使 步骤数字水平垂直居中，并设置字号 */
                display: flex;
                color: white;
                justify-content: center;
                align-items: center;
                font-size: 0.9rem;
                position: relative;
                z-index: 1;
            }

            .steps ul li:nth-child(n+2):after {
                content: '';
                height: .1rem;
                width: 100%;
                background: #d9d9d9;
                position: absolute;
                left: -50%;
            }

            .steps ul li div {
                color: black;
            }

                .steps ul li div:before {
                    content: "";
                    color: inherit;
                    position: absolute;
                    bottom: -2rem;
                    left: 50%;
                    transform: translateX(-50%);
                }

            .steps ul li.active:nth-child(n+2)::after {
                background: #a90000;
            }

            .steps ul li.active::before {
                background: #a90000;
                background-image: 'img/home/telephone.png';
                box-shadow: 0 0 0 0.3rem #a90000, 0 0 0 0.3rem #a90000;
            }


            .text_box{
                margin-bottom: 40px;
                margin-top: 15px;
                width: 800px;
                border-radius: 10px;
            }

            .textFont{
                font-size: 14px;line-height: 2em;
            }





@media (max-width: 768px) {
.pcbdmap{display: none;}
 .sjbdmap{display: block !important;}
  
    /* 购票及参观须知： */
    .contentP3 {
        width: 100%;
        margin: 1.5em auto;
    }
      .popupWidth {
                width: 80%;
                height: 300px;
     }
        .contentP3 .ptitle {
            font-weight: 600;
            font-size: 14px;
            color: #000000;
        }

        .contentP3 p {
            font-size: 11px;
            line-height: 2em;
        }



    .onlineService {
        position: fixed;
        bottom: 60px;
        right: 20px;
    }
    .onlineService .divOne{
        background: #fff;
         border-radius: 50%;
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    }

        .onlineService img {
            width: 46px;
            height: 46px;
        }
        .onlineService .text {
            letter-spacing: 1px;
            background: #fff;
          margin-top: -8px;
            line-height: 20px;
            height: 20px;
            font-size: 13px;
            text-align: center;
            border-radius: 15px;
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
        }


        /* 步骤条 */
            /* 高度 70 */
            .steps_height {
                height: 60px;
            }

            .steps ul {
                width: 100%;
                list-style: none;
                /* 取消默认样式 */
                display: flex;
                /* 使用flex */
                counter-reset: steps;
            }

            .steps_div {
                width: 100%;
                display: flex;
                justify-content: space-around;
                align-items: center;
            }

            .steps ul li::before {
                width: 0.5rem;
                /* 步骤圆的宽 */
                height: 0.5rem;
                /* 步骤圆的高 */
                background: #d9d9d9;
                /* 里面的小圆 */
                box-shadow: 0 0 0 0.3rem #d9d9d9, 0 0 0 0.3rem transparent;
                /* 两层投影 改变投影颜色就可以实现步骤的不同状态 这里默认未完成状态 */
                border-radius: 50%;
                /* 设置形状为原型 */
                margin: 0.8rem;
                /* 没有设置margin的话，会位置不正确，因为投影不占用位置，而这里投影确实需要占用，所以手动给margin */
                display: block;
                /* 需要设置为块级 不然不生效*/
                counter-increment: steps;
                /* 使 steps 自增 */
                content: counter(steps);
                /* 修改content的内容为steps的值 */
                /* 使 步骤数字水平垂直居中，并设置字号 */
                display: flex;
                color: white;
                justify-content: center;
                align-items: center;
                font-size: 0.8rem;
                position: relative;
                z-index: 1;
            }


              .text_box{
                margin-top: 0px;
                 margin-bottom: 10px;
                padding: 0 20px;
                background-color: #ffffff;
                width: 100%;
                border-radius: 0px;
            }

            .textFont{
                font-size: 11px;
                line-height: 2em;
            }


                    
}
        
