/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: #333; background: #f5f5f5; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Container */
.container {  max-width: 1440px; margin: 0 auto; padding: 20px 0;width: 90%; }

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-size: 1.5rem; font-weight: bold;max-width: 160px; }
nav ul { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; }
nav li { position: relative; }
.search-icon { cursor: pointer; font-size: 1.2rem; }
.search-box { display: none; position: absolute; top: 100%; right: 0; margin-top: 5px; }
.search-box input { padding: 5px 10px; width: 200px; border: 1px solid #ccc; border-radius: 3px; }

/* Layout: Main + Sidebar */
.content-wrapper { display: flex; gap: 20px; margin-top: 40px; }
.main { flex: 1; }
.sidebar { width: 330px; }
.widget { background: #fff; padding: 15px 10px; margin-bottom: 20px; border-radius: 6px; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.widget h3 { font-size: 1.1rem; margin-bottom: 10px; }
.widget ul li { margin-bottom: 8px; }
.tags a { display: inline-block; margin: 3px 5px 3px 0; padding: 5px 8px; background: #e0e0e0; border-radius: 3px; font-size: 0.85rem; }

/* Posts */
.posts .post-card { background: #fff; padding: 15px 20px; margin-bottom: 15px; border-radius: 6px; box-shadow: 0 1px 4px rgba(0,0,0,0.1); transition: transform 0.2s; }
.posts .post-card:hover { transform: translateY(-3px); }
/* Featured first post */
.posts .post-card:first-child { padding: 25px 30px; margin-bottom: 30px; border-left: 4px solid #007acc; }
.post-card h2 { font-size: 1.3rem; margin-bottom: 10px; }
.post-card p { font-size: 1rem; color: #555; margin-bottom: 12px; }
.post-card .date { font-size: 0.85rem; color: #999; }

/* Pagination */
.pagination { display: inline-block; padding: 8px 15px; margin: 30px 0;background: #000; color: #fff; border-radius: 20px; font-size: 0.9rem;    float: right; }
.pagination .page-item:first-child{    border-right: 1px double #898787;padding-right: 10px;}
/* Footer */
footer { text-align: center; padding: 10px 0; font-size: 0.85rem; color: #777; }

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper { flex-direction: column; margin-top: 20px; }
    .sidebar { width: 100%; }
    header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

.ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.ranking-header h2 { font-size: 1.5rem; color: #2c3e50; }

.ranking-cards .card {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.ranking-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
    border-radius: 0 0 40px 0;
}
.rank-1 .rank-badge { background: linear-gradient(135deg, #ffc107, #ff9800); }
.rank-2 .rank-badge { background: linear-gradient(135deg, #9e9e9e, #757575); }
.rank-3 .rank-badge { background: linear-gradient(135deg, #cd7f32, #a56a2b); }
.rank-4 .rank-badge, .rank-5 .rank-badge { background: #007acc; }
.rank-6 .rank-badge, .rank-7 .rank-badge ,.rank-8 .rank-badge, .rank-9 .rank-badge,.rank-10 .rank-badge { background: #53abe6; }
/* Card Content */
.card-content {
    flex: 1;
    padding-left: 30px;
}
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.provider-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #007acc;
}
.rating {
    color: #ffc107;
}



.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.btn-detail {
    padding: 8px 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-detail:hover {
    background: #007acc;
    color: white;
    border-color: #007acc;
}
.btn-official {
    padding: 8px 15px;
    background: #007acc;
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-official:hover {
    background: #0066a6;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article-header { margin-bottom: 30px; }
.article-header h1 { font-size: 2rem; margin-bottom: 15px; color: #007acc; }
.article-meta { display: flex; align-items: center; color: #777; font-size: 0.9rem; }
.article-meta .date { margin-right: 15px; }
.article-meta .author { font-weight: 500; }

.article-content {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-content h2 {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #2c3e50;
}
.article-content a{
    color: #039be5;
}

.article-content h3 {
    margin: 25px 0 15px;
    color: #007acc;
}

.article-content ul, .article-content ol {
    margin-left: 25px;
    margin-bottom: 25px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-content img {
    margin: 25px auto;
    max-width: 90%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
#breadcrumbs {
    padding-bottom: 14px;
    font-size: 12px;
    color: #a0a0a0
}

#breadcrumbs span {
    color: #a0a0a0
}
#breadcrumbs a{text-decoration: none;}

code {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    background-color: rgba(27, 31, 35, 0.05);
    border-radius: 3px;
    padding: 0.2em 0.4em;
    font-size: 85%;
}
pre {
    background-color: #f6f8fa;
    border-radius: 3px;
    padding: 16px;
    overflow: auto;
    line-height: 1.45;
}
pre code {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}
blockquote {
    border-left: 4px solid #dfe2e5;
    color: #6a737d;
    padding: 0 1em;
    margin: 0 0 16px 0;
}
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 16px;
}
th, td {
    border: 1px solid #dfe2e5;
    padding: 6px 13px;
}
th {
    background-color: #f6f8fa;
    font-weight: 600;
}
hr{
  display: none;
}

.datacenter-container span{
    margin: 3px 5px 3px 0;
    padding: 5px 8px;
    background: #f7f7f7;
    font-size: 0.85rem;
    display: inline-block;

}

.hosting-class-block {
    border-bottom: 1px dashed #c4d6e8
}

.hosting-class-table {
    margin-top: 20px;
    border: none;
}

.hosting-class-table td {
    padding: 5px 10px;
    border: none;
}

.hosting-class-table td.price-range {
    text-align: right;
    color: #949494;
    border: none;
}

.code-range{
    text-align: right;
    color:red;
}
.bb{
    padding-bottom: 15px;
    border-bottom: 1px dashed #c4d6e8;
}
.mt20{
    margin-top: 20px;
}
.mt10{
    margin-top: 10px;
}
.cta-button {
    display: inline-block;
    background: #007acc;
    color: white!important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s;
}
.review-cell {
    background: #fff;
    margin-top: 22px;
}

.sidebarListImgSmallCtn {
    border: 0 none;
    background-color: transparent;
    position: relative;
    line-height: 1rem;
    margin-bottom: .75rem;
    min-height: 70px;
    padding: 5px;
}
.imgLeftCover {
    position: relative;
    float: left;
    width: 6rem;
    height: 4rem;
    overflow: hidden;
}
.rightArticle {
    margin-left: 6.5rem;
}
.imgLeftCover a span {
    position: absolute;
    top: 0;
    left: 0;
    font-size: .6rem;
    padding: 0 .5rem;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    z-index: 2;
}
.imgLeftCover img {
    -webkit-transition: .7s;
    transition: .7s;
    width: 100%;
    height: 100%;
}
.rightArticle {
    margin-left: 6.5rem;
}
h4 {
    line-height: 110%;
    margin: 1.14rem 0 .912rem 0;
}
.sidebarListImgSmallCtn h4{
    margin: 0 0 .912rem 0;
}
.rightArticle h4 a {
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.4rem;
    max-height: 43px;
    overflow: hidden;
    color: #3d464d;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.rightArticle .timeAbout {
    position: absolute;
    bottom: 4px;
    color: #999;
    font-size: .6rem;
    margin-top: .25rem;
}

.widget .item{
    border-bottom: 1px dashed #c4d6e8;
    margin: 10px 0;
}\ .hosting-ranking-siderbar {
     margin-bottom: 0;
     margin-top: 22px;
 }
.hosting-ranking-siderbar table {
    width: 100%;
    border: none;
}
.hosting-ranking-siderbar table tr {
    border-bottom: none;
}
.hosting-ranking-siderbar td{
    border:none;
    padding: 8px 2px;
}
#hosting-company-review-page .hosting-ranking-siderbar table tr td.logo-column {
    max-width: 130px;
    overflow: hidden;
    padding-top: 0;
    border: none;
}
span.star {
    display: inline-block;
    width: 75px;
    height: 15px;
    margin: 0 auto;
    background: url(/other/vps/image/star.png) no-repeat 0 0
}

span.star.s50 {
    background-position: 0 0
}

span.star.s45 {
    background-position: 0 -15px
}

span.star.s40 {
    background-position: 0 -30px
}

span.star.s35 {
    background-position: 0 -45px
}

span.star.s30 {
    background-position: 0 -60px
}

span.star.s25 {
    background-position: 0 -75px
}

span.star.s20 {
    background-position: 0 -90px
}

span.star.s15 {
    background-position: 0 -105px
}

span.star.s10 {
    background-position: 0 -120px
}

span.star.s05 {
    background-position: 0 -135px
}

span.star.s00 {
    background-position: 0 -150px
}
.hosting-ranking-siderbar table tr td.price-column {
    color: #26a69a;
    padding-right: 2px;
    text-align: right;
}
.article-content h2:first-child {
    margin: 0 0 20px;
}
.pros-cons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.pros, .cons {
    flex: 1;
    padding: 20px;
    border-radius: 6px;
}

.pros {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.cons {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

.pros h3, .cons h3 {
    margin:0 0 10px;
}

.pros li::before {
    content: "✓";
    color: #4caf50;
    margin-right: 8px;
}

.cons li::before {
    content: "✗";
    color: #f44336;
    margin-right: 8px;
}
.active{
    color:#f44336!important;
    font-weight: bold;
}

.provider-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.provider-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    overflow: hidden;
}
.provider-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.card-image {
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}
.pc-show{
    display: block;
}
/* Responsive */
@media (max-width: 768px) {
    .card { flex-direction: column; }
    .card-content { padding-left: 0; padding-top: 40px; }
    .pc-show{
        display: none;;
    }
}
