/*pagination*/
.pagination {
    margin-top: 60px;
}
ul.simple-pagination {
    list-style: none;
}

.simple-pagination {
    display: block;
    overflow: hidden;
    padding: 0 5px 5px 0;
    margin: 0;
}

.simple-pagination ul {
    list-style: none;
    padding: 0;
    display: table;
    margin: auto;
}

.simple-pagination ul:after {
    content:'';
    display: block;
    overflow: hidden;
    visibility: hidden;
    clear: both;
    height: 0;
}

.simple-pagination li {
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
}

span.ellipse.clickable {
    cursor: pointer;
}

.ellipse input {
    width: 3em;
}


.compact-theme a, .compact-theme span {
    float: left;
    color: #333;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
    border: 1px solid #AAA;
    border-left: none;
    min-width: 14px;
    padding: 0 7px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    background: #efefef; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #efefef)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #efefef 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #efefef 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #efefef 100%); /* IE10+ */
    background: linear-gradient(top, #ffffff 0%, #efefef 100%); /* W3C */
}

.compact-theme a:hover {
    text-decoration: none;
    background: #efefef; /* Old browsers */
    background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #efefef), color-stop(100%, #bbbbbb)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* IE10+ */
    background: linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* W3C */
}

.compact-theme li:first-child a, .compact-theme li:first-child span {
    border-left: 1px solid #AAA;
    border-radius: 3px 0 0 3px;
}

.compact-theme li:last-child a, .compact-theme li:last-child span {
    border-radius: 0 3px 3px 0;
}

.compact-theme .current {
    background: #bbbbbb; /* Old browsers */
    background: -moz-linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbbbbb), color-stop(100%, #efefef)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* IE10+ */
    background: linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* W3C */
    cursor: default;
}

.compact-theme .ellipse {
    background: #EAEAEA;
    padding: 0 10px;
    cursor: default;
}
.pagination {
    border-radius: 2px;
    padding: 0;
    text-align: center;
}
/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/
.light-theme a, .light-theme span {
    float: left;
    color: #666;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
    border: 1px solid #F0F4F7;
    padding: 3px 11px;
    margin: 0 5px 0 0;
    border-radius: 2px;
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);*/
    background: #fff; /* Old browsers */
    /*background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); !* FF3.6+ *!
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #efefef)); !* Chrome,Safari4+ *!
    background: -webkit-linear-gradient(top, #ffffff 0%, #efefef 100%); !* Chrome10+,Safari5.1+ *!
    background: -o-linear-gradient(top, #ffffff 0%, #efefef 100%); !* Opera11.10+ *!
    background: -ms-linear-gradient(top, #ffffff 0%, #efefef 100%); !* IE10+ *!
    background: linear-gradient(top, #ffffff 0%, #efefef 100%); !* W3C *!*/
}

.light-theme a:hover, .light-theme span:hover {
    text-decoration: none;
    background: #091871;
    color: #fff;
    border-radius: 2px;
    border-color: #091871;
}

.light-theme .current {
    background: #091871;
    color: #FFF;
    border-color: #091871;
    /*box-shadow: 0 1px 0 rgba(255, 255, 255, 1), 0 0 2px rgba(0, 0, 0, 0.3) inset;*/
    cursor: default;
}

.light-theme .ellipse {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-weight: bold;
    cursor: default;
}

/*------------------------------------*\
	Dark Theme Styles
\*------------------------------------*/
.dark-theme a, .dark-theme span {
    float: left;
    color: #CCC;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
    border: 1px solid #222;
    min-width: 14px;
    padding: 0 7px;
    margin: 0 5px 0 0;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background: #555; /* Old browsers */
    background: -moz-linear-gradient(top, #555 0%, #333 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555), color-stop(100%, #333)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #555 0%, #333 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #555 0%, #333 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, #555 0%, #333 100%); /* IE10+ */
    background: linear-gradient(top, #555 0%, #333 100%); /* W3C */
}

.dark-theme a:hover {
    text-decoration: none;
    background: #444;
}

.dark-theme .current {
    background: #222;
    color: #FFF;
    border-color: #000;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    cursor: default;
}

.dark-theme .ellipse {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-weight: bold;
    cursor: default;
}

.light-theme .ratio {
    border: none;
    background: none;
    box-shadow: none;
}
/*pagination*/


.banner {
    background: url("https://www.ubackup.com/assets/images/backgrounds/bu-review-banner-bg.jpg") no-repeat center;
    background-size: cover;
}
.banner .container{
    padding-bottom: 128px;
    padding-top: 128px;
}
.banner h1{
    font-size: 52px;
    line-height: 1;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 30px;
}
.banner .f-16{
    max-width: 790px;
    margin: auto;
    font-size: 16px;
    line-height: 22px;
    color: #fefefe;
}
.pare{
    position: relative;
    top: -73px;
}
.pare .toggle-btn{
    max-width: 750px;
    margin: auto;
    margin-top: -5px;
}
.toggle-btn li{
    width: 365px;
    margin-right: 20px;
    border-radius: 10px 10px 0px 0px;
    box-shadow: none;
    /*background: #cdcdcd;*/
}
.toggle-btn li a{
    box-shadow: none;
    background: rgba(205, 205, 205, 0.57);
    border-radius: 10px 10px 0px 0px;
    font-size: 24px;
    color: #fff;
}
.toggle-box .toggle-btn li.active a::before,.toggle-box .toggle-btn li.active a::after{
    display: none;
}
.toggle-box .toggle-btn li:hover a,
.toggle-box .toggle-btn li.active a{
    color:#091871;
    background: #fff;
    opacity: 1;
}
.toggle-box .toggle-cnt{
    padding-top: 60px;
}

/*reviews*/
#review-list {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
}
#review-list dl {
    /* 防止多列布局，分页媒体和多区域上下文中的意外中断 */
    flex-basis: 560px;
    background: #fff;
    padding: 15px 35px 30px 35px;
    margin-bottom: 62px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 8px 15px 0px rgba(86, 131, 244, 0.35);
    -moz-box-shadow: 0px 8px 15px 0px rgba(86, 131, 244, 0.35);
    box-shadow: 0px 8px 15px 0px rgba(86, 131, 244, 0.35);

}
.user-list dl,
#review-list dl{
    transition: all 0.2s;
}
.user-list dl:hover,
#review-list dl:hover  {
    /* border: 1px solid #fefefe; */
    transform: scale(1.01);
}
#review-list dl dt{
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
#review-list dd:last-child ,.user-list dd:last-child {
    margin-top: 25px;
}
.user-list dl{
    background-color: #ffffff;
    border: solid 1px #f0eded;
    padding: 20px 30px;
}
.user-list dt .left,.user-list dt .right{
    width: 50%;
    float: left;
}
 .user-list dl dt{
    border: none;
    margin-bottom: 15px;
    padding: 5px 0 0 0;
}
.user-list  .left h6 ,.user-list  .left img{
    display: inline-block;
    vertical-align: middle;
}
.user-list  .left h6:before{
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url("https://www.ubackup.com/assets/images/icons/header.png") no-repeat center;
    vertical-align: middle;
    margin-right: 5px;

}
.user-list  .left h6{
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-right: 30px;
    margin-bottom: 0;
}
.user-list dd{
    font-size: 14px;
    line-height: 22px;
    color: #666666;
}
.user-list  .right{
    font-size: 14px;
    font-weight: bold;
    color: #666666;
}

.btn-sp.btn {
    height: auto;
    margin-bottom: 0;
    font-weight: bold;
    padding:  15px 30px 25px 30px;
    text-align: center;
}
.btn-sp.btn span {
    display: block;
    line-height: 1;
    font-weight: normal;
    font-family: 'helvetica Th', Segoe UI, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
}
.rv-or {
    line-height: 1;
    display: inline-block;
    margin:auto;
    font-size: 2.2rem;
    padding: 25px 0 5px 0;
    text-align: center;
    background: url(https://www.ubackup.com/assets/images/icons/rv-arrow.png) no-repeat center bottom;
    width: 106px;
}

@media all and (max-width: 992px) {
    .btn.btn-sp {
        margin-bottom: 15px;
    }
}
@media (max-width: 991px) {
    .toggle-btn li{
        width: 100%;
    }
}
@media (max-width: 400px) {
    .btn{
        white-space: normal;
    }
    .user-list .left h6{
        margin-right: auto;
    }
}
@media (max-width: 600px){
    .user-list dt .right{
        width: 35%
    }
    .user-list dt .left{
        width: 65%;
    }
}