/*轮播*/
.m_Carousel{width:100%;height:535px;position:relative;overflow:hidden;}
.m_Carousel .m_Carousel_ul li{height:535px;}
.m_Carousel .m_Carousel_ul li a img{width:100%;height:100%;}
.m_Carousel_nav_box{width:100%;height:140px;background:rgba(255, 255, 255, 0.1);margin-top:15px;}

.cover {
    position: absolute; left: 0; right: 0; bottom:-13px;
    width: 100%; height: 153px;
    overflow: hidden;
}
.blur {
    position: absolute;
    width: 100%;height:635px; bottom: 0; left: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* blur */
    filter: url(blur-5px.svg#blur);
    /* css3 */
    -webkit-filter: blur(12px);
    -moz-filter: blur(12px);
    filter: blur(12px); /* FireFox 35+ support */
    /* IE6~IE9 */
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=5, MakeShadow=false);
    *left: -5px; left: -5px\0;
}
:root .blur {
    left: -5px \0; /* Just IE9 */
}
.mask {
    position: absolute; left: 0; bottom: 0; width: 100%;
    /* IE9+ */
    background-color: rgba(0,0,0,.2);
    /* IE6-IE8 */
    filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr=#34000000,endColorStr=#34000000);
    color: #fff;
    font-size: 14px;
    text-indent: 10px;
}
:root .mask {
    filter: none;
}

/* affect */
.list img, .list svg {
    -webkit-transition: all .25s; transition: all .25s;
    vertical-align: bottom;
}
.list:hover .blur {
    -webkit-transform: scale(1.05) translateZ(0);
    -ms-transform: scale(1.05);
    transform: scale(1.05) translateZ(0);
    /* IE6-IE8 */
    zoom: 1.05;
}
:root .list:hover .blur {
    zoom: 1;
}


.m_Carousel_nav{width:1200px;height:140px;margin:auto;margin:auto;}
.m_nav_left{border-right:1px solid #6b6b6b;width:360px;height:113px;float:left;margin-top:14px;position:relative;}
.m_nav_left li{width:155px;height:51px;float:left;border-radius:5px;line-height:51px;margin-right:23px;margin-bottom:10px;cursor:pointer;position:relative;z-index:0;}

.m_nav_left li i{position:absolute;top:0;left:0;width:60px;height:50px;background:#FFF;transition: all .4s;border-radius:5px;}
#m_nav_left_i{width:155px;transition: all .4s;box-shadow:0px 1px 18px 0px rgba(182, 182, 182, 0.78);}
#m_nav_left_span{text-shadow:3px 3px 4px rgba(70, 60, 60, 0.67);}

.m_nav_left_img{width:60px;height:50px;background:#FFF;border-radius:5px;float:left;position:relative;z-index:100;}
.m_nav_left_img img{display:block;margin:auto;width:32px;height:35px;position:relative;top:8px;}
.m_nav_left li span{font-size:16px;color:#3e4958;margin-left:10px;position:relative;z-index:100;}
.m_nav_right{width:770px;float:left;position:relative;top:42px;left:23px;display:none;}
.m_nav_right li{display:inline-block;border-radius:3px;padding:3px 8px;margin:0px 0 8px 15px;}
.m_nav_right li:nth-child(1){background:#FF5849;}
.m_nav_right li:nth-child(1) a{color:#FFF;}

.m_nav_right li a{font-size:15px;color:#333;text-decoration:none;}


/*灰色盒子*/
.m_top_box{width:100%;overflow:hidden;margin-top:30px;background:#F5F7FA;padding-bottom:30px;}

/*热门活动、本周精选*/
.m_hot{width:1200px;overflow:hidden;margin:auto;margin-top:50px;}

.m_hot_top{margin-bottom:17px;height:213px;}
.m_hot_top_img{width:213px;height:213px;position:relative;float:left;}
.m_hot_top_img img{width:100%;height:100%;}
.m_hot_top_img span{position:absolute;top:64px;left:48px;font-size:30px;color:#FFF;}
.m_hot_top_img i{position:absolute;top:110px;left:38px;font-size:14px;color:#FFF;}
.m_hot_top ul{float:left;margin-left:17px;}
.m_hot_top ul li{width:475px;height:213px;float:left;margin-right:17px; overflow: hidden;}
.m_hot_top ul li:nth-child(2){margin-right:-50px;}
.m_hot_top ul li img{width:100%;height:100%;}
/*.m_hot_top ul li img:hover{opacity: 0.8;}*/


/*热销楼盘  特效*/
/*盒子*/
.m_box{position:relative;perspective:1000px;}

.m_box .content1{opacity:1;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;

    transform:translateY(0) rotateX(0);
    -webkit-transform:translateY(0) rotateX(0);
    -moz-transform:translateY(0) rotateX(0);
    -o-transform:translateY(0) rotateX(0);
}
.m_box:hover .content1{
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;

    transform: translateY(-100%) rotateX(90deg);
    -webkit-transform: translateY(-100%) rotateX(90deg);
    -moz-transform: translateY(-100%) rotateX(90deg);
    -o-transform: translateY(-100%) rotateX(90deg);
    transform-origin:bottom center;
    -webkit-transform-origin:bottom center;
    -moz-transform-origin:bottom center;
    -o-transform-origin:bottom center;
    opacity:0;
}
.m_box .content2{opacity:0;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.m_box:hover .content2{opacity:1;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}





/*热销楼盘*/
.Hot_mingtia{ width: 1200px; margin: 0 auto; margin-top: 80px;}
.m_Selling{width:1200px;margin:auto;margin-top:25px;position:relative;}
.m_Selling ul li{width:285px;height:320;float:left;margin-right:20px;border-radius:5px;box-shadow:1px 3px 18px 0px #d4d4d4;}

.m_Selling ul li:nth-child(4){margin-right:-50px;}
.m_Selling_li_box{border-radius:5px;box-shadow:9px 8px 20px 0px rgba(58, 56, 56, 0.15);padding-bottom:15px;}
.m_Selling_li_img{height:205px;overflow:hidden;border-radius:5px 5px 0px 0px;}
.m_Selling_li_img img{width:100%;height:100%;}
.m_Selling_li_text{height:88px;}
.m_Selling_li_text_title{padding:0 10px;margin-top:13px;}
.m_Selling_li_text_title span{font-size:17px;color:#393232;font-weight: 600;display:block;width:175px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;float:left;}
.m_Selling_li_text_title  i{font-size:14px;color:#888;margin-left:7px;float:left;}
.m_Selling_li_text_jg{padding:0 10px;margin-top:13px;position: relative;}
.m_Selling_li_text_jg span{font-size:17px;color:#FF654C;font-weight: 600;}
.m_Selling_li_text_jg i{font-size:14px;color:#333;}
.m_Selling_li_text_ts{position:absolute;bottom:2px;right:18px;}
.m_Selling_li_text_ts i{font-size:12px;color:#638EC9;margin-left:1px;background:#EBF3FE;padding:3px 7px;}
.m_Selling_li_text_ts i:nth-child(2){ background: #F8EAE6; color: #E3957E;}

.m_Selling_li_boxbj{width:285px;height:100%;border-radius:5px;overflow:hidden;text-align:center;position:absolute;top:0;}

.m_Selling_li_boxbj .m_Selling_li_boxbj_img{width:100%;height:100%;}


.m_Selling_text_boxbj{position:absolute;top:0;width:285px;height:100%;border-radius:5px;overflow:hidden;background:rgba(75, 92, 99, 0.76);}
.m_Selling_text_boxbj .m_Selling_text_boxbj_title{font-size:28px;color:#FFF;margin-top:55px;display:block;}
.m_Selling_text_boxbj_dq{margin-top:25px;}
.m_Selling_text_boxbj_dq img{width:15px;position:relative;top:2px;}
.m_Selling_text_boxbj_dq span{font-size:16px;color:#FFF;margin-left:5px;}
.m_Selling_text_boxbj_jg{font-size:16px;color:#FFF;margin-top:25px;display:block;}
.m_Selling_text_boxbj_jg i{font-size:24px;color:#FFF;}
.m_Selling_text_boxbj_bm{position:relative;left:50%;top:20px;margin-left:-90px;}
.m_Selling_text_boxbj_bm a{display:block;border:1px solid #FFF;border-radius:18px;width:78px;height:30px;float:left;text-align:center;line-height:28px;font-size:13px;color:#FFF;}
.m_Selling_text_boxbj_bm a:nth-child(2){margin-left:20px;}
.m_Selling_text_boxbj_bm a:hover{border:1px solid #ffde88;color:#ffde88;}

.m_Selling_gd{border:1px solid;display:block;margin:auto;width:143px;height:45px;text-align:center;line-height:45px;font-size:16px;color:#FFF;background:#FF5849;border-radius:25px;margin-top:30px;}
.m_Selling_gd:hover{ background-color: #de4a3c; color: #fff; border: none;}

/*海南房价走势*/
#trend{background:#FFBC26;}
.m_trend_box{width:100%;height:522px;margin-top:30px;background:#232836;overflow:hidden;}
.m_trend{width:1200px;height:500px;margin:auto; position: relative;}
.m_trend_title{margin-top:25px;}
.m_trend_title span{font-size:28px;display:block;color:#FFF;}
.m_trend_title i{font-size:15px;margin-top:10px;display:block;color:#3E4760;}
.m_trend_l{width:350px;height:335px;margin-top:30px;float:left;}
.m_trend_r{width:783px;overflow:hidden;float:left;margin-left:20px;margin-top:30px;}
.m_trend_r ul{height:123px;overflow:hidden;background:#282E3D;}
.m_trend_r ul li{width:60px;height:37px;cursor: pointer;border-radius:3px;float:left;margin:11px 0px 0px 9px;text-align:center;line-height:37px;position:relative;top:10px;left:7px;background:#353D50;font-size:14px;color:#fff;}
.m_r_average_price{width:219px;height:199px;float:left;margin-top:10px;background:#282E3D;}
.m_r_average_price em{font-size:14px;color:#46506B;display:block;margin-top:20px;margin-left:10px;}
.m_r_average_price span{font-size:16px;color:#FFBC26;display:block;text-align:center;margin-top:20px;}
.m_r_average_price span i{font-size:40px;}
.m_r_average_price a{font-size:14px;color:#FFFFFF;text-align:center;display:block;margin:auto;margin-top:20px;width:115px;height:37px;border-radius:18px;background:#FFBC26;line-height:37px;}
.m_trend_r_ys{width:554px;height:199px;background:#282E3D;float:right;margin-top:10px;}

.m_trend_r_ys em{font-size:14px;color:#46506B;display:block;margin-top:20px;margin-left:10px;}

.single_box{border:1px solid;width:500px;margin:auto;margin-top:60px;}

.budget{background:#FFBC26;margin:auto;margin-top:36px;font-size:15px;color:#FFF;width:95px;height:33px;text-align:center;line-height:33px;border-radius:20px;}
.budget a{color:#fff;}
.m_trend .y_textin_m{
  position: absolute;
  right: 50px;
  bottom: 35px;
  font-size: 12px;
  color: #7c8398;
}


/*.头条资讯*/
.w-headline {font-size:34px;font-weight:600;color:#3A394B;}
.w-headline span {color:#FF654C;}

.Headline{ margin-top: 80px;}
.HeadlineBox{ width: 1140px; margin:auto;}
.HeadlineNews{margin-top: 30px; height: 420px; overflow: hidden;}
.HeadlineNews_l{float: left; position: relative;width: 360px; overflow: hidden; height: 360px;}
.HeadlineNews_lm{ width: 360px; height: 360px;overflow: hidden;}
.HeadlineNews_lm ul li{ width: 360px; height: 360px; background: #F2F2F2;}
.HeadlineNews_lm ul li .topimg{ width: 100%; height: 200px; position: relative;}
.HeadlineNews_lm ul li .topimg i{display: block; width: 32px; height: 32px; position: absolute; left: 10px; top: 0px;}
.HeadlineNews_lm ul li .topimg img{ width: 100%; height: 100%;}
.HeadlineNews_lm ul li .bottext{ padding:20px; }
.HeadlineNews_lm ul li .bottext p.title a{ font-weight: bold; font-size: 16px; color: #3A394B; display: inline-block; width: 100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.HeadlineNews_lm ul li .bottext p.shijian{ font-size: 14px; color: #999; margin-top: 25px;}
.HeadlineNews_lm ul li .bottext p.hot{ margin-top:24px; }
.HeadlineNews_lm ul li .bottext p.hot span{display: inline-block;padding: 6px 10px; background: #CA7B3F; font-size: 15px; color: #fff;}
.HeadlineNews_l .hd{ position: absolute; bottom: 20px; right: 20px; }
.HeadlineNews_l .hd ul li{ float: left; margin: 0 3px; width: 10px; height: 10px; border-radius: 100%; color: #ccc; background: #ccc; overflow: hidden;}
.HeadlineNews_l .hd ul li.on{ background: #CA7B3F; color: #CA7B3F;}
.HeadlineNews_l .hd ul li:hover{cursor: pointer;}

.HeadlineNews_r{ float: right;}
.HeadlineNews_rl{ float: left; width: 340px;}
.HeadlineNews_title span{ display: inline-block; font-size: 20px; color: #CA7B3F; font-weight: bold;}
.HeadlineNews_list{ margin-top: 12px;}
.HeadlineNews_list ul li{ position: relative; padding: 16px 0;}
.HeadlineNews_list ul li .listtit i{ display: inline-block; width: 6px; height: 6px; position: relative; top: -7px; line-height: 6px; background: #CA7B3F; margin-right: 8px;}
.HeadlineNews_list ul li .listtit a{ font-size: 16px; color: #666; display: inline-block; width: 315px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.HeadlineNews_list ul li .listimg{display: none; width: 100%; height: 80px; background: #F2F2F2;}
.HeadlineNews_list ul li .listimg p.imgl{ width: 100px; height: 80px; float: left;}
.HeadlineNews_list ul li .listimg p.imgl img{ width: 100%; height: 100%;}
.HeadlineNews_list ul li .listimg p.textr{ float: left; width: 200px; font-size: 16px; color: #CA7B3F; margin-left: 20px; padding: 15px 0; line-height: 25px;}
.HeadlineNews_list ul li .listimg p.textr span{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}

.HeadlineNews_list ul li:hover{cursor: pointer;}
.HeadlineNews_list ul li:hover .listimg{display: block;}
.HeadlineNews_list ul li:hover .listtit{display: none;}
.HeadlineNews_rr{margin-left: 60px;}
.optimize-more {text-align:center;margin-top:30px;}
.optimize-more a {display:inline-block;width:180px;height:40px;line-height:40px;text-align:center;color:#85848D;font-size:14px;border-radius:2px;border:1px solid #85848D;}
.optimize-more a:hover{ color: #FF654C; border-color:#FF654C;}

/*购房攻略*/
.m_Raiders{width:1200px;overflow:hidden;margin:auto;margin-top:20px; padding-bottom: 10px;}
.m_Raiders li{width:380px;height:270px;float:left;margin-right:27px;background:#FFF;}
.m_Raiders li:nth-child(3){margin-right:-50px;}
.m_Raiders_img{width:380px;height:163px;display:block;}
.m_Raiders_img img{width:100%;height:100%;}
.m_Raiders_text{padding:0 10px;}
.m_Raiders_text a{font-size:17px; font-weight:600;color:#e64e09;display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;margin-top:10px;}
.m_Raiders_text p{font-size:14px;color:#888;margin-top:10px;line-height:25px;}
.m_Carousel .prev{position:absolute;top:50%;left:100px;margin-top:-25px;background: rgba(51, 51, 51, 0.41) url(/image/zuo13.png) no-repeat -7px  5px/50px 46px;display:block;width:39px;height:55px;}
.m_Carousel .next{position:absolute;top:50%;right:100px;margin-top:-25px;background: rgba(51, 51, 51, 0.41) url(/image/you13.png) no-repeat -4px 5px/50px 46px;display:block;width:39px;height:55px;}
.m_Carousel .hd{position:absolute;bottom:150px;left:46%;width:1200px;}
.m_Carousel .hd ul li{width:12px;height:12px;display:inline-block;margin:0px 3px;background:rgba(0, 0, 0, 0.42);z-index:111;border-radius:10px}
.m_Carousel .hd ul .on{background:#42A5F5;}
.m_Raiders li:hover{box-shadow: 0px 3px 10px 0px #ccc}
.m_Raiders li:hover .m_Raiders_img img{opacity: 0.8;}


/*热门活动特效*/
.m_img { display:block; position: relative;overflow:hidden; width: 100%;  height: 100%;}
.m_img:before {
    content: ""; position: absolute; width:30%; height: 100%; top: 0; left:-60%; overflow: hidden;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, 0.4)50%, rgba(255, 255, 255, 0)100%);
    background: -webkit-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, 0.4)50%, rgba(255, 255, 255, 0)100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, 0.4)50%, rgba(255, 255, 255, 0)100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, 0.4)50%, rgba(255, 255, 255, 0)100%);
    transform: skewX(-35deg);
    -webkit-transform: skewX(-35deg);
    -moz-transform: skewX(-35deg);
    -o-transform: skewX(-35deg);
}

.m_img:hover:before { left: 150%; transition: left 1s ease 0s; }
.slider-container .scale ins{width:40px;text-align:center;}

/*购房须知*/
.yv2Villa_main{ width: 1200px; margin: 0 auto;}
.notice {margin-top:80px;}
.notice-list {margin-top:50px;}
.notice-list .notice-li {display:inline-block;width:380px;vertical-align:top;height:240px;position:relative;}
.notice-list .notice-li + .notice-li {margin-left:25px;}
.notice-list .notice-li a > img {display:inline-block;width:100%;height:100%;}
.notice-list .notice-li a .notice-font {display:inline-block;width:265px;height:140px;border:2px solid #fff;text-align:center;position:absolute;top:50%;margin-top:-70px;left:50%;margin-left:-133px;color:#fff;}
.notice-list .notice-li a .notice-font p:nth-child(1) {font-weight:600;font-size:24px;margin-top:36px;}
.notice-list .notice-li a .notice-font p:nth-child(2) {font-size:20px;margin-top:10px;}

/*一站式服务*/
.oneStopserve{ margin-top: 80px; background: #F9FBFC; padding: 70px;}
.oneStopserve_box{ width: 1200px; margin: 0 auto;}
.oneStopserve_title{ text-align: center;}
.oneStopserve_title span{display: inline-block; padding: 0 20px; background: #F9FBFC; font-size: 34px; color: #3A394B;font-weight: bold; position: relative; z-index: 2;}
.oneStopserve_title span em{ color: #FF5A5F;}
.oneStopserve_title i{width: 100%; height: 1px;background: #E6E6E6; position: relative;top: -22px; display: block; z-index: 1;}
.oneStopserve_list{ margin-top: 70px;}
.oneStopserve_list ul li{ float: left; text-align: center; width: 20%;}
.oneStopserve_list ul li .topimg{ position: relative; width: 98px; height: 98px; border-radius:100%;border: 1px solid #AB8161; margin: 0 auto;}
.oneStopserve_list ul li .topimg i{ width: 42px; position: absolute; left: 50%; margin-left: -21px; top: 50%;}
.oneStopserve_list ul li:nth-child(1) .topimg i{ height: 43px; margin-top: -21.5px;}
.oneStopserve_list ul li:nth-child(2) .topimg i{ height: 43px; margin-top: -21.5px;}
.oneStopserve_list ul li:nth-child(3) .topimg i{ height: 36px; margin-top: -18px;}
.oneStopserve_list ul li:nth-child(4) .topimg i{ height: 42px; margin-top: -21px;}
.oneStopserve_list ul li:nth-child(5) .topimg i{ height: 45px; margin-top: -22.5px;}
.oneStopserve_list ul li .topimg i img{ width: 100%;height: 100%;}
.oneStopserve_list ul li:hover .topimg{ background: #F1EFEC; border-color: #F1EFEC;}
.oneStopserve_list ul li .toptext{ font-size: 18px; color: #394043; margin-top: 20px;}

.slider-container{ padding: 0 10px;}
.slider-container .scale ins{ width: 40px; text-align: center;}



/*2020.6.30 资讯改版*/
.revisionnews {display: -webkit-flex;display: flex;flex-wrap: nowrap;margin-top:20px;}
.revisionnews > div + div {margin-left:78px;}
.newstitle {font-size:20px;color:#C97B3F;padding-bottom:10px;border-bottom:1px solid #E7E7E7;margin-bottom:20px;}
.newstitle a {font-size:14px;color:#BFBFBF;float:right;position:relative;top:5px;}
.news-left,.news-conter,.news-right {width:348px;}
.news-left-top ul li {}
.news-left-top ul li + li {margin-top:20px;}
.news-left-top ul li a {display: -webkit-flex;display: flex;flex-wrap: nowrap;}
.news-left-top li a .maoimg {display:inline-block;width:144px;height:98px;}
.news-left-top li a .maoimg img {display:block;width:144px;height:98px;}
.news-left-top li a .maofont {width:186px;margin-left:14px;position:relative;}
.news-left-top li a .maofont p:first-child {font-size:14px;color:#333333;line-height:22px;}
.news-left-top li a .maofont p:nth-child(2) {font-size:14px;color:#7F7F7F;position:absolute;bottom:10px;left:0;}

.news-left-bottom {margin-top:30px;}
.news-left-bottom ul li {position:relative;padding-left:10px;}
.news-left-bottom ul li:before {content:"";display:inline-block;width:4px;height:4px;background:#BFBFBF;border-radius:50%;position:absolute;left:0;top:7px;}
.news-left-bottom ul li + li {margin-top:20px;}
.news-left-bottom ul li a {font-size:14px;color:#333333;display:block;width:100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.news-conter-img {display:inline-block;width:348px;height:217px;position:relative;margin-bottom:20px;}
.news-conter-img > a > img {display:inline-block;width:348px;height:217px;}
.news-conter-img p {display:block;width:100%;height:34px;line-height:34px;font-size:14px;color:#ffffff;position:absolute;bottom:0;left:0;background:rgba(0,0,0,0.5);padding:0 13px;width:100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.news-conter ul li {position:relative;padding-left:10px;}
.news-conter ul li:before {content:"";display:inline-block;width:4px;height:4px;background:#BFBFBF;border-radius:50%;position:absolute;left:0;top:7px;}
.news-conter ul li + li {margin-top:18px;}
.news-conter ul li a {font-size:14px;color:#333333;display:block;width:100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.news-right-top {}
.news-right-top ul li {padding-left:26px;position:relative;}
.news-right-top ul li + li {margin-top:20px;}
.news-right-top ul li i {display:inline-block;width:18px;height:18px;border-radius:4px;text-align:center;line-height:16px;border:1px solid #B3B3B3;color:#B3B3B3;position:absolute;left:0px;}
.news-right-top ul li a {font-size:14px;color:#333333;display:block;width:100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}

.lnie {}
.lnie li {position:relative;}
.lnie li > span {display:inline-block;font-size:14px;color:#C97B3F;position:absolute;right:0;top:0;display:none;}
.lnie li:hover a {color:#C97B3F;text-decoration:underline;width:75%;}
.lnie li:hover > span {display:inline-block;}
.lnie li:hover i.sib {color:#C97B3F;border-color:#C97B3F;}

















