/********************************************** 响应式样式 **********************************************/



/* 媒体查询：最大宽度1600px */
@media (max-width: 1600px) {
    .head_nav_area {
        max-width: 1300px;
        padding: 15px 20px;
    }
    .article_info {
        width: 1300px;
    }
    .article_info .bg_temp {
        width: 630px;
    }
    .list_item_top_three_one {
        width: 600px;
    }
}

/* 媒体查询：最大宽度1400px */
@media (max-width: 1400px) {
    .head_nav_area {
        max-width: 1100px;
    }
    .banner_text_max_title {
        font-size: 50px;
        width: 700px;
    }
    .banner_text_max_title_1 {
        font-size: 50px;
    }
    .article_info {
        width: 1100px;
    }
    .article_info .bg_temp {
        width: 530px;
    }
    .list_item_top_three_one {
        width: 500px;
    }
    /* 导航居中样式调整 */
    .head_nav_center {
        gap: 20px;
    }
}

/* 媒体查询：最大宽度1200px */
@media (max-width: 1200px) {
    .head_nav_area {
        max-width: 960px;
    }
    .banner {
        height: 240px;
    }
    .banner_text_max_title {
        font-size: 40px;
        width: 550px;
    }
    .banner_text_max_title_1 {
        font-size: 40px;
    }
    .banner_text_min_title {
        font-size: 20px;
        white-space: nowrap;
    }
    .article_info {
        width: 960px;
        flex-direction: column;
        gap: 20px;
    }
    .article_info .bg_temp {
        width: 100%;
    }
    .list_item_top_three_one {
        width: 100%;
    }
    /* 隐藏背景装饰 */
    #app img[src="images/bg_left.png"],
    #app img[src="images/bg_right.png"] {
        display: none;
    }
}

/* 媒体查询：最大宽度992px */
@media (max-width: 992px) {
    .head_nav_area {
        max-width: 768px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .head_nav_center {
        order: 3;
        width: 100%;
		display:none;
        justify-content: center;
        gap: 15px;
    }
    .banner {
        height: 200px;
    }
    .banner_text_max_title {
        font-size: 32px;
        width: 450px;
    }
    .banner_text_max_title_1 {
        font-size: 32px;
    }
    .banner_text_min_title {
        font-size: 18px;
        white-space: nowrap;
    }
    .article_info {
        width: 768px;
    }
    /* 修复导航区域在小屏幕上的布局问题 */
    .head_nav_area {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: 
            "left right"
            "center center";
        align-items: center;
    }
    .head_nav_left {
        grid-area: left;
    }
    .head_nav_right {
        grid-area: right;
    }
    .head_nav_center {
        grid-area: center;
    }
}

/* 媒体查询：最大宽度768px */
@media (max-width: 768px) {
    .head_nav_area {
        max-width: 100%;
        padding: 15px;
    }
    .article_describ_content p{text-overflow:ellipsis;overflow:hidden;}
    
    .aside{margin-top:20px;}
    .pcxian{display:none;}
    .mxian {
    display: block!important;
}
    .head_nav_left_title {
        font-size: 22px;
    }
    .article_describ_content{width:100%!important;overflow:hidden;}
    .banner_area {
        width: 100%;
        height: 180px;
    }
    .container{display:block!important;}
    .banner {
        height: 180px;
    }
    .banner_text_max_title {
        font-size: 28px;
        width: 90%;
        white-space: normal;
        text-align: center;
    }
    .banner_text_max_title_1 {
        font-size: 28px;
    }
    .banner_text_min_title {
        font-size: 16px;
        white-space: nowrap;
    }
    .banner_center,
    .banner_text_center,
    .banner_text_left_top,
    .banner_text_left_bottom,
    .banner_text_right_top,
    .banner_text_right_bottom {
        display: none;
    }
    .article_info {
        width: 100%;
    }
    /* 导航链接样式调整 */
    .head_nav_center {
        flex-wrap: wrap;
    }
    .head_nav_center a {
        font-size: 12px;
    }
    /* 确保文本在小屏幕上正确显示 */
    .text_1 {
        -webkit-line-clamp: 2;
    }
}

/* 媒体查询：最大宽度576px */
@media (max-width: 576px) {
    .head_nav_area {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .head_nav_left {
        text-align: center;
    }
    .head_nav_left_title {
        font-size: 20px;
    }
    .head_nav_right {
        width: 100%;
        justify-content: center;
    }
    .banner_area {
        height: 150px;
    }
    .banner {
        height: 150px;
    }
    .banner_text_max_title {
        font-size: 24px;
    }
    .banner_text_max_title_1 {
        font-size: 24px;
    }
    .banner_text_min_title {
        font-size: 14px;
        top: 30px;
        white-space: nowrap;
    }
    /* 导航链接垂直排列 */
    .head_nav_center {
        flex-direction: column;
        gap: 10px;
    }
    .head_nav_center a {
        font-size: 14px;
    }
    /* 文章列表样式调整 */
    .article_info .bg_temp {
        height: auto;
        padding: 15px;
    }
    .list_item_top_three_hover .list_item_top_three_hover_left_img {
        width: 60px;
        height: 40px;
    }
    /* 修复文章列表在小屏幕上的显示问题 */
    .list_item_top_three_hover {
        flex-wrap: wrap;
    }
    .list_item_top_three_hover_right {
        width: 100%;
        margin-top: 5px;
    }
}

/* 媒体查询：最大宽度480px */
@media (max-width: 480px) {
    .head_nav_right_cooperate {
        margin-right: 10px;
    }
    .head_nav_right_cooperate_left_icon {
        width: 35px;
    }
    .head_nav_right_cooperate_img {
        width: 20px;
        height: 20px;
    }
    .head_nav_right_cooperate_text {
        font-size: 12px;
    }
    .head_nav_right_logon {
        font-size: 12px;
        padding: 0 8px;
        white-space: nowrap;
    }
    .banner_text_max_title {
        font-size: 20px;
    }
    .banner_text_max_title_1 {
        font-size: 20px;
    }
}

/* 媒体查询：最大宽度360px */
@media (max-width: 360px) {
    .head_nav_left_title {
        font-size: 18px;
    }
    .banner_area {
        height: 120px;
    }
    .banner {
        height: 120px;
    }
    .banner_text_min_title {
        font-size: 12px;
        top: 20px;
        white-space: nowrap;
    }
    .banner_text_max_title {
        font-size: 18px;
        top: 60px;
    }
    .banner_text_max_title_1 {
        font-size: 18px;
    }
}

/* 确保图片在响应式布局中正确缩放 */
img {
    max-width: 100%;
    height: auto !important;
}

@media (max-width: 800px) {
/********************************************** 响应式样式 **********************************************//* 网站标题 */
.head_nav_left_title {
    color: #005FCD;
    font-size: 27px;
}
/* 网站标题英文 */
.head_nav_left_en {
    font-size: 10px;
}

/********************************************** 页面头部导航样式 **********************************************/

/********************************************** banner图样式 **********************************************/
.banner {
    width: 100%;
    height: 280px;
    /*background-color: #f9eeea;*/
    /*margin-bottom: 25px;*/
    /*margin: 20px 0;*/
}
/* banner图版心 */
.banner_area {
    width: 1530px;
    height: 280px;
    margin: 0 auto;
    position: relative;
}
.banner_left {
    position: absolute;
    left: 0;
}
.banner_right {
    position: absolute;
    right: 0;
}
.banner_center {
    position: absolute;
    left: 50%;
    top: 192px;
    transform: translateX(-45%);
}
.banner_text_min_title {
    position: absolute;
    font-size: 24px;
    color: #3D3D3D;
        white-space: nowrap;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    z-index: 2;
}
.banner_text_max_title {
    font-size: 64px;
    color: #005FCD;
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    z-index: 2;
    width: 914px;
    font-weight: bold;
    white-space: nowrap;
}
.banner_text_max_title_1 {
    font-size: 64px;
    color: #DFA900;
    font-weight: bold;
}
.banner_text_center {
    position: absolute;
    font-size: 30px;
    color: #ffffff;
    display: flex;
    align-items: center;
    left: 727px;
    top: 192px;
    z-index: 3;
}
.banner_text_left_top {
    position: absolute;
    font-size: 18px;
    color: #3D3D3D;
    display: flex;
    align-items: center;
    top: 185px;
    left: 376px;
}
.banner_text_left_bottom {
    position: absolute;
    font-size: 18px;
    color: #3D3D3D;
    display: flex;
    align-items: center;
    top: 225px;
    left: 376px;
}
.banner_text_right_top {
    position: absolute;
    font-size: 18px;
    color: #3D3D3D;
    display: flex;
    align-items: center;
    top: 185px;
    left: 868px;
}
.banner_text_right_bottom {
    position: absolute;
    font-size: 18px;
    color: #3D3D3D;
    display: flex;
    align-items: center;
    top: 225px;
    left: 868px;
}
.banner_text_icon {
    width: 24px;
    height: 24px;
    margin-right: 3px;
}
/********************************************** banner图样式 **********************************************/
/*************************************************************************** 文章内容 ***************************************************************************/
.contrast_web_body {
    /*width: 1530px;*/
    /*margin: 0 auto;*/
}
/*************************************************************************** 文章内容 ***************************************************************************/

/********************************************** 文章板块/行业信息板块 **********************************************/
.article_info {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 1530px;
    margin: 0 auto;
}

/***************************** 模块公共样式 *****************************/
/* 标题图标 */
.article_info .title_img {
    width: 20px;
    height: 20px;
}
/* 标题文字 */
.article_info .title_text {
    font-size: 18px;
}
/* 列表盒子 */
.article_info .bg_temp {
    width: 750px;
    height: 475px;
    background-color: #fff;
    border-radius: 20px;
    /*padding: 20px 30px;*/

}
/* 文章列表前三条默认样式 */
.article_info .list_item_top_three {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    cursor: pointer;
}
/* 文章列表前三条默认index颜色 */
.article_info .list_item_top_three_index_color_1 {
    color: #FF8244;
}
.article_info .list_item_top_three_index_color_2 {
    color: #FF6000;
}
.article_info .list_item_top_three_index_color_3 {
    color: #FAA942;
}
/* 文章列表前三条默认序号 */
.article_info .list_item_top_three .list_item_top_three_index {
    margin-right: 10px;
}
/* 文章列表前三条默认文章图片 */
.article_info .list_item_top_three .list_item_top_three_img {
    width: 50px;
    height: 35px;
    /*background-color: skyblue;*/
    border-radius: 5px;
    margin-right: 10px;
}
/* 文章列表前三条默认文字 */
.article_info .list_item_top_three .list_item_top_three_text {}
.list_item_top_three_one {
    width: 720px;
    height: 70px;
    padding: 10px;
}
.list_item_top_three_one:hover{
    background-color: #E8EFF7;
}
.list_item_top_three_one:hover .temp_title_color {
    color: #005FCD;
}
.list_item_top_three_one:hover .list_item_top_three_hover_right_num_number {
    color: #005FCD;
}
.list_item_top_three_one:hover .list_item_top_three_hover_right_num_icon_good {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: url("/img/index/good_list_new_is.png") no-repeat;
    background-size: cover;
}
.list_item_top_three_one:hover .list_item_top_three_hover_right_num_icon_look {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: url("/img/index/look_list_new_is.png") no-repeat;
    background-size: cover;
}

/* 文章列表前三条鼠标移入样式 */
.article_info .list_item_top_three_hover {
    display: flex;
    align-items: center;
    /*margin-bottom: 10px;*/
    /*padding:;*/
    border-radius: 10px;
    cursor: pointer;
    position: relative;
	flex-wrap: nowrap;
}

/* 文章列表前三条鼠标移入样式左侧图片 */
.list_item_top_three_hover .list_item_top_three_hover_left_img {
    width: 80px;
    height: 48px;
    /*background-color: skyblue;*/
    border-radius: 5px;
    margin-right: 10px;
}
/* 文章列表前三条鼠标移入样式左侧序号 */
.list_item_top_three_hover .list_item_top_three_hover_left_index {
    width: 20px;
    height: 15px;
    text-align: center;
    line-height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #DF1600;
    border-radius: 5px 0 5px 0;
    color: #fff;
}
/* 文章列表前三条鼠标移入样式右侧 */
.article_info .list_item_top_three_hover_right {
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
/* 文章列表前三条鼠标移入样式右侧文字 */
.article_info .list_item_top_three_hover_right_text {
    line-height: 14px;
}
/* 文章列表前三条鼠标移入样式右侧点赞/观看次数--盒子 */
.article_info .list_item_top_three_hover_right_num {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* 文章列表前三条鼠标移入样式右侧点赞/观看次数 */
.article_info .list_item_top_three_hover_right_num_item {
    display: flex;
    align-items: center;
    width: 100px;
}
/* 文章列表前三条鼠标移入样式右侧右侧图标 */
.article_info .list_item_top_three_hover_right_num_icon_good {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: url("/img/index/good_list_new.png") no-repeat;
    background-size: cover;
}
.article_info .list_item_top_three_hover_right_num_icon_look {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: url("/img/index/look_list_new.png") no-repeat;
    background-size: cover;
}
/* 文章列表前三条鼠标移入样式右侧数量 */
.article_info .list_item_top_three_hover_right_num_number {

}
/* 列表替他标题样式 */
.article_info .list_item_top_three_other {
    padding: 10px;
    display: flex;
    align-items: center;
}
.article_info .list_item_top_three_other_index {
    color: #999;
    margin-right: 10px;
}
.article_info .list_item_top_three_other_text {

}
.article_info .temp_title_color:hover {
    /*color: #FF7214;*/
    /*cursor: pointer;*/
}
/***************************** 模块公共样式 *****************************/

/********* 文章板块 *********/
.article_tep {}
/* 文章板块标题 */
.article_tep_title {
    display: flex;
    align-items: center;
    /*padding-bottom: 10px;*/
    background-color: #73A7E4;
    color: #fff;
    border-radius: 20px 20px 0 0;
    height: 50px;
    padding: 0 10px;
}
.article_tep_list {
    overflow-y: scroll;
    height: 410px;
    /*padding-right: 20px;*/
    background-color: #fff;
    padding: 10px;
    /*border-radius: 0 0 20px 20px;*/
}
/* 滚动条的宽度 */
.article_tep_list::-webkit-scrollbar {
    width: 10px;
}
/* 轨道的背景色 */
.article_tep_list::-webkit-scrollbar-track {
    background: #fff;
}
/* 滚动条滑块 */
.article_tep_list::-webkit-scrollbar-thumb {
    background: #E0E0E0;
    border-radius: 5px;
}
/* 文章板块标题图标 */
.article_tep_title_icon {
    margin-right: 10px;
}
/* 文章板块标题文字 */
.article_tep_title_text {}

/********* 行业信息板块 *********/
.industry_info {}
/* 行业信息板块标题 */
.industry_info_title {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
/* 行业信息板块标题图标 */
.industry_info_title_icon {
    margin-right: 10px;
}
/* 行业信息板块标题文字 */
.industry_info_title_text {}
.industry_info_list {
    overflow-y: scroll;
    height: 410px;
    padding-right: 20px;
}
/* 滚动条的宽度 */
.industry_info_list::-webkit-scrollbar {
    width: 10px;
}
/* 轨道的背景色 */
.industry_info_list::-webkit-scrollbar-track {
    background: #fff;
}
/* 滚动条滑块 */
.industry_info_list::-webkit-scrollbar-thumb {
    background: #E0E0E0;
    border-radius: 5px;
}
/*************************************************************************** 文章内容 ***************************************************************************/


/*************************************************************************** 资料包模块 ***************************************************************************/
.download_information {
    height: 110px;
    width: 1530px;
    /*background: linear-gradient(180deg, #E8EFF7 0%, #D6DCE5 100%);*/
    background-color: #D6DCE5;
    border-radius: 10px;
    margin: 20px auto 0;
    padding: 0 210px;
    display: flex;
    align-items: center;
    position: relative;
}
/* 资料包模块左侧图片 */
.download_information .download_information_img {
    width: 160px;
    height: 110px;
    margin-right: 10px;
}
/* 资料包模块中间文字 */
.download_information .download_information_text {
    /*width: 490px;*/
    font-size: 24px;
    color: #005FCD;
    font-weight: bold;
}
/* 椭圆 */
.download_information .download_information_ellipse {
    position: absolute;
    width: 354px;
    height: 70px;
    right: 332px;
}
/* 资料包右侧按钮 */
.download_information .download_information_button {
    position: absolute;
    right: 120px;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #005FCD;
    border-radius: 40px;
    cursor: pointer;
    width: 82px;
    height: 46px;
    justify-content: center;
}
.download_information .download_information_button .download_information_button_img {
    width: 20px;
    height: 20px;
    /*margin-right: 10px;*/
}
/*.download_information .download_information_button .download_information_button_text {*/
/*    font-size: 18px;*/
/*}*/
/*************************************************************************** 资料包模块 ***************************************************************************/

/*************************************************************************** 筛选模块 ***************************************************************************/
.list_score_box {
    background-color: #D5DCE4;
    padding: 10px;
    margin-top: 25px;
    padding-bottom: 50px;
    border-radius: 100px 100px 0 0;
    background-image: url("/img/index/list_bg_item.png");
    background-position: 0 0; /* 调整至无间隙位置 */
}

.score_filter {
    height: 60px;
    margin-top: 40px;
    background-color: #fff;
    border-radius: 10px;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* 筛选内容 */
.score_filter .score_filter_info {
    height: 60px;
    display: flex;
    align-items: center;
}
.score_filter .score_filter_info .score_filter_one {
    margin-right: 40px;
}
.score_filter .score_filter_info .score_filter_two {
    margin-right: 40px;
}
.score_filter .score_filter_info .score_filter_text {
    font-size: 14px;
}
/* 展开图标 */
.score_filter .score_filter_open {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background-color: #DDE4EC;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.score_filter .score_filter_open_img {
    height: 20px;
}
/* 筛选项 */
.score_filter_radio {
    height: 180px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px 0 rgba(58,90,126,0.24);
    padding: 35px 45px;
    display: flex;
}
/* 综合推荐指数 */
.score_filter_radio .score_filter_radio_recommend {

}
.score_filter_radio_recommend .radio_recommend_title {
    margin-bottom: 20px;
    font-size: 16px;
}
/* 综合推荐指数单选列表 */
.score_filter_radio_recommend .radio_recommend_select {
    display: flex;
}
/* 综合推荐指数单个选项 */
.radio_recommend_select .radio_recommend_item {
    width: 200px;
    height: 45px;
    background-color: #FFECDD;
    border: 1px solid #FF7214;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    margin-right: 60px;
}
/*!* 单选未选中状态 *!*/
/*.radio_recommend_item .radio_recommend_item_radio_btn {*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    border-radius: 18px;*/
/*    border: 1px solid #FF7214;*/
/*}*/
/*!* 当单选框处于选中状态时的样式 *!*/
/*.radio_recommend_item_radio_bt_is {*/
/*    background: url(/img/index/radio.png) no-repeat;*/
/*    background-size: cover;*/
/*    border: 0;*/
/*}*/

/* 自定义单选框样式 */
.radio_ranking_item {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.radio_ranking_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #000;
}

/* 设置选中状态的样式 */
input[type="radio"]:checked + .radio_ranking_item::before {
    background-color: #000; /* 或其他颜色 */
}




.radio_recommend_select .radio_recommend_item .radio_recommend_item_icon {
    width: 18px;
    height: 18px;
}
.radio_recommend_select .radio_recommend_item .radio_recommend_item_icon_no {

}
/* 网站排名 */
.score_filter_radio .score_filter_radio_ranking {
    /*margin-top: 20px;*/
}
/* 网站排名标题 */
.score_filter_radio_ranking .radio_ranking_title {
    font-size: 16px;
    margin-bottom: 20px;
}
/* 网站排名单选列表 */
.score_filter_radio_ranking .radio_ranking_select {
    display: flex;
}
/* 网站排名单选 */
.radio_ranking_select .radio_ranking_item {
    width: 200px;
    height: 45px;
    background-color: #FFECDD;
    border: 1px solid #FF7214;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    margin-right: 60px;
}
/* 单选未选中状态 */
.radio_ranking_item .radio_ranking_item_radio_btn {
    width: 18px;
    height: 18px;
    border-radius: 18px;
    border: 1px solid #FF7214;
}
/* 当单选框处于选中状态时的样式 */
.radio_ranking_item input[type="radio"]:checked + .radio_ranking_item_radio_btn {
    background: url(/img/index/radio.png) no-repeat;
    background-size: cover;
    border: 0;
}

/*************************************************************************** 筛选模块 ***************************************************************************/



/*************************************************************************** 筛选列表 ***************************************************************************/
.search_ranking_list {
    margin-top: 20px;
}
.search_ranking_list_item {
    background-color: #fff;
    margin-bottom: 10px;
    height: auto;
    border-radius: 10px;
    display: flex;
}
/* 左侧网站信息 */
.search_ranking_list_item .list_item_info_top {
    position: relative;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
}
.list_item_info_top .ranking_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 420px;
}
.list_item_info_top .ranking_icon {
    position: absolute;
    width: 80px;
    height: 90px;
    left: -8px;
    top: -11px;
}
.list_item_info_top .ranking_text {
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 24px;
    color: #777777;
}
.list_item_info_top .ranking_logo_name {
    display: flex;
    align-items: center;
    margin-left: 70px;
    position: absolute;
    cursor: pointer;
        width: 35%;
        overflow: hidden;
}
.ranking_logo_name .ranking_logo_box {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 13px;
}
.ranking_logo_name .ranking_logo {
    width: 35px;
    height: 35px;
}
.ranking_logo_name .ranking_name {
    font-size: 16px;
    color: #3D3D3D;
    white-space: nowrap;

}
/* 好评率&点赞数&查看更多按钮 */
.list_item_info_top .ranking_number_info {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    margin-right: 0;
}
/* 好评率 */
.list_item_info_top .good_evaluate_probability {
    display: flex;
    align-items: center;
    margin-right: 1px;
}
.good_evaluate_probability .good_evaluate_icon{
    width: 16px;
    height: 16px;
}
.good_evaluate_probability .good_evaluate_text{
    font-size: 14px;
}
/* 点赞数 */
.list_item_info_top .click_accumulate_number {
    display: flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
}
.click_accumulate_number .click_accumulate_icon {
    width: 16px;
    height: 16px;
}
.click_accumulate_number .good_evaluate_text {
    font-size: 14px;
}
/* 查看更多按钮 */
.look_more {
    width: auto;
    height: 23px;
	padding:0 10px;
    border-radius: 23px;
    background: #E8EFF7;
    border: 1px solid #73A7E4;
    text-align: center;
    font-size: 14px;
    color: #005FCD;
    cursor: pointer;
}
.list_item_info_detail {
    position: relative;
    left: 0;
    /*right: 0;*/
    top: 10px;
    width: 1530px;
    padding: 0 20px 20px;
}
.list_item_info_detail .list_item_info_detail_title {
    font-size: 16px;
    color: #222222;
    font-weight: 500;
    text-align: center;
    background-color: #E8EFF7;
    padding: 3px 0;
}
.list_item_info_detail .list_item_info_detail_content {
    background: url(/img/index/list_item_detail_bg.png);
    margin-top: 5px;
    height: 155px;
    padding: 32px;
    border-radius: 0 0 0 0;
}
.list_item_info_bottom {
    /*width: 1250px;*/
    height: 210px;
    margin-top: 10px;
    padding: 0 15px;
    display: flex;
}

.fade-enter {
    opacity: 0;
}
.fade-enter-active {
    transition: opacity 0.5s;
}
.fade-leave-to {
    opacity: 0;
}
.fade-leave-active {
    transition: opacity 0.5s;
}



.fadeDetail-enter {
    opacity: 0;
}
.fadeDetail-enter-active {
    transition: opacity 0.3s;
}
.fadeDetail-leave-to {
    opacity: 0;
}
.fadeDetail-leave-active {
    transition: opacity 0.3s;
}
.list_item_info_bottom .list_item_info_bottom_item {
    width: 100%;
    margin-right: 5px;
}
.list_item_info_bottom_item .bottom_item_title{
    width: 100%;
    height: 30px;
    background-color: #E8EFF7;
    font-size: 16px;
    color: #222222;
    text-align: center;
    line-height: 30px;
    border-radius: 3px;
}
.list_item_info_bottom_item .bottom_item_content{
    width: 100%;
    height: auto;
    background: url(/img/index/bottom_item_content.png) no-repeat;
    background-size: cover;
    margin-top: 5px;
    font-size: 14px;
    color: #555555;
    padding: 10px;
    border-radius: 3px;
}

}
/* 右侧网站评分 */
.search_ranking_list_item .list_item_score {

/* 响应式样式 - search_ranking_list */
@media (max-width: 1600px) {
    .search_ranking_list_item {
        flex-direction: column;
        height: auto;
    }
    .list_item_info_top {
        width: 100% !important;
        position: relative !important;
        height: 60px !important;
    }
    .list_item_info_top .ranking_bg {
        width: 350px !important;
    }
    .list_item_info_detail {
        width: 100% !important;
        padding: 0 15px 15px !important;
    }
    .list_item_info_bottom {
        flex-wrap: wrap;
        height: auto !important;
    }
    .list_item_info_bottom_item {
        width: calc(25% - 5px) !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 1400px) {
    .list_item_info_top .ranking_bg {
        width: 300px !important;
    }
    .list_item_info_top .ranking_number_info {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .good_evaluate_probability, .click_accumulate_number {
        margin-right: 40px !important;
    }
    .list_item_info_bottom_item {
        width: calc(33.333% - 5px) !important;
    }
}

@media (max-width: 1200px) {
    .search_ranking_list_item {
        padding: 10px;
    }
    .list_item_info_top .ranking_text {
        font-size: 20px !important;
    }
    .ranking_logo_name {
        margin-left: 100px !important;
    }
    .ranking_logo_name .ranking_name {
        font-size: 16px !important;
    }
    .list_item_info_detail_content {
        height: auto !important;
        min-height: 120px !important;
        padding: 20px !important;
    }
    .bottom_item_title {
        font-size: 14px !important;
    }
    .bottom_item_content {
        font-size: 13px !important;
        height: 140px !important;
    }
}

@media (max-width: 992px) {
    .list_item_info_top {
        height: auto !important;
        padding-bottom: 50px !important;
    }
    .list_item_info_top .ranking_number_info {
        position: relative !important;
        top: 50px !important;
        right: auto !important;
        justify-content: center !important;
    }
    .good_evaluate_probability, .click_accumulate_number {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }
    .list_item_info_bottom_item {
        width: calc(50% - 5px) !important;
    }
}

@media (max-width: 768px) {
    .list_item_info_top .ranking_bg {
        width: 250px !important;
    }
    .list_item_info_top .ranking_icon {
        width: 60px !important;
        height: 70px !important;
        left: 0 !important;
    }
    .ranking_logo_name {
        margin-left: 80px !important;
    }
    .ranking_logo_box {
        width: 35px !important;
        height: 35px !important;
    }
    .ranking_logo {
        width: 25px !important;
        height: 25px !important;
    }
    .list_item_info_detail_title {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .list_item_info_top .ranking_bg {
        width: 200px !important;
    }
    .list_item_info_top .ranking_text {
        font-size: 16px !important;
        left: 15px !important;
    }
    .ranking_logo_name {
        margin-left: 70px !important;
    }
    .ranking_logo_name .ranking_name {
        font-size: 14px !important;
    }
    .list_item_info_bottom_item {
        width: 100% !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .list_item_info_top .ranking_number_info {
        flex-direction: column;
        align-items: center;
    }
    .good_evaluate_probability, .click_accumulate_number {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 10px !important;
    }
    .list_item_info_detail_content {
        padding: 15px !important;
    }
	.search_ranking_list_item .list_item_score {
		position: relative!important;
	}

}

@media (max-width: 360px) {
    .search_ranking_list_item {
        padding: 5px;
    }
    .list_item_info_top .ranking_bg {
        width: 180px !important;
    }
    .ranking_logo_name {
        margin-left: 60px !important;
    }
    .look_more {
        width: 70px !important;
        font-size: 12px !important;
    }
    width: 100%;
	position: relative!important;
}
    width: 100%;
    height: auto;
    background-color: #005FCD;
    border-radius: 10px;
	position: relative!important;
    padding: 2px;
}
.list_item_score .list_item_score_title {
    display: flex;
    margin-top: 12px;
    margin-bottom: 8px;
    margin-left: 15px;
}
.list_item_score_title .list_item_score_title_text {
    font-size: 14px;
    color: #FFFFFF;
}
.list_item_score_title .list_item_score_title_score {}
.list_item_score_content {
    /*width: 235px;*/
    /*height: 227px;*/
    background-color: #fff;
    border-radius: 10px;
    padding: 9px;
}
.list_item_score_content .list_item_score_content_operate {
    margin-top: 15px;
    display: flex;
}
.list_item_score_content_operate .list_item_score_content_collect {
    display: flex;
    margin-left: 5px;
}
.list_item_score_content_operate .list_item_score_content_collect_img {
    width: 20px;
    height: 20px;
        vertical-align: middle;
}
.list_item_score_content_operate .list_item_score_content_collect_number {
    font-size: 14px;
    line-height: 26px;
    color: #888888;
}
.list_item_score_content .operate_submit {
    width: auto;
    height: auto;
    font-size: 14px;
    background: #005FCD;
    border-radius: 23px;
    text-align: center;
    line-height: 23px;
    color: #fff;
    margin-left: 50px;
    cursor: pointer;
}
.list_item_score_content .list_item_score_content_item {
    display: flex;
    margin-bottom: 11px;
}
.list_item_score_content_item:nth-child(6) {
    margin-bottom: 0;
}
.list_item_score_content_item .list_item_score_content_item_label {
    width: 112px;
    font-size: 12px;
    margin-right: 6px;
}
.list_item_score_content_item .list_item_score_content_item_content {}
.search_ranking_bottom_button {
    width: 123px;
    height: 38px;
    border-radius: 19px;
    background: #005FCD;
    color: #fff;
    text-align: center;
    line-height: 38px;
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
/*************************************************************************** 筛选列表 ***************************************************************************/


/*************************************************************************** 中国代购相关网站 ***************************************************************************/
@media(max-width:800px)
{
.china_same_web {
    width: 100%;
    height: auto;
    background-color: #fff;
    /*margin-top: 118px;*/
    padding-top: 45px;
}
.china_same_web_box {
    width: 100%;
    margin: 0 auto;
}
.china_same_web_title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}
.china_same_web_list {
    display: flex;
    flex-wrap: wrap;
	gap:10px;
	margin-left:10px;
}
.china_same_web_list_item {
    width: calc(50% - 10px);
    height: 100px;
    background: #E8EFF7;
    border-radius: 10px;
	justify-content:center;
    padding: 0;
    margin-right: 0;
        align-items: center;
        display: flex;
    margin-bottom: 20px;
}
.china_same_web_list_item:nth-child(5n) {
    margin-right: 0;
}
.china_same_web_list_item_top {
    display: flex;
    align-items: center;
}
.china_same_web_list_item_bottom {
    font-size: 14px;
    color: #898989;
    margin-top: 13px;
}
.web_list_item_logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.web_list_item-text {
    font-size: 16px;

}

/*************************************************************************** 中国代购相关网站 ***************************************************************************/


/*************************************************************************** 页面底部 ***************************************************************************/

.body_bottom {
    width: 100%;
    height: 60px;
    background-color: #D5DCE4;
    text-align: center;
    color: #898989;
    line-height: 60px;
}

/*************************************************************************** 页面底部 ***************************************************************************/


/*************************************************************************** 登录弹框 ***************************************************************************/
.login_dialog {
    width: 562px;
    height: 515px;
    border-radius: 10px;
    background-color: #fff;
    position: fixed;
    top: 175px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px 0 rgba(58,90,126,0.3);
    z-index: 5;
}
.login_dialog_top {
    height: 189px;
    background-color: #FAD3B6;
    border-radius: 10px 10px 0px 0px;
}
.login_dialog_form {
    margin-top: 20px;
    padding: 0 43px;
}
.login_dialog_form_title {
    font-size: 14px;
    font-weight: bold;
    color: #3D3D3D;
    margin-bottom: 20px;
}
.login_dialog_form_item {
    background-color: #F4F5F8;
    height: 46px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}
.login_dialog_form_label {
    width: 22px;
    height: 22px;
    margin-right: 13px;
}
.login_dialog_form_ipt {
    border: 0;
    background-color: #F4F5F8;
    outline:0;
    font-size: 16px;
    width: 265px;
    padding: 10px;
}
::-webkit-input-placeholder{
    color: #B2B2B2;
    font-size: 16px;
}
.get_code_text {
    color: #005FCD;
    font-size: 18px;
    cursor: pointer;
}
.get_code {
    flex: 1;
    text-align: center;
}
.login_button {
    /*width: 350px;*/
    height: 46px;
    background: #005FCD;
    border-radius: 5px;
    text-align: center;
    line-height: 46px;
    color: #fff;
    font-size: 18px;
}
.login_service {
    margin-top: 25px;
    text-align: center;
    color: #B2B2B2;
    display: flex;
    justify-content: center;
    padding: 0 43px;
}
.login_service span {
    color: #FF7214;
    cursor: pointer;
}
.login_dialog_close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 18px;
    border: 1px solid #333;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}
.login_dialog_close_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.head_nav_right_logout {
    align-items: center;
}
/*************************************************************************** 登录弹框 ***************************************************************************/
/*************************************************************************** 商务合作弹框 ***************************************************************************/
.cooperate_dialog {
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -200px;
    width: 300px;
    height: 250px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(58,90,126,0.24);
    padding: 20px 30px;
    border-radius: 10px;
    z-index: 10;
}
.cooperate_dialog_title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.cooperate_dialog_list {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
}
.cooperate_dialog_item {
    display: flex;
    align-items: center;
    /*margin-right: 20px;*/
    margin-bottom: 15px;
    cursor: pointer;
}
.cooperate_dialog_item_icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.cooperate_dialog_item_text {
    color: #232323;
}
.cooperate_dialog_clone {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 18px;
    cursor: pointer;
}
/*************************************************************************** 商务合作弹框 ***************************************************************************/


.china_same_web_list_item {
    cursor: pointer;
}
.ranking_list_good_like .ranking_list_like_no {
    align-items: center;
    display: flex;
    border: 1px solid #FF5100;
    width: 82px;
    height: 28px;
    border-radius: 28px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
}
.ranking_list_like_no .ranking_list_like_icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
.ranking_list_like_no .ranking_list_like_text {
    color: #FF5100;
}
.search_ranking_score_item {
    margin-bottom: 6px !important;
}


/*  蒙版  */
.model_bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: black;
    opacity: 0.5;
}




.login_button:hover{
    cursor: pointer;
}
/* 为登录底部提示导航 */
.bottom_nav {
    position: fixed;
    left: 0;
    right: 0;
    height: 70px;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottom_nav .bottom_nav_title {
    color: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 20px;
    margin-right: 20px;
}
.bottom_nav .bottom_nav_login_button {
    width: 80px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    background: #FF7214;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}

}
/********************************************** 响应式样式 **********************************************/
/* 媒体查询：最大宽度1600px */
@media (max-width: 1600px) {
    .head_nav_area {
        max-width: 1300px;
        padding: 15px 20px;
    }
    .article_info {
        width: 1300px;
    }
    .article_info .bg_temp {
        width: 630px;
    }
    .list_item_top_three_one {
        width: 600px;
    }
}

/* 媒体查询：最大宽度1400px */
@media (max-width: 1400px) {
    .head_nav_area {
        max-width: 1100px;
    }
    .banner_text_max_title {
        font-size: 50px;
        width: 700px;
    }
    .banner_text_max_title_1 {
        font-size: 50px;
    }
    .article_info {
        width: 1100px;
    }
    .article_info .bg_temp {
        width: 530px;
    }
    .list_item_top_three_one {
        width: 500px;
    }
    /* 导航居中样式调整 */
    .head_nav_center {
        gap: 20px;
    }
}

/* 媒体查询：最大宽度1200px */
@media (max-width: 1200px) {
    .head_nav_area {
        max-width: 960px;
    }
    .banner {
        height: 240px;
    }
    .banner_text_max_title {
        font-size: 40px;
        width: 550px;
    }
    .banner_text_max_title_1 {
        font-size: 40px;
    }
    .banner_text_min_title {
        font-size: 20px;
        white-space: nowrap;
    }
    .article_info {
        width: 960px;
        flex-direction: column;
        gap: 20px;
    }
    .article_info .bg_temp {
        width: 100%;
    }
    .list_item_top_three_one {
        width: 100%;
    }
    /* 隐藏背景装饰 */
    #app img[src="images/bg_left.png"],
    #app img[src="images/bg_right.png"] {
        display: none;
    }
}

/* 媒体查询：最大宽度992px */
@media (max-width: 992px) {
    .head_nav_area {
        max-width: 768px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .head_nav_center {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }
    .banner {
        height: 200px;
    }
    .banner_text_max_title {
        font-size: 32px;
        width: 450px;
    }
    .banner_text_max_title_1 {
        font-size: 32px;
    }
    .banner_text_min_title {
        font-size: 18px;
    }
    .article_info {
        width: 768px;
    }
}

/* 媒体查询：最大宽度768px */
@media (max-width: 768px) {
    .head_nav_area {
        max-width: 100%;
        padding: 15px;
    }
    .head_nav_left_title {
        font-size: 22px;
    }
    .banner_area {
        width: 100%;
        height: 180px;
    }
    .banner {
        height: 180px;
    }
    .banner_text_max_title {
        font-size: 28px;
        width: 90%;
        white-space: normal;
        text-align: center;
    }
    .banner_text_max_title_1 {
        font-size: 28px;
    }
    .banner_text_min_title {
        font-size: 16px;
    }
    .banner_center,
    .banner_text_center,
    .banner_text_left_top,
    .banner_text_left_bottom,
    .banner_text_right_top,
    .banner_text_right_bottom {
        display: none;
    }
    .article_info {
        width: 100%;
    }
    /* 导航链接样式调整 */
    .head_nav_center {
        flex-wrap: wrap;
    }
    .head_nav_center a {
        font-size: 12px;
    }
}

/* 媒体查询：最大宽度576px */
@media (max-width: 576px) {
    .head_nav_area {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .head_nav_left {
        text-align: left;
    }
    .head_nav_left_title {
        font-size: 20px;
    }
    .head_nav_right {
        width: 100%;
        justify-content: center;
    }
    .banner_area {
        height: 150px;
    }
    .banner {
        height: 150px;
    }
    .banner_text_max_title {
        font-size: 24px;
    }
    .banner_text_max_title_1 {
        font-size: 24px;
    }
    .banner_text_min_title {
        font-size: 14px;
        top: 30px;
        white-space: nowrap;
    }
    /* 导航链接垂直排列 */
    .head_nav_center {
        flex-direction: column;
        gap: 10px;
    }
    .head_nav_center a {
        font-size: 14px;
    }
    /* 文章列表样式调整 */
    .article_info .bg_temp {
        height: auto;
        padding: 15px;
    }
    .list_item_top_three_hover .list_item_top_three_hover_left_img {
        width: 60px;
        height: 40px;
    }
}

/* 媒体查询：最大宽度480px */
@media (max-width: 480px) {
    .head_nav_right_cooperate {
        margin-right: 10px;
    }
    .head_nav_right_cooperate_left_icon {
        width: 35px;
    }
    .head_nav_right_cooperate_img {
        width: 20px;
        height: 20px;
    }
    .head_nav_right_cooperate_text {
        font-size: 12px;
    }
    .head_nav_right_logon {
        font-size: 12px;
        padding: 0 8px;
        white-space: nowrap;
    }
    .banner_text_max_title {
        font-size: 20px;
    }
    .banner_text_max_title_1 {
        font-size: 20px;
    }
}

/* 媒体查询：最大宽度360px */
@media (max-width: 360px) {
    .head_nav_left_title {
        font-size: 18px;
    }
    .banner_area {
        height: 120px;
    }
    .banner {
        height: 120px;
    }
    .banner_text_min_title {
        font-size: 12px;
        top: 20px;
        white-space: nowrap;
    }
    .banner_text_max_title {
        font-size: 18px;
        top: 60px;
    }
    .banner_text_max_title_1 {
        font-size: 18px;
    }
}

/* 确保响应式导航中心区域正确显示 */
.head_nav_center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* 修复导航区域在小屏幕上的布局问题 */
@media (max-width: 992px) {
    .head_nav_area {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: 
            "left right"
            "center center";
        align-items: center;
    }
    .head_nav_left {
        grid-area: left;
    }
    .head_nav_right {
        grid-area: right;
    }
    .head_nav_center {
        grid-area: center;
		display:none;
    }
}

/* 确保图片在响应式布局中正确缩放 */
img {
    max-width: 100%;
    height: auto;
}

/* 确保文本在小屏幕上正确显示 */
@media (max-width: 768px) {
    .text_1 {
        -webkit-line-clamp: 2;
    }
}

/* 修复文章列表在小屏幕上的显示问题 */
@media (max-width: 576px) {
    .list_item_top_three_hover {
        flex-wrap: wrap;
    }
    .list_item_top_three_hover_right {
        width: 100%;
        margin-top: 5px;
    }
}

/********************************************** 响应式样式 **********************************************/


/* 手机版自适应样式 */
@media (max-width: 768px) {
  /* 整体容器调整 */
  div[style="position: relative; width: 1530px; margin: 0px auto;"] {
    width: 100% !important;
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* 列表项布局调整 */
  .search_ranking_list_item {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: block!important;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  /* 顶部信息区域 */
  .list_item_info_top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .ranking_logo_box {
    width: 40px;
    height: 40px;
  }

  .ranking_logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ranking_name {
    font-size: 16px;
    font-weight: bold;
  }

  .ranking_number_info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  .good_evaluate_text {
    font-size: 12px;
  }

  .look_more {
    font-size: 12px;
    color: #0066cc;
  }

  /* 底部信息区域 */
  .list_item_info_bottom {
    display: grid;
    gap: 8px;
	height:auto!important;
    margin-bottom: 15px;
  }

  .list_item_info_bottom_item {
    display: flex;
    flex-direction: column;
    font-size: 12px;
  }

  .bottom_item_title {
    font-weight: bold;
    margin-bottom: 3px;
    color: #666;
  }

  .bottom_item_content {
    color: #333;
    word-break: break-word;
  }

  /* 评分区域 */
  .list_item_score_title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .list_item_score_content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .list_item_score_content_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
  }

  .list_item_score_content_operate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
  }

  .operate_submit {
    padding: 6px 12px;
    background-color: #ff9900;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
  }

  /* 星级评分调整 */
  .el-rate__item {
    font-size: 16px !important;
  }
}

/* 平板适配 (可选) */
@media (min-width: 769px) and (max-width: 1024px) {
  div[style="position: relative; width: 1530px; margin: 0px auto;"] {
    width: 95% !important;
  }

  .list_item_info_bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}