@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    font-sommthing: antialiased;
    background: #EDF1F7;
}

header {
    width: 100%;
    height: auto;
    background: #EDF1F7;
    overflow: hidden;
}

#logo_div {
    width: 1400px;
    height: 94px;
    margin: 0 auto;
    display: flex;
}

#trip {
    font-family: "微软雅黑", "Arial", sans-serif;
    font-size: 2.2rem;
    color: #2196f3;
    font-weight: bold;
    letter-spacing: 6px;
    margin: 0;
    padding: 20px 0 0 30px;
    display: inline-block;
    background: linear-gradient(90deg, #2196f3 30%, #21cbf3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-sizing: border-box;
    border-radius: 8px;
    /* 可选阴影 */
    /* text-shadow: 1px 2px 8px #b3e5fc; */
}

.site-nav {
    background: linear-gradient(#25B7DC, #6BCEE6, #25B7DC);
    width: 100vw;
    height: auto;
    box-shadow: 0px 0px 20px #86D7EB;
    z-index: 400;
    opacity: .95;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.site-nav ul {
    list-style-type: none;
    margin: 0 auto;
    text-align: center;
}

.site-nav ul li {
    display: inline-block;
    margin-bottom: 0;
    padding: 5px 15px 5px 15px;
    transition: 0.3s linear all;
}

.site-nav ul a {
    color: white;
}

.site-nav ul li:hover {
    background: #128FC3;
}

.site-nav ul li a {
    text-decoration: none;
}

.head_photo {
    width: 100vw;
    height: auto;
    text-align: center;
    background: #EDF1F7;
}

.head_photo img {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    max-height: 480px;
}

.second {
    width: 100%;
    height: auto;
    text-align: center;
    display: inline-block;
}

.second h2 {
    min-width: 50vw;
    max-width: 58vw;
    text-align: center;
    margin: 0 20vw;
    margin-top: 25px;
    font-size: 32px;
    color: #DD6400;
    text-shadow: 0px 0 10px #FFD6B5;
}

.second h1 {
    margin: 25px 0 0 0;
    color: #DD6400;
    text-shadow: 0 0px 10px #FFD6B5;
}

.second-c {
    min-width: 60vw;
    max-width: 86vw;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 6vw;
    margin-bottom: 20px;
}

.second-c-photo {
    width: 202px;
    height: 332px;
    margin: 50px 20px 0 20px;
    border: 1px solid #FFCF43;
    transition-duration: 0.1s;
    animation-name: second-c-photo;
    animation-duration: 0.6s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@keyframes second-c-photo {
    0% {
        box-shadow: 0px 0px 10px 0px #a1a1a1;
    }
    100% {
        box-shadow: 0px 0px 10px 2px #FFFCAD;
    }
}

.second-c-photo-div {
    overflow: hidden;
}

.second-c-photo img {
    max-width: 202px;
    max-height: 202px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.second-c-photo img:hover {
    max-width: 202px;
    max-height: 202px;
    transform: scale3d(1.2, 1.2, 1);
}

.second-c-photo h1 {
    font-size: 24px;
    color: #FF4F00;
}

.second-c-photo h1:hover {
    color: #FF6A27;
    transition-duration: 0.1s;
}

.second-c-photo a {
    text-decoration: none;
}

.second-c-photo p {
    width: 90%;
    font-size: 1em;
    margin: 7px auto;
}

.introduce {
    background: #EDF1F7;
    min-width: 68vw;
    max-width: 99vw;
    height: auto;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.introduce_h1 {
    min-width: 50vw;
    max-width: 59vw;
    text-align: center;
    margin: 0px 20vw;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #F3423A;
    text-shadow: 0px 0px 10px #F89995;
}

.autoset {
    max-width: 550px;
    background: #DFE4EB;
    margin: 0px 4%;
    margin-bottom: 20px;
    height: 280px;
    display: inline-block;
    animation-name: autoset;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes autoset {
    0% {
        box-shadow: 0px 0px 20px 0px #FBCCB7;
    }
    100% {
        box-shadow: 0px 0 20px 2px #F4A549;
    }
}

.autoset h2 {
    margin: 0;
    padding: 8px;
    color: #F3743B;
}

.autoset h2:hover {
    color: #FFB800;
    transition-duration: 0.1s;
}

.food {
    display: flex;
    justify-content: center;
}

.food1 {
    margin: 0;
    height: 192px;
    width: 128px;
    text-align: center;
    overflow: hidden;
}

.foods-out {
    background: aliceblue;
    margin: 5px;
    height: 212px;
}

.foods-out p {
    margin: 0;
    padding: 5px;
    background: #F47E49;
    color: aliceblue;
    font-weight: 600;
    animation-name: foot;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes foot {
    0% {
    }
    100% {
        box-shadow: 0 0px 10px #F1601F;
    }
}

.foods-out a {
    text-decoration: none;
}

.foods-out p:hover {
    color: #F4E013;
    transition-duration: 0.1s;
}

.food1 img {
    width: 100%;
    height: 100%;
    max-height: 192px;
    max-width: 128px;
    transition: all 0.6s cubic-bezier(0.23, 1.2, 0.320, 1);
}

.food1 img:hover {
    transform: scale3d(1.2, 1.2, 1);
}

#freedom {
    min-width: 50vw;
    max-width: 100vw;
    height: auto;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.freedom_h1 {
    min-width: 50vw;
    max-width: 59vw;
    text-align: center;
    margin: 40px 20vw;
    color: #0ac1f8;
    text-shadow: 0 0px 10px #9EE6FC;
}

.freedom_fragment {
    width: 300px;
    height: 398px;
    display: inline-block;
    margin: 0px 1%;
    margin-bottom: 10%;
    animation-name: freedom;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes freedom {
    0% {
        box-shadow: 0px 0px 10px 0px #A1A1A1;
    }
    100% {
        box-shadow: 0px 0px 10px 4px #BBF7FF;
    }
}

.freedom_fragment:hover {
    box-shadow: 4px 4px 20px 4px #A1A1A1;
}

.freedom_photo {
    overflow: hidden;
}

.freedom_fragment img {
    width: 300px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.freedom_photo img:hover {
    transform: scale3d(1.2, 1.2, 1);
}

.freedom_fragment a {
    font-size: 18px;
    text-align: center;
    font-family: "黑体";
    color: #4DB7FF;
    margin: 6px 0px;
}

.freedom_fragment a:hover {
    color: #FF4F4F;
}

.freedom_fragment h2 {
    margin-bottom: 4px;
}

.freedom_fragment ul {
    width: 110px;
    margin-left: 10px;
}

.freedom_fragment li {
    list-style: none;
    text-align: left;
    background: url("img/li_background.PNG") no-repeat left center;
    padding-left: 20px;
    color: #777;
    margin-bottom: 4px;
    margin-left: 10px;
}

.freedom_fragment p {
    height: 50px;
    margin: 0px auto;
    margin-top: 10%;
    border-top: 1px #0ac1f8 dashed;
    color: #0ac1f8;
    font-size: 18px;
    line-height: 60px;
}

.freedom_fragment a {
    text-decoration: none;
}

.freedom_fragment li:hover {
    color: #EF1D1D;
}

.freedom_fragment p:hover {
    color: red;
}

#footer {
    max-width: 100vw;
    margin: 0px auto;
    height: auto;
    background-color: #3B3B3B;
}

#footer_all {
    width: 100vw;
    height: auto;
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#footer_first_column, #footer_second_column, #footer_third_column {
    width: 370px;
    height: auto;
    text-align: justify;
    justify-content: center;
    margin-bottom: 30px;
}

#footer_first_column h2, #footer_second_column h2, #footer_third_column h2 {
    color: white;
    margin-bottom: 24px;
    text-align: center;
}

#footer_first_column p, #footer_third_column p {
    color: #9C9C9C;
    width: 100%;
    line-height: 1.7;
}

#About_Internet_Rural_Tourism p {
    text-indent: 2em;
}

#footer_second_column {
    margin-left: 0px;
}

#service {
    text-align: center;
}

#service ul {
    display: inline-block;
}

#service li {
    list-style: none;
    margin: 26px 30px;
    font-size: 20px;
}

#service a {
    color: #A4A4A4;
    text-decoration: none;
}

#service a:hover {
    color: #4AD05C;
}

#footer_third_column {
    width: auto;
}

#footer_third_column h2, #footer_third_column p {
    text-align: center;
}

#E_mail {
    width: 240px;
    height: 40px;
    background-color: #3B3B3B;
    border: 1px #666 solid;
    border-radius: 6px 0px 0px 6px;
    margin-top: 30px;
    text-indent: 10px;
    color: #666;
    font-size: 16px;
}

#send {
    position: relative;
    top: 1px;
    width: 46px;
    height: 43px;
    background-color: #ef6c57;
    border: 1px #FFFFFF solid;
    font-size: 14px;
    color: #F0F1C5;
    animation-name: send;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@keyframes send {
    0% {
        border-top: 1px #FBF11F solid;
        box-shadow: 0px 0px 0px #FBF11F;
    }
    25% {
        border-right: 1px #FBF11F solid;
    }
    60% {
        border-bottom: 1px #FBF11F solid;
    }
    70% {
        border-left: 1px #FBF11F solid;
    }
    100% {
        box-shadow: 0px 0px 20px #FBF11F;
    }
}

#copyright_div {
    display: flex;
}

#copyright {
    min-width: 80vw;
    max-width: 90vw;
    height: auto;
    color: #7C7C7C;
    text-align: center;
    justify-content: center;
    margin: 0px 11vw;
    margin-bottom: 20px;
}

/*下面是组团旅游的二级页面css*/
#cluster_one {
    width: 1200px;
    height: 370px;
    margin: 30px auto;
}

#cluster_left {
    width: 60%;
    height: 87.3%;
    float: left;
    overflow: hidden;
}

#cluster_left img {
    width: 100.3%;
    transition-duration: 0.5s;
}

#cluster_right {
    width: 350px;
    margin-right: 90px;
    float: right;
}

#cluster_right_top {
    width: 350px;
}

#cluster_one h2 {
    text-align: left;
    font-size: 26px;
    font-weight: 600;
    color: #FF4E00;
    margin-bottom: 10px;
    text-shadow: 1px 1px 10px #FFC2A7;
}

#cluster_right h3 {
    font-size: 30px;
    font-weight: 400;
    color: #004654;
    margin-top: 4px;
    margin-bottom: 24px;
}

#cluster_right h3:hover {
    color: #0099ff;
}

#cluster_right a {
    text-decoration: none;
}

#cluster_button {
    width: 350px;
    height: 70px;
    font-size: 30px;
    color: white;
    background-color: #0099ff;
    border: 1px #0099ff solid;
    border-radius: 8px;
    transition-duration: 0.5s;
    animation-name: button;
    animation-duration: 0.5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes button {
    0% {
        box-shadow: 0px 0px 0px #0099ff;
    }
    100% {
        box-shadow: 0px 0px 20px #6AC2FF;
    }
}

#cluster_button:hover {
    font-size: 40px;
    background-color: #23A7FF;
}

#cluster_right p {
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    color: #616161;
    margin-top: 8px;
}

.cluster_right_state {
    width: 350px;
    height: 42px;
    margin-top: 15px;
}

.start-up {
    float: left;
    font-size: 18px;
    color: #a4a4a4;
    margin-top: 2px;
}

.price {
    font-size: 22px;
    float: left;
}

.result {
    font-size: 16px;
    float: right;
    color: white;
    background-color: #c2c2c2;
    padding: 4px;
    border-radius: 4px;
}

.state_num_div {
    width: 350px;
    height: 20px;
    color: #555;
    font-size: 18px;
}

.state_num_left {
    float: left;
}

.state_num_center {
    position: relative;
    bottom: 3px;
}

.state_num_right {
    float: right;
}

.state_div {
    width: 350px;
    height: auto;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.state_left {
    float: left;
    margin-left: 4px;
}

.state_center {
    margin-top: -10px;
}

.state_right {
    float: right;
    margin-right: 5px;
}

#common_cluster {
    width: 1310px;
    height: auto;
    margin: 30px auto;
}

#common_cluster h2 {
    font-size: 26px;
    color: #FF7900;
    margin-bottom: 10px;
    text-shadow: 1px 1px 10px #FFB878;
}

.little_common_cluster {
    width: 284px;
    height: 374px;
    border: 1px #999 solid;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 30px;
    box-shadow: 4px 4px 10px #999;
    transition-duration: 0.5s;
}

.little_common_cluster:hover {
    box-shadow: 4px 4px 20px #999;
}

.common_cluster_photo {
    overflow: hidden;
}

.common_cluster_photo_h1 img {
    width: 284px;
    height: 220px;
    transition-duration: 0.3s;
}

.common_cluster_photo_h1 img:hover {
    transform: scale(1.2);
}

.common_cluster_photo_h1 h1 {
    font-size: 18px;
    font-weight: 400;
    color: #404040;
    margin-left: 14px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.common_cluster_photo_h1 h1:hover {
    color: #0099ff;
}

.common_cluster_photo_h1 a {
    text-decoration: none;
}

.bottom_common_cluster_div {
    margin: 0px 14px;
}

.bottom_cluster_state {
    height: 36px;
}

.bottom_start-up {
    float: left;
    margin-top: 3px;
    font-size: 14px;
    color: #a4a4a4;
}

.bottom_price {
    font-size: 18px;
    margin-top: 20px;
    position: relative;
    top: 3px;
}

.bottom_result {
    float: right;
    font-size: 16px;
    color: white;
    background-color: #c2c2c2;
    padding: 2px 4px;
    border-radius: 4px;
}

.bottom_result_89 {
    float: right;
    font-size: 16px;
    color: white;
    background-color: #FF6464;
    padding: 2px 4px;
    border-radius: 4px;
}

.bottom_result_100 {
    float: right;
    font-size: 16px;
    color: white;
    padding: 2px 4px;
    border-radius: 4px;
    background-color: #FF3737;
}

.progress_bar {
    border: 1px #666 solid;
    height: 10px;
    background-color: #d5d5d5;
    border-radius: 4px;
    margin-bottom: 12px;
}

.progress_bar span {
    height: 10px;
    display: block;
    border-radius: 0px 4px 4px 0px;
}

.baishuiyan_bottom_result {
    float: right;
    font-size: 16px;
    color: white;
    background-color: #4646FF;
    padding: 2px 4px;
    border-radius: 4px;
    margin-top: 2px;
}

.baishuiyan_degree {
    width: 95%;
    background-color: #3737FF;
    box-shadow: 0px 0px 10px #7272FF;
}

.degree1 {
    width: 72%;
    background-color: #FF8A6B;
    box-shadow: 0px 0px 10px #FF8A6B;
}

.degree2 {
    width: 41%;
    background-color: #FFD7D7;
    box-shadow: 0px 0px 10px #FFD7D7;
}

.degree3 {
    width: 100%;
    background-color: #FF3702;
    box-shadow: 0px 0px 10px #FF3702;
}

.degree4 {
    width: 89%;
    background-color: #FF4919;
    box-shadow: 0px 0px 10px #FF4919;
    animation-name: degree4;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes degree4 {
    0% {
        background-color: #FF6D6D;
    }
    100% {
        background-color: red;
    }
}

.degree5 {
    width: 48%;
    background-color: #FFCCBE;
    box-shadow: 0px 0px 10px #FFCCBE;
}

.degree6 {
    width: 34%;
    background-color: #FFE6E0;
    box-shadow: 0px 0px 10px #FFE6E0;
}

.degree7 {
    width: 11%;
    background-color: #FFF0EC;
    box-shadow: 0px 0px 10px #FFF0EC;
}

.degree8 {
    width: 48%;
    background-color: #FF8A6B;
    box-shadow: 0px 0px 10px #FF8A6B;
}

.bottom_state_num_div {
    text-align: center;
    color: #555;
    font-size: 18px;
}

.bottom_state_num_left {
    float: left;
    margin-left: 1px;
}

.bottom_state_num_center {
    position: relative;
    bottom: 3px;
}

.bottom_state_num_right {
    float: right;
}

.bottom_state_div {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.bottom_state_left {
    float: left;
    margin-left: 4px;
}

.bottom_state_right {
    float: right;
    margin-right: 6px;
}

/*下面是景点综合介绍的二级页面css*/
.baishuiyan_introduce {
    min-width: 70vw;
    max-width: 100vw;
    height: auto;
    margin: 30px auto;
    font-family: "楷体";
    display: flex;
    justify-content: center;
}

.baishuiyan_introduce_h1 {
    min-width: 50vw;
    max-width: 58vw;
    text-align: center;
    color: #968E37;
    margin: 20px auto;
    text-shadow: 0px 0px 1px #C1B743;
}

.introduce_photo_text {
    min-width: 40vw;
    max-width: 60vw;
    height: auto;
    
}

.introduce_photo {
    width: 600px;
    height: 450px;
    display: inline-flex;
    justify-content: center;
}

.baishuiyan_introduce img {
    width: 600px;
    height: 450px;
    transition-duration: 0.5s;
}

.introduce_text {
    width: 530px;
    height: 450px;
    display: inline-block;
    align-items: center;
    align-content: center;
    
}

.introduce_text h2 {
    width: 548px;
    text-align: center;
    margin-bottom: 10px;
    font-size: 32px;
    color: #968E37;
    text-shadow: 1px 1px 10px #D9CF60;
}

.introduce_text p {
    text-indent: 2em;
    font-size: 20px;
    text-align: justify;
    margin-bottom: 10px;
    color: #56521F;
    text-shadow: 1px 1px 1px #E1E1E1;
}

.homestay {
    width: 1200px;
    height: auto;
    margin: 30px auto;
}

.homestay_nav {
    margin-bottom: 20px;
}

.homestay_nav h1 {
    margin-bottom: 6px;
    display: inline-block;
    color: #004D6E;
}

.homestay_nav p {
    text-indent: 4px;
    color: #363C55;
}

.homestay_nav span {
    color: #0071c2;
    border: 2px #0071c2 solid;
    margin-top: 14px;
    margin-right: 100px;
    padding: 6px 16px;
    font-size: 22px;
    font-weight: 600;
    float: right;
    transition-duration: 0.5s;
}

.homestay_nav span:hover {
    border: 2px #0085E5 solid;
    background: #0075CA;
    color: #EAF5FF;
}

.homestay_div {
    width: 1200px;
    height: auto;
    margin-bottom: 100px;
}

.little_homestay {
    width: 30%;
    height: 580px;
    border: 1px #DFDFDF solid;
    display: inline-block;
    margin-right: 10px;
}

.homestay_photo {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.little_homestay img {
    width: 100%;
    transition-duration: 0.5s;
}

.little_homestay img:hover {
    transform: scale(1.2);
}

.homestay_text {
    width: 90%;
    margin: 0px auto;
}

.homestay_text_top h2 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
}

.homestay_text_top a {
    text-decoration: none;
    color: #00425F;
}

.homestay_text_top a:hover {
    color: #006A99;
}

.homestay_text_top p {
    margin-top: 4px;
    font-size: 14px;
    color: #6b6b6b;
}

.evaluate {
    margin-top: 16px;
}

.grade {
    background: #003580;
    padding: 4px;
    border-radius: 4px 4px 4px 0px;
    color: white;
    margin-right: 6px;
}

.environment {
    color: #333;
    margin-right: 4px;
}

.comment {
    color: #666;
}

.homestay_text_p {
    width: 324px;
    height: 146px;
    text-indent: 2em;
    margin-top: 16px;
    color: #262626;
    text-align: justify;
}

.booking {
    margin-top: 20px;
    border-radius: 4px;
    color: #0071c2;
    border: 1px #0071c2 solid;
    background: #F8F9FF;
    padding: 10px 120px;
    transition-duration: 0.3s;
}

.booking:hover {
    color: white;
    background: #0071c2;
}