@import url("bootstrap.min.css");
@import url("boxicons.min.css");
@import url("meanmenu.css");

/*基础*/
body {
    padding: 0;
    margin: 0;
    font-size: 16px
}
a {
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
    color: #172b3b;
    display: inline-block
}
a:hover, a:focus {
    color: #eb0d13;
    text-decoration: none
}
button {
    outline: 0 !important
}
p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #172b3b;
}
p:last-child {
    margin-bottom: 0
}
i {
    line-height: normal
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block
}
ul{
    margin: 0;
    padding: 0;
}
ul li{
    list-style: none;
}

/*公共*/
.default-btn {
    padding: 15px 45px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    text-align:center;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid #fff;
    background-size: 350% 100%;
    background-image: linear-gradient(135deg, #eb0d13, #f8791a, #079763, #2d7997);
    moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.default-btn:hover {
    color: #fff;
    background-position: 100% 0;
}
.default-btn i {
    font-size: 16px;
    margin-right: 5px;
}
.default-btn.pure{
    background-image: none;
    background-color: #eb0d13;
}
.default-btn.pure:hover{
    background-image: linear-gradient(135deg, #eb0d13, #f8791a, #079763, #2d7997);
}
.default-btn.outlined{
    background-image: none;
    border: 1px solid #eb0d13;
    color: #eb0d13;
}
.default-btn.outlined:hover{
    background-size: cover;
    background-position: 0 0;
    background-image: linear-gradient(135deg, #eb0d13, #f8791a);
    border: 1px solid transparent;
    color: #FFF;
}
.default-btn.transparent{
    background-image: none;
    border: 1px solid transparent;
    color: #172b3b;
}
.default-btn.disabled{
    background-image: none;
    background-color: #eb0d13;
    opacity: 0.4;
}
.default-btn:focus,
.default-btn:active{
    color: #FFF;
}

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: -100px;
    right: 20px;
    color: #fff;
    background-color: #eb0d13;
    z-index: 4;
    width: 45px;
    text-align: center;
    height: 45px;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    font-size: 22px;
    -webkit-transition: .6s;
    transition: .6s;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}
.go-top i {
    position: absolute;
    right: 0;
    left: 0;
    top: 45%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
    text-align: center;
    font-size: 30px;
    margin-left: auto;
    margin-right: auto
}
.go-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 50px
}
.go-top:hover {
    background-color: #172b3b;
    color: #fff;
    -webkit-transition: .6s;
    transition: .6s;
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

.section-title {
    text-align: center;
    margin-bottom: 50px
}
.section-title span {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 5px;
    color: #eb0d13;
    text-transform:Uppercase;
}
.section-title h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px
}
.section-title p {
    max-width: 750px;
    margin: auto
}
.section-title p .default-btn{
    padding: 2px 10px;
    font-size: 12px;
}

.form-control:focus{
    box-shadow:0 0 0 .05rem rgba(13,110,253,.1)
}
.layui-layer-dialog.layer-chinalife .layui-layer-content{
    padding: 15px 20px;
    line-height: 28px;
    text-indent: 30px;
}
.layui-layer-dialog .layui-layer-btn .layui-layer-btn0{
    background-color: #eb0d13;
    border: 0;
    font-size: 14px;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
    padding-bottom: 75%;
}
.embed-responsive-square {
    padding-bottom: 100%;
}

/*导航*/
header .navigation {
    background: #fff;
    -webkit-transition: .6s;
    transition: .6s;
}
header .navigation .logo {
    padding-top: 15px;
    float: left;
    margin-left: 40px;
    margin-right: 10px;
}
header .navigation .logo img {
    height: 60px;
}
header .navigation .brand {
    padding-top: 18px;
    float: left;
}
header .navigation .brand a{
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
}
header .navigation .brand img {
    /*width: 16px;*/
    height: 22px;
    display: inline-block;
    margin: 0;
}
header .navigation .main-menu {
    float: right;
    margin-right: 40px;
}
header .navigation .main-menu ul li {
    display: inline-block;
    margin-right: 25px;
    position: relative;
}
header .navigation .main-menu ul li:last-child {
    margin-right: 0;
}
header .navigation .main-menu ul li a {
    padding: 35px 0;
    display: block;
    color: #172b3b;
    font-weight: bold;
}
header .navigation .main-menu ul li a.active {
    color: #eb0d13;
}
header .navigation .main-menu ul li a.default-btn {
    padding: 10px 25px;
    font-size: 14px;
    color: #FFF;
    font-weight: normal;
}
header .navigation .main-menu ul li a.default-btn:hover {
    color: #FFF;
}
header .navigation .main-menu ul li:hover > a {
    color: #eb0d13;
}
header .navigation .main-menu ul li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}
header .navigation .main-menu ul li ul.sub-menu {
    position: absolute;
    width: 220px;
    background: #fff;
    z-index: 2;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    opacity: 0;
    visibility: hidden;
    left: 0;
    transform-origin: top;
    top: 100%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1)
}
header .navigation .main-menu ul li ul.sub-menu li {
    display: block;
    margin: 0;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
}
header .navigation .main-menu ul li ul.sub-menu li:last-child {
    border-bottom: none;
}
header .navigation .main-menu ul li ul.sub-menu li a {
    padding: 8px 20px;
    font-weight: normal;
}
header .navigation .main-menu ul li ul.sub-menu li:hover > a {
    padding-left: 20px;
    color: #eb0d13;
    background-color: #f9f9f9
}
header .navigation.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
}

.mean-container .mean-nav{
    margin-top: 0;
}
.mean-container a.meanmenu-reveal {
    border: 0;
    color: #172b3b;
    margin-top: -45px;
    margin-right: 15px;
    padding: 4px 8px;
    width: 25px;
}
.mean-container a.meanmenu-reveal span {
    background: #172b3b;
    height: 3px;
    margin-top: 4px;
}
.clear{
    clear:both
}

/*底部*/
.footer-area {
    padding: 50px 0 20px 0;
    background-image: url("../img/footer-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.footer-area .footer-widget {
    margin-bottom: 25px
}
.footer-area .footer-widget h3 {
    font-size: 22px;
    margin-bottom: 20px
}
.footer-area .footer-widget .logo {
    margin: 10px 0 0 0;
}
.footer-area .footer-widget .logo img{
    width:220px;
}
.footer-area .footer-widget .links-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none
}
.footer-area .footer-widget .links-list li {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px
}
.footer-area .footer-widget .links-list li a {
    color: #576671;
    display: inline-block
}
.footer-area .footer-widget .links-list li a:hover {
    color: #eb0d13;
}
.footer-area .footer-widget .links-list li:last-child {
    margin-bottom: 0
}
.footer-area .footer-widget .links-info {
    padding-left: 0;
}
.footer-area .footer-widget .links-info li {
    list-style-type: none;
    margin-bottom: 10px;
    color: #576671;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 22px
}
.footer-area .footer-widget .links-info li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #eb0d13
}
.footer-area .footer-widget .links-info li a {
    color: #576671
}
.footer-area .footer-widget .links-info li a:hover {
    color: #eb0d13;
}
.footer-area .footer-widget .links-info li:last-child {
    margin-bottom: 0
}
.footer-area .footer-widget .qrcode{
    margin: 0 0 0 60px;
    color: #576671;
    font-size: 14px;
}
.copyright-area {
    padding: 25px 0;
    background-color: #172b3b;
    font-size: 14px;
    color: #fff;
    text-align: center;
}
.copyright-area p,
.copyright-area a {
    color: #fff
}
.copyright-area a:hover {
    opacity: 0.8;
}

/*公益大使*/
.consultant-box {
    margin-bottom: 40px;
    -webkit-transition: .5s;
    transition: .5s
}
.consultant-box .consultant-image img {
    border-radius: 5px 5px 0 0;
}
.consultant-box .consultant-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 15px 0;
}
.consultant-box .consultant-honor{
}
.consultant-box .consultant-honor li{
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}
.consultant-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

/*投票列表*/
.vote-box{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 25px 25px 25px;
    margin-bottom: 25px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    border-radius: 15px;
    -webkit-transition: .5s;
    transition: .5s;
}
.vote-box.more{
    /*background-color: rgba(235, 13, 19, 0.7);*/
    border: 1px solid rgba(235, 13, 19, 0.1);
    background-image: url("../img/vote-more-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: center;
    align-items: center;
    height: calc(100% - 25px);
    text-align: center;
    color: #EB0D13;
    font-size: 22px;
    font-weight: bold;
}
.vote-box .vote-content .info span {
    font-size: 16px;
    color: #eb0d13;
    display: inline-block;
    margin-bottom: 15px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
}
.vote-box .vote-content .info span i {
    display: inline-block;
    font-size: 12px;
    font-style: normal;
    background: #ffeced;
    color: #eb0d13;
    width: 18px;
    height: 18px;
    text-align: center;
    border-radius: 18px;
    position: relative;
    top: -2px;
}
.vote-box .vote-content .info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 0;
    -webkit-transition: .5s;
    transition: .5s
}
.vote-box .vote-content .info p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 10px;
    opacity: 0.8;
    -webkit-transition: .5s;
    transition: .5s
}
.vote-box .vote-content .data {
    margin-top: 25px;
    font-size: 14px;
    -webkit-transition: .5s;
    transition: .5s
}
.vote-box .vote-content .data span {
    margin-right: 10px;
}
.vote-box .vote-content .data i {
    font-size: 13px;
    opacity: 0.8;
}
.vote-box .vote-operate{
    width: 25%;
    height: 100%;
    padding-left: 25px;
    margin-left: 25px;
    border-left: 1px solid #ebebeb;
    -webkit-transition: .5s;
    transition: .5s;
}
.vote-box .vote-operate .default-btn{
    width: 100%;
    padding: 7px 0;
    font-size: 13px;
}
.vote-box .vote-operate .default-btn.outlined{
    padding: 5px 0;
}
.vote-box .vote-operate .default-btn:nth-child(2){
    margin: 5px 0 12px 0;
}
.vote-box:hover {
    background-color: #166080;
}
.vote-box:hover .vote-content .info span {
    color: #fff
}
.vote-box:hover .vote-content .info span i {
    background: #F5F5F5;
    color: #172b3b;
}
.vote-box:hover .vote-content .info h3 {
    color: #fff
}
.vote-box:hover .vote-content .info p {
    color: #fff !important;
}
.vote-box:hover .data {
    color: #fff
}
.vote-box:hover .vote-operate{
    border-left: 1px solid rgba(255,255,255,.1);
}
.vote-box:hover .vote-operate .default-btn.transparent{
    color: #ffffff;
}
.vote-box:hover .vote-operate .default-btn.outlined{
    background-image: none;
    border: 1px solid #FFF;
    color: #ffffff;
}
.vote-box:hover .vote-operate .default-btn.pure{
    background-image: none;
    background-color: #FFF;
    color: #172b3b;
}
.vote-box.more:hover{
    color: #fff;
    background-color: rgba(235, 13, 19, 1);
}

/*投票项目*/
.vote-banner {
    position: relative;
    background-image: url("../img/vote-banner-bg.png");
    background-position: center center;
    background-color: #b40d01;
    color: #FFF;
    padding: 70px 0 70px 0;
    z-index: 0;
}
.vote-banner:before,
.vote-banner:after{
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    z-index: 0;
}
.vote-banner:before{
    width: 300px;
    height: 100%;
    left: 0;
    right: auto;
    background-image: url("../img/vote-banner-left.png");
    background-position: top left;
}
.vote-banner:after{
    width: 500px;
    height: 100%;
    left: auto;
    right: 0;
    background-image: url("../img/vote-banner-right.png");
    background-position: top right;
}
.vote-banner .title{
    position: relative;
    z-index: 1;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}
.vote-banner .title i{
    font-style: normal;
}
.vote-banner .intro{
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.8;
}
.vote-banner .date{
    position: relative;
    z-index: 1;
    opacity: 0.8;
    padding-top: 5px;
    margin-bottom: 40px;
}
.vote-banner .date.player span{
    margin: 0 10px;
}
.vote-banner .date .countdown i {
    font-size: 26px;
    padding: 0 5px;
    font-style: normal;
}
.vote-banner .operate .default-btn{
    padding: 5px 30px;
    margin: 0 10px;
    font-size: 14px;
}
.vote-banner .operate .default-btn.outlined{
    color: #FFF;
    border-color: #FFF;
}
.vote-banner .operate .default-btn.outlined:hover{
    border-color: transparent;
}
.vote-banner .operate.player .default-btn.btn-vote{
    background-color: #FFF;
    background-image: none;
    color: #ff6600;
}
.vote-player{
    background-color: #fbf5df;
    padding: 30px 0;
}
.vote-player .search-box{
    margin-bottom: 40px;
}
.vote-player .search-box .form-control{
    border: 0;
}
.vote-player .search-box .default-btn{
    border-radius: 0 0.25rem 0.25rem 0;
}
.vote-player .category-box{
    margin-bottom: 20px;
}
.vote-player .category-box li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
.vote-player .category-box li:last-child{
    margin-right: 0;
}
.vote-player .category-box .default-btn{
    border: 1px solid #eb0d13;
    padding: 5px 20px;
    font-size: 13px;
}
.vote-player .player-box {
    -webkit-transition: .5s;
    transition: .5s;
    margin-bottom: 25px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    border-radius: 15px
}
.vote-player .player-box .player-image {
    position: relative;
    background: #666;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
/*.vote-player .player-box .player-image img {
    height: 200px;
    object-fit: contain;
}*/
.vote-player .player-box .player-image .number {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background-color: rgba(235, 13, 19, 0.8);
    color: #fff;
    padding: 5px 15px;
    font-size: 13px;
    border-radius: 10px 0 0 0
}
.vote-player .player-box .player-content {
    padding: 15px;
}
.vote-player .player-box .player-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.5;
}
.vote-player .player-box .player-content .bottom-content {
    border-top: 1px solid #eee;
    list-style-type: none;
    padding: 15px 0 0 0;
    margin: 0;
    opacity: 0.8;
}
.vote-player .player-box .player-content .bottom-content li {
    color: #576671;
    font-size: 14px;
    position: relative;
}
.vote-player .player-box .player-content .bottom-content li span{
    display: inline-block;
    margin-right: 10px;
}
.vote-player .player-box .player-content .bottom-content li span:last-child{
    margin-right: 0;
}
.vote-player .player-box .player-content .bottom-content li span i{
    font-style: normal;
}
.vote-player .player-box .player-content .bottom-content li .default-btn{
    padding: 5px 20px;
    font-size: 13px;
}
.vote-player-detail{
    background-color: #fbf5df;
    padding: 30px 0;
}
.vote-player-detail h3{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.vote-player-detail .player-title{
    font-size: 16px;
    margin-top: 15px;
}
.vote-player-comment{
    padding: 30px 0;
    border-top: 0 !important;
    margin-top: 0 !important;
}
.vote-player-comment h3{
    margin-top: 0 !important;
    font-size: 20px !important;
    font-weight: bold !important;
}
.vote-rank{
    background-color: #fbf5df;
    padding: 30px 0;
}
.vote-rank h3{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.vote-rank .rank-box {
    background-color: #f5f5f5;
    padding: 15px 25px;
    border-radius: 5px;
    margin-bottom: 25px;
    -webkit-transition: .6s;
    transition: .6s
}
.vote-rank .rank-box .content-title{
    font-weight: bold;
}
.vote-rank .rank-box .content-info img {
    height: 55px;
    width: 55px;
    border-radius: 4px;
}
.vote-apply{
    padding: 30px 0;
}
.vote-apply h3{
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}
.vote-apply .form-box{
    margin-top: 15px;
}

/*精彩作品*/
.works-box {
    margin-bottom: 25px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 1.25rem rgba(108, 118, 134, .4);
    box-shadow: 0 3px 1.25rem rgba(108, 118, 134, .4);
    border-radius: 10px;
    overflow: hidden;
}
.works-box .works-image {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.works-box .works-image img {
    border-radius: 10px;
    -webkit-transition: .5s;
    transition: .5s
}
.works-box .works-content {
    padding: 20px 15px;
}
.works-box .works-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}
.works-box .works-bottom {
    background: #F7F7F7;
    border-top: 1px solid #ebebeb;
    padding: 12px 15px 17px 15px;
}
.works-box .works-bottom span {
    font-size: 14px;
    opacity: 0.8;
}
.works-box .works-bottom .default-btn {
    padding: 5px 20px 6px 20px;
    font-size: 13px;
}
.works-box:hover .works-image img{
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
}

/*商品列表*/
.products-box {
    margin-bottom: 25px;
    background-color: #f5f5f8;
    padding: 30px;
    border-radius: 15px;
    -webkit-transition: .5s;
    transition: .5s
}
.products-box .products-image img {
    border-radius: 15px
}
.products-box .products-content {
    margin-top: 30px;
    text-align: center
}
.products-box .products-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    min-height: 55px;
}
.products-box .products-content span {
    color: #eb0d13;
    font-size: 16px;
}
.products-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

/*新闻*/
.news-box {
    -webkit-transition: .5s;
    transition: .5s;
    margin-bottom: 25px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    border-radius: 0 0 15px 15px
}
.news-box .news-image {
    position: relative
}
.news-box .news-image img {
    border-radius: 10px 10px 0 0
}
.news-box .news-image .tag {
    position: absolute;
    right: 20px;
    bottom: -18px;
    display: inline-block;
    background-color: #eb0d13;
    color: #fff;
    padding: 8px 15px;
    font-family: poppins, sans-serif;
    font-size: 14px;
    border-radius: 5px
}
.news-box .news-content {
    padding: 35px 25px 25px 25px;
}
.news-box .news-content h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 75px;
}
.news-box .news-content .bottom-content {
    list-style-type: none;
    padding-left: 0;
    margin: 20px -7px 0 -7px;
    opacity: 0.8;
}
.news-box .news-content .bottom-content li {
    color: #576671;
    font-size: 15px;
    position: relative;
    padding-left: 30px;
    padding-right: 8px
}
.news-box .news-content .bottom-content li i {
    color: #eb0d13;
    position: absolute;
    left: 7px;
    top: 2px;
    font-size: 16px
}
.news-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

/*合作伙伴*/
.partner-list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    flex-wrap: wrap
}
.partner-item {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 5px;
    padding-right: 5px
}
.partner-item a {
    display: block;
    padding: 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    text-align: center;
    position: relative;
    margin-bottom: 10px
}
.partner-item a::before, .partner-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .6s;
    transition: .6s
}
.partner-item a::before {
    left: 0;
    top: 0;
    border-left: 2px solid #eb0d13;
    border-top: 2px solid #eb0d13
}
.partner-item a::after {
    right: 0;
    bottom: 0;
    border-right: 2px solid #eb0d13;
    border-bottom: 2px solid #eb0d13
}
.partner-item a img {
    -webkit-transition: .6s;
    transition: .6s
}
.partner-item a:hover::after, .partner-item a:hover::before {
    width: 40px;
    height: 40px;
    opacity: 1;
    visibility: visible
}
.partner-item a:hover img {
    -webkit-transform: scale(.8);
    transform: scale(.8)
}

/*视频*/
.video-box-image {
    position: relative;
    z-index: 1;
}
.video-box-image::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #333;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 8px;
    opacity: .6
}
.video-box-image img {
    border-radius: 8px
}
.video-box-image .video-btn {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-color: #fff;
    border-radius: 50%;
    color: #eb0d13;
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 75px;
    -webkit-transition: .6s;
    transition: .6s;
    cursor: pointer;
}
.video-box-image .video-btn i {
    -webkit-transition: .6s;
    transition: .6s;
    position: relative;
    top: 5px;
    left: 5px;
    border-radius: 10px
}
.video-box-image .video-btn::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid #fff;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite
}
.video-box-image .video-btn:hover {
    background-color: #172b3b
}
.video-box-image .video-btn:hover i {
    color: #fff
}
@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

/*表单*/
.form-box .form-group {
    margin-bottom: 25px;
    overflow: hidden;
}
.form-box .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    font-family: poppins, sans-serif
}
.form-box .form-group label .required {
    color: red
}
.form-box .form-group .form-control {
    height: 50px;
    color: #172b3b;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    -webkit-transition: .6s;
    transition: .6s;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}
.form-box .form-group .form-control::-webkit-input-placeholder {
    color: #576671;
    -webkit-transition: .6s;
    transition: .6s
}
.form-box .form-group .form-control:-ms-input-placeholder {
    color: #576671;
    -webkit-transition: .6s;
    transition: .6s
}
.form-box .form-group .form-control::-ms-input-placeholder {
    color: #576671;
    -webkit-transition: .6s;
    transition: .6s
}
.form-box .form-group .form-control::placeholder {
    color: #576671;
    -webkit-transition: .6s;
    transition: .6s
}
.form-box .form-group .form-control:focus {
    border-color: #fc5a1b;
    background-color: transparent
}
.form-box .form-group .form-control:focus::-webkit-input-placeholder {
    color: transparent
}
.form-box .form-group .form-control:focus:-ms-input-placeholder {
    color: transparent
}
.form-box .form-group .form-control:focus::-ms-input-placeholder {
    color: transparent
}
.form-box .form-group .form-control:focus::placeholder {
    color: transparent
}
.form-box .form-group textarea.form-control {
    height: auto;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
}
.form-box .form-check {
    margin-bottom: 20px
}
.form-box .form-check .form-check-label {
    color: #172b3b;
    font-weight: 500
}
.form-box .form-check .form-radio-label {
    color: #172b3b;
    font-weight: 500;
    margin-right: 10px;
}
.form-box .form-check label {
    position: relative;
    left: -2px;
    top: 0;
    font-weight: 500;
    font-family: poppins, sans-serif
}
.form-box .col-lg-12:last-child .form-group {
    margin-bottom: 0
}

/*首页*/
.about-area {
    padding: 70px 0 60px 0;
    margin-bottom: 50px;
    background-image: url("../img/about_bg.jpg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-area .section-title{
    margin-bottom: 30px;
}
.about-area .section-title span{
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    background: linear-gradient(135deg, #eb0d13, #f8791a, #079763, #2d7997);
    -webkit-background-clip: text;
    color: transparent;
}
.about-area .section-title h2 {
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 0;
    color: #eb0d13;
    /*display: inline-block;
    position: relative;
    z-index: 1;*/
}
.about-area .about-content,
.about-area .about-content p{
    font-size: 18px;
    line-height: 2.2;
}
.about-area .about-policy .item{
    -webkit-transition: .5s;
    transition: .5s;
    border: 7px solid #eb0d13;
    margin: 40px 0 0 0;
    box-shadow: 7px 8px 5px rgba(0,0,0,0.3);
    cursor: pointer;
}
.about-area .about-certificate{
    margin:40px 0 20px 0;
}
.about-area .about-certificate .item{
    -webkit-transition: .5s;
    transition: .5s;
    background-color: #FFF;
    border-radius: 0 0 5px 5px;
    margin-bottom: 15px;
    box-shadow: 7px 8px 5px rgba(0,0,0,0.1);
    cursor: pointer;
}
.about-area .about-certificate h3{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 25px 0;
}
.about-area .about-policy .item:hover,
.about-area .about-certificate .item:hover {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px)
}
.consultant-area{
    padding: 0 0 70px 0;
}
.consultant-area .consultant-box .consultant-image {
    margin-right: 10px;
}
.vote-area{
    padding: 70px 0;
    background-color: #F7F8FC;
    background-image: url("../img/bg-4.png");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
}
.works-area {
    padding: 70px 0;
    background-image: url("../img/bg-2.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1
}
.works-area::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #172b3b;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: .85
}
.works-area .section-title span,
.works-area .section-title h2 {
    color: #fff
}
.works-area .more .default-btn.outlined {
    border: 1px solid #ffffff;
    color: #ffffff;
}
.works-area .more .default-btn.outlined:hover {
    border: 1px solid transparent;
}
.product-area{
    padding: 70px 0;
}
.product-area .widget_information {
    background-color: #166080;
    color: #fff;
}
.product-area .widget_information a,
.product-area .widget_information p{
    color: #fff;
}
.product-area .widget_information ul li i {
    background-color: #eee;
    color: #222;
}
.product-area .widget_information .default-btn.pure {
    background-color: #fff;
    color: #166080;
}
.product-area .widget_information .default-btn.pure:hover {
    background-image: none;
    background-color: #166080;
    color: #fff;
}
.product-area .widget_information .scrollbar{
    height: 130px;
    overflow-y: scroll;
    padding-right: 10px;
}
.product-area .widget_information .scrollbar::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
.product-area .widget_information .scrollbar::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px #004e80;
    background: #fff;
}
.product-area .widget_information .scrollbar::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    background: #fff;
}
.news-area{
    padding: 70px 0;
}
.partner-area{
    padding: 50px 0;
}
.partner-area .partner-item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.donate-area {
    padding: 70px 0;
    position: relative;
    /*background-color: #350304;*/
    z-index: 1
}
.donate-area::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    /*background-color: #D42B26;*/
    background-image: linear-gradient(90deg, #0b7c7c, #2d7997);
    z-index: -1
}
.donate-area::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-image: url("../img/experience.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    z-index: -1
}
.donate-content {
    padding-right: 90px
}
.donate-content h3 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.donate-content div{
    color: #FFF;
    line-height: 2;
    margin-bottom: 40px;
}
.donate-content .default-btn {
    background-color: #fff;
    background-image: none;
    color: #0b7c7c;
}
.donate-content .default-btn:hover,
.donate-content .default-btn:focus {
    background-color: #172b3b;
    color: #fff
}

/*内页banner*/
.page-banner-area {
    background-image: url("../img/page-banner-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.page-banner-area h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
}
.page-banner-area ul {
    text-align: center;
    padding-left: 0;
    margin-bottom: 0;
    opacity: 0.95;
}
.page-banner-area ul li {
    display: inline-block;
    list-style-type: none;
    margin-left: 30px;
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    position: relative
}
.page-banner-area ul li::before {
    position: absolute;
    content: '>';
    top: -2px;
    left: -23px;
    color: #fff;
    font-size: 16px;
    opacity: 0.6;
}
.page-banner-area ul li:first-child {
    margin-left: 0
}
.page-banner-area ul li:first-child::before {
    display: none
}
.page-banner-area ul li a {
    display: block;
    color: #fff
}
.page-banner-area ul li a:hover {
    opacity: 0.6;
}

/*列表*/
.page-channel-area{
    margin: 50px 0;
}
.page-channel-area .channel-title{
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd;
}
.page-channel-area .channel-title span{
    font-weight: normal;
    font-size: 14px;
}
.page-channel-area .channel-title span label{
    opacity: 0.6;
}
.page-channel-area .channel-title span .order-btn{
    border: 0;
    background: transparent;
}
.page-channel-area .channel-title span .order-btn i{
    font-size: 14px;
}
.page-channel-area .channel-title span .order-btn.active{
    color: #eb0d13;
}
.page-list-text{
    background-color: #fff;
    -webkit-box-shadow: 0 5px 30px 5px rgba(0, 0, 0, .06);
    box-shadow: 0 5px 30px 5px rgba(0, 0, 0, .06);
    border-radius: 5px;
    margin-bottom: 50px;
}
.page-list-text li {
    color: #172b3b;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #eee !important;
    padding: 0 30px;
    -webkit-transition: .5s;
    transition: .5s;
}
.page-list-text li a{
    display: block;
    padding: 18px 0;
}
.page-list-text li:hover {
    background-color: rgba(255, 246, 242, 0.8);
}
.page-list-text li a:hover {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px)
}

/*内容详情*/
.page-details-area{
    margin: 50px 0;
}
.page-details-area .details-title{
    font-size: 28px;
    font-weight: bold;
}
.page-details-area .details-meta{
    text-align: center;
    font-size: 15px;
    opacity: 0.8;
    margin-top: 25px;
}
.page-details-area .details-ul{
    font-size: 15px;
    opacity: 0.9;
    line-height: 2.0;
    margin-top: 15px;
}
.page-details-area .details-content{
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #dddddd;
}

/*捐赠*/
.donate-form{
    padding: 30px;
    background: #edf0fa;
    border-radius: 8px;
}
.donate-form .details-title{
    margin-bottom: 20px;
}
.donate-form .form-group {
    margin-bottom: 20px;
}
.donate-form .control-label{
    font-weight: bold;
}

/*商品*/
.products-details-image {
    background-color: #f5f5f8;
    padding: 30px;
    border-radius: 15px;
}
.products-details-image img {
    width: 100%;
    border-radius: 15px
}
.products-details-desc {
    padding-left: 25px
}
.products-details-desc h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px
}
.products-details-desc .price {
    margin-bottom: 10px;
    color: #eb0d13;
    font-size: 20px;
}
.products-details-desc .price em {
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    color: #999;
}
.products-details-desc .price span {
    font-size: 16px;
}
.products-details-desc .stock {
    margin-bottom: 40px;
    font-size: 16px;
}
.products-details-desc .stock em{
    font-style: normal;
    color: #999;
}
.products-details-desc .add{
    margin-bottom:50px;
}
.products-details-desc .add .input-counter {
    max-width: 120px;
    min-width: 120px;
    margin-right: 10px;
    text-align: center;
    display: inline-block;
    position: relative
}
.products-details-desc .add .input-counter span {
    position: absolute;
    top: 0;
    background-color: transparent;
    cursor: pointer;
    color: #576671;
    width: 40px;
    height: 100%;
    line-height: 50px;
    -webkit-transition: .6s;
    transition: .6s;
    font-size: 22px
}
.products-details-desc .add .input-counter span.minus-btn {
    right: 0;
    top: -5px
}
.products-details-desc .add .input-counter span.plus-btn {
    right: 0;
    top: 15px
}
.products-details-desc .add .input-counter span:hover {
    color: #eb0d13
}
.products-details-desc .add .input-counter input {
    height: 56px;
    color: #172b3b;
    outline: 0;
    display: block;
    background-color: transparent;
    border: 1px solid #ebebeb;
    width: 100%;
    text-align: start;
    padding-left: 25px;
    font-size: 18px;
    font-weight: 600
}
.products-details-desc .add .input-counter input::-webkit-input-placeholder {
    color: #172b3b
}
.products-details-desc .add .input-counter input:-ms-input-placeholder {
    color: #172b3b
}
.products-details-desc .add .input-counter input::-ms-input-placeholder {
    color: #172b3b
}
.products-details-desc .add .input-counter input::placeholder {
    color: #172b3b
}
.products-details-desc .info {
    list-style-type: none;
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 0
}
.products-details-desc .info li {
    color: #172b3b;
    margin-bottom: 15px;
    font-size: 14px;
    position: relative;
    padding-left: 25px
}
.products-details-desc .info li:last-child {
    margin-bottom: 0
}
.products-details-desc .info li i {
    display: inline-block;
    background-color: #fff;
    height: 20px;
    width: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #eb0d13;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 11px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .5s;
    transition: .5s
}
.products-details-desc .info li:hover i {
    background-color: #eb0d13;
    color: #fff
}
.products-details-tabs {
    margin-top: 50px
}
.products-details-tabs .nav {
    margin-bottom: 30px;
    list-style-type: none;
    display: block
}
.products-details-tabs .nav .nav-item {
    display: inline-block;
    margin-right: 10px
}
.products-details-tabs .nav .nav-item:last-child {
    margin-right: 0
}
.products-details-tabs .nav .nav-item .nav-link {
    border: none;
    padding: 10px 30px;
    background-color: #ffede5;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #eb0d13;
    -webkit-transition: .5s;
    transition: .5s;
    font-family: poppins, sans-serif;
    border-radius: 5px
}
.products-details-tabs .nav .nav-item:hover .nav-link, .products-details-tabs .nav .nav-item.active .nav-link {
    background-color: #eb0d13;
    color: #fff
}
.products-details-tabs .nav-tabs {
    border-bottom: none
}

/*订单*/
.order-table{
    margin-bottom: 25px;
}
.order-table h3{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.order-table h3 .default-btn {
    padding: 5px 15px;
    font-size: 12px;
    font-weight: normal;
}
.order-table table {
    margin-bottom: 0
}
.order-table table thead tr th {
    vertical-align: middle;
    padding: 10px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: normal;
    background: #F5F5F5;
}
.order-table table tbody tr td {
    vertical-align: middle;
    color: #576671;
    white-space: nowrap;
    padding: 10px;
    font-size: 14px
}
.order-table table tbody tr td.product-thumbnail img {
    width: 60px;
    margin-right: 10px;
}
.order-table table tbody tr td.product-subtotal {
    overflow: hidden
}
.order-table table tfoot tr td {
    vertical-align: middle;
    color: #eb0d13;
    white-space: nowrap;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
}
.order-table table .default-btn {
    padding: 3px 20px;
    font-size: 12px;
    font-weight: normal;
    margin-right: 5px;
}
.order-table table.order-address .default{
    background-image: none;
    border: 1px solid transparent;
    color: #172b3b;
}
.order-table table.order-address tbody tr.active {
    background: rgba(255, 246, 242, 0.8);
}
.order-table table.order-address tbody tr .default-address,
.order-table table.order-address tbody tr.active .set-default{
    display: none;
}
.order-table table.order-address tbody tr .set-default,
.order-table table.order-address tbody tr.active .default-address{
    display: inline-block;
}
.order-table table.order-list .close-order,
.order-table table.order-list .order-delete,
.order-table table.order-list .order-sign{
    font-size: 13px;
}

/*侧边*/
.widget-area{
    padding-left: 50px;
}
.widget-area .widget {
    margin-bottom: 35px;
}
.widget-area .widget .widget-title {
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
    font-size: 20px;
    display: inline-block;
}
.widget-area .widget .widget-title::before {
    content: '';
    position: absolute;
    background: #eb0d13;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 50px;
}

.widget_vote .vote-box{
    align-items: center;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 0 0.25rem rgba(108, 118, 134, .1);
    box-shadow: 0 0 0.25rem rgba(108, 118, 134, .1);
    background-color: rgba(255, 246, 242, 0.8);
}
.widget_vote .vote-box .vote-content .info h3 {
    font-size: 16px;
    margin-top: 5px;
}
.widget_vote .vote-box .vote-content .info p {
    font-size: 12px;
    margin-top: 5px;
}
.widget_vote .vote-box .vote-content .data{
    margin-top: 10px;
}
.widget_vote .vote-box .vote-operate{
    width: 30%;
    padding-left: 15px;
    margin-left: 15px;
}
.widget_vote .vote-box .vote-operate .default-btn{
    font-size: 12px;
}
.widget_vote .vote-box .vote-operate .default-btn.outlined{
    margin:2px 0 5px 0;
    color: #eb0d13;
}
.widget_vote .vote-box:hover {
    background-color: #166080
}
.widget_vote .vote-box:hover .vote-operate .default-btn.outlined{
    color: #ffffff;
}

.widget_products .products-box {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
}
.widget_products .products-box .products-image img {
    border-radius: 3px
}
.widget_products .products-box .products-content {
    margin-top: 10px;
}
.widget_products .products-box .products-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
}
.widget_products .products-box .products-content span {
    font-size: 14px;
}

.widget_information {
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 5px;
    text-align: center
}
.widget_information img {
    max-width: 60px;
    border-radius: 50%;
    margin-bottom: 20px
}
.widget_information h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px
}
.widget_information ul {
    padding: 0;
    margin-top: 20px
}
.widget_information ul li {
    display: inline-block;
    list-style-type: none;
    margin-right: 15px;
}
.widget_information ul li:last-child {
    margin-right: 0
}
.widget_information ul li i {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #999;
    margin-right: 2px;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    font-size: 13px;
}
.widget_information .default-btn {
    margin-top: 25px;
    padding: 8px 35px;
    font-size: 14px;
}
.widget_information .scrollbar {
    text-align: left;
    font-size: 13px;
    margin-top: 20px;
    opacity: 0.9;
}
.widget_information .scrollbar p{
    margin-bottom: 10px;
}

.widget_donate .marquee{
    height: 500px;
    overflow: hidden;
}
.widget_donate .marquee-header li{
    background-color: #eee;
    font-size: 13px;
}
.widget_donate .marquee li{
    background-color: #f8f8f8;
    opacity: 0.9;
    font-size: 13px;
}
.widget_donate .marquee-header span,
.widget_donate .marquee span {
    display: inline-block;
    padding: 8px 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.widget_donate .marquee-header span:nth-child(1),
.widget_donate .marquee span:nth-child(1) {
    width: 35%;
}
.widget_donate .marquee-header span:nth-child(2),
.widget_donate .marquee span:nth-child(2) {
    width: 30%;
}
.widget_donate .marquee-header span:nth-child(3),
.widget_donate .marquee span:nth-child(3) {
    width: 32%;
}

/*分页*/
.pager .pagination {
    margin: 60px 0;
    justify-content: center;
}
.pager li {
    margin: 0 5px;
    display: inline-block;
}
.pager li > a,
.pager li > span {
    background: none;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    padding: 7px 15px;
    font-size: 14px;
    display: inline-block;
}
.pager li a:hover,
.pager li.active span{
    background: #eb0d13;
    border: 1px solid #eb0d13;
    color: #fff;
}

.loadmore {
    width: 80%;
    margin: 1.5em auto;
    line-height: 1.6em;
    font-size: 14px;
    text-align: center;
    clear: both;
}
.loadmore-tips {
    display: inline-block;
    vertical-align: middle;
}
.loadmore-line {
    border-top: 1px solid #eeeeee;
    margin-top: 2.4em;
}
.loadmore-line .loadmore-tips {
    position: relative;
    top: -0.9em;
    padding: 0 .55em;
    background-color: #FFFFFF;
    color: #808080;
}
.btn-loadmore {
    clear: both;
}

/*支付框*/
.details-payment{
    margin: 10px 0;
}
.details-payment .alert{
    background-color: #f5f5f8;
}
.details-payment .default-btn{
    font-size: 14px;
    padding: 10px 30px;
}

/*评论*/
.details-comment{
    margin-top: 35px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}
.details-comment .comment-title{
    margin: 40px 0 20px 0;
    font-size: 20px
}
.details-comment .comment-title small{
    font-size: 13px;
    opacity: 0.8;
    margin-left: 10px;
}
.details-comment .default-btn{
    padding: 10px 50px;
}
#comment-container #commentlist dl {
    position: relative;
    border-bottom: 1px solid #eee;
    clear: both;
    padding: 10px 0;
    margin-bottom: 5px;
}
#comment-container #commentlist dl dt {
    float: left;
    margin-right: 10px;
    width: 44px;
    height: 44px;
    display: block;
    position: absolute;
}
#comment-container #commentlist dl dt img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
#comment-container #commentlist dl dd {
    padding-left: 55px;
    float: left;
    width: 100%;
}
#comment-container #commentlist dl dd cite a {
    color: #007bff;
}
#comment-container #commentlist dl dd small {
    color: #999;
    margin: 0 0 0 3px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
}
#comment-container #commentlist dl dd small a {
    display: none;
}
#comment-container #commentlist dl dd dl {
    margin: 0;
    border-top: 1px solid #eee;
    border-bottom: none;
    padding-top: 15px;
    padding-bottom: 0;
}
#comment-container #commentlist dl dd dl dd {
    width: 550px;
}
#comment-container #commentlist dl dd p {
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 24px;
}
#comment-container #commentlist dl dd p em {
    font-style: normal;
    display: inline-block;
    padding: 0 5px;
    height: 22px;
    line-height: 22px;
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: #007bff;
    background: #e5f2ff;
    border-radius: 2px;
}
#comment-container #commentlist cite {
    font-style: normal;
}
#comment-container h3 {
    position: relative;
}
#comment-container h3 a {
    display: none;
}
#comment-container #postcomment .form-group {
    margin-bottom: 10px;
}
#comment-container #postcomment label {
    font-weight: normal;
}
#comment-container #postcomment a small {
    display: inline !important;
}
#comment-container #postcomment textarea.form-control {
    border-radius: 2px;
    box-shadow: none;
    border-color: #eeeeee;
}


@media screen and (min-width: 992px) and (max-width: 1400px) {
    .footer-area .footer-widget .qrcode{
        margin: 0 0 0 20px;
    }
}
@media (max-width: 991px) {
    /*公共*/
    .section-title{
        margin-bottom: 20px;
    }
    .section-title span {
        font-size: 14px;
    }
    .section-title h2 {
        font-size: 30px;
    }

    /*导航*/
    header .navigation .logo {
        padding: 15px 0 15px 0;
        margin-left: 15px;
    }
    header .navigation .logo img {
        height: 35px;
    }
    header .navigation .brand {
        padding-top: 10px;
    }
    header .navigation .brand a{
        font-size: 12px;
        margin-bottom: 5px;
    }
    header .navigation .brand img {
        height: 15px;
    }
    /*底部*/
    .footer-area{
        display: none;
    }

    /*投票列表*/
    .vote-box{
        padding: 20px 15px 25px 15px;
    }
    .vote-box .vote-content .info h3 {
        font-size: 20px;
    }
    .vote-box .vote-operate{
        width: 35%;
        padding-left: 15px;
        margin-left: 15px;
    }

    /*合作伙伴*/
    .partner-item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .partner-item a {
        padding: 15px
    }

    /*视频*/
    .video-box-image .video-btn {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 35px
    }
    .video-box-image .video-btn i {
        top: 4px;
        left: 2px
    }

    /*首页*/
    .about-area{
        padding: 30px 0;
    }
    .about-area .col-sm-6 {
        width: 100%
    }
    .about-area .section-title h2 {
        font-size: 24px;
    }
    .about-area .about-content,
    .about-area .about-content p{
        font-size: 16px;
        line-height: 2;
    }
    .about-area .about-policy img{
        margin: 20px 0 10px 0;
        box-shadow: 0 8px 5px rgba(0,0,0,0.3);
    }
    .consultant-area{
        padding: 0 0 40px 0;
    }
    .vote-area{
        padding: 30px 0;
    }
    .works-area {
        padding: 30px 0;
    }
    .product-area{
        padding: 30px 0;
    }
    .news-area{
        padding: 30px 0;
    }
    .partner-area{
        padding: 30px 0;
    }
    .donate-area {
        padding: 30px 0;
    }
    .donate-area::before {
        width: 100%
    }
    .donate-area::after {
        display: none
    }
    .donate-content {
        padding-right: 0
    }
    .donate-content h3 {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    .donate-box {
        margin-left: 0;
        margin-top: 15px;
    }
    .donate-area .col-sm-6 {
        width: 50%
    }
    .donate-area .col-sm-6 .beneficial {
        padding: 10px;
        text-align: center
    }
    .donate-area .col-sm-6 .beneficial .icon {
        position: relative;
        left: 0;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        margin-bottom: 20px
    }

    /*投票项目*/
    .vote-banner {
        padding: 30px 0;
    }
    .vote-banner:before{
        height: 50%;
        left: 0;
    }
    .vote-banner:after{
        height: 50%;
        right: 0;
    }
    .vote-banner .title{
        font-size: 26px;
    }
    .vote-banner .date{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .vote-banner .date .countdown i {
        font-size: 14px;
    }
    .vote-banner .operate .default-btn{
        padding: 5px 20px;
        margin: 0 5px;
    }

    /*内页banner*/
    .page-banner-area {
        padding: 40px 0;
    }
    .page-banner-area h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .page-banner-area ul li {
        font-size: 13px;
    }

    /*列表*/
    .page-channel-area{
        margin: 30px 0;
    }
    .page-channel-area .channel-title{
        font-size: 18px;
    }

    /*内容详情*/
    .page-details-area{
        margin: 30px 0;
    }
    .page-details-area .details-title{
        font-size: 22px;
    }

    /*侧边*/
    .widget-area{
        padding-top: 20px;
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}