﻿@charset "utf-8";

/*标签通用初始化*/
@import "init.css";

/*标签自定义初始化*/
img {
    width: 100%;
    height: 100%;
}

ul {
    /* width: 100%; 不能用 */
    height: 100%;
}

a {
    /* width: 100%; 不能用 */
    height: 100%;
}

.link_text a, .link_button a, .link_menu a {
    display: block;
}

.link_button a {
    text-indent: -999em;
}

.link_menu a, .link_menu a:hover {
    color: transparent;
}

/* 布局-----------------------------------*/
.flex {
    display: flex;
}

.flex_column {
    flex-direction: column;
}

.flex_wrap {
    flex-wrap: wrap;
}

/* 布局 横向对齐-----------------------------------*/
.flex_row_start {
    justify-content: flex-start;
}

.flex_row_end {
    justify-content: flex-end;
}

.flex_row_center {
    justify-content: center;
}

.flex_row_between {
    justify-content: space-between;
}

.flex_row_around {
    justify-content: space-around;
}

.flex_row_evenly {
    justify-content: space-evenly;
}

/* 布局 横向对齐（有换行）-----------------------------------*/
.flex_muti_row_start {
    align-content: flex-start;
}

.flex_muti_row_end {
    align-content: flex-end;
}

.flex_muti_row_center {
    align-content: center;
}

.flex_muti_row_between {
    align-content: space-between;
}

.flex_muti_row_around {
    align-content: space-around;
}

.flex_muti_row_evenly {
    align-content: space-evenly;
}

/* 布局 纵向对齐-------------------------------------*/
.flex_col_start {
    align-items: flex-start;
}

.flex_col_end {
    align-items: flex-end;
}

.flex_col_center {
    align-items: center;
}

.flex_col_baseline {
    align-items: baseline;
}

.flex_col_stretch {
    align-items: stretch;
}

/*列表行字数限制*/
.list_text_limit li {
    position:relative;
    padding-right: 1rem;
}

.list_text_limit li h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1rem;
}

/*列表时间*/
.list_time li a {
    display: flex;
    justify-content: space-between;
}

.list_time li h3 {
    width: 90%;
    flex-grow: 1;
    flex-shrink: 100;
}

.list_time li span {
    text-indent: 0;
}

/*列表圆点*/
.list_circel_dot li:before {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top:50%;
    transform: translateY(-50%);
    width:0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #d5d5d6;
}

.list_circel_dot li {
    text-indent: 2rem;
}

/*列表方点*/
.list_square_dot li:before {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top:50%;
    transform: translateY(-50%);
    width: 0.48rem;
    height: 0.48rem;
    background-color: #dd0000;
}

.list_square_dot li {
    text-indent: 2rem;
}

/*列表三角形*/
.list_arrow_dot li {
    position: relative;
}

.list_arrow_dot li:before {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    left: 2rem;
    top:50%;
    transform: translateY(-50%);
    width:0;
    height:0;
    border-top: solid 0.25rem transparent;
    border-bottom: solid 0.25rem transparent;
    border-left: solid 0.5rem #535252;
}

/*右上角三角形*/
.top_right_arrow {
    position: relative;
}

.top_right_arrow:after {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    right:0;
    top:0;
    width:0;
    height:0;
    border-bottom: solid 3.563rem transparent;
    border-right: solid 2.188rem #fff;
}

/* 等比绽放布局 ---------------------------------------------------------------*/
.box_root {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.box_root:before{
    content:"";
    display: inline-block;
    padding-bottom: 100%;
}

.box_sub {
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* 轮播 ---------------------------------------------------------------*/
.slick-slider, .slick-list, .slick-track {
    height:100%;
}

.slick-dots {
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.slick-dots li {
    z-index: 1;
    width:1rem;
    height: 1rem;
    margin: 0 0.5rem 0 0;
    border-radius:50%;
    background-color:#ccc;
    opacity: 1;
    cursor:pointer;
}

.slick-dots li:last-child {
    margin: 0;
}

.slick-dots li.slick-active {
    background-color: deepskyblue;
}

.slick-dots span {
    display: block;
    font-size: 0.75rem;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}

.slick-arrow {
    display: inline-block;
    vertical-align: middle;
    width:1rem;
    height: 1.125rem;
    cursor: pointer;
    overflow: hidden;
    text-indent: -999em;
    border: none;
    margin: 0 1.875rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-color: transparent;
}

.slick-prev {
    width:0;
    height:0;
    border-top: solid 0.5rem transparent;
    border-bottom: solid 0.5rem transparent;
    border-right: solid 1rem deepskyblue;
}

.slick-next {
    width:0;
    height:0;
    border-top: solid 0.5rem transparent;
    border-bottom: solid 0.5rem transparent;
    border-left: solid 1rem deepskyblue;

}

/* 其它 ---------------------------------------------------------------*/
/*
透明度设置
background-color:rgba(59,57,57,.7);

透明度设置
filter: alpha(Opacity=85);
-moz-opacity: 0.85;
opacity: 0.85;

顺时针旋转360度
transform: rotate(360deg);
 */
