body {
    font-size: 16px;
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #00965e;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*, :after, :before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

footer, nav {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
}

ul {
    margin-top: 0;
}

a {
    color: #00965e;
    background-color: transparent;
}

a, a:hover {
    text-decoration: none;
}

a:hover {
    color: #004a2e;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-4, .col-md-8 {
    position: relative;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 150, 94, .25);
}

.btn:disabled {
    opacity: .65;
}

.btn-primary {
    color: #fff;
    background-color: #00965e;
    border-color: #00965e;
}

.btn-primary:focus, .btn-primary:hover {
    color: #fff;
    background-color: #007046;
    border-color: #00633e;
}

.btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(38, 166, 118, .5);
}

.btn-primary:disabled {
    color: #fff;
    background-color: #00965e;
    border-color: #00965e;
}

.collapse:not(.show) {
    display: none;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
}

.nav-link:focus, .nav-link:hover {
    text-decoration: none;
}

.navbar {
    position: relative;
    padding: .5rem 1rem;
}

.navbar, .navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

@media (max-width: 991.98px) {
    .navbar-expand-lg > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }

    .navbar-expand-lg > .container {
        flex-wrap: nowrap;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

.navbar-light .navbar-brand, .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, .9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .5);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, .7);
}

.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, .9);
}

.bg-white {
    background-color: #fff !important;
}

.d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .align-items-lg-center {
        align-items: center !important;
    }
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.mb-1 {
    margin-bottom: .25rem !important;
}

.mt-2 {
    margin-top: .5rem !important;
}

.mr-2 {
    margin-right: .5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
}

.py-5 {
    padding-bottom: 3rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.text-right {
    text-align: right !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:focus, a.text-secondary:hover {
    color: #494f54 !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@media print {
    *, :after, :before {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    p {
        orphans: 3;
        widows: 3;
    }

    .container, body {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }
}

.font-size-14 {
    font-size: .875rem !important;
}

#question-header {
    border-top: 2px solid #00965e;
}

#question-header .nav-link.active {
    color: #00965e;
}

#question-header .nav-link.active:hover {
    color: #004a2e;
}

@media (min-width: 992px) {
    #question-header .nav-link {
        padding-left: .75rem;
        padding-right: .75rem;
    }
}

.question-header-logo {
    background-image: url("https://www.5axxw.com/index/images/logo.png");
    width: 139px;
    height: 40px;
    background-size: 85%;
    background-repeat: no-repeat;
}

#question-header {
    z-index: 2000;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pull-right {
    float: right;
}

.fa-star:before {
    content: "\f005";
}

.fa-star-half:before {
    content: "\f089";
}

.fa-chevron-circle-left:before {
    content: "\f137";
}

.fa-chevron-circle-right:before {
    content: "\f138";
}

section {
    display: block;
}

a {
    background: transparent;
}

a:active, a:hover {
    outline: 0;
}

small {
    font-size: 80%;
}

img {
    border: 0;
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-bookmark:before {
    content: "\e044";
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #009a61;
    text-decoration: none;
}

a:hover, a:focus {
    color: #004e31;
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

img {
    vertical-align: middle;
}

h2, h4, h5 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h4, h5 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h2 {
    font-size: 30px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

small {
    font-size: 85%;
}

.text-center {
    text-align: center;
}

ul {
    margin-top: 0;
    margin-bottom: 10px;
}

ul ul {
    margin-bottom: 0;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    margin-left: -5px;
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container:before, .container:after {
    content: " ";
    display: table;
}

.container:after {
    clear: both;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1180px;
    }
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row:before, .row:after {
    content: " ";
    display: table;
}

.row:after {
    clear: both;
}

.col-md-3, .col-md-9, .col-xs-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

@media (min-width: 992px) {
    .col-md-3, .col-md-9 {
        float: left;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-9 {
        width: 75%;
    }
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42858;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.nav:before, .nav:after {
    content: " ";
    display: table;
}

.nav:after {
    clear: both;
}

.nav > li {
    position: relative;
    display: block;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: #eee;
}

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42858;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42858;
    text-decoration: none;
    color: #009a61;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination > li:first-child > a {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination > li:last-child > a {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > span:hover, .pagination > li > span:focus {
    color: #004e31;
    background-color: #eee;
    border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus {
    z-index: 2;
    color: #fff;
    background-color: #009a61;
    border-color: #009a61;
    cursor: default;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.pull-right {
    float: right !important;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.visible-xs {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

a, a:hover, a:active, a:focus {
    outline: 0;
}

.mt15 {
    margin-top: 15px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.pr10 {
    padding-right: 10px !important;
}

.tag {
    display: inline-block;
    padding: 0 6px;
    color: #017e66;
    background-color: rgba(1, 126, 102, 0.08);
    height: 22px;
    line-height: 22px;
    font-weight: normal;
    font-size: 13px;
    text-align: center;
}

.tag img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    margin-top: -1px;
}

.tag[href]:hover, .tag[href]:focus {
    background-color: #017e66;
    color: #fff;
    text-decoration: none;
}

.taglist--inline {
    list-style: none;
    padding: 0;
    font-size: 0;
}

.taglist--inline li {
    padding: 0;
    font-size: 13px;
}

.ib.taglist--inline {
    margin: 0;
    display: inline-block;
}

.taglist--inline > li {
    display: inline-block;
    margin-right: 5px;
}

.taglist--inline > li:last-child {
    margin-right: 0;
}

.stream-list {
    margin-bottom: 10px;
}

.stream-list__item {
    margin: 0;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.stream-list__item .author {
    margin-bottom: 5px;
    color: #999;
    font-size: 13px;
}

.stream-list__item .author a {
    color: #999;
}

.stream-list__item .author small {
    color: #ddd;
}

.stream-list__item .title {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 16px;
    height: 22px;
    line-height: 22px;
}

.stream-list__item .title a {
    color: #333;
}

.stream-list__item .title a:hover {
    color: #017e66;
}

.stream-list__item .title a:visited {
    font-weight: 400;
}

.stream-list__item .split:before {
    content: "·";
    color: #ddd;
}

.stream-list__item .summary {
    overflow: auto;
    overflow-x: hidden;
}

.qa-rank {
    float: left;
    margin-right: 10px;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    color: #666;
}

.qa-rank small {
    display: block;
    font-size: 12px;
}

.qa-rank .votes, .qa-rank .answers, .qa-rank .views {
    display: inline-block;
    padding-top: 3px;
    width: 45px;
    height: 42px;
    color: #757575;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.qa-rank .answers {
    margin: 0 6px;
    color: #AD3A37;
}

.qa-rank .answered {
    color: #017E66;
    background: rgba(1, 126, 102, 0.08);
    border: 1px solid rgba(1, 126, 102, 0.16);
}

.qa-rank .solved {
    background-color: #009A61;
    color: #fff;
}

.qa-rank .views {
    color: #999;
}

.qa-rank .viewsword0to99 {
    color: #999;
}

.qa-rank .viewsword100to999 {
    color: #b17e53;
}

.questions-live-recommend .live-recommend {
    background: #fafafa;
    padding: 15px;
    padding-right: 0;
    margin-bottom: 30px;
}

.questions-live-recommend .live-recommend-header {
    display: flex;
    justify-content: space-between;
}

.questions-live-recommend .live-recommend-header h4 {
    font-size: 16px;
    color: #009A61;
    font-weight: 500;
    margin: 0;
}

.questions-live-recommend .live-recommend-header .arrow {
    font-size: 16px;
    font-weight: 500;
    color: #009A61;
}

.questions-live-recommend .live-recommend-header .arrow:hover {
    color: #004e31;
    cursor: pointer;
}

.questions-live-recommend .live-recommend-operation {
    margin-right: 15px;
}

.questions-live-recommend .live-recommend-wrapper {
    margin-top: 10px;
    overflow: hidden;
}

.questions-live-recommend .live-recommend-wrapper .live-recommend-detail {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.questions-live-recommend .live-recommend-wrapper .live-recommend-detail-item {
    color: #999;
    font-size: 12px;
}

.questions-live-recommend .live-recommend-wrapper .live-recommend-detail-item-banner img {
    width: 192px;
    height: 108px;
    border-radius: 4px;
}

.questions-live-recommend .live-recommend-wrapper .live-recommend-detail-item-title {
    font-size: 14px;
    max-width: 192px;
    font-weight: 900;
    margin-bottom: 5px;
}

.questions-live-recommend .live-recommend-wrapper .live-recommend-detail-item-title a {
    color: #212121;
}

.questions-live-recommend .live-recommend-wrapper .live-recommend-detail-item-title a:hover {
    color: #017e66;
}

.questions-live-recommend .live-recommend-wrapper .live-recommend-detail-item .cur-price {
    color: #ED1C24;
    font-weight: 900;
    font-size: 14px;
}

.live__intro-info-item-title {
    color: #ddd;
}

.live__intro--star-container {
    display: inline-block;
    position: relative;
}

.live__intro--star-container .fa-star, .live__intro--star-container .fa-star-half {
    font-size: 18px;
    margin-right: 2px;
}

.live__intro--star-container .fa-star-half {
    color: #F6A623;
    width: 16.72px;
    display: none;
}

.live__intro--star-container .star-half-container {
    position: absolute;
    top: 0;
}

.live__intro--star-container.item-star-score-9 i:first-child, .live__intro--star-container.item-star-score-9 i:nth-child(2), .live__intro--star-container.item-star-score-9 i:nth-child(3), .live__intro--star-container.item-star-score-9 i:nth-child(4) {
    color: #F6A623;
}

.live__intro--star-container.item-star-score-9 .star-half-container i:first-child, .live__intro--star-container.item-star-score-9 .star-half-container i:nth-child(2), .live__intro--star-container.item-star-score-9 .star-half-container i:nth-child(3), .live__intro--star-container.item-star-score-9 .star-half-container i:nth-child(4), .live__intro--star-container.item-star-score-9 .star-half-container i:nth-child(5) {
    display: inline-block;
}

@media (max-width: 767px) {
    .side {
        margin-top: 2rem;
    }

    .author {
        margin-bottom: 0;
    }

    .list-inline {
        line-height: 20px;
    }
}

#notice-update {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

#notice-update:hover {
    border-color: #31708f;
}

@media (max-width: 991px) {
    .qa-rank {
        margin-right: 10px;
        font-size: 16px;
    }

    .qa-rank .answers {
        width: 36px;
        height: 40px;
    }

    .stream-list__item {
        padding: 10px 0;
    }

    .stream-list__item .author {
        margin-bottom: 0;
    }

    .stream-list__item .title {
        font-size: 14px;
    }

    .stream-list__item .tag {
        font-size: 12px;
        height: 16px;
        line-height: 16px;
    }

    .pagination li {
        display: none;
    }

    .pagination li.next, .pagination li.active {
        display: inline-block;
    }
}

@media (max-width: 991px) {
    .main {
        margin-bottom: 20px;
    }
}


@font-face {
    font-family: 'FontAwesome';
    src: url(../fonts/fontawesome-webfont.eot?v=4.5.0);
    src: url(../fonts/fontawesome-webfont.eot#iefix&v=4.5.0) format('embedded-opentype'), url(../fonts/fontawesome-webfont.woff2?v=4.5.0) format('woff2'), url(../fonts/fontawesome-webfont.woff?v=4.5.0) format('woff'), url(../fonts/fontawesome-webfont.ttf?v=4.5.0) format('truetype'), url(../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular) format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot#iefix) format("embedded-opentype"), url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(../fonts/glyphicons-halflings-regular.woff) format("woff"), url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}

.ad_index_right{
    width: 100%;
}