@charset "utf-8";

/* 启动页 start */
.index {
    width: 10rem;
    height: 22.6rem;
    background-image: url(../images/index.png);
    background-size: 100%;
    position: fixed;
    top: 0;
}

.index .but {
    width: 7rem;
    height: 1.61rem;
    position: fixed;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: auto;
}

.enter {
    width: 7.08rem;
    height: 1.6rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 0.64rem;
    color: #016789;
    font-weight: bold;
    margin: auto;
    line-height: 1.6rem;
    text-align: center;
    /* 贝塞尔曲线动画 */
    animation: enterenter 2s infinite cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes enterenter {
    0% {
        /* 加上文字间距 */
        letter-spacing: 1em;
        /* Z轴变换 */
        transform: translateZ(300px);
        /* filter: blur(); 像素模糊效果 */
        filter: blur(12px);
        /* 透明度也要改变 */
        opacity: 0.35;
    }

    100% {
        transform: translateZ(12px);
        filter: blur(0);
        opacity: 1;
    }
}

/* 启动页 end */


/* 地市一级 start */
.place {
    width: 9.2rem;
    overflow: hidden;
    margin: auto;
    padding-top: 2%;
}

.place ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.place ul li {
    width: 4.4rem;
    height: 2.93rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.place ul li span {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 0.8rem;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 0.4rem;
    text-align: center;
    line-height: 0.8rem;
    color: #333;
    border-radius: 0 0 10px 10px;
}

.place ul li img {
    width: 4.4rem;
    height: 2.93rem;
    border-radius: 10px;
}

/* 地市一级 end */


/* 攻略景点列表 start */
.attractions {
    width: 9.2rem;
    overflow: hidden;
    margin: auto;
}

.attractions img {
    width: 9.2rem;
    height: 6.13rem;
    border-radius: 15px;
}

.attractions-hover {
    width: 4.4rem;
    height: 0.8rem;
    margin: 0.6rem auto;
}

.attractions-hover ul {
    display: flex;
    justify-content: space-between;
}

.attractions-hover li a {
    display: block;
    width: 2rem;
    line-height: 0.8rem;
    background: #88cbf5;
    border-radius: 50px;
    color: #FFF;
    font-size: 0.4rem;
    text-align: center;
}

.attractions-hover li a.hover {
    background: #00bbf8;
}

.list {
    width: 100%;
    height: 3rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    margin-bottom: 4%;
}

.list-img img {
    width: 3.6rem;
    height: 3rem;
    border-radius: 10px 0 0 10px;
}

.list-con {
    width: 5.6rem;
    height: 3rem;
    display: flex;
    flex-flow: row wrap;
    padding: 3% 4%;
    box-sizing: border-box;
}

.list-con h2 {
    align-self: flex-start;
}

.list-con h2 a {
    font-size: 0.4rem;
    color: #333;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.list-con p {
    align-self: flex-end;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.list-con p img {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
}

.list-con p span {
    font-size: 0.32rem;
    margin-left: 10px;
    color: #333;
}

/* 攻略景点列表 end */

/* 公告通知 start */
.notice {
    width: 100%;
    overflow: hidden;
}

.notice li {
    width: 100%;
    height: 1.4rem;
    background: rgba(255, 255, 255, 0.35);
    margin-bottom: 4%;
    border-radius: 10px;
    padding: 0 3%;
    box-sizing: border-box;

}

.notice li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice li p {
    font-size: 0.4rem;
    color: #0b303e;
    line-height: 1.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    width: 85%;
}

.notice li span {
    display: flex;
    align-items: center;
    margin-right: 0;
}

/* 公告通知 end */


/* 搜索列表 start */
.btn-search {
    width: 100%;
    overflow: hidden;
    margin-bottom: 5%;
    display: flex;
}

.btn-search .search {
    background: url(../images/btn-search.png) rgba(255, 255, 255, 0.4) left no-repeat;
    background-position: 15px center;
    background-size: 22px;
}

.btn-search input {
    padding-left: 5px;
    width: 88%;
    height: 1.2rem;
    line-height: 1.2rem;
    font-size: 14px;
    color: #666;
    border-radius: 50px 0 0 50px;
    border: none;
    box-sizing: border-box;
    text-indent: 50px;
}

.btn-search button {
    width: 17%;
    border-radius: 0 50px 50px 0;
    font-size: 0.34rem;
    font-weight: bold;
    background: #00bbf882;
    color: #FFF;
}

.search-con {
    width: 100%;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 3%;
    box-sizing: border-box;
    margin-bottom: 4%;
}

.search-con span {
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.35rem;
    margin-right: 5%;

}

.search-con p a {
    font-size: 0.4rem;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 7.2rem;
}

.pink {
    color: #c898fd;
}

.blue {
    color: #50b6ff;
}

.purple {
    color: #800080;
}

/* 搜索列表 end */


/* 公告详情 start */
.time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4%;
}

.time p {
    color: #b2b2b2;
    font-size: 0.3rem;
    flex: 1;
}

.time i {
    background: url(../images/fx.png) no-repeat center center;
    background-size: 20%;
    text-indent: 42px;
}

.time i a {
    color: #b2b2b2;
    font-size: 0.3rem;
    display: block;
}

.con {
    width: 100%;
    overflow: hidden;
}

.con h2 {
    text-align: center;
    font-size: 0.64rem;
    font-weight: bold;
    color: #000;
    display: block;
    padding: 4% 0 5%;
}

.con p {
    font-size: 0.48rem;
    line-height: 35px;
    color: #000;
}

.con img {
    width: 100%;
    margin: 2% auto;
}

.sc, .sc-h {
    width: 0.56rem;
    height: 0.56rem;
    margin-right: 10px;
}

.sc-h {
    background: url(../images/sc-h.png);
    background-size: 100%;
}

.sc {
    background: url(../images/sc.png);
    background-size: 100%;
}

.dian {
    width: 0.56rem;
    height: 0.56rem;
    background: url(../images/dian-t.png);
    background-size: 100%;
    margin-right: 10px;
}

/* 公告详情 end */


/* 意见反馈 start */
.textarea textarea {
    width: 100%;
    height: 4.7rem;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    color: #666;
    border: none;
    resize: none;
    outline: 0;
    line-height: 30px;
    padding: 3%;
    box-sizing: border-box;
    font-size: 0.4rem;
}

.textarea-img {
    width: 100%;
    overflow: hidden;
    margin: 2% 0 6%;
}

.textarea-img ul {
    display: flex;
    padding: 2% 0;
    flex-wrap: wrap;
}

.textarea-img ul li {
    width: 2rem;
    height: 2rem;
    position: relative;
    margin-right: 0.35rem;
    margin-bottom: 0.36rem;
}

.textarea-img ul li p {
    display: block;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    width: 2rem;
    height: 2rem;
}

.textarea-img ul li p img {
    width: 0.8rem;
    height: 0.77rem;
    border-radius: 0;
    padding: 0.6rem 0.6rem 0;
}

.textarea-img ul li p span {
    font-size: 0.35rem;
    display: block;
    text-align: center;
    padding-top: 0.1rem;
}

.textarea-img ul li img {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
}

.textarea-contact {
    width: 100%;
    overflow: hidden;
}

.textarea-contact p {
    display: block;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    text-indent: 0.8rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.35);
    font-size: 0.48rem;
    font-weight: bold;
    color: #333;
    background-image: url(../images/dian.png);
    background-repeat: no-repeat;
    background-position: 23px;
    background-size: 27px;
}

.textarea-contact input {
    padding-left: 5px;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.35);
    font-size: 0.35rem;
    box-sizing: border-box;
    text-indent: 0.7rem;
    color: #666;
    margin: 4% 0;
}

.textarea-contact span {
    display: block;
    width: 8.3rem;
    height: 1.3rem;
    margin: auto;
}

.textarea-contact span a {
    display: block;
    border-radius: 50px;
    line-height: 1.3rem;
    background: #00bbf8;
    font-size: 0.48rem;
    font-weight: bold;
    color: #FFF;
    text-align: center;
}

/* 意见反馈 end */


/* 景点详情 start */
.jing {
    width: 100%;
    overflow: hidden;
    background: #FFF;
    border-radius: 20px;
    margin-bottom: 5%;
}

.jing img {
    width: 9.2rem;
    height: 5.7rem;
}

.jing-tit {
    width: 100%;
    overflow: hidden;
    padding: 0.4rem;
    box-sizing: border-box;
    border-bottom: 1px solid #fafafa;
}

.jing-tit h2 {
    font-size: 0.6rem;
    color: #222;
    font-weight: bold;
    float: left;
    margin-bottom: 2%;
}

.jd {
    display: flex;
    justify-content: space-between;
    clear: both;
}

.jd p {
    clear: both;
    display: block;
    color: #68410a;
    width: auto;
    height: 0.47rem;
    line-height: 0.47rem;
    background: #fbddac;
    border-radius: 50px;
    font-size: 0.32rem;
    margin: 1% 0 2%;
    padding: 0 3%;
}

.jd span {
    display: block;
    text-align: center;
    float: right;
    margin-top: 0.1rem;
    margin-right: 0;
}

.jd span a {
    display: block;
    color: #FFF;
    font-size: 0.32rem;
    height: 0.47rem;
    line-height: 0.47rem;
    width: 1.14rem;
    background: #00bbf8;
    border-radius: 50px;
}


.jing-list {
    width: 100%;
    overflow: hidden;
    padding: 0.4rem;
    box-sizing: border-box;
}

.jing-list ul li {
    width: 100%;
    height: auto;
    line-height: 1.04rem;
    border-bottom: 1px solid #fafafa;
    font-size: 0.3rem;
    clear: both;
    overflow: hidden;
}

.jing-list ul li span {
    display: block;
    float: left;
    width: 2.2rem;
    color: #a75b00;
}

.jing-list ul li p {
    display: block;
    float: left;
    width: 4.7rem;
    color: #17191c;
}

.jing-list ul li i img {
    width: 1.34rem !important;
    height: 0.47rem !important;
    margin-top: 0.3rem;
}

.jing-con {
    width: 100%;
    overflow: hidden;
    padding: 0.4rem;
    box-sizing: border-box;
    /* background: rgba(255, 255, 255, 0.35); */
    background: rgba(255, 255, 255, 255);
    border-radius: 20px;
}

.jing-con p {
    line-height: 38px;
    font-size: 0.48rem;
    color: #333;
    /* text-indent: 2em; */
    text-align: justify;
}

/* 景点详情 end */


/* 个人中心 start */
.geren {
    width: 100%;
    height: 5.36rem;
    background: url(../images/geren.jpg);
    background-size: 100%;
    position: relative;
}

.geren .title {
    width: 1.96rem;
    height: 0.53rem;
    margin: auto;
    display: block;
    padding: 6% 0;
}

.photo {
    width: 1.93rem;
    height: 1.93rem;
    margin: auto;
}

.photo img {
    width: 1.93rem;
    height: 1.93rem;
    border-radius: 50%;
    border: 2px solid #FFF
}

.geren-con {
    width: 9.2rem;
    height: 4.48rem;
    margin: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.45);
    margin-top: -0.84rem;
    z-index: 99999;
    position: relative;
    margin-bottom: 5%;
}

.geren-con h2 {
    width: 100%;
    height: 1.53rem;
    line-height: 1.53rem;
    background: #FFF;
    border-radius: 20px 20px 0 0;
    text-align: center;
    font-size: 0.48rem;
    color: #333;;
}

.geren-con ul {
    display: flex;
    padding-top: 0.7rem
}

.geren-con ul li {
    width: 25%;
    overflow: hidden;
}

.geren-con ul li span {
    margin: auto;
    width: 0.8rem;
    height: 0.72rem;
    display: block;
    margin-bottom: 2%;
}

.geren-con ul li p {
    text-align: center;
    font-size: 0.37rem;
    color: #333;
}

/* 个人中心 end */

/* 首页 start */
.title01 {
    width: 3.36rem;
    height: 0.5rem;
    margin: auto;
    display: block;
    padding: 6% 0;
}

.index-rig {
    width: 0.8rem;
    height: 0.72rem;
    position: absolute;
    top: 8%;
    right: 5%;
}

.index-pic {
    width: 8.93rem;
    height: 4.4rem;
    border: 10px solid;
    border-color: rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    margin: auto;
    margin-top: -0.84rem;
    z-index: 99999;
    position: relative;
    margin-bottom: 5%;
}

.index-img {
    width: 9.4rem;
    overflow: hidden;
    margin: auto;
}

.index-img ul {
    display: flex;
    justify-content: space-between;
}

.index-img ul li.left,
.index-img ul li.left img {
    width: 4.95rem;
    height: 6.07rem;
    position: relative;
}

.index-img ul li.left img {
    border-radius: 20px;
}

.index-img ul li.left p,
.index-img ul li.right p {
    font-size: 0.48rem;
    color: #FFF;
    position: absolute;
    z-index: 9999;
    top: 5%;
    left: 5%;
    font-weight: bold;
}

.index-img ul li.right,
.index-img ul li.right img {
    width: 3.87rem;
    height: 6.07rem;
    position: relative;
}

.index-img ul li.right img {
    border-radius: 20px;
}

.swiper-container {
    width: 100%;
    position: relative;
    margin-top: -0.84rem !important;
    z-index: 99999;
    margin-bottom: 5% !important;
}

.lb-tu {
    width: 8.93rem;
    height: 4.4rem;
    border: 10px solid;
    border-color: rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    margin: auto;
}

/* 首页 end */

/* 打卡 start */
.dk-con {
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
    overflow: hidden;
    box-sizing: border-box;
    padding: 4%;
    border-radius: 10px;
    margin-bottom: 5%;
}

.dk-con ul li {
    font-size: 0.4rem;
    line-height: 35px;
    color: #333;
}

.dk-img {
    display: flex;
    margin-top: 7%;
    flex-wrap: wrap;
}

.dk-img img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    margin-bottom: 5%;
	margin-right: 5%;
}
.dk-img img:nth-child(3n){
	margin-right: 0;
}

.dk {
    height: 1rem;
    line-height: 1rem;
    text-indent: 45px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.35);
    margin-bottom: 4%;
    background-image: url(../images/dk.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-size: 8%;
    background-position: 10px;
    font-size: 0.48rem;
    color: #333;
}

.flex {
    display: flex !important;
    justify-content: space-between;
}

.flex select {
    border: none;
    background: none;
    margin-right: 10px;
    color: #666;
    cursor: not-allowed;
    font-size: 0.35rem;
}


@media screen and (min-width: 750px) {
    html {
        font-size: 75px !important;
    }
}


.close {
    width: 0.6rem !important;
    height: 0.6rem !important;
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
}

.textarea-img ul li:nth-child(4n) {
    margin-right: 0;
}

.notice li span img {
    width: 0.3rem;
    height: 0.4rem;
}

.white, .white-h {
    width: 0.56rem;
    height: 0.56rem;
    margin-right: 10px;
}

.white-h {
    background: url(../images/white.png);
    background-size: 100%;
}

.white {
    background: url(../images/white-h.png);
    background-size: 100%;
}

.jing-list ul li:last-child{
	border-bottom: none;
}
.jing-list ul li h2{
	display: block;
	margin: auto;
	width: 20%;
	text-align: center;
	line-height: 25px;
	font-size: 0.3rem;
	background:#00bbf8;
	border-radius: 50px;
	color:#fff
}
.jing-list ul li input{
	display: block;
	float: left;
	width: 4.7rem;
	color: #999;
	line-height: 1.04rem;
}
.jing-con p{
	/*display: block;*/
	/*width: 2.2rem;*/
	/*color: #a75b00;*/
}
.button a{
	width:100%;
	line-height: 40px;
	border-radius: 50px;
	background: #00bbf8;
	color:#FFF;
	font-size:0.5rem;
	text-align: center;
	margin: 5% 0;
}
.jing-list ul li select{
	border: none;
	width: 59%;
	color: #999;
	outline: 0;
}