﻿@charset "utf-8";

/*标签通用初始化*/
@import "init.css";

/*标签自定义初始化*/
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

img {
    width: 100%;
    height: 100%;
}

ul {
    /* width: 100%; 不能用 */
    height: 100%;
}

a {
    /* width: 100%; 不能用 */
    height: 100%;
}

.link_text a, .link_button a {
    display: block;
}

.link_button a {
    text-indent: -999rem;
}

/* 布局-----------------------------------*/
.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;
}

/*标题边框*/
.head_border {
    border-bottom: 1px solid #c7c7c7;
}

/*标题外间距*/
.head_padding {
    padding-bottom: 1rem;
}

/*标题外间距*/
.head_margin {
    margin-bottom: 2rem;
}

/*版块间距*/
.block_margin {
    margin-bottom: 3rem;
}

/*列表间距*/
.list_margin li {
    margin-bottom: 2rem;
}

/*列表行字数限制*/
.list_text_limit li {
    position:relative;
    padding-right: 2rem;
}

.list_text_limit li h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.list_text_limit ul, .list_text_limit li {
    width: 100%;
}


/*列表行文字对齐*/
.list_text_center li h3 {
    text-align: center;
}

/*列表行*/
.list_line_height li {
    line-height: 2.5;
}

/*列表间距*/
.list_padding_x li {
    padding: 0 0.5rem;
}

.list_padding_x {
    margin: 0 -0.5rem;
}

/*列表圆点*/
.list_circel_dot li:before {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    top:50%;
    left: 0;
    width:0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-top: -0.25rem;
    background-color: deepskyblue;
}

.list_circel_dot li {
    text-indent: 2rem;
}

/*列表方点*/
.list_square_dot li:before {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    top:50%;
    left: 0;
    width: 0.48rem;
    height: 0.48rem;
    margin-top: -0.24rem;
    background-color: deepskyblue;
}

.list_square_dot li {
    text-indent: 2rem;
}

/*列表时间*/
.list_time li span {
    position: absolute;
    top: 0;
    right: 0;
}

.list_time li {
    padding-right: 8rem;
}

/*列表宽度*/
.list_100_width li {
    width: 100%;
}

.list_50_width li {
    width: 50%;
}

.list_25_width li {
    width: 25%;
}

.list_20_width li {
    width: 20%;
}

/* 等比绽放布局 ---------------------------------------------------------------*/
.box_root {
    position: relative;
    overflow: hidden;
    /*background-color: #f8f8f8;*/
    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 button {
    display:none;
}

.slick-dots {
    z-index: 1;
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.slick-dots li {
    z-index: 1;
    width:0.75rem;
    height: 0.75rem;
    margin: 0 0.5rem;
    background-color:#ccc;
    border-radius:50%;
    cursor:pointer;
}

.slick-dots li.slick-active {
    background-color:#1cc3ee
}

.slick-arrow {
    display: inline-block;
    vertical-align: middle;
    width:1rem;
    height: 1.125rem;
    cursor: pointer;
    overflow: hidden;
    text-indent: -99px;
    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: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-right: 1rem solid #1cc3ee;
}

.slick-next {
    width:0;
    height:0;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 1rem solid #1cc3ee;

}

/* 其它 ---------------------------------------------------------------*/
/*
透明度设置
background-color:rgba(59,57,57,.7);

透明度设置
filter: alpha(Opacity=85);
-moz-opacity: 0.85;
opacity: 0.85;

顺时针旋转360度
transform: rotate(360deg);
 */
