.mybar1{ height: 50px; line-height: 50px; font-size: 16px; color: #FFFFFF; background-color:#014a7a;  border:0px; }
.mybar1 a{ color: #FFFFFF;}
.mybar1 .col-sm-4{ font-size: 14px;}
.top_space{ margin-top: 50px;}

/*图片轮播*/
.slideBox{ position:relative; overflow:hidden;margin:0 auto; width: 100%; /* max-width:560px; 设置焦点图最大宽度 */ }

.slideBox .hd{ position:absolute; height:28px; line-height:28px; bottom:0; right:0; z-index:1; }





.slideBox .hd li{ display:inline-block; width:5px; height:5px; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; background:#333; text-indent:-9999px; overflow:hidden; margin:0 6px;   }
.slideBox .hd li.on{ background:#fff;  }
.slideBox .bd{ position:relative; z-index:0; }
.slideBox .bd li{ position:relative; text-align:center;  }
.slideBox .bd li img{   vertical-align:top; width:100%;/* 图片宽度100%，达到自适应效果 */}
.slideBox .bd li a{ -webkit-tap-highlight-color:rgba(0,0,0,0);  }  /* 去掉链接触摸高亮 */
.slideBox .bd li .tit{ display:block; width:100%;  position:absolute; bottom:0; text-indent:10px; height:28px; line-height:28px; color:#fff;  text-align:left;  }
/*图片轮播 end*/


/*底部导航*/
.mybar2{ height: 60px; line-height: 25px; font-size: 16px; color: #FFFFFF;font-size: 16px; margin: 0px; padding: 0px; }
.mybar2 .nav-pills{margin: 0px; padding: 0px;}
.mycss3{ width: 24%; margin: 0px; line-height: 22px; padding: 0px; color:#fc6a22 ;}
.mycss3 span{ font-size: 22px;}
.mycss3 a{ font-size: 14px; line-height: 15px; color:#555555 ;}
/*底部导航 end*/

.facediv1{ padding: 15px;}
.face1{ width: 60px; height: 60px;}
.face2{ width: 70px; height: 70px;}

.mycell1 { margin: 5px 0px 0px 0px; padding: 3px;}
.mycell1 img{ width:120px; height: 120px;}

.red{ color: red;}

/*车源列表*/
.listcar{padding:10px;height:150px;border-bottom:1px solid #e8e8e8;position:relative;background:#fff;}
.listcar a{display:block;}
.listcar .carimg{width:130px;height:130px;position:absolute;top:10px;left:10px;}
.listcar .carimg img{width:130px;height:130px;}
.listcar .carinfo{padding-left:140px;}
.listcar .carinfo h4{margin:0;font-size:14px; font-weight: bolder; color:#333;line-height:25px;height:25px;overflow:hidden;}
.listcar .carinfo h4 a{color:#333;}
.listcar p{margin:5px 0;}
.listcar .caritem{font-size:12px;color:#999;}

/*底部距离*/
.padbottom{ padding-bottom: 50px;}


/*作品页面*/

.mycell2 { margin: 0px 0px 0px 0px; padding: 3px;  }
.mycell2 img{height: 120px !important;}
.mybotton1{ margin-bottom: 0px;}


/* 评论 */
.forum{ background: #fbfbfb;padding: 5px 0px 50px 5px;margin-top: 10px;}
.bbstime{ font-size: 12px;color: #999;}


/*作品底部*/
.mycss4{ width: 31%; margin: 0px; padding: 8px 0px 0px 0px; line-height: 22px;  color:#fc6a22 ;}
.mycss4 span{ font-size: 22px;}
.mycss4 a{ font-size: 16px; line-height: 22px; color:#fc6a22; margin: 0px  !important; padding: 0px !important;}
/*作品底部 end*/

/****************** 优惠券 *******************/
  .coupon {
        display: inline-flex;
        color: white;
       /* position: relative;
         padding-left: .5rem;
        padding-right: .5rem;
        margin: 1rem; */
        /** 弧度得用rem来计数，不能用%号，因为%是用来计数高度和宽度的 */
       /* border-top-right-radius: 5px;
        border-bottom-right-radius: 5px; */
		margin-top: 5px;
		border-radius: 5px;
        overflow: hidden;
    }
    .coupon-yellow {
        background-color: #F39B00;
    }
    .coupon-yellow-gradient {
        background-image: linear-gradient(150deg, #F39B00 50%, #F39B00D8 50%);
    }
    .coupon-red-gradient {
        background-image: linear-gradient(150deg, #D24161 50%, #D24161D8 50%);
    }
    .coupon-green-gradient {
        background-image: linear-gradient(150deg, #7EAB1E 50%, #7EAB1ED8 50%);
    }
    .coupon-blue-gradient {
        background-image: linear-gradient(150deg, #50ADD3 50%, #50ADD3D8 50%);
    }
    /** 左边框波浪 **/
    .coupon-wave-left::before, .coupon-wave-right::after{
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 14px;
        background-image: radial-gradient(white 0, white 4px, transparent 4px);
        /** 若只设置为r（半径）的两倍(直径)，则半圆之间没有类似堤岸的间隔 */
        background-size: 14px 14px;
        background-position: 0 2px;
        background-repeat: repeat-y;
        z-index: 1;
    }
    .coupon-wave-left::before {
        left: -7px;
    }
    .coupon-wave-right::after {
        right: -7px;
    }
    .coupon-info {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 1rem;
        padding-bottom: 1.5rem;
        position: relative;
        min-width: 15rem;
    }
    .coupon-info-right-dashed {
        border-right: 2px dashed white;
    }
    .coupon-info-right-solid {
        border-right: 2px solid white;
    }
    /** 使用两个边框为圆角的白色div制造半圆缺角，有个缺点是这个缺角必须与背景色相同（clip-path不好使用） **/
    .coupon-hole::before, .coupon-hole::after {
        content: '';
        width: 1rem;
        height: 1rem;
        background-color: white;
        border-radius: 50%;
        position: absolute;
        right: -.5rem;
    }
    .coupon-info::before {
        top: -.5rem;
    }
    .coupon-info::after {
        bottom: -.5rem;
    }
    .coupon-info>div {
        margin-bottom: .2rem;
    }
    .coupon-price {
        font-size: 250%;
        font-weight: bold;
    }
    .coupon-price>span {
        font-size: 40%;
        margin-left: .5rem;
        font-weight: normal;
    }
    .coupon-get {
        padding: 1rem;
        /** 这里使用flex是为了让文字居中 */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        min-width: 5rem;
        position: relative;
    }
    .coupon-get>.coupon-desc {
        font-size: 150%;
        margin-bottom: .5rem;
        font-weight: bold;
    }
    .coupon-get-already::after {
        content: '';
        width: 5rem;
        height: 5rem;
        background-size: 5rem 5rem;
        background-image: url('data:image/png;base64,iVBORw0I=');
        position: absolute;
        top: -1rem;
        right: -1rem;
    }
/****************** 优惠券 end*******************/	


.umenu a{ line-height: 30px;font-size: 18px; }










